devicely 2.2.5 → 2.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/devicely.js +1 -105
- package/config/devices.conf +6 -22
- package/lib/androidDeviceDetection.js +1 -276
- package/lib/appMappings.js +1 -337
- package/lib/deviceDetection.js +1 -394
- package/lib/devices.js +1 -54
- package/lib/doctor.js +1 -94
- package/lib/encryption.js +1 -88
- package/lib/executor.js +1 -104
- package/lib/frontend/asset-manifest.json +3 -3
- package/lib/frontend/index.html +1 -1
- package/lib/frontend/static/css/main.23bd35c0.css.map +1 -0
- package/lib/frontend/static/js/{main.26a24c5c.js → main.4ff1ea70.js} +3 -3
- package/lib/frontend/static/js/main.4ff1ea70.js.map +1 -0
- package/lib/logger.js +1 -47
- package/lib/package-lock.json +1678 -0
- package/lib/package.json +30 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260205_225900.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260205_225942.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260205_231101.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260205_232911.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260208_095103.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhone17_20260208_095720.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115040.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115047.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115118.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115125.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_115143.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_120107.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_120118.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_120137.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_120201.png +0 -0
- package/lib/screenshots/screenshot_ios_iPhoneXR17x_20260206_134529.png +0 -0
- package/lib/scriptLoader.js +1 -13
- package/lib/server.js +1 -3546
- package/package.json +14 -3
- package/scripts/shell/android_device_control.enc +1 -1
- package/scripts/shell/connect_android_usb_multi_final.enc +1 -1
- package/scripts/shell/connect_android_wireless.enc +1 -1
- package/scripts/shell/connect_android_wireless_multi_final.enc +1 -1
- package/scripts/shell/connect_ios_usb_multi_final.enc +1 -1
- package/scripts/shell/connect_ios_wireless_multi_final.enc +1 -1
- package/scripts/shell/ios_device_control.enc +1 -1
- package/scripts/compile-shell-scripts.js +0 -208
- package/scripts/encrypt-shell-simple.js +0 -58
- package/scripts/obfuscate-shell.js +0 -160
- package/scripts/shell/apps_presets.conf +0 -271
- package/scripts/shell/devices.conf +0 -24
- /package/lib/frontend/static/js/{main.26a24c5c.js.LICENSE.txt → main.4ff1ea70.js.LICENSE.txt} +0 -0
package/lib/appMappings.js
CHANGED
|
@@ -1,337 +1 @@
|
|
|
1
|
-
// Platform-specific app package mappings
|
|
2
|
-
// Maps common app names to their actual package IDs for iOS and Android
|
|
3
|
-
|
|
4
|
-
const APP_MAPPINGS = {
|
|
5
|
-
// Browsers
|
|
6
|
-
safari: {
|
|
7
|
-
ios: 'com.apple.mobilesafari',
|
|
8
|
-
android: null
|
|
9
|
-
},
|
|
10
|
-
chrome: {
|
|
11
|
-
ios: 'com.google.chrome.ios',
|
|
12
|
-
android: 'com.android.chrome'
|
|
13
|
-
},
|
|
14
|
-
firefox: {
|
|
15
|
-
ios: 'org.mozilla.ios.Firefox',
|
|
16
|
-
android: 'org.mozilla.firefox'
|
|
17
|
-
},
|
|
18
|
-
edge: {
|
|
19
|
-
ios: 'com.microsoft.msedge',
|
|
20
|
-
android: 'com.microsoft.emmx'
|
|
21
|
-
},
|
|
22
|
-
brave: {
|
|
23
|
-
ios: 'com.brave.ios.browser',
|
|
24
|
-
android: 'com.brave.browser'
|
|
25
|
-
},
|
|
26
|
-
opera: {
|
|
27
|
-
ios: 'com.opera.OperaTouch',
|
|
28
|
-
android: 'com.opera.browser'
|
|
29
|
-
},
|
|
30
|
-
|
|
31
|
-
// System Apps
|
|
32
|
-
settings: {
|
|
33
|
-
ios: 'com.apple.Preferences',
|
|
34
|
-
android: 'com.android.settings'
|
|
35
|
-
},
|
|
36
|
-
camera: {
|
|
37
|
-
ios: 'com.apple.camera',
|
|
38
|
-
android: 'com.android.camera2'
|
|
39
|
-
},
|
|
40
|
-
photos: {
|
|
41
|
-
ios: 'com.apple.mobileslideshow',
|
|
42
|
-
android: 'com.google.android.apps.photos'
|
|
43
|
-
},
|
|
44
|
-
gallery: {
|
|
45
|
-
ios: 'com.apple.mobileslideshow',
|
|
46
|
-
android: 'com.google.android.apps.photos'
|
|
47
|
-
},
|
|
48
|
-
messages: {
|
|
49
|
-
ios: 'com.apple.MobileSMS',
|
|
50
|
-
android: 'com.google.android.apps.messaging'
|
|
51
|
-
},
|
|
52
|
-
phone: {
|
|
53
|
-
ios: 'com.apple.mobilephone',
|
|
54
|
-
android: 'com.google.android.dialer'
|
|
55
|
-
},
|
|
56
|
-
contacts: {
|
|
57
|
-
ios: 'com.apple.MobileAddressBook',
|
|
58
|
-
android: 'com.google.android.contacts'
|
|
59
|
-
},
|
|
60
|
-
calendar: {
|
|
61
|
-
ios: 'com.apple.mobilecal',
|
|
62
|
-
android: 'com.google.android.calendar'
|
|
63
|
-
},
|
|
64
|
-
clock: {
|
|
65
|
-
ios: 'com.apple.mobiletimer',
|
|
66
|
-
android: 'com.google.android.deskclock'
|
|
67
|
-
},
|
|
68
|
-
calculator: {
|
|
69
|
-
ios: 'com.apple.calculator',
|
|
70
|
-
android: 'com.google.android.calculator'
|
|
71
|
-
},
|
|
72
|
-
notes: {
|
|
73
|
-
ios: 'com.apple.mobilenotes',
|
|
74
|
-
android: 'com.google.android.keep'
|
|
75
|
-
},
|
|
76
|
-
mail: {
|
|
77
|
-
ios: 'com.apple.mobilemail',
|
|
78
|
-
android: 'com.google.android.gm'
|
|
79
|
-
},
|
|
80
|
-
gmail: {
|
|
81
|
-
ios: 'com.google.Gmail',
|
|
82
|
-
android: 'com.google.android.gm'
|
|
83
|
-
},
|
|
84
|
-
maps: {
|
|
85
|
-
ios: 'com.apple.Maps',
|
|
86
|
-
android: 'com.google.android.apps.maps'
|
|
87
|
-
},
|
|
88
|
-
|
|
89
|
-
// Social Media
|
|
90
|
-
facebook: {
|
|
91
|
-
ios: 'com.facebook.Facebook',
|
|
92
|
-
android: 'com.facebook.katana'
|
|
93
|
-
},
|
|
94
|
-
instagram: {
|
|
95
|
-
ios: 'com.burbn.instagram',
|
|
96
|
-
android: 'com.instagram.android'
|
|
97
|
-
},
|
|
98
|
-
twitter: {
|
|
99
|
-
ios: 'com.atebits.Tweetie2',
|
|
100
|
-
android: 'com.twitter.android'
|
|
101
|
-
},
|
|
102
|
-
x: {
|
|
103
|
-
ios: 'com.atebits.Tweetie2',
|
|
104
|
-
android: 'com.twitter.android'
|
|
105
|
-
},
|
|
106
|
-
whatsapp: {
|
|
107
|
-
ios: 'net.whatsapp.WhatsApp',
|
|
108
|
-
android: 'com.whatsapp'
|
|
109
|
-
},
|
|
110
|
-
telegram: {
|
|
111
|
-
ios: 'ph.telegra.Telegraph',
|
|
112
|
-
android: 'org.telegram.messenger'
|
|
113
|
-
},
|
|
114
|
-
snapchat: {
|
|
115
|
-
ios: 'com.toyopagroup.picaboo',
|
|
116
|
-
android: 'com.snapchat.android'
|
|
117
|
-
},
|
|
118
|
-
tiktok: {
|
|
119
|
-
ios: 'com.zhiliaoapp.musically',
|
|
120
|
-
android: 'com.zhiliaoapp.musically'
|
|
121
|
-
},
|
|
122
|
-
linkedin: {
|
|
123
|
-
ios: 'com.linkedin.LinkedIn',
|
|
124
|
-
android: 'com.linkedin.android'
|
|
125
|
-
},
|
|
126
|
-
reddit: {
|
|
127
|
-
ios: 'com.reddit.Reddit',
|
|
128
|
-
android: 'com.reddit.frontpage'
|
|
129
|
-
},
|
|
130
|
-
|
|
131
|
-
// Entertainment
|
|
132
|
-
youtube: {
|
|
133
|
-
ios: 'com.google.ios.youtube',
|
|
134
|
-
android: 'com.google.android.youtube'
|
|
135
|
-
},
|
|
136
|
-
netflix: {
|
|
137
|
-
ios: 'com.netflix.Netflix',
|
|
138
|
-
android: 'com.netflix.mediaclient'
|
|
139
|
-
},
|
|
140
|
-
spotify: {
|
|
141
|
-
ios: 'com.spotify.client',
|
|
142
|
-
android: 'com.spotify.music'
|
|
143
|
-
},
|
|
144
|
-
amazonmusic: {
|
|
145
|
-
ios: 'com.amazon.mp3',
|
|
146
|
-
android: 'com.amazon.mp3'
|
|
147
|
-
},
|
|
148
|
-
applemusic: {
|
|
149
|
-
ios: 'com.apple.Music',
|
|
150
|
-
android: 'com.apple.android.music'
|
|
151
|
-
},
|
|
152
|
-
hulu: {
|
|
153
|
-
ios: 'com.hulu.plus',
|
|
154
|
-
android: 'com.hulu.plus'
|
|
155
|
-
},
|
|
156
|
-
disneyplus: {
|
|
157
|
-
ios: 'com.disney.disneyplus',
|
|
158
|
-
android: 'com.disney.disneyplus'
|
|
159
|
-
},
|
|
160
|
-
primevideo: {
|
|
161
|
-
ios: 'com.amazon.aiv.AIVApp',
|
|
162
|
-
android: 'com.amazon.avod.thirdpartyclient'
|
|
163
|
-
},
|
|
164
|
-
|
|
165
|
-
// Communication
|
|
166
|
-
zoom: {
|
|
167
|
-
ios: 'us.zoom.videomeetings',
|
|
168
|
-
android: 'us.zoom.videomeetings'
|
|
169
|
-
},
|
|
170
|
-
skype: {
|
|
171
|
-
ios: 'com.skype.skype',
|
|
172
|
-
android: 'com.skype.raider'
|
|
173
|
-
},
|
|
174
|
-
teams: {
|
|
175
|
-
ios: 'com.microsoft.skype.teams',
|
|
176
|
-
android: 'com.microsoft.teams'
|
|
177
|
-
},
|
|
178
|
-
slack: {
|
|
179
|
-
ios: 'com.tinyspeck.chatlyio',
|
|
180
|
-
android: 'com.Slack'
|
|
181
|
-
},
|
|
182
|
-
discord: {
|
|
183
|
-
ios: 'com.hammerandchisel.discord',
|
|
184
|
-
android: 'com.discord'
|
|
185
|
-
},
|
|
186
|
-
|
|
187
|
-
// Productivity
|
|
188
|
-
gmail: {
|
|
189
|
-
ios: 'com.google.Gmail',
|
|
190
|
-
android: 'com.google.android.gm'
|
|
191
|
-
},
|
|
192
|
-
outlook: {
|
|
193
|
-
ios: 'com.microsoft.Office.Outlook',
|
|
194
|
-
android: 'com.microsoft.office.outlook'
|
|
195
|
-
},
|
|
196
|
-
googledrive: {
|
|
197
|
-
ios: 'com.google.Drive',
|
|
198
|
-
android: 'com.google.android.apps.docs'
|
|
199
|
-
},
|
|
200
|
-
dropbox: {
|
|
201
|
-
ios: 'com.getdropbox.Dropbox',
|
|
202
|
-
android: 'com.dropbox.android'
|
|
203
|
-
},
|
|
204
|
-
onedrive: {
|
|
205
|
-
ios: 'com.microsoft.skydrive',
|
|
206
|
-
android: 'com.microsoft.skydrive'
|
|
207
|
-
},
|
|
208
|
-
notion: {
|
|
209
|
-
ios: 'notion.id',
|
|
210
|
-
android: 'notion.id'
|
|
211
|
-
},
|
|
212
|
-
evernote: {
|
|
213
|
-
ios: 'com.evernote.iPhone.Evernote',
|
|
214
|
-
android: 'com.evernote'
|
|
215
|
-
},
|
|
216
|
-
|
|
217
|
-
// Shopping
|
|
218
|
-
amazon: {
|
|
219
|
-
ios: 'com.amazon.Amazon',
|
|
220
|
-
android: 'com.amazon.mShop.android.shopping'
|
|
221
|
-
},
|
|
222
|
-
ebay: {
|
|
223
|
-
ios: 'com.ebay.iphone',
|
|
224
|
-
android: 'com.ebay.mobile'
|
|
225
|
-
},
|
|
226
|
-
walmart: {
|
|
227
|
-
ios: 'com.walmart.groceries',
|
|
228
|
-
android: 'com.walmart.android'
|
|
229
|
-
},
|
|
230
|
-
target: {
|
|
231
|
-
ios: 'com.target.mobile',
|
|
232
|
-
android: 'com.target.ui'
|
|
233
|
-
},
|
|
234
|
-
|
|
235
|
-
// Travel
|
|
236
|
-
uber: {
|
|
237
|
-
ios: 'com.ubercab.UberClient',
|
|
238
|
-
android: 'com.ubercab'
|
|
239
|
-
},
|
|
240
|
-
lyft: {
|
|
241
|
-
ios: 'com.ubercab.Lyft',
|
|
242
|
-
android: 'me.lyft.android'
|
|
243
|
-
},
|
|
244
|
-
airbnb: {
|
|
245
|
-
ios: 'com.airbnb.app',
|
|
246
|
-
android: 'com.airbnb.android'
|
|
247
|
-
},
|
|
248
|
-
booking: {
|
|
249
|
-
ios: 'com.booking.BookingApp',
|
|
250
|
-
android: 'com.booking'
|
|
251
|
-
},
|
|
252
|
-
|
|
253
|
-
// Finance
|
|
254
|
-
paypal: {
|
|
255
|
-
ios: 'com.yourcompany.PPClient',
|
|
256
|
-
android: 'com.paypal.android.p2pmobile'
|
|
257
|
-
},
|
|
258
|
-
venmo: {
|
|
259
|
-
ios: 'com.venmo.touch.Venmo',
|
|
260
|
-
android: 'com.venmo'
|
|
261
|
-
},
|
|
262
|
-
cashapp: {
|
|
263
|
-
ios: 'com.squareup.cash',
|
|
264
|
-
android: 'com.squareup.cash'
|
|
265
|
-
}
|
|
266
|
-
};
|
|
267
|
-
|
|
268
|
-
/**
|
|
269
|
-
* Get package ID for an app based on platform
|
|
270
|
-
* @param {string} appName - Common name of the app (e.g., 'chrome', 'settings')
|
|
271
|
-
* @param {string} platform - 'ios' or 'android'
|
|
272
|
-
* @returns {string|null} - Package ID or null if not found
|
|
273
|
-
*/
|
|
274
|
-
function getPackageId(appName, platform) {
|
|
275
|
-
const normalizedName = appName.toLowerCase().trim();
|
|
276
|
-
const mapping = APP_MAPPINGS[normalizedName];
|
|
277
|
-
|
|
278
|
-
if (!mapping) {
|
|
279
|
-
return null;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
return mapping[platform] || null;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
/**
|
|
286
|
-
* Get all available apps for a platform
|
|
287
|
-
* @param {string} platform - 'ios' or 'android'
|
|
288
|
-
* @returns {Array} - Array of app objects with name and packageId
|
|
289
|
-
*/
|
|
290
|
-
function getAvailableApps(platform) {
|
|
291
|
-
const apps = [];
|
|
292
|
-
|
|
293
|
-
for (const [appName, mapping] of Object.entries(APP_MAPPINGS)) {
|
|
294
|
-
if (mapping[platform]) {
|
|
295
|
-
apps.push({
|
|
296
|
-
name: appName,
|
|
297
|
-
packageId: mapping[platform]
|
|
298
|
-
});
|
|
299
|
-
}
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
return apps;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
/**
|
|
306
|
-
* Check if an app is available for a platform
|
|
307
|
-
* @param {string} appName - Common name of the app
|
|
308
|
-
* @param {string} platform - 'ios' or 'android'
|
|
309
|
-
* @returns {boolean}
|
|
310
|
-
*/
|
|
311
|
-
function isAppAvailable(appName, platform) {
|
|
312
|
-
return getPackageId(appName, platform) !== null;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
/**
|
|
316
|
-
* Get platform-specific launch command
|
|
317
|
-
* @param {string} appName - Common name of the app
|
|
318
|
-
* @param {string} platform - 'ios' or 'android'
|
|
319
|
-
* @returns {string|null} - Launch command or null if not found
|
|
320
|
-
*/
|
|
321
|
-
function getLaunchCommand(appName, platform) {
|
|
322
|
-
const packageId = getPackageId(appName, platform);
|
|
323
|
-
|
|
324
|
-
if (!packageId) {
|
|
325
|
-
return null;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
return `launch ${packageId}`;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
module.exports = {
|
|
332
|
-
APP_MAPPINGS,
|
|
333
|
-
getPackageId,
|
|
334
|
-
getAvailableApps,
|
|
335
|
-
isAppAvailable,
|
|
336
|
-
getLaunchCommand
|
|
337
|
-
};
|
|
1
|
+
const _0x356087=_0x3945;(function(_0x1fd23a,_0x160b17){const _0x99d13e=_0x3945,_0x1e85e6=_0x1fd23a();while(!![]){try{const _0x1c657f=-parseInt(_0x99d13e(0x1ef))/0x1*(-parseInt(_0x99d13e(0x24f))/0x2)+-parseInt(_0x99d13e(0x1e0))/0x3+-parseInt(_0x99d13e(0x1c6))/0x4+parseInt(_0x99d13e(0x233))/0x5+parseInt(_0x99d13e(0x1f2))/0x6*(-parseInt(_0x99d13e(0x239))/0x7)+parseInt(_0x99d13e(0x214))/0x8+-parseInt(_0x99d13e(0x1de))/0x9*(-parseInt(_0x99d13e(0x1f0))/0xa);if(_0x1c657f===_0x160b17)break;else _0x1e85e6['push'](_0x1e85e6['shift']());}catch(_0x4aca45){_0x1e85e6['push'](_0x1e85e6['shift']());}}}(_0x2061,0xc3c24));const _0xaf47fc={};_0xaf47fc[_0x356087(0x1d2)]=_0x356087(0x23a),_0xaf47fc[_0x356087(0x24d)]=null;const _0x18036c={};_0x18036c[_0x356087(0x1d2)]=_0x356087(0x1d9),_0x18036c['android']=_0x356087(0x20c);const _0x590d55={};_0x590d55[_0x356087(0x1d2)]=_0x356087(0x22d),_0x590d55[_0x356087(0x24d)]=_0x356087(0x1db);const _0xcea792={};_0xcea792[_0x356087(0x1d2)]=_0x356087(0x1d3),_0xcea792['android']=_0x356087(0x20a);const _0x5f4c5c={};_0x5f4c5c[_0x356087(0x1d2)]=_0x356087(0x205),_0x5f4c5c[_0x356087(0x24d)]=_0x356087(0x1e4);const _0x10dc88={};_0x10dc88['ios']='com.opera.OperaTouch',_0x10dc88[_0x356087(0x24d)]=_0x356087(0x1b2);const _0x554841={};_0x554841['ios']='com.apple.Preferences',_0x554841['android']=_0x356087(0x1c9);const _0x5dda5e={};_0x5dda5e['ios']=_0x356087(0x1df),_0x5dda5e[_0x356087(0x24d)]=_0x356087(0x246);const _0x2816fc={};_0x2816fc[_0x356087(0x1d2)]=_0x356087(0x249),_0x2816fc[_0x356087(0x24d)]='com.google.android.apps.photos';const _0x2b34d8={};_0x2b34d8[_0x356087(0x1d2)]=_0x356087(0x249),_0x2b34d8[_0x356087(0x24d)]=_0x356087(0x245);const _0x935acc={};_0x935acc['ios']=_0x356087(0x1f4),_0x935acc[_0x356087(0x24d)]='com.google.android.apps.messaging';function _0x3945(_0x5f21be,_0x5cc047){_0x5f21be=_0x5f21be-0x1b1;const _0x2061e6=_0x2061();let _0x39452d=_0x2061e6[_0x5f21be];if(_0x3945['vQDpSq']===undefined){var _0x2893e9=function(_0x35a021){const _0x101c6a='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3dec63='',_0x124559='';for(let _0x3ee320=0x0,_0x53fd61,_0x5c550f,_0x41e3dc=0x0;_0x5c550f=_0x35a021['charAt'](_0x41e3dc++);~_0x5c550f&&(_0x53fd61=_0x3ee320%0x4?_0x53fd61*0x40+_0x5c550f:_0x5c550f,_0x3ee320++%0x4)?_0x3dec63+=String['fromCharCode'](0xff&_0x53fd61>>(-0x2*_0x3ee320&0x6)):0x0){_0x5c550f=_0x101c6a['indexOf'](_0x5c550f);}for(let _0x58d7cb=0x0,_0x556795=_0x3dec63['length'];_0x58d7cb<_0x556795;_0x58d7cb++){_0x124559+='%'+('00'+_0x3dec63['charCodeAt'](_0x58d7cb)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x124559);};_0x3945['jeXaGQ']=_0x2893e9,_0x3945['yDWFjO']={},_0x3945['vQDpSq']=!![];}const _0x42b2ac=_0x2061e6[0x0],_0x3cf71f=_0x5f21be+_0x42b2ac,_0x51f3b3=_0x3945['yDWFjO'][_0x3cf71f];return!_0x51f3b3?(_0x39452d=_0x3945['jeXaGQ'](_0x39452d),_0x3945['yDWFjO'][_0x3cf71f]=_0x39452d):_0x39452d=_0x51f3b3,_0x39452d;}const _0x37ab6d={};_0x37ab6d['ios']=_0x356087(0x1bb),_0x37ab6d['android']='com.google.android.dialer';const _0x37e4ca={};_0x37e4ca[_0x356087(0x1d2)]=_0x356087(0x24e),_0x37e4ca[_0x356087(0x24d)]=_0x356087(0x204);const _0x268553={};_0x268553[_0x356087(0x1d2)]=_0x356087(0x248),_0x268553['android']='com.google.android.calendar';const _0x140c2e={};_0x140c2e[_0x356087(0x1d2)]=_0x356087(0x224),_0x140c2e['android']=_0x356087(0x1c3);const _0xf115e={};_0xf115e[_0x356087(0x1d2)]='com.apple.calculator',_0xf115e[_0x356087(0x24d)]=_0x356087(0x213);const _0x35d895={};_0x35d895[_0x356087(0x1d2)]=_0x356087(0x1ba),_0x35d895[_0x356087(0x24d)]=_0x356087(0x1d0);const _0x31e95c={};_0x31e95c[_0x356087(0x1d2)]=_0x356087(0x21b),_0x31e95c[_0x356087(0x24d)]=_0x356087(0x21c);const _0x5c93a3={};_0x5c93a3[_0x356087(0x1d2)]=_0x356087(0x230),_0x5c93a3[_0x356087(0x24d)]=_0x356087(0x21c);const _0x4881c4={};_0x4881c4[_0x356087(0x1d2)]=_0x356087(0x1ea),_0x4881c4[_0x356087(0x24d)]=_0x356087(0x21d);const _0x264154={};_0x264154[_0x356087(0x1d2)]=_0x356087(0x1b3),_0x264154[_0x356087(0x24d)]='com.facebook.katana';const _0x5ad635={};_0x5ad635[_0x356087(0x1d2)]=_0x356087(0x1e3),_0x5ad635[_0x356087(0x24d)]=_0x356087(0x1cc);const _0xf16ada={};_0xf16ada[_0x356087(0x1d2)]=_0x356087(0x1c5),_0xf16ada[_0x356087(0x24d)]=_0x356087(0x1fd);const _0xae474e={};_0xae474e[_0x356087(0x1d2)]=_0x356087(0x1c5),_0xae474e['android']='com.twitter.android';const _0x4f7b83={};_0x4f7b83[_0x356087(0x1d2)]=_0x356087(0x237),_0x4f7b83['android']=_0x356087(0x231);const _0x4a38a1={};_0x4a38a1[_0x356087(0x1d2)]=_0x356087(0x1b4),_0x4a38a1[_0x356087(0x24d)]=_0x356087(0x222);const _0x196fc3={};_0x196fc3['ios']=_0x356087(0x1e1),_0x196fc3['android']=_0x356087(0x20f);const _0x8963b9={};_0x8963b9['ios']=_0x356087(0x1ec),_0x8963b9[_0x356087(0x24d)]=_0x356087(0x1ec);const _0x32c02d={};_0x32c02d['ios']=_0x356087(0x1e7),_0x32c02d[_0x356087(0x24d)]=_0x356087(0x1c7);const _0x1dd8c2={};_0x1dd8c2[_0x356087(0x1d2)]=_0x356087(0x1e8),_0x1dd8c2['android']=_0x356087(0x1ed);const _0x53f87e={};_0x53f87e[_0x356087(0x1d2)]=_0x356087(0x1fc),_0x53f87e[_0x356087(0x24d)]=_0x356087(0x227);const _0x31a967={};_0x31a967[_0x356087(0x1d2)]=_0x356087(0x1f7),_0x31a967[_0x356087(0x24d)]='com.netflix.mediaclient';const _0x19786b={};_0x19786b['ios']='com.spotify.client',_0x19786b[_0x356087(0x24d)]='com.spotify.music';const _0x44b1cb={};_0x44b1cb[_0x356087(0x1d2)]=_0x356087(0x20e),_0x44b1cb[_0x356087(0x24d)]=_0x356087(0x20e);const _0x3c55cf={};_0x3c55cf[_0x356087(0x1d2)]=_0x356087(0x240),_0x3c55cf['android']=_0x356087(0x1d1);const _0x1f5ab7={};_0x1f5ab7[_0x356087(0x1d2)]=_0x356087(0x1e5),_0x1f5ab7['android']=_0x356087(0x1e5);const _0xdd107f={};_0xdd107f['ios']='com.disney.disneyplus',_0xdd107f[_0x356087(0x24d)]=_0x356087(0x212);const _0x24990d={};_0x24990d[_0x356087(0x1d2)]=_0x356087(0x1cb),_0x24990d[_0x356087(0x24d)]=_0x356087(0x1d7);const _0x1f78c8={};_0x1f78c8[_0x356087(0x1d2)]=_0x356087(0x229),_0x1f78c8[_0x356087(0x24d)]=_0x356087(0x229);const _0x56e56d={};_0x56e56d['ios']='com.skype.skype',_0x56e56d[_0x356087(0x24d)]=_0x356087(0x209);const _0x5859cd={};_0x5859cd[_0x356087(0x1d2)]=_0x356087(0x215),_0x5859cd[_0x356087(0x24d)]='com.microsoft.teams';const _0xf7f58a={};_0xf7f58a['ios']=_0x356087(0x1ce),_0xf7f58a['android']=_0x356087(0x23c);const _0x483058={};_0x483058[_0x356087(0x1d2)]=_0x356087(0x21f),_0x483058[_0x356087(0x24d)]=_0x356087(0x1cd);const _0x43df79={};_0x43df79[_0x356087(0x1d2)]='com.google.Gmail',_0x43df79[_0x356087(0x24d)]=_0x356087(0x21c);const _0x227866={};_0x227866['ios']=_0x356087(0x22e),_0x227866['android']=_0x356087(0x23f);const _0x209d87={};_0x209d87[_0x356087(0x1d2)]=_0x356087(0x207),_0x209d87[_0x356087(0x24d)]=_0x356087(0x1d5);const _0x5458de={};_0x5458de[_0x356087(0x1d2)]=_0x356087(0x219),_0x5458de[_0x356087(0x24d)]='com.dropbox.android';const _0x2bc343={};_0x2bc343['ios']='com.microsoft.skydrive',_0x2bc343[_0x356087(0x24d)]='com.microsoft.skydrive';const _0x5482d5={};_0x5482d5[_0x356087(0x1d2)]=_0x356087(0x1dc),_0x5482d5[_0x356087(0x24d)]=_0x356087(0x1dc);const _0x324145={};_0x324145[_0x356087(0x1d2)]=_0x356087(0x1b5),_0x324145['android']=_0x356087(0x1be);const _0x2ca832={};_0x2ca832[_0x356087(0x1d2)]=_0x356087(0x238),_0x2ca832[_0x356087(0x24d)]=_0x356087(0x1ca);const _0x3d7c05={};_0x3d7c05[_0x356087(0x1d2)]=_0x356087(0x21a),_0x3d7c05[_0x356087(0x24d)]=_0x356087(0x1c1);const _0x5bf50d={};_0x5bf50d[_0x356087(0x1d2)]=_0x356087(0x21e),_0x5bf50d['android']=_0x356087(0x221);const _0x3745e5={};_0x3745e5[_0x356087(0x1d2)]=_0x356087(0x208),_0x3745e5[_0x356087(0x24d)]=_0x356087(0x206);const _0x14b9fb={};_0x14b9fb[_0x356087(0x1d2)]=_0x356087(0x235),_0x14b9fb['android']=_0x356087(0x24b);const _0x55801a={};_0x55801a['ios']=_0x356087(0x1f8),_0x55801a[_0x356087(0x24d)]='me.lyft.android';const _0x5438e0={};_0x5438e0[_0x356087(0x1d2)]='com.airbnb.app',_0x5438e0[_0x356087(0x24d)]=_0x356087(0x220);const _0x504484={};_0x504484[_0x356087(0x1d2)]=_0x356087(0x201),_0x504484[_0x356087(0x24d)]=_0x356087(0x1d6);const _0x4e07b1={};_0x4e07b1[_0x356087(0x1d2)]=_0x356087(0x23b),_0x4e07b1[_0x356087(0x24d)]=_0x356087(0x211);const _0x171c8c={};_0x171c8c[_0x356087(0x1d2)]=_0x356087(0x1cf),_0x171c8c[_0x356087(0x24d)]=_0x356087(0x1fe);function _0x2061(){const _0x3e6104=['Cgf5CgfS','nK9JBNr2sa','nZi0nZK2mffiC3PKrW','DgvHBxm','mZaYmZrZAgfKDeu','BM90zxm','y29TlMfWCgXLlK1VyMLSzvnnuW','z21HAwW','z2v0ugfJA2fNzuLK','y29TlM5LDgzSAxGUtMv0zMXPEa','y29TlNvIzxjJywiUthLMDa','BMfTzq','BwfPBa','z2fSBgvYEq','y29TlMDVB2DSzs5PB3mUEw91DhvIzq','y29TlNr3Axr0zxiUyw5KCM9Pza','y29TlNzLBM1V','DgLRDg9R','Cuz5vxe','y29TlMjVB2TPBMCUqM9VA2LUz0fWCa','Dg9mB3DLCKnHC2u','yM9VA2LUzW','y29TlMDVB2DSzs5HBMrYB2LKlMnVBNrHy3rZ','y29TlMjYyxzLlMLVCY5ICM93C2vY','y29TlNrHCMDLDc51Aq','y29TlMDVB2DSzs5eCML2zq','y29TlNrHCMDLDc5TB2jPBgu','y29TlNnRExbLlNjHAwrLCG','y29TlM1Py3jVC29MDc5LBw14','zwjHEq','y29TlMfUzhjVAwqUy2HYB21L','BMv0zMXPEa','y29TlMfTyxPVBI5TCdm','y29TlNnUyxbJAgf0lMfUzhjVAwq','CgHVBMu','y29TlNbHExbHBc5HBMrYB2LKlNaYCg1VyMLSzq','y29TlMrPC25LEs5KAxnUzxLWBhvZ','y29TlMDVB2DSzs5HBMrYB2LKlMnHBgn1Bgf0B3i','mtG0odCYogntB0TOsa','y29TlM1Py3jVC29MDc5ZA3LWzs50zwfTCW','DhDPDhrLCG','ChjPBwv2AwrLBW','AgXTELK','y29TlMDLDgrYB3bIB3GUrhjVCgjVEa','y29TlMvIyxKUAxbOB25L','y29TlMfWCgXLlM1VyMLSzw1HAwW','y29TlMDVB2DSzs5HBMrYB2LKlMDT','y29TlMDVB2DSzs5HBMrYB2LKlMfWChmUBwfWCW','y29TlNDHBg1HCNqUz3jVy2vYAwvZ','y29TlMHHBw1LCMfUzgnOAxnLBc5KAxnJB3jK','y29TlMfPCMjUyI5HBMrYB2LK','y29TlNDHBg1HCNqUyw5KCM9Pza','B3jNlNrLBgvNCMfTlM1LC3nLBMDLCG','uxn6t3G','y29TlMfWCgXLlM1VyMLSzxrPBwvY','qNzLs1G','C2fMyxjP','y29TlMDVB2DSzs5HBMrYB2LKlNLVDxr1yMu','DgvSzwDYyw0','DxmUEM9VBs52AwrLB21LzxrPBMDZ','z2v0tgf1BMnOq29TBwfUza','y2fTzxjH','z2v0qxzHAwXHyMXLqxbWCW','B3jNlM1VEMLSBgeUAw9ZlKzPCMvMB3G','y29TlM1Py3jVC29MDc5pzMzPy2uUt3v0Bg9VAW','C2T5Cgu','y29TlMDVB2DSzs5hBwfPBa','y29TlNDOyxrZyxbW','qvbqx01bufbjtKDt','mtu5mdaYmev5v1zOAG','y2fSy3vSyxrVCG','y29TlNvIzxjJywiUvwjLCKnSAwvUDa','Ew91DhvIzq','BMv0lNDOyxrZyxbWlLDOyxrZqxbW','y29TlMfTyxPVBI5bBwf6B24','mte2ovruCLHTBq','y29TlMfWCgXLlM1VyMLSzxnHzMfYAq','y29TlNLVDxjJB21Wyw55lLbqq2XPzw50','y29TlLnSywnR','DgfYz2v0','r3bpAwG','y29TlM1Py3jVC29MDc5VzMzPy2uUB3v0Bg9VAW','y29TlMfWCgXLlK11C2LJ','y2fSzw5Kyxi','B3v0Bg9VAW','CgHVDg9Z','A1Hnwfq','y29TlMDVB2DSzs5HBMrYB2LKlMfWChmUCgHVDg9Z','y29TlMfUzhjVAwqUy2fTzxjHmG','ChvZAa','y29TlMfWCgXLlM1VyMLSzwnHBa','y29TlMfWCgXLlM1VyMLSzxnSAwrLC2HVDW','D2HHDhnHCha','y29TlNvIzxjJywi','rvnIr0m','yw5KCM9Pza','y29TlMfWCgXLlK1VyMLSzufKzhjLC3ncB29R','mtK4mtq2t0LSu1zx','BwvZC2fNzxm','zxzLCM5VDgu','BM90Aw9U','ywLYyM5I','y29TlM9WzxjHlMjYB3DZzxi','y29TlMzHy2vIB29RlKzHy2vIB29R','CgGUDgvSzwDYys5uzwXLz3jHCgG','y29TlMv2zxjUB3rLlMLqAg9Uzs5fDMvYBM90zq','yNjHDMu','zwrNzq','y29UDgfJDhm','C2XHy2S','y29TlMfWCgXLlM1VyMLSzw5VDgvZ','y29TlMfWCgXLlM1VyMLSzxbOB25L','EM9VBq','B3bLCMe','y29TlMv2zxjUB3rL','C25HCgnOyxq','zMLYzwzVEa','y29TlMvIyxKUBw9IAwXL','yw1HEM9U','y29TlMDVB2DSzs5HBMrYB2LKlMrLC2TJBg9JAW','BhLMDa','y29TlMf0zwjPDhmUvhDLzxrPzti','ndiXnJCZnNjgtNr1rq','y29TlMXPBMTLzgLUlMfUzhjVAwq','zw50CMLLCW','y29TlMfUzhjVAwqUC2v0DgLUz3m','y29TlMfTyxPVBI5Tu2HVCc5HBMrYB2LKlNnOB3bWAw5N','y29TlMfTyxPVBI5HAxyUquLwqxbW','y29TlMLUC3rHz3jHBs5HBMrYB2LK','y29TlMrPC2nVCMq','y29TlNrPBNLZCgvJAY5JAgf0BhLPBW','y29TlNzLBM1VlNrVDwnOlLzLBM1V','y29TlMDVB2DSzs5HBMrYB2LKlMTLzxa','y29TlMfWCgXLlMfUzhjVAwqUBxvZAwm','Aw9Z','y29TlM1Py3jVC29MDc5TC2vKz2u','z29Vz2XLzhjPDMu','y29TlMDVB2DSzs5HBMrYB2LKlMfWChmUzg9JCW','y29TlMjVB2TPBMC','y29TlMfTyxPVBI5HDM9KlNrOAxjKCgfYDhLJBgLLBNq','yxbWBgvTDxnPyW','y29TlMDVB2DSzs5JAhjVBwuUAw9Z','y29TlNnXDwfYzxvWlMnHC2G','B3jNlM1VEMLSBgeUzMLYzwzVEa','BM90Aw9UlMLK','zgLZy29Yza','mZzbA3zyrMC','y29TlMfWCgXLlMnHBwvYyq','ndaZntu3nMPmrMTtDa','y29TlNrVEw9WywDYB3vWlNbPy2fIB28','zhjVCgjVEa','y29TlMj1CMjUlMLUC3rHz3jHBq','y29TlMjYyxzLlMjYB3DZzxi','y29TlMH1BhuUCgX1CW','tgPXvKC','y29TlMXPBMTLzgLUlKXPBMTLzeLU','y29TlNjLzgrPDc5szwrKAxq','AhvSDq','y29TlMfWCgXLlK1HChm','CMvKzgL0','y29TlNPOAwXPyw9HChaUBxvZAwnHBgX5','y29TlNjLzgrPDc5MCM9UDhbHz2u'];_0x2061=function(){return _0x3e6104;};return _0x2061();}const _0x4f5e53={};_0x4f5e53[_0x356087(0x1d2)]=_0x356087(0x1da),_0x4f5e53[_0x356087(0x24d)]=_0x356087(0x1da);const _0xb8fdf8={};_0xb8fdf8[_0x356087(0x226)]=_0xaf47fc,_0xb8fdf8['chrome']=_0x18036c,_0xb8fdf8[_0x356087(0x1c0)]=_0x590d55,_0xb8fdf8[_0x356087(0x1b7)]=_0xcea792,_0xb8fdf8[_0x356087(0x1b6)]=_0x5f4c5c,_0xb8fdf8[_0x356087(0x1bd)]=_0x10dc88,_0xb8fdf8['settings']=_0x554841,_0xb8fdf8[_0x356087(0x22b)]=_0x5dda5e,_0xb8fdf8[_0x356087(0x243)]=_0x2816fc,_0xb8fdf8[_0x356087(0x1fb)]=_0x2b34d8,_0xb8fdf8[_0x356087(0x250)]=_0x935acc,_0xb8fdf8[_0x356087(0x210)]=_0x37ab6d,_0xb8fdf8[_0x356087(0x1b8)]=_0x37e4ca,_0xb8fdf8[_0x356087(0x241)]=_0x268553,_0xb8fdf8['clock']=_0x140c2e,_0xb8fdf8[_0x356087(0x234)]=_0xf115e,_0xb8fdf8[_0x356087(0x1f3)]=_0x35d895,_0xb8fdf8[_0x356087(0x1fa)]=_0x31e95c,_0xb8fdf8[_0x356087(0x1f5)]=_0x5c93a3,_0xb8fdf8['maps']=_0x4881c4,_0xb8fdf8['facebook']=_0x264154,_0xb8fdf8['instagram']=_0x5ad635,_0xb8fdf8[_0x356087(0x216)]=_0xf16ada,_0xb8fdf8['x']=_0xae474e,_0xb8fdf8[_0x356087(0x24a)]=_0x4f7b83,_0xb8fdf8[_0x356087(0x228)]=_0x4a38a1,_0xb8fdf8[_0x356087(0x1bf)]=_0x196fc3,_0xb8fdf8[_0x356087(0x1ff)]=_0x8963b9,_0xb8fdf8['linkedin']=_0x32c02d,_0xb8fdf8[_0x356087(0x1eb)]=_0x1dd8c2,_0xb8fdf8[_0x356087(0x236)]=_0x53f87e,_0xb8fdf8[_0x356087(0x20d)]=_0x31a967,_0xb8fdf8['spotify']=_0x19786b,_0xb8fdf8['amazonmusic']=_0x44b1cb,_0xb8fdf8[_0x356087(0x1d8)]=_0x3c55cf,_0xb8fdf8[_0x356087(0x1e9)]=_0x1f5ab7,_0xb8fdf8['disneyplus']=_0xdd107f,_0xb8fdf8[_0x356087(0x217)]=_0x24990d,_0xb8fdf8[_0x356087(0x1bc)]=_0x1f78c8,_0xb8fdf8[_0x356087(0x22f)]=_0x56e56d,_0xb8fdf8[_0x356087(0x1f1)]=_0x5859cd,_0xb8fdf8[_0x356087(0x1b9)]=_0xf7f58a,_0xb8fdf8[_0x356087(0x1dd)]=_0x483058,_0xb8fdf8['gmail']=_0x43df79,_0xb8fdf8[_0x356087(0x242)]=_0x227866,_0xb8fdf8[_0x356087(0x1d4)]=_0x209d87,_0xb8fdf8[_0x356087(0x1e2)]=_0x5458de,_0xb8fdf8['onedrive']=_0x2bc343,_0xb8fdf8[_0x356087(0x252)]=_0x5482d5,_0xb8fdf8[_0x356087(0x251)]=_0x324145,_0xb8fdf8[_0x356087(0x1c2)]=_0x2ca832,_0xb8fdf8[_0x356087(0x20b)]=_0x3d7c05,_0xb8fdf8['walmart']=_0x5bf50d,_0xb8fdf8[_0x356087(0x23d)]=_0x3745e5,_0xb8fdf8['uber']=_0x14b9fb,_0xb8fdf8[_0x356087(0x1c4)]=_0x55801a,_0xb8fdf8[_0x356087(0x1b1)]=_0x5438e0,_0xb8fdf8[_0x356087(0x203)]=_0x504484,_0xb8fdf8[_0x356087(0x1ee)]=_0x4e07b1,_0xb8fdf8['venmo']=_0x171c8c,_0xb8fdf8['cashapp']=_0x4f5e53;const APP_MAPPINGS=_0xb8fdf8;function getPackageId(_0x202ab4,_0x50fabb){const _0x469efe=_0x202ab4['toLowerCase']()['trim'](),_0x314cdc=APP_MAPPINGS[_0x469efe];if(!_0x314cdc)return null;return _0x314cdc[_0x50fabb]||null;}function getAvailableApps(_0x8ab578){const _0x385b6b=_0x356087,_0x52b46b={};_0x52b46b[_0x385b6b(0x225)]=function(_0xa16a3c,_0x42bf87){return _0xa16a3c===_0x42bf87;},_0x52b46b[_0x385b6b(0x23e)]=_0x385b6b(0x1e6),_0x52b46b[_0x385b6b(0x223)]=_0x385b6b(0x200);const _0x575e31=_0x52b46b,_0x391e8d=[];for(const [_0x4d50d0,_0x38118b]of Object[_0x385b6b(0x1c8)](APP_MAPPINGS)){if(_0x575e31[_0x385b6b(0x225)](_0x575e31[_0x385b6b(0x23e)],_0x575e31[_0x385b6b(0x223)])){const _0x9c2329=_0x53fd61[_0x385b6b(0x202)]()['trim'](),_0x347b5e=_0x5c550f[_0x9c2329];if(!_0x347b5e)return null;return _0x347b5e[_0x41e3dc]||null;}else{if(_0x38118b[_0x8ab578]){const _0x3744bc={};_0x3744bc[_0x385b6b(0x1f9)]=_0x4d50d0,_0x3744bc['packageId']=_0x38118b[_0x8ab578],_0x391e8d[_0x385b6b(0x247)](_0x3744bc);}}}return _0x391e8d;}function isAppAvailable(_0x5dca29,_0x437865){const _0x455d03=_0x356087,_0xa35d0e={'hlmzY':function(_0x52611c,_0x8163a3){return _0x52611c!==_0x8163a3;},'kXMXT':function(_0x1f42c5,_0x3ea272,_0x382d03){return _0x1f42c5(_0x3ea272,_0x382d03);}};return _0xa35d0e[_0x455d03(0x218)](_0xa35d0e[_0x455d03(0x244)](getPackageId,_0x5dca29,_0x437865),null);}function getLaunchCommand(_0xead261,_0x560648){const _0x2629b6=_0x356087,_0x3d5bab={'ESbGC':function(_0xba1e39,_0x1ec907,_0x185539){return _0xba1e39(_0x1ec907,_0x185539);}},_0x5d1214=_0x3d5bab[_0x2629b6(0x24c)](getPackageId,_0xead261,_0x560648);if(!_0x5d1214)return null;return'launch\x20'+_0x5d1214;}const _0x3995c7={};_0x3995c7[_0x356087(0x232)]=APP_MAPPINGS,_0x3995c7[_0x356087(0x1f6)]=getPackageId,_0x3995c7[_0x356087(0x22c)]=getAvailableApps,_0x3995c7['isAppAvailable']=isAppAvailable,_0x3995c7[_0x356087(0x22a)]=getLaunchCommand,module['exports']=_0x3995c7;
|