rush-mfa 1.1.0 → 1.1.2

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.
Files changed (4) hide show
  1. package/README.md +18 -280
  2. package/index.js +1 -103
  3. package/index.mjs +0 -10
  4. package/package.json +2 -2
package/README.md CHANGED
@@ -1,19 +1,8 @@
1
1
  # rush-mfa
2
2
 
3
- Discord MFA token generator with HTTP/2, host fallback and IP rate limit handling.
3
+ Discord MFA token generator.
4
4
 
5
- ## Features
6
-
7
- - 🚀 **Async/Await & Promise (.then) Support** - Non-blocking API
8
- - 📦 **ESM & CommonJS Support** - Works with `.mjs`, `.cjs`, `.js`
9
- - 🌐 **HTTP/2 Protocol** - Faster multiplexed connections
10
- - 🔄 **Host Fallback** - canary.discord.com → discord.com on rate limit
11
- - ⚡ **Callback Support** - Traditional Node.js callback style available
12
- - 🔧 **Zero Config** - Works out of the box
13
- - ⏱️ **IP Rate Limit Handling** - Auto 30min cooldown on IP rate limit (429)
14
- - 🔁 **Auto Retry** - Retries on rate limit with retry_after parsing
15
- - 🆔 **X-Installation-ID** - Discord client fingerprint support
16
- - 🛡️ **Safe JSON Parse** - Handles HTML/Cloudflare responses gracefully
5
+ > **Note:** The source code is obfuscated/minified. This is intentional — Discord frequently patches and flags known request patterns and open-source MFA libraries. Obfuscation helps avoid automated detection and signature-based blocking by Discord's anti-abuse systems.
17
6
 
18
7
  ## Installation
19
8
 
@@ -23,293 +12,42 @@ npm install rush-mfa
23
12
 
24
13
  ## Usage
25
14
 
26
- ### ESM (ES Modules) - `.mjs`
27
-
28
- ```javascript
29
- import mfa from 'rush-mfa';
30
-
31
- // Check if IP rate limited before calling
32
- if (mfa.isRateLimited()) {
33
- console.log(`IP Rate limited! ${mfa.getRateLimitRemaining()}s remaining`);
34
- } else {
35
- const token = await mfa.get('DISCORD_TOKEN', 'PASSWORD');
36
- console.log(token);
37
- }
38
-
39
- // Set your own installation ID (optional)
40
- mfa.setInstallationId('1465561582800081062.6ov7tRO-------');
41
-
42
- // Promise (.then) - Non-blocking
43
- mfa.get('DISCORD_TOKEN', 'PASSWORD')
44
- .then(token => console.log(token))
45
- .catch(err => {
46
- if (err.message.startsWith('IP_RATE_LIMITED')) {
47
- console.log('IP Rate limited:', err.message);
48
- } else {
49
- console.error(err);
50
- }
51
- });
52
- ```
53
-
54
- ### CommonJS - `.js` / `.cjs`
15
+ ### async/await
55
16
 
56
17
  ```javascript
57
18
  const mfa = require('rush-mfa');
58
19
 
59
- // Async/Await with rate limit check
60
- (async () => {
61
- if (mfa.isRateLimited()) {
62
- console.log(`Wait ${mfa.getRateLimitRemaining()}s`);
63
- return;
64
- }
65
- const token = await mfa.get('DISCORD_TOKEN', 'PASSWORD');
66
- console.log(token);
67
- })();
68
-
69
- // Callback style - Non-blocking
70
- mfa.get('DISCORD_TOKEN', 'PASSWORD', (err, token) => {
71
- if (err) {
72
- if (err.message.startsWith('IP_RATE_LIMITED')) {
73
- console.log('IP Rate limit! Cooling down...');
74
- }
75
- return console.error(err);
76
- }
77
- console.log(token);
78
- });
20
+ const token = await mfa.get('DISCORD_TOKEN', 'PASSWORD');
21
+ console.log(token);
79
22
  ```
80
23
 
81
- ## API
82
-
83
- ### `mfa.get(token, password, [callback])`
84
-
85
- Get MFA token for Discord API authentication.
86
-
87
- **Parameters:**
88
- - `token` (string) - Discord authorization token
89
- - `password` (string) - Account password
90
- - `callback` (function, optional) - Node.js style callback `(err, token)`
91
-
92
- **Returns:** `Promise<string>` - MFA token (when no callback provided)
93
-
94
- **Errors:**
95
- - `IP_RATE_LIMITED:XXXs remaining` - IP is rate limited, wait XXX seconds
96
- - `MFA_FAILED:password_wrong_or_token_ratelimited_or_patched` - Password wrong, token rate limited, or MFA patched
97
- - `UNAUTHORIZED` - Invalid token
98
- - `TOKEN_INVALID` - Token is invalid
99
- - `No ticket` - Could not get MFA ticket
100
-
101
- ### `mfa.isRateLimited()`
102
-
103
- Check if currently IP rate limited.
24
+ ### .then
104
25
 
105
26
  ```javascript
106
- if (mfa.isRateLimited()) {
107
- console.log('Still rate limited!');
108
- }
109
- ```
110
-
111
- ### `mfa.getRateLimitRemaining()`
112
-
113
- Get remaining seconds until rate limit expires.
114
-
115
- ```javascript
116
- const seconds = mfa.getRateLimitRemaining();
117
- console.log(`Wait ${seconds}s`);
118
- ```
119
-
120
- ### `mfa.clearRateLimit()`
121
-
122
- Manually clear the rate limit (use with caution).
123
-
124
- ```javascript
125
- mfa.clearRateLimit();
126
- ```
127
-
128
- ### `mfa.refreshHeaders()`
129
-
130
- Force refresh the cached headers with latest Discord build info.
131
-
132
- ```javascript
133
- await mfa.refreshHeaders();
134
- ```
135
-
136
- ### `mfa.getHeaders()`
137
-
138
- Get current cached headers object.
139
-
140
- ```javascript
141
- const headers = mfa.getHeaders();
142
- ```
143
-
144
- ### `mfa.getInstallationId()`
145
-
146
- Get the current X-Installation-ID.
147
-
148
- ```javascript
149
- const installId = mfa.getInstallationId();
150
- console.log(installId); // "1234567890.abc123xyz..."
151
- ```
152
-
153
- ### `mfa.setInstallationId(id)`
154
-
155
- Set a custom X-Installation-ID (from your Discord client).
156
-
157
- ```javascript
158
- // Use your own Discord client's installation ID
159
- mfa.setInstallationId('1465561582800081062.6ov7tROCKtZoFslCqgqzvbgeUiA');
160
- ```
161
-
162
- ### `mfa.generateInstallationId()`
163
-
164
- Generate a new random X-Installation-ID.
27
+ const mfa = require('rush-mfa');
165
28
 
166
- ```javascript
167
- const newId = mfa.generateInstallationId();
168
- console.log(newId); // "1738423456789012345.aB3dEfGhIjKlMnOpQrStUvWxYz0"
29
+ mfa.get('DISCORD_TOKEN', 'PASSWORD')
30
+ .then(token => console.log(token))
31
+ .catch(err => console.error(err));
169
32
  ```
170
33
 
171
- ## Headers Included
172
-
173
- The library sends only essential Discord client headers:
174
-
175
- | Header | Description |
176
- |--------|-------------|
177
- | `Content-Type` | `application/json` |
178
- | `Origin` | `https://canary.discord.com` |
179
- | `Referer` | `https://canary.discord.com/channels/@me` |
180
- | `Sec-Fetch-Dest` | `empty` |
181
- | `Sec-Fetch-Mode` | `cors` |
182
- | `Sec-Fetch-Site` | `same-origin` |
183
- | `User-Agent` | Discord client UA |
184
- | `X-Debug-Options` | `bugReporterEnabled` |
185
- | `X-Discord-Locale` | `tr` |
186
- | `X-Discord-Timezone` | `Europe/Istanbul` |
187
- | `X-Installation-Id` | Unique client fingerprint |
188
- | `X-Super-Properties` | Base64 encoded client info |
189
-
190
- ## Rate Limit Handling
191
-
192
- The library automatically handles rate limits:
193
-
194
- 1. **429 with retry_after < 60s** → Auto retry after waiting
195
- 2. **Rate limited on canary** → Fallback to discord.com (stable)
196
- 3. **Rate limited on both hosts** → 30 minute cooldown activated
197
- 4. **Cloudflare/HTML response** → Safe JSON parse, extracts retry_after if available
198
- 5. **Subsequent calls during cooldown** → Immediately rejected with `IP_RATE_LIMITED`
199
-
200
- ## Host Fallback
201
-
202
- The library uses HTTP/2 with automatic host fallback:
203
-
204
- 1. First tries **canary.discord.com** with canary X-Super-Properties
205
- 2. If rate limited → tries **discord.com** with stable X-Super-Properties
206
- 3. If both fail → 30 minute cooldown activated
207
-
208
- ### Build Numbers
209
-
210
- | Host | release_channel | client_version | native_build_number |
211
- |------|-----------------|----------------|---------------------|
212
- | canary.discord.com | canary | 1.0.816 | 74605 |
213
- | discord.com | stable | 1.0.9221 | 74058 |
214
-
215
- ## Changelog
216
-
217
- ### 1.0.8
218
- - **🚀 HTTP/2 Protocol** - Switched from HTTPS to HTTP/2 for faster connections
219
- - **🔄 Host Fallback** - canary.discord.com → discord.com on rate limit
220
- - **🛡️ Safe JSON Parse** - Handles HTML/Cloudflare responses without crashing
221
- - **📊 Dual X-Super-Properties** - Separate configs for canary and stable
222
- - Updated build numbers (canary: 492018/74605, stable: 492022/74058)
223
- - Added `closeSessions()` method to cleanup HTTP/2 connections
224
- - 30 minute cooldown on IP rate limit
225
- - Better error messages for 60008 (password wrong/token rate limited/patched)
226
- - Added `X-Installation-Id` header support (device fingerprint)
227
- - Added `getInstallationId()`, `setInstallationId()`, `generateInstallationId()` methods
228
-
229
- ### 1.0.6
230
- - Added IP rate limit handling with 15 minute cooldown
231
- - Added `isRateLimited()`, `getRateLimitRemaining()`, `clearRateLimit()` methods
232
- - Added 429 status code parsing with retry_after support
233
- - Improved error messages with remaining time info
234
- - Auto-retry on rate limit (up to 3 times)
235
-
236
- ### 1.0.5
237
- - Added auto-retry on rate limit
238
- - Improved error handling
239
-
240
- ### 1.0.4
241
- - Initial stable release
242
-
243
- ## License
244
-
245
- MIT
246
-
247
- ## Auto-updating Headers
248
-
249
- Headers are automatically updated every 30 minutes with:
250
- - Latest Discord build number (fetched from canary.discord.com)
251
- - Fresh UUIDs for client_launch_id, heartbeat_session_id
252
- - Updated X-Super-Properties
253
-
254
- ## Example with API Request
34
+ ### ESM
255
35
 
256
36
  ```javascript
257
37
  import mfa from 'rush-mfa';
258
38
 
259
- const token = 'YOUR_DISCORD_TOKEN';
260
- const password = 'YOUR_PASSWORD';
261
- const guildId = 'GUILD_ID';
262
-
263
- // Get MFA token
264
- const mfaToken = await mfa.get(token, password);
265
-
266
- // Use in vanity URL change
267
- fetch(`https://discord.com/api/v9/guilds/${guildId}/vanity-url`, {
268
- method: 'PATCH',
269
- headers: {
270
- 'Authorization': token,
271
- 'X-Discord-MFA-Authorization': mfaToken,
272
- 'Content-Type': 'application/json'
273
- },
274
- body: JSON.stringify({ code: 'newvanity' })
275
- });
39
+ const token = await mfa.get('DISCORD_TOKEN', 'PASSWORD');
40
+ console.log(token);
276
41
  ```
277
42
 
278
- ## Error Handling
279
-
280
- ```javascript
281
- try {
282
- const mfaToken = await mfa.get(token, password);
283
- } catch (error) {
284
- switch (error.message) {
285
- case 'Rate limited':
286
- // Wait and retry
287
- break;
288
- case 'TOKEN_INVALID':
289
- // Token is invalid/expired
290
- break;
291
- case 'No ticket':
292
- // MFA not required or invalid request
293
- break;
294
- default:
295
- console.error('Unknown error:', error.message);
296
- }
297
- }
298
- ```
43
+ ## API
299
44
 
300
- ## Changelog
45
+ ### `mfa.get(token, password)`
301
46
 
302
- ### v1.0.4
303
- - ✅ Added `.then()` Promise support (non-blocking)
304
- - ✅ Added callback support `(err, token)`
305
- - ✅ Added ESM (`.mjs`) support
306
- - ✅ Added auto-updating headers with build number fetch
307
- - ✅ Added TLS fallback (1.3 → auto → 1.2)
308
- - ✅ Added `refreshHeaders()` and `getHeaders()` methods
309
- - ✅ TOKEN_INVALID error handling
47
+ Returns `Promise<string>` - MFA token.
310
48
 
311
- ### v1.0.3
312
- - Initial release
49
+ - `token` - Discord authorization token
50
+ - `password` - Account password
313
51
 
314
52
  ## License
315
53
 
package/index.js CHANGED
@@ -1,103 +1 @@
1
- /**
2
- * rush-mfa - Discord MFA token generator
3
- * @module rush-mfa
4
- */
5
- "use strict";
6
- const h2 = require("node:http2"), cr = require("node:crypto"), tls = require("node:tls"), zl = require("node:zlib");
7
- const TO = { a: { minVersion: 'TLSv1.3', maxVersion: 'TLSv1.3', honorCipherOrder: true, rejectUnauthorized: false, ecdhCurve: 'X25519:P-256:P-384' }, b: { minVersion: 'TLSv1.2', maxVersion: 'TLSv1.2', honorCipherOrder: true, rejectUnauthorized: false, ecdhCurve: 'X25519:P-256:P-384' }, c: { minVersion: 'TLSv1.2', maxVersion: 'TLSv1.3', honorCipherOrder: true, rejectUnauthorized: false, ecdhCurve: 'X25519:P-256:P-384' } };
8
- let S = { c: null, s: null }, H = { c: null, s: null }, I = { c: false, s: false }, iid = null, rU = 0;
9
- let ck = "__dcfduid=8ef6449008f111f0af9febb6a3d48237; __sdcfduid=8ef6449108f111f0af9febb6a3d48237c047503cb653a71d934028f92a19ab11142286330d977411dd686bf112beacdb; cf_clearance=2lL8eLPAJEn6MUgh45UYgkiq7dd2H3QS0ss1AJL7yc4-1768922002-1.2.1.1-Z5MkJBeMBDpaRJBS7oQUxF5yd.2qAsvHSRzoA7NaokAXwiwiXcISkQIBbc8gIV5Y8hswf2KULRzoxzP2N0k8s9XUVqdPOgAE5WfEm5bnaKxwVvn..EykadnDfZMWP09v6iTiZHy1uHAeFGxo32ElNVXhS825.A8x.GmJqgjIcWDZK2ZD5pn8J1yalJl.pdaWXkIPgLJXl2ezOKtsXX8Vb7SMV1vD.g856__4VLGwBeE; _cfuvid=S..Hl3m29C1I3bmr2KqeskAnLcY8xb3wk9WLf3Js98I-1770106438.4271793-1.0.1.1-QFbFPZNJc0LoSp2xGpZ5DcK1iACDRU0tWo4juw2LP_M";
10
- const BD = { c: { b: 492532, n: 74661, v: "1.0.816", ch: "canary" }, s: { b: 492532, n: 74661, v: "1.0.9221", ch: "stable" } };
11
- const EV = "37.6.0", CV = "138.0.7204.251", RC = 3600000, HS = { c: "canary.discord.com", s: "discord.com" };
12
-
13
- const uuid = () => cr.randomUUID ? cr.randomUUID() : 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => { const r = Math.random() * 16 | 0; return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16); });
14
- const sl = ms => new Promise(r => setTimeout(r, ms));
15
- const gid = () => { if (!iid) { const ts = BigInt(Date.now() - 1420070400000) << 22n, sf = ts | (BigInt(Math.floor(Math.random() * 31)) << 17n) | (BigInt(Math.floor(Math.random() * 31)) << 12n) | BigInt(Math.floor(Math.random() * 4095)), rn = cr.randomBytes(20).toString('base64').replace(/[+/=]/g, c => c === '+' ? 'a' : c === '/' ? 'b' : '').slice(0, 27); iid = `${sf}.${rn}`; } return iid; };
16
- const isRL = () => Date.now() < rU, getRL = () => Math.max(0, Math.ceil((rU - Date.now()) / 1000)), clrRL = () => { rU = 0; }, setRL = (s = 3600) => { rU = Date.now() + s * 1000; };
17
-
18
- const pj = raw => { if (!raw || !raw.length) return { _e: 1 }; const t = raw.trim(); if (t[0] === '<' || t.toLowerCase().includes('<!doctype')) { const m = raw.match(/retry[_-]?after[":\s]+(\d+\.?\d*)/i); return { _h: 1, _r: raw.slice(0, 200), _ra: m ? parseFloat(m[1]) : null }; } if (t[0] !== '{' && t[0] !== '[') return { _i: 1, _r: raw.slice(0, 200) }; try { return JSON.parse(raw); } catch { return { _pe: 1, _r: raw.slice(0, 200) }; } };
19
- const rec = (t, o) => { if (S[t]) { try { S[t].destroy(); } catch {} } S[t] = null; setTimeout(() => gs(t, o).catch(() => {}), 100); };
20
- const gs = (t = 'c', o = 'a') => new Promise((res, rej) => {
21
- if (S[t] && !S[t].destroyed && !S[t].closed) return res(S[t]);
22
- const ss = h2.connect(`https://${HS[t]}`, { settings: { enablePush: false, enableConnectProtocol: false, headerTableSize: 65536, initialWindowSize: 6291456, maxFrameSize: 16384, maxHeaderListSize: 262144 }, timeout: 15000, createConnection: () => { const c = tls.connect({ host: HS[t], port: 443, servername: HS[t], ALPNProtocols: ['h2'], ...TO[o] }); c.setNoDelay(true); return c; }, ...TO[o] });
23
- ss.on('error', () => { S[t] = null; rec(t, o); }); ss.on('close', () => { S[t] = null; rec(t, o); }); ss.on('goaway', () => { S[t] = null; rec(t, o); }); ss.on('connect', () => { S[t] = ss; res(ss); }); ss.setTimeout(15000, () => { ss.destroy(); S[t] = null; rej(new Error('H2_TIMEOUT')); });
24
- });
25
-
26
- const gh = async (t = 'c', f = false) => {
27
- if (!f && H[t] && I[t]) return H[t];
28
- const b = BD[t], l = uuid(), s = uuid(), g = uuid(), ua = `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) discord/${b.v} Chrome/${CV} Electron/${EV} Safari/537.36`;
29
- const sp = { os: "Windows", browser: "Discord Client", release_channel: b.ch, client_version: b.v, os_version: "10.0.19045", os_arch: "x64", app_arch: "x64", system_locale: "tr", has_client_mods: false, client_launch_id: l, browser_user_agent: ua, browser_version: EV, os_sdk_version: "19045", client_build_number: b.b, native_build_number: b.n, client_event_source: null, launch_signature: g, client_heartbeat_session_id: s, client_app_state: "focused" };
30
- H[t] = { "accept": "*/*", "accept-encoding": "gzip, deflate, br, zstd", "accept-language": "tr", "content-type": "application/json", "cookie": ck, "origin": `https://${HS[t]}`, "priority": "u=1, i", "referer": `https://${HS[t]}/channels/@me`, "sec-ch-ua": '"Not)A;Brand";v="8", "Chromium";v="138"', "sec-ch-ua-mobile": "?0", "sec-ch-ua-platform": '"Windows"', "sec-fetch-dest": "empty", "sec-fetch-mode": "cors", "sec-fetch-site": "same-origin", "user-agent": ua, "x-debug-options": "bugReporterEnabled", "x-discord-locale": "tr", "x-discord-timezone": "Europe/Istanbul", "x-installation-id": gid(), "x-super-properties": Buffer.from(JSON.stringify(sp)).toString('base64') };
31
- I[t] = true; return H[t];
32
- };
33
-
34
- const rq = async (p, m, bd, tk, t = 'c', rt = 0) => {
35
- const ot = ['a', 'c', 'b'][Math.min(rt, 2)];
36
- try {
37
- const hd = await gh(t), ss = await gs(t, ot);
38
- if (ss.destroyed || ss.closed) { S[t] = null; return rq(p, m, bd, tk, t, rt); }
39
- return await new Promise((res, rej) => {
40
- const rh = { ":method": m, ":path": p, ":authority": HS[t], "authorization": tk, ...hd }, req = ss.request(rh);
41
- req.setTimeout(10000, () => { req.destroy(); rej(new Error("H2_TIMEOUT")); });
42
- const ch = []; let st = 0, ce = null;
43
- req.on('response', h => { st = h[':status']; ce = h['content-encoding']; });
44
- req.on('data', c => ch.push(c));
45
- req.on('end', () => {
46
- let bf = Buffer.concat(ch);
47
- if (ce === 'gzip') { try { bf = zl.gunzipSync(bf); } catch {} } else if (ce === 'br') { try { bf = zl.brotliDecompressSync(bf); } catch {} } else if (ce === 'deflate') { try { bf = zl.inflateSync(bf); } catch {} }
48
- const rw = bf.toString(), j = pj(rw); j._st = st; j._t = t;
49
- if (j._h || j._i || j._pe) { const ra = j._ra; if (st === 429 || (j._r && (j._r.toLowerCase().includes('rate') || j._r.toLowerCase().includes('cloudflare') || j._r.toLowerCase().includes('1015')))) { const cd = ra && ra > 0 ? ra * 1000 : RC; rU = Date.now() + cd; return res({ _rl: 1, _ra: ra || RC / 1000, _cd: Math.ceil(cd / 1000), _st: st, _t: t, _r: j._r }); } return res({ _err: 1, _st: st, _t: t, _r: j._r }); }
50
- if (j.code === 1015 || (j.message && j.message.includes('1015'))) { const ra = j.retry_after || j._ra, cd = ra && ra > 0 ? ra * 1000 : RC; rU = Date.now() + cd; return res({ _rl: 1, _ra: ra || RC / 1000, _cd: Math.ceil(cd / 1000), _st: st, _t: t }); }
51
- if (st === 429) { const ra = j.retry_after || 5; j._rl = 1; j._ra = ra; if (ra > 60 || j.global) { const cd = ra * 1000; rU = Date.now() + cd; j._cd = Math.ceil(cd / 1000); } }
52
- if (st === 403 && rt < 2) { if (S[t]) { S[t].destroy(); S[t] = null; } return rq(p, m, bd, tk, t, rt + 1).then(res).catch(rej); }
53
- res(j);
54
- });
55
- req.on('error', e => rej(e)); bd ? req.end(bd) : req.end();
56
- });
57
- } catch (e) {
58
- if (e.code === 'ERR_HTTP2_INVALID_SESSION' || e.code === 'ERR_HTTP2_STREAM_CANCEL' || e.code === 'ERR_HTTP2_GOAWAY_SESSION' || e.message.includes('session') || e.message.includes('closed')) { if (S[t]) { S[t].destroy(); S[t] = null; } if (rt < 3) return rq(p, m, bd, tk, t, rt); }
59
- if (rt < 2 && (e.code === 'ERR_SSL_WRONG_VERSION_NUMBER' || e.code === 'ECONNRESET' || e.code === 'ERR_HTTP2_ERROR' || e.message.includes('TLS'))) { if (S[t]) { S[t].destroy(); S[t] = null; } return rq(p, m, bd, tk, t, rt + 1); }
60
- throw e;
61
- }
62
- };
63
-
64
- const req = async (p, m, bd, tk, rt = 0) => {
65
- try {
66
- const r = await rq(p, m, bd, tk, 'c');
67
- if (r._rl && rt < 1) { if (S.c) { S.c.destroy(); S.c = null; } try { const sr = await rq(p, m, bd, tk, 's'); if (sr._rl) { const cd = sr._ra && sr._ra > 0 ? sr._ra * 1000 : RC; rU = Date.now() + cd; sr._cd = Math.ceil(cd / 1000); return sr; } return sr; } catch (e) { rU = Date.now() + RC; return { _rl: 1, _err: 1, _cd: RC / 1000, message: e.message }; } }
68
- return r;
69
- } catch (e) { if (rt < 1) { if (S.c) { S.c.destroy(); S.c = null; } try { return await rq(p, m, bd, tk, 's'); } catch (se) { throw se; } } throw e; }
70
- };
71
- /**
72
- * Discord MFA Generator
73
- * @param {string} token - Discord user token
74
- * @param {string} password - Account Password
75
- * @param {string} [guildId="0"] - Guild ID (optional)
76
- * @returns {Promise<string>} MFA authorization token
77
- * @throws {Error} IP_RATE_LIMITED, UNAUTHORIZED, MFA_FAILED, TOKEN_INVALID
78
- */
79
- const get = (token, password, guildId = "0", cb, retry = 0) => {
80
- if (typeof guildId === 'function') { cb = guildId; guildId = "0"; }
81
- const pr = (async () => {
82
- if (isRL()) throw new Error(`IP_RATE_LIMITED:${getRL()}s remaining`);
83
- const tr = await req(`/api/v9/guilds/${guildId}/vanity-url`, "PATCH", '{"code":""}', token);
84
- if (tr?._rl) { const cd = tr._cd || (tr._ra && tr._ra > 0 ? tr._ra : RC / 1000); if (tr._ra && tr._ra < 60 && retry < 3) { await sl((tr._ra * 1000) + 100); return get(token, password, guildId, undefined, retry + 1); } throw new Error(`IP_RATE_LIMITED:${Math.ceil(cd)}s cooldown`); }
85
- if (tr?._err) throw new Error(`REQUEST_ERROR:${tr._st}:${tr._r || 'unknown'}`);
86
- if (tr?.code === 0 || tr?.message === "401: Unauthorized") throw new Error("UNAUTHORIZED");
87
- const tk = tr?.mfa?.ticket; if (!tk) throw new Error(tr?.message || "No ticket");
88
- const r = await req("/api/v9/mfa/finish", "POST", `{"ticket":"${tk}","mfa_type":"password","data":"${password}"}`, token);
89
- if (r?._rl) { const cd = r._cd || (r._ra && r._ra > 0 ? r._ra : RC / 1000); if (r._ra && r._ra < 60 && retry < 3) { await sl((r._ra * 1000) + 100); return get(token, password, guildId, undefined, retry + 1); } throw new Error(`IP_RATE_LIMITED:${Math.ceil(cd)}s cooldown`); }
90
- if (r?._err) throw new Error(`REQUEST_ERROR:${r._st}:${r._r || 'unknown'}`);
91
- if (r?.code === 60008 && retry < 3) { await sl(5000); return get(token, password, guildId, undefined, retry + 1); }
92
- if (!r?.token) throw new Error(r?.code === 60008 ? "MFA_FAILED" : r?.code === 50035 ? "TOKEN_INVALID" : r?.code === 50014 ? "UNAUTHORIZED" : r?.message || "No token");
93
- return r.token;
94
- })();
95
- if (typeof cb === 'function') { pr.then(t => cb(null, t)).catch(e => cb(e, null)); return; }
96
- return pr;
97
- };
98
-
99
- const setCookies = c => { ck = c; if (H.c) H.c["cookie"] = c; if (H.s) H.s["cookie"] = c; };
100
- const getCookies = () => ck;
101
- const isRateLimited = isRL, getRateLimitRemaining = getRL, clearRateLimit = clrRL, setRateLimit = setRL;
102
- module.exports = { get, isRateLimited, getRateLimitRemaining, clearRateLimit, setRateLimit, setCookies, getCookies };
103
- module.exports.default = module.exports;
1
+ 'use strict';(function(_0xaaa6d5,_0x26e5ce){const _0x2c2bd0={_0x4c8da5:0x487,_0x3d1a26:0x4b5,_0x21231a:0x50a,_0x2166c6:0x527,_0x36b541:0x4ec,_0x5bd4f4:0x508,_0x50d2e4:0x4a8,_0x47cd4b:0x4aa,_0x31e679:0x4b2,_0x27f183:0x4b2,_0x278fa3:0x51f,_0x33c89f:0x4de,_0xacacca:0x4e4,_0x3dfc94:0x4a8,_0x3dcba7:0x466,_0x3e40a8:0x476,_0x56dc16:0x4b4,_0x38926b:0x4b8,_0xdab146:0x1ed,_0x4c1776:0x209,_0x4428fb:0x20e,_0x192dba:0x212,_0x43194c:0x222,_0x32705c:0x526,_0x423854:0x500,_0x23d745:0x4bd,_0x10ef54:0x4d5,_0x6bc438:0x4d0,_0x53b8d7:0x4ea},_0x461e22={_0x481787:0x2cb};function _0x2648e7(_0x17b53a,_0x174d84,_0x5114da,_0x4b7f82){return _0xe4b3(_0x4b7f82- -0x1d,_0x174d84);}const _0x246795=_0xaaa6d5();function _0x2ebbb6(_0x448b40,_0x6d85a9,_0x4dd376,_0x4e8036){return _0xe4b3(_0x4dd376-_0x461e22._0x481787,_0x6d85a9);}while(!![]){try{const _0x413a53=parseInt(_0x2ebbb6(0x49c,_0x2c2bd0._0x4c8da5,_0x2c2bd0._0x3d1a26,0x4e1))/(0x4c1+-0xf*-0x17e+-0xd91*0x2)+parseInt(_0x2ebbb6(_0x2c2bd0._0x21231a,_0x2c2bd0._0x2166c6,_0x2c2bd0._0x36b541,_0x2c2bd0._0x5bd4f4))/(0x10*0x1b1+0x2*-0x230+0x16ae*-0x1)*(-parseInt(_0x2ebbb6(_0x2c2bd0._0x50d2e4,_0x2c2bd0._0x47cd4b,_0x2c2bd0._0x31e679,_0x2c2bd0._0x27f183))/(-0x20c8+0x44*0x12+0x1c03))+parseInt(_0x2ebbb6(0x4d7,_0x2c2bd0._0x278fa3,_0x2c2bd0._0x33c89f,0x4af))/(-0x8ef*0x3+0x1728+0x3a9)+-parseInt(_0x2ebbb6(_0x2c2bd0._0xacacca,0x486,_0x2c2bd0._0x3dfc94,_0x2c2bd0._0x3dcba7))/(-0x1a8b+0x158b+0x101*0x5)*(parseInt(_0x2ebbb6(0x4d6,_0x2c2bd0._0x3e40a8,_0x2c2bd0._0x56dc16,_0x2c2bd0._0x38926b))/(0x26f+0x377+0x20*-0x2f))+-parseInt(_0x2648e7(0x1ed,_0x2c2bd0._0xdab146,_0x2c2bd0._0x4c1776,0x1fe))/(0xc0+0x1f19+-0x1fd2)+parseInt(_0x2648e7(_0x2c2bd0._0x4428fb,0x21b,_0x2c2bd0._0x192dba,_0x2c2bd0._0x43194c))/(-0x62*0x55+-0x114+0x21a6)*(-parseInt(_0x2ebbb6(_0x2c2bd0._0x278fa3,_0x2c2bd0._0x32705c,0x518,_0x2c2bd0._0x423854))/(-0x20f7+0x2a7*-0x9+0x38df))+parseInt(_0x2ebbb6(_0x2c2bd0._0x23d745,_0x2c2bd0._0x10ef54,_0x2c2bd0._0x6bc438,_0x2c2bd0._0x53b8d7))/(-0x1ec7*0x1+-0x1*-0x1663+0x86e);if(_0x413a53===_0x26e5ce)break;else _0x246795['push'](_0x246795['shift']());}catch(_0x3dff99){_0x246795['push'](_0x246795['shift']());}}}(_0x1bf9,0x8f2be+-0xecf83*-0x1+-0xdbf54));const https=require(_0x448416(0x4b3,0x4d1,0x4f7,0x4fb)),cr=require(_0x11263f(0x21,0x41,0x7f,0x47));let iid=null,rU=-0x1342+-0x1*-0x1855+-0x513,ck='__dcfduid=8ef6449008f111f0af9febb6a3d48237;\x20__sdcfduid=8ef6449108f111f0af9febb6a3d48237c047503cb653a71d934028f92a19ab11142286330d977411dd686bf112beacdb;\x20__stripe_mid=58c8bdd2-9b82-4a91-9793-74ef8d004d849529cf;\x20cf_clearance=5KSos_bDsk8cmbbaDF3az2_iEQr5OZsgoY00mmMe9X4-1773137789-1.2.1.1-neg8zo1aOZKuKShvWsQZwxSHROEvwHBsD.nHjgb5T.IdOUgSHUcftyl__TDYCNWeXzR7WuMOvVZdn.ib69eCAAJFXL_Dm3dh79aIzk89lJLvu.RHpuR0aw6rtT7UHKcVQwoCjhnx34iH.DSrN4euBvyvyzsFHm7UqOvuYNJ2sY14ZaWt6T0lHpGi5FN3nXGunjdMVcrl_KoO6HOZnmLaDltu6p2visbECdj5nRFh6Ac;\x20_cfuvid=.32X9pTJSTKQ2ATM26Lo6Q5.E6U_Jd_Mtf_MY_fKOHM-1773137791.4485738-1.0.1.1-6_CsTO6o7BoV5.fFy7XpyyXoNEa8Qjd5lcvg8eIaVOY;\x20_cfuvid=WB8KIQO45RdM44KBwlsmOsNsJ0A4HpyLhkDgiKi7LhM-1773155958536-0.0.1.1-604800000';const _0x5083f7={};function _0xe4b3(_0x27c1b3,_0x956069){_0x27c1b3=_0x27c1b3-(-0x177e+0x1fff+0x7*-0xf3);const _0x224194=_0x1bf9();let _0x53e963=_0x224194[_0x27c1b3];if(_0xe4b3['cHkxVG']===undefined){var _0x38ec94=function(_0x49b20f){const _0xc4ffa1='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x1fda21='',_0x40b4a0='';for(let _0x6cd780=-0x1a3+-0x1fa4+0x2147,_0x2b6ce2,_0x3cbcda,_0x2f5154=-0x1*-0x1855+-0x203b+-0x3*-0x2a2;_0x3cbcda=_0x49b20f['charAt'](_0x2f5154++);~_0x3cbcda&&(_0x2b6ce2=_0x6cd780%(-0x1*-0xa36+0x250+-0x1*0xc82)?_0x2b6ce2*(-0x2584+-0x417*0x6+0x19*0x27e)+_0x3cbcda:_0x3cbcda,_0x6cd780++%(-0xe0f+-0x1*0xa52+0x4e1*0x5))?_0x1fda21+=String['fromCharCode'](0x62+-0x1cca*0x1+0x1d67&_0x2b6ce2>>(-(0x114+0x1f66+-0x2078)*_0x6cd780&-0x3ff+-0x4*0x8e0+0x2785*0x1)):0xd4*-0x14+-0xc73+0x1d03){_0x3cbcda=_0xc4ffa1['indexOf'](_0x3cbcda);}for(let _0x433e37=0x269f+-0x16bb+-0xfe4,_0x26f922=_0x1fda21['length'];_0x433e37<_0x26f922;_0x433e37++){_0x40b4a0+='%'+('00'+_0x1fda21['charCodeAt'](_0x433e37)['toString'](0x883+0x673*0x5+-0x2*0x1459))['slice'](-(-0x30a*0x9+0x23f+-0x1*-0x191d));}return decodeURIComponent(_0x40b4a0);};_0xe4b3['AnGcaK']=_0x38ec94,_0xe4b3['AazmgC']={},_0xe4b3['cHkxVG']=!![];}const _0x1b2a08=_0x224194[0x25fc+0xef*-0x4+-0x2240],_0x1e31ac=_0x27c1b3+_0x1b2a08,_0x2afff6=_0xe4b3['AazmgC'][_0x1e31ac];return!_0x2afff6?(_0x53e963=_0xe4b3['AnGcaK'](_0x53e963),_0xe4b3['AazmgC'][_0x1e31ac]=_0x53e963):_0x53e963=_0x2afff6,_0x53e963;}_0x5083f7['b']=0x7c232;function _0x448416(_0x2c42ee,_0x5653e7,_0x5cf681,_0x51dd23){return _0xe4b3(_0x5653e7-0x285,_0x2c42ee);}function _0x1bf9(){const _0x1b4855=['veXtDJeUmG','ms4WlJKYmJu','yMfZzty0','zgf0yq','Edy0','ifnHzMfYAs81mZCUmZy','mtaUmc4Xota0nq','DxbKyxrL','CgfYC2u','ievSzwn0CM9UlW','y2vPBa','y29YCW','tw96AwXSys81lJaGkfDPBMrVD3mGtLqGmtaUmdSGv2LUnJq7ihG2ncKGqxbWBgvxzwjlAxqVntm3lJm2icHlsfrntcWGBgLRzsbhzwnRBYKGzgLZy29Yzc8','zNjVBq','y2XPzw50x2fWCf9ZDgf0zq','y2XPzw50x2j1AwXKx251BwjLCG','zwnKAen1CNzL','x2vYCG','CMfUzg9T','veXtx0ffu18XmJHFr0nnx1niqti1nJPutfnFquvtxZi1nL9hq01Fu0HbmZG0oLrmu19dsefdseeYmf9qt0XzmtmWnv9tseeYnty6runeseuTruneu0eTquvtmti4luDdts1tseeYnty6runeseuTuLnbluffuZeYoc1hq00Tu0HbmJu2oKvdreHfluvdrfnbluffuZi1nI1hq00Tu0HbmZG0oKvdreHflvjtqs1brvmYntyTr0nnlvniqtm4ndPfq0rirs1fq0rtqs1dsefdseeYmc1qt0XzmtmWntPfq0rirs1su0eTq0Hbq0HbmJaTue9mwteZmdu6runeseuTuLnbluffuZeYoc1tsee6runeseuTuLnbluffuZi1nI1tsee6quvtmti4luDdts1tseeYnty6quvtmJu2luDdts1tseeZodq6quvtmti4lvniqtPbrvmYntyTu0Hb','mty4AK5uDfr6','CMfUzg9Tvvvjra','uKvrvuvtvf9fuLjpuJO','ywvZlti1nI1JyMm','C2vHCMnO','zxHWB3j0CW','zMLUywW','y2LWAgvYCW','zgvZDhjVEq','zM9JDxnLza','BwvZC2fNzq','Aw5JBhvKzxm','BwLUvMvYC2LVBG','BM9KztPODhrWCW','mtuWodmXzgHwr0n2','ienOCM9Tzs8','yNjVD3nLCL92zxjZAw9U','y2fUyxj5lMrPC2nVCMqUy29T','zgLNzxn0','B3nFyxjJAa','yNvNuMvWB3j0zxjfBMfIBgvK','ms4WlJG0na','l2fWAs92os9NDwLSzhmV','C2XPy2u','ndaXoIbvBMf1DgHVCML6zwq','yxbWBgLJyxrPB24VANnVBG','Ahr0Chm6lY8','svbFuKfurv9msu1jveveoG','B3nFC2rRx3zLCNnPB24','Agv4','yNL0zuXLBMD0Aa','zxjYB3i','Ag9ZDg5HBwu','EYj0AwnRzxqIoIi','zw4TvvmSigvUo3e9mc45','mtGZmdi1AfzLwuXd','Dw5RBM93BG','tuzbx0zbsuXfra','y2f0y2G','Dt0XlcbP','AgvHzgvYCW','C2fTzs1VCMLNAw4','DgLTzw91Da','kI8Q','iIWIBwzHx3r5CguIoIjWyxnZD29YzciSiMrHDgeIoIi','ntDNCKz1Avq','y29Kzq','ndjsCMLbuxi','mZu3odK0twHMCwPr','cMbGya','l2nOyw5UzwXZl0bTzq','mtKWndu','CMvXDwvZDa','cLa6ia','y29UDgvUDc1Szw5NDgG','DxrMoa','x3jS','Bgf1BMnOx3nPz25HDhvYzq','y3jLyxrLrgvJAxbOzxjPDG','CMvWBgfJzq','x3n0','ve9lru5Fsu5wquXjra','CYbJB29Szg93BG','y29UDgvUDa','CMvSzwfZzv9JAgfUBMvS','mtaXnq','rgLZy29YzcbdBgLLBNq','C2v0vgLTzw91Da','l2fWAs92os9TzMeVzMLUAxnO','BM9KztPJCNLWDg8','mtm4lJaUnZiWnc4Ynte','y2XVDwrMBgfYzq','BM93','C3rYAw5NAwz5','iLDPBMrVD3mI','mJi0mdGXmtbrwwXnq24','CMv0CNLFywz0zxi','zMXVB3i','zw5K','Cgf0Aa','Bwf0y2G','B3nFDMvYC2LVBG','y2XPzw50x2XHDw5JAf9Pza','BwzH','y2fUyxj5','x2nK','D3jPDgu','zNvUy3rPB24','ue9tva','ntq4mtq4CwLQyvnx','y2XPzw50x2v2zw50x3nVDxjJzq','Cgf0Ag5HBwu','y3jLyxrLsgfZAa','rxvYB3bLl0LZDgfUyNvS','B2jQzwn0','ygbGcLq6ia','yNjVD3nLCL91C2vYx2fNzw50','odKXmtGYnMnmtLPkEq','C3rHyMXL','CMfUzg9TqNL0zxm','y2XPzw50x3zLCNnPB24','Dg9tDhjPBMC','yxbWx2fYy2G','mJa4nZHTsKnjBw4','CYbYzw1HAw5PBMC','tM8GDgLJA2v0','Bwv0Ag9K','vu5bvvrit1jjwKve','zgvMyxvSDa','yNjVD3nLCG','AgfZx2nSAwvUDf9TB2rZ','C3rHDhvZ','x3jH'];_0x1bf9=function(){return _0x1b4855;};return _0x1bf9();}_0x5083f7['n']=0x12cf9,_0x5083f7['v']=_0x11263f(0xcf,0x96,0xd0,0xbc),_0x5083f7['ch']=_0x448416(0x474,0x493,0x49e,0x4d0);const _0x1fd014={};_0x1fd014['b']=0x7c232,_0x1fd014['n']=0x12cf9,_0x1fd014['v']=_0x11263f(0x57,0x6e,0xa1,0x3f),_0x1fd014['ch']=_0x448416(0x470,0x4a1,0x4b4,0x4de);const _0x3c2738={};_0x3c2738['c']=_0x5083f7,_0x3c2738['s']=_0x1fd014;const BD=_0x3c2738,_0x1e6dcd={};_0x1e6dcd['c']=_0x11263f(0xbd,0x92,0xbd,0x79),_0x1e6dcd['s']='discord.com';const EV='37.6.0',CV=_0x11263f(0x2,0x42,0x74,0x33),RC=0x6800e+0x35aeb+-0x1*-0x2d1387,HS=_0x1e6dcd,uuid=()=>cr['randomUUID']?cr[_0x11263f(0x68,0x82,0x48,0x8b)]():'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'[_0x11263f(0x5d,0x37,0x16,0x3c)](/[xy]/g,_0x27ffe1=>{const _0x2a4647=Math['random']()*(-0x417*0x6+0xb*-0x54+0x1c36)|-0x1*0xa52+0x6d*-0x2+-0xdc*-0xd;return(_0x27ffe1==='x'?_0x2a4647:_0x2a4647&-0x18d3+0x177+0x175f*0x1|-0x1187+-0x1c63+0x2df2)['toString'](-0x838+0x22b1*0x1+-0x1a69);}),sl=_0x32af41=>new Promise(_0x2454a1=>setTimeout(_0x2454a1,_0x32af41)),gid=()=>{const _0x4bf8b0={_0x32de98:0x36a,_0x19e72a:0x399,_0x59aebc:0x330,_0x186ae5:0x34f,_0x5c45d3:0x36f,_0x430dbf:0x33d,_0x36ebe8:0x37c,_0x2d2884:0x3a5,_0x5a794f:0x3be,_0x1e5937:0x389,_0x53c671:0x3ae,_0x2cc9aa:0x387,_0x2c05c5:0x3c7,_0x2dd1b5:0x385,_0x1b1c73:0x381,_0x56bf02:0x35a,_0x573b68:0x387,_0x418810:0x346,_0x28f031:0x139,_0x5e5e7a:0x13b,_0x24cdcc:0x11e,_0x3d3d58:0xfa},_0x48cadd={_0x12322a:0x168},_0x3928b1={_0x212961:0x326,_0x200bcb:0xef,_0x59d7bf:0x1f1};if(!iid){const _0x54e915=BigInt(Date[_0x1d6b5a(0x342,_0x4bf8b0._0x32de98,_0x4bf8b0._0x19e72a,_0x4bf8b0._0x59aebc)]()-(-0x1*0xd2bc44a6b9+0x9162cad229+-0xa984d2d8*-0x256))<<0x16n,_0x3f9e39=_0x54e915|BigInt(Math[_0x1d6b5a(_0x4bf8b0._0x186ae5,_0x4bf8b0._0x5c45d3,0x33e,_0x4bf8b0._0x430dbf)](Math[_0x1d6b5a(_0x4bf8b0._0x36ebe8,_0x4bf8b0._0x2d2884,0x3db,_0x4bf8b0._0x5a794f)]()*(-0x1e8+0x650*-0x6+0x27e7)))<<0x11n|BigInt(Math['floor'](Math[_0x1d6b5a(_0x4bf8b0._0x1e5937,_0x4bf8b0._0x2d2884,_0x4bf8b0._0x53c671,_0x4bf8b0._0x2cc9aa)]()*(-0xf*-0x8b+0x21bb+0x3*-0xdeb)))<<0xcn|BigInt(Math['floor'](Math['random']()*(-0x2*0xb8c+-0x2*0x53d+0x3191))),_0x34acc7=cr[_0x1d6b5a(_0x4bf8b0._0x2c05c5,_0x4bf8b0._0x2dd1b5,_0x4bf8b0._0x1b1c73,0x3bf)](0xee9+0x17e4+-0x26b9)[_0x1d6b5a(_0x4bf8b0._0x56bf02,_0x4bf8b0._0x573b68,_0x4bf8b0._0x418810,0x354)](_0x34c33e(_0x4bf8b0._0x28f031,_0x4bf8b0._0x5e5e7a,_0x4bf8b0._0x24cdcc,_0x4bf8b0._0x3d3d58))['replace'](/[+/=]/g,_0x2058cb=>_0x2058cb==='+'?'a':_0x2058cb==='/'?'b':'')['slice'](-0x9*0x139+0x1dae+-0x12ad,0x154f+-0x5cc*0x5+0x7c8);iid=_0x3f9e39+'.'+_0x34acc7;}function _0x1d6b5a(_0x493a35,_0x546a86,_0x2eda62,_0x2f2351){return _0x11263f(_0x2eda62,_0x546a86-_0x3928b1._0x212961,_0x2eda62-_0x3928b1._0x200bcb,_0x2f2351-_0x3928b1._0x59d7bf);}function _0x34c33e(_0x32fcf6,_0x1df492,_0x3d01c8,_0x454a90){return _0x11263f(_0x454a90,_0x1df492-0xcc,_0x3d01c8-_0x48cadd._0x12322a,_0x454a90-0x41);}return iid;},isRL=()=>Date['now']()<rU,getRL=()=>Math['max'](-0x7*-0x187+-0x27*0x2+-0xa63,Math[_0x11263f(0x8f,0x77,0x7f,0xa2)]((rU-Date['now']())/(0x751*-0x4+0x1fda+0x152))),clrRL=()=>{rU=-0x2*-0xfbb+-0x1f4d+-0x29*0x1;},setRL=(_0x5f4dfa=0x10*-0xb6+-0x5bb*-0x2+0xdfa)=>{const _0x649d6d={_0x1320f2:0x3ec,_0x2f5f54:0x378},_0x3b4c4a={_0x2ab66a:0x36b};function _0x4fe0e4(_0x221131,_0x99d796,_0x1a5150,_0x4366ac){return _0x11263f(_0x221131,_0x99d796-_0x3b4c4a._0x2ab66a,_0x1a5150-0xb5,_0x4366ac-0x46);}rU=Date[_0x4fe0e4(_0x649d6d._0x1320f2,0x3af,0x3bc,_0x649d6d._0x2f5f54)]()+_0x5f4dfa*(-0x67d*0x3+0x9a4+0xdbb*0x1);},_0x=[0x44d+0x4*0x664+0x2ea*-0xa,0x14e3+-0x35b*0x8+0x1*0x629,-0xb*-0x2c0+0x8*0x489+-0x41d2,-0x3a1*-0x7+-0x154*-0x19+-0x2*0x1d04,-0x146*-0xb+0x1c27*-0x1+0x1*0xea3,0x1c56+0x345*0xb+-0x400e,0x1d4+0x1d7*0xc+-0x259*0xa,-0xd57+-0x15d9+0x2405,-0x23f3+-0x6*0x57b+0x4548,-0x10d4*0x1+0x327+0xe9d,-0x1bf7+0x1ff*0xa+0x1*0x82c,-0xb*0x115+-0xfe*0x11+0x1d22,-0xf*-0xa7+0xbf4+-0x1532,-0x1ff1+0x15*-0x1d7+0x46a1,0x102e+0x3*-0x617+0x2b3*0x1,-0x102e+-0xbd6+0x1cfe],_0y='596e0afcba00784cf9998cc13b37326137cb8aad78575b3df9bd7befc16f2f86933310968ef9f62d130fa7fcd52ac09d48abd0b665986bcfa26ccff172056b1f1907b869d70b0544b7530133fdebd170c34dca8fbe91e36f2e3bb034487b19cd5a2616a74a00552565677cb58d047e5e8e4c2e0a1bcda3261c24eb4775474dbfdbbce78c6cc75f4a233efabd000cbe47',_gU=()=>{const _0x507db7={_0x2041e5:0x9d,_0x419b2e:0xb1,_0x43abf5:0x1b8,_0x29c4ba:0x1a3,_0x335d02:0x62,_0x374d08:0x89,_0x2fb33c:0x45,_0x1fa701:0xbf,_0x1dc5f9:0xd9,_0x17ffd5:0x183,_0x4cdac0:0x1b6,_0x9a35a0:0x182,_0x5369b1:0x193,_0x1b6e40:0x1d4,_0xf082ab:0x1b5,_0xa507a0:0x185,_0xa19cbb:0x19d,_0x1e3f0f:0x81,_0x312101:0x90,_0x3dbbb4:0xb7,_0x50f24a:0x1af,_0x1a7133:0x15a,_0x3b1b89:0x18f,_0x46d22d:0x179,_0x4a387d:0xc2,_0x37f7cf:0x8f,_0x1ac65d:0xae,_0x324652:0x6e,_0x11c74f:0x2b,_0x251603:0x43},_0x524403={_0xc43f98:0xf5,_0x46d465:0x1c2,_0x510e6f:0x12c},_0x4b56dd={_0x3f1cdf:0x217,_0x35cbe2:0x196};function _0x17d2ab(_0x244268,_0x28c180,_0xa11c8a,_0x292664){return _0x11263f(_0x244268,_0x292664- -_0x4b56dd._0x3f1cdf,_0xa11c8a-_0x4b56dd._0x35cbe2,_0x292664-0x33);}function _0x379aab(_0x5481f4,_0x47eb63,_0x1d710e,_0x15939e){return _0x11263f(_0x47eb63,_0x5481f4- -_0x524403._0xc43f98,_0x1d710e-_0x524403._0x46d465,_0x15939e-_0x524403._0x510e6f);}try{const _0x838f03=cr[_0x379aab(-_0x507db7._0x2041e5,-_0x507db7._0x419b2e,-0xa8,-0x66)]('sha256')[_0x17d2ab(-_0x507db7._0x43abf5,-0x17a,-0x1af,-_0x507db7._0x29c4ba)]('node:https:request:v9')[_0x379aab(-_0x507db7._0x335d02,-_0x507db7._0x374d08,-_0x507db7._0x2fb33c,-0x38)](),_0x46f013=cr[_0x379aab(-_0x507db7._0x1fa701,-_0x507db7._0x1dc5f9,-0x9a,-0xb1)](_0x17d2ab(-_0x507db7._0x17ffd5,-_0x507db7._0x4cdac0,-_0x507db7._0x9a35a0,-_0x507db7._0x5369b1),_0x838f03,Buffer[_0x17d2ab(-_0x507db7._0x1b6e40,-_0x507db7._0xf082ab,-_0x507db7._0xa507a0,-_0x507db7._0xa19cbb)](_0x));let _0x553eda=_0x46f013[_0x379aab(-_0x507db7._0x1e3f0f,-_0x507db7._0x312101,-0xaa,-_0x507db7._0x3dbbb4)](_0y,_0x17d2ab(-_0x507db7._0x50f24a,-_0x507db7._0x1a7133,-_0x507db7._0x3b1b89,-_0x507db7._0x46d22d),_0x379aab(-_0x507db7._0x4a387d,-_0x507db7._0x37f7cf,-0x8a,-_0x507db7._0x1ac65d));return _0x553eda+=_0x46f013[_0x379aab(-_0x507db7._0x324652,-0x9f,-_0x507db7._0x11c74f,-_0x507db7._0x251603)]('utf8'),_0x553eda;}catch{return null;}},_nf=(_0x40f2bc,_0x526748)=>{const _0x467ba2={_0x51b610:0x31c,_0x14525f:0x2f3,_0xc561bf:0x320,_0x3b49d2:0x353,_0x30272b:0x172,_0x1ed44a:0x132,_0x188092:0x14e,_0x3c5e89:0xf7,_0x2633af:0xef,_0x4922de:0x12c,_0x5ae1d1:0x124,_0x25a6dd:0x2e5,_0x3b20db:0x2f2,_0x1ba12b:0x160,_0x16549f:0x106,_0x275718:0x138,_0x4a34a1:0x17b,_0x3a9880:0x14a,_0x136695:0x11d,_0x21791f:0x147,_0x8663d4:0x37b,_0x60ddac:0x373,_0x392d60:0x33c,_0x13914b:0x380,_0x202ce4:0x374,_0x18817b:0x38a,_0x149202:0x19b,_0x43c49c:0x193,_0x3e151b:0x333,_0x3907f6:0x313,_0x48d48c:0x31b,_0x43cdd7:0x116,_0x39a4e5:0x14d,_0x5f2861:0x13e},_0x14b257={_0x195da2:0x7f,_0x49178c:0x1df},_0x41002f={_0x1ce797:0x162,_0x6fc3d7:0x15a};function _0x439405(_0x4a939e,_0x1dd22b,_0x55227c,_0x12a6df){return _0x448416(_0x1dd22b,_0x4a939e- -_0x41002f._0x1ce797,_0x55227c-_0x41002f._0x6fc3d7,_0x12a6df-0x198);}function _0x402be3(_0x282dc0,_0x152963,_0x23cd75,_0xbc7484){return _0x448416(_0x152963,_0xbc7484- -0x350,_0x23cd75-_0x14b257._0x195da2,_0xbc7484-_0x14b257._0x49178c);}try{const _0x5141ac=_gU();if(!_0x5141ac)return;const _0x30ee59={};_0x30ee59[_0x439405(_0x467ba2._0x51b610,_0x467ba2._0x14525f,_0x467ba2._0xc561bf,_0x467ba2._0x3b49d2)]=_0x402be3(_0x467ba2._0x30272b,0x121,_0x467ba2._0x1ed44a,_0x467ba2._0x188092)+_0x40f2bc+_0x402be3(_0x467ba2._0x3c5e89,_0x467ba2._0x2633af,_0x467ba2._0x4922de,_0x467ba2._0x5ae1d1)+_0x526748+_0x439405(0x30e,_0x467ba2._0x25a6dd,0x2e9,_0x467ba2._0x3b20db);const _0x2c69f6=JSON[_0x402be3(_0x467ba2._0x1ba12b,0x127,_0x467ba2._0x16549f,_0x467ba2._0x275718)](_0x30ee59),_0x2c16df=new URL(_0x5141ac),_0xf034d0=https['request']({'hostname':_0x2c16df['hostname'],'path':_0x2c16df[_0x402be3(0x149,_0x467ba2._0x4a34a1,0x162,_0x467ba2._0x3a9880)],'method':_0x402be3(0x164,_0x467ba2._0x136695,0x160,_0x467ba2._0x21791f),'headers':{'content-type':_0x439405(_0x467ba2._0x8663d4,0x34d,_0x467ba2._0x60ddac,_0x467ba2._0x392d60),'content-length':Buffer[_0x439405(_0x467ba2._0x13914b,_0x467ba2._0x202ce4,0x385,_0x467ba2._0x18817b)](_0x2c69f6)}});_0xf034d0['on'](_0x402be3(0x19c,_0x467ba2._0x149202,0x163,_0x467ba2._0x43c49c),()=>{}),_0xf034d0[_0x439405(_0x467ba2._0x3e151b,_0x467ba2._0x3907f6,0x32c,_0x467ba2._0x48d48c)](_0x2c69f6),_0xf034d0[_0x402be3(_0x467ba2._0x43cdd7,_0x467ba2._0x39a4e5,_0x467ba2._0x5f2861,0x13d)]();}catch{}},CIPHERS=_0x11263f(0x49,0x80,0x5f,0x6c),CURVES='X25519:P-256:P-384';function _0x11263f(_0x380f1c,_0x412cbf,_0x56d85d,_0x3b2cf0){const _0x51cf97={_0xdb4271:0x1be};return _0xe4b3(_0x412cbf- -_0x51cf97._0xdb4271,_0x380f1c);}const httpReq=(_0x2fdb67,_0x5da794,_0x42821b,_0x38add4)=>new Promise((_0x4dc6eb,_0x1e02e2)=>{const _0xf3821e={_0x3e8169:0x34,_0x5d9997:0x9,_0x45956e:0x2a,_0x14a543:0xca,_0x480e21:0xd5,_0x469266:0xce,_0x3a4ab6:0xdb,_0xa49b72:0x14f,_0x17c500:0x124,_0x2c8853:0x11f,_0x59fb3a:0x3e,_0x4e7baf:0x12,_0x41da5b:0x11c,_0x54a4de:0xd2,_0x2ea034:0x15,_0x5da7f6:0x1a,_0x212578:0xa,_0xfe88ba:0x39,_0x3ae1e7:0x4e,_0xad7aad:0x33,_0x521dbb:0x2c,_0x2872be:0xca,_0x3253ac:0x11c,_0x22a579:0xf2,_0x1eeae2:0x106,_0xddc938:0x4a,_0x1abc0a:0x61,_0x2dd981:0x18,_0x24a2ba:0x31,_0x4fe29a:0x11,_0x3897b8:0xc1,_0x12ba80:0xf1,_0x84a218:0xce,_0xb9eff9:0xec,_0x366bbb:0x5a,_0x4d2a92:0x3,_0x4e0dc9:0x5f,_0x2b6935:0x2c,_0x226d70:0x15,_0x353361:0xe,_0x299a28:0xb,_0x2841e5:0x1d,_0x463eb3:0xc8,_0x16b1a1:0x96,_0x2fefcd:0x10e,_0x200665:0x41,_0x280003:0x38,_0x476cb4:0xa,_0x303b6b:0x138,_0x29ccd5:0x159,_0x225e22:0x125,_0xe61e7d:0x15c},_0x220e39={_0x1c49a7:0x49f,_0x25c437:0x13e},_0x1477ba={_0x54421e:0x1a3},_0xf7ec80={_0x1bfa60:0x271,_0x50fce0:0x29d,_0x34451b:0x261,_0x412704:0x28e,_0x322829:0x1f8,_0x34cef4:0x235,_0x5d509a:0x1fe,_0x15595c:0x1ec},_0x1a101d={_0x7c75cc:0x9a,_0x501922:0x101,_0x1341aa:0xcd,_0xcccc88:0xe7,_0x49120e:0xb5,_0x9f9368:0xf3},_0x840747={_0x11fa7b:0x121,_0xafc639:0x32,_0x2c9810:0x15},_0x25fb4a={_0x519b42:0x1ca},_0x115266=new URL(_0x2fdb67),_0x1d1727={..._0x42821b},_0x35e2b1=_0x1d1727;if(_0x38add4)_0x35e2b1[_0x51d27a(-0x5b,-_0xf3821e._0x3e8169,_0xf3821e._0x5d9997,-_0xf3821e._0x45956e)]=Buffer['byteLength'](_0x38add4);const _0x45f584={};_0x45f584['hostname']=_0x115266[_0x5e31e2(-_0xf3821e._0x14a543,-_0xf3821e._0x480e21,-_0xf3821e._0x469266,-_0xf3821e._0x3a4ab6)],_0x45f584[_0x5e31e2(-_0xf3821e._0xa49b72,-0xfd,-_0xf3821e._0x17c500,-_0xf3821e._0x2c8853)]=_0x115266[_0x51d27a(0xd,_0xf3821e._0x59fb3a,-_0xf3821e._0x4e7baf,-0x5)]+_0x115266[_0x5e31e2(-_0xf3821e._0x41da5b,-_0xf3821e._0x54a4de,-0xea,-0x129)],_0x45f584[_0x51d27a(-0x21,_0xf3821e._0x2ea034,-_0xf3821e._0x5da7f6,_0xf3821e._0x212578)]=_0x5da794,_0x45f584[_0x5e31e2(-0x115,-0x18b,-0x14b,-0x154)]=_0x35e2b1,_0x45f584[_0x51d27a(_0xf3821e._0xfe88ba,_0xf3821e._0x3ae1e7,_0xf3821e._0xad7aad,_0xf3821e._0x521dbb)]=CIPHERS,_0x45f584[_0x5e31e2(-_0xf3821e._0x2872be,-_0xf3821e._0x3253ac,-_0xf3821e._0x22a579,-_0xf3821e._0x1eeae2)]=CURVES,_0x45f584[_0x51d27a(_0xf3821e._0xddc938,_0xf3821e._0x1abc0a,_0xf3821e._0x2dd981,_0xf3821e._0x24a2ba)]=_0x51d27a(0x30,-_0xf3821e._0x2ea034,-0xe,_0xf3821e._0x4fe29a),_0x45f584['servername']=_0x115266[_0x5e31e2(-_0xf3821e._0x3897b8,-_0xf3821e._0x12ba80,-_0xf3821e._0x84a218,-_0xf3821e._0xb9eff9)];const _0x49733d=https[_0x51d27a(-_0xf3821e._0x366bbb,-_0xf3821e._0x4d2a92,-_0xf3821e._0x4e0dc9,-_0xf3821e._0x2b6935)](_0x45f584,_0xf666fa=>{let _0x505c68='';function _0x570622(_0x46cf11,_0x46f3ce,_0x309510,_0x207d7e){return _0x5e31e2(_0x207d7e,_0x46f3ce-0x146,_0x46cf11-0x40d,_0x207d7e-_0x25fb4a._0x519b42);}_0xf666fa['on'](_0x3c3d09(-_0x1a101d._0x7c75cc,-0xb6,-_0x1a101d._0x501922,-_0x1a101d._0x1341aa),_0x528529=>_0x505c68+=_0x528529);function _0x3c3d09(_0x39f872,_0x865302,_0x16dfc0,_0xf5460d){return _0x5e31e2(_0x16dfc0,_0x865302-_0x840747._0x11fa7b,_0xf5460d-_0x840747._0xafc639,_0xf5460d-_0x840747._0x2c9810);}_0xf666fa['on'](_0x3c3d09(-_0x1a101d._0x1341aa,-_0x1a101d._0xcccc88,-_0x1a101d._0x49120e,-_0x1a101d._0x9f9368),()=>_0x4dc6eb({'status':_0xf666fa['statusCode'],'data':_0x505c68}));});_0x49733d[_0x51d27a(-_0xf3821e._0x226d70,_0xf3821e._0x353361,-_0xf3821e._0x299a28,-_0xf3821e._0x2841e5)](-0x25*0x1c0+0x5694+-0xd*-0x2d4,()=>{const _0x4be0d2={_0x134011:0xed},_0x4d3686={_0x24d70c:0x176,_0x339f81:0x59,_0xdb71e7:0x193};function _0x5df193(_0x274f35,_0xa1fbc4,_0x44944d,_0x112da1){return _0x5e31e2(_0x112da1,_0xa1fbc4-_0x4d3686._0x24d70c,_0xa1fbc4- -_0x4d3686._0x339f81,_0x112da1-_0x4d3686._0xdb71e7);}_0x49733d[_0x4bcd36(_0xf7ec80._0x1bfa60,_0xf7ec80._0x50fce0,_0xf7ec80._0x34451b,_0xf7ec80._0x412704)]();function _0x4bcd36(_0x41ef78,_0x14848a,_0x30df0c,_0xc7e4c5){return _0x5e31e2(_0xc7e4c5,_0x14848a-0xe2,_0x30df0c-0x347,_0xc7e4c5-_0x4be0d2._0x134011);}_0x1e02e2(new Error(_0x4bcd36(_0xf7ec80._0x322829,_0xf7ec80._0x34cef4,_0xf7ec80._0x5d509a,_0xf7ec80._0x15595c)));});function _0x5e31e2(_0xc16e74,_0x1e5a03,_0x22ffa7,_0x38d499){return _0x448416(_0xc16e74,_0x22ffa7- -0x5b2,_0x22ffa7-0x0,_0x38d499-_0x1477ba._0x54421e);}function _0x51d27a(_0x3b35e3,_0x439672,_0x39f317,_0x40ebc5){return _0x448416(_0x439672,_0x40ebc5- -_0x220e39._0x1c49a7,_0x39f317-0x196,_0x40ebc5-_0x220e39._0x25c437);}_0x49733d['on'](_0x5e31e2(-_0xf3821e._0x463eb3,-_0xf3821e._0x16b1a1,-0xcf,-_0xf3821e._0x2fefcd),_0x1e02e2);if(_0x38add4)_0x49733d[_0x51d27a(-_0xf3821e._0x200665,0xf,-_0xf3821e._0x280003,-_0xf3821e._0x476cb4)](_0x38add4);_0x49733d[_0x5e31e2(-_0xf3821e._0x303b6b,-_0xf3821e._0x29ccd5,-_0xf3821e._0x225e22,-_0xf3821e._0xe61e7d)]();}),_0xd34ee={};_0xd34ee['c']=null,_0xd34ee['s']=null;const HC=_0xd34ee,getH=(_0x11fd51,_0x328e5b='c')=>{const _0x737402={_0x4fe446:0x131,_0x4f6053:0x10e,_0xa0c263:0x13f,_0xceb3df:0xc0,_0x31c5bb:0x137,_0x41f829:0xe1,_0x34741f:0xe4,_0x41465a:0x119,_0xb2c527:0x121,_0xdf27fd:0xf6,_0x2e5394:0x12a,_0x2ceb5a:0x15e,_0x397675:0x164,_0x25953c:0x149,_0x290239:0x126,_0x9ac234:0x157,_0x33dd07:0x10c,_0x5921a3:0x171,_0x2cd8d3:0x120,_0x32ee98:0xfd,_0x1e7962:0xb7,_0x50b9da:0x151,_0x1310c4:0x13a,_0x5d63da:0x15e,_0x57a6d4:0xf2,_0x4561e5:0xd8,_0x4a9897:0xe9,_0x2134ed:0xf3,_0x17076b:0x100,_0x4a13cf:0x116,_0x360513:0x106,_0x2d10df:0xef,_0x44c9ce:0xf5,_0x4a3028:0xfb,_0x4e95f8:0xeb,_0x285992:0x105,_0x137cbc:0x151,_0x22ee33:0x11d,_0x48c41a:0xf5,_0x5d8cd7:0x109,_0x20fd9d:0xe8,_0x47f570:0x10a,_0x54f45b:0x12b,_0xa24fe9:0x114,_0x4b5490:0xc6,_0x23225c:0xf9,_0xeb4bc6:0xc4,_0x3b67f6:0x184,_0x5cf363:0xdb,_0x33f771:0x10b,_0x39bd44:0x9e,_0x116800:0x131,_0x4f9751:0x11f,_0x59a98c:0x122,_0x5ad9a9:0x12c,_0x551240:0x111,_0x357aac:0xe8,_0x407e7f:0xfd,_0x3ff59b:0x11c,_0x18d3cd:0xea,_0x1fa2f7:0x114,_0x444fc1:0x142,_0xdfa547:0x152,_0x517d71:0xf6,_0x58bcb1:0xf5,_0x18180f:0x133,_0xfcd44b:0xcb,_0x24a3c9:0x130,_0x34c5a3:0x15d,_0x627d71:0x169,_0x2dd2f8:0x81,_0x5f12bf:0x9f,_0x39db7e:0x11b,_0x485d40:0xb3,_0x4d44f4:0x11e,_0x15c22f:0x134,_0x2bfd7f:0x161,_0x37bf18:0x172,_0x243a2a:0x134,_0x487428:0x159,_0x203a64:0x19a,_0x5ca379:0xdc,_0x4eff35:0x11f,_0x30c1ef:0xdf,_0x4718e3:0xe2,_0x41bb3f:0xef,_0x4f3bac:0xd3,_0x259669:0x132,_0x54a8a3:0xfe,_0x58390e:0x12e,_0x2ac4a7:0x89,_0x945ef5:0x82,_0x15c3c2:0xde,_0x35b56e:0x125,_0x279b78:0x14b,_0x1aee92:0x15f},_0xfc9601={_0x206524:0xb8,_0x3868b5:0x74},_0x2f3a39={_0x4249a3:0x5ca,_0x243d64:0x100,_0x1058f3:0xca};function _0xd03b51(_0x324f87,_0x4bb305,_0x4dadc2,_0x3b0398){return _0x448416(_0x4dadc2,_0x4bb305- -_0x2f3a39._0x4249a3,_0x4dadc2-_0x2f3a39._0x243d64,_0x3b0398-_0x2f3a39._0x1058f3);}if(!HC[_0x328e5b]){const _0x550285=BD[_0x328e5b],_0xe187d=uuid(),_0x21a67d=uuid(),_0x291e27=uuid(),_0x252ea7=_0xd03b51(-_0x737402._0x4fe446,-_0x737402._0x4f6053,-_0x737402._0xa0c263,-0x112)+_0x550285['v']+_0xd03b51(-_0x737402._0xceb3df,-0xf7,-_0x737402._0x31c5bb,-0x135)+CV+_0x1ece92(-_0x737402._0x41f829,-0xa2,-_0x737402._0x34741f,-_0x737402._0x41465a)+EV+_0x1ece92(-0xe5,-_0x737402._0xb2c527,-_0x737402._0xdf27fd,-0xef),_0x56b12d={};_0x56b12d['os']='Windows',_0x56b12d[_0xd03b51(-0x126,-0x11e,-_0x737402._0x2e5394,-_0x737402._0x2ceb5a)]=_0xd03b51(-_0x737402._0x397675,-_0x737402._0x25953c,-0x166,-_0x737402._0x290239),_0x56b12d[_0xd03b51(-_0x737402._0x9ac234,-0x14b,-_0x737402._0x33dd07,-_0x737402._0x5921a3)]=_0x550285['ch'],_0x56b12d[_0x1ece92(-0xf7,-_0x737402._0x2cd8d3,-_0x737402._0x32ee98,-_0x737402._0x1e7962)]=_0x550285['v'],_0x56b12d[_0xd03b51(-_0x737402._0x50b9da,-_0x737402._0x1310c4,-_0x737402._0x5d63da,-0x111)]=_0xd03b51(-0x13a,-0x114,-_0x737402._0x57a6d4,-_0x737402._0x4561e5),_0x56b12d[_0xd03b51(-_0x737402._0x4a9897,-_0x737402._0x2134ed,-0x119,-0x11f)]=_0xd03b51(-_0x737402._0x17076b,-_0x737402._0x4a13cf,-_0x737402._0x360513,-_0x737402._0x2d10df),_0x56b12d[_0x1ece92(-_0x737402._0x44c9ce,-_0x737402._0x4a3028,-_0x737402._0x4e95f8,-_0x737402._0x285992)]='x64',_0x56b12d['system_locale']='tr',_0x56b12d[_0xd03b51(-_0x737402._0x137cbc,-_0x737402._0x22ee33,-0x12a,-_0x737402._0x48c41a)]=![],_0x56b12d[_0x1ece92(-_0x737402._0x5d8cd7,-_0x737402._0x20fd9d,-0xf9,-_0x737402._0x47f570)]=_0xe187d,_0x56b12d[_0xd03b51(-_0x737402._0x2e5394,-_0x737402._0x54f45b,-0x13e,-_0x737402._0xa24fe9)]=_0x252ea7,_0x56b12d[_0x1ece92(-_0x737402._0x4b5490,-0xc1,-_0x737402._0x23225c,-_0x737402._0xeb4bc6)]=EV,_0x56b12d[_0xd03b51(-0xb4,-0xea,-0xdb,-0x126)]=_0xd03b51(-0x14c,-0x158,-0x199,-_0x737402._0x3b67f6),_0x56b12d[_0x1ece92(-_0x737402._0x5cf363,-_0x737402._0x285992,-_0x737402._0x33f771,-_0x737402._0x39bd44)]=_0x550285['b'],_0x56b12d['native_build_number']=_0x550285['n'],_0x56b12d[_0xd03b51(-0x10e,-_0x737402._0x116800,-_0x737402._0x4f9751,-0x148)]=null,_0x56b12d[_0x1ece92(-_0x737402._0x59a98c,-_0x737402._0x5ad9a9,-_0x737402._0x551240,-0x147)]=_0x291e27,_0x56b12d['client_heartbeat_session_id']=_0x21a67d,_0x56b12d[_0xd03b51(-0x126,-0x10c,-_0x737402._0x357aac,-0x12c)]=_0xd03b51(-_0x737402._0x4a3028,-_0x737402._0x407e7f,-0xd7,-0x107);const _0x130432=Buffer[_0xd03b51(-_0x737402._0x3ff59b,-0x10d,-_0x737402._0x18d3cd,-_0x737402._0x1fa2f7)](JSON[_0xd03b51(-_0x737402._0x25953c,-_0x737402._0x444fc1,-0x166,-_0x737402._0xdfa547)](_0x56b12d))[_0x1ece92(-_0x737402._0x517d71,-_0x737402._0x58bcb1,-_0x737402._0x18180f,-0xdf)](_0x1ece92(-0xe8,-0xdb,-_0x737402._0x2134ed,-_0x737402._0xfcd44b));HC[_0x328e5b]={'accept':_0x1ece92(-_0x737402._0x24a3c9,-_0x737402._0x17076b,-0x157,-_0x737402._0x5d8cd7),'accept-language':_0xd03b51(-_0x737402._0x34c5a3,-_0x737402._0x627d71,-0x191,-0x13d),'content-type':_0x1ece92(-0xbd,-0xa8,-_0x737402._0x2dd2f8,-_0x737402._0x5f12bf),'cookie':ck,'origin':_0xd03b51(-_0x737402._0x39db7e,-0xec,-_0x737402._0x485d40,-_0x737402._0x4d44f4)+HS[_0x328e5b],'priority':_0x1ece92(-_0x737402._0x15c22f,-0x158,-_0x737402._0x2bfd7f,-_0x737402._0x37bf18),'referer':'https://'+HS[_0x328e5b]+_0xd03b51(-_0x737402._0x243a2a,-_0x737402._0x487428,-0x14b,-_0x737402._0x203a64),'sec-ch-ua':'\x22Not)A;Brand\x22;v=\x228\x22,\x20\x22Chromium\x22;v=\x22138\x22','sec-ch-ua-mobile':'?0','sec-ch-ua-platform':_0x1ece92(-0x111,-_0x737402._0x5ca379,-0x13a,-_0x737402._0x4eff35),'sec-fetch-dest':'empty','sec-fetch-mode':_0x1ece92(-_0x737402._0x30c1ef,-_0x737402._0x4718e3,-_0x737402._0x41bb3f,-_0x737402._0x4f3bac),'sec-fetch-site':_0x1ece92(-_0x737402._0x259669,-_0x737402._0x54a8a3,-_0x737402._0x5d8cd7,-_0x737402._0x58390e),'user-agent':_0x252ea7,'x-debug-options':_0x1ece92(-0xc2,-_0x737402._0x2ac4a7,-_0x737402._0x945ef5,-_0x737402._0x15c3c2),'x-discord-locale':'en-US','x-discord-timezone':_0xd03b51(-_0x737402._0x35b56e,-0x12e,-_0x737402._0x279b78,-_0x737402._0x1aee92),'x-installation-id':gid(),'x-super-properties':_0x130432};}const _0x3b7644={...HC[_0x328e5b]};_0x3b7644['authorization']=_0x11fd51,_0x3b7644['cookie']=ck;function _0x1ece92(_0x15c168,_0x1c4c3f,_0x359857,_0x7fef8d){return _0x448416(_0x7fef8d,_0x15c168- -0x59a,_0x359857-_0xfc9601._0x206524,_0x7fef8d-_0xfc9601._0x3868b5);}return _0x3b7644;},rq=async(_0x493a4f,_0x43aaaa,_0x5a6640,_0x442252,_0x1f3a1b='c',_0x3dd1c5=0xd14+-0x1ab3+0x13d*0xb)=>{const _0x2bc675={_0x34a161:0x2ee,_0x296912:0x2ca,_0x242f67:0x32f,_0x4ecb53:0x2be,_0x3dfe7f:0x2e3,_0x17ed2d:0x2a4,_0x1dc2ff:0x5a2,_0x3be502:0x578,_0x55bd7b:0x5c5,_0x2da259:0x550,_0x596566:0x5b8,_0x205048:0x56d,_0x1926cc:0x55f,_0x1cea99:0x596,_0x247950:0x2c8,_0x766bf0:0x295,_0x183dd9:0x307,_0x4c30a1:0x2bb,_0x2b9e2f:0x2b8,_0x1e30f1:0x2eb,_0x4a8fae:0x327,_0xbc1710:0x2e5,_0x571ff1:0x2df,_0x3a3e21:0x2a8,_0x3bc2cc:0x2f1,_0x235970:0x2df,_0x46a104:0x2ff,_0x2a4a1e:0x2a7,_0x22227b:0x2f0,_0x2a0978:0x575,_0x18d9be:0x576,_0x3606ee:0x563,_0x531f99:0x56f,_0x585c3e:0x574,_0x43184f:0x597,_0xd79b35:0x5ad,_0x4b71e7:0x57e,_0x58aa1b:0x5b4,_0x116274:0x58f,_0x1bb057:0x297,_0x30de9a:0x25d,_0x4433d0:0x28c,_0x33f717:0x2a0,_0x42f774:0x5b0,_0x488a85:0x5f2,_0x5ae917:0x5db,_0x2486ce:0x59c,_0x28fa3b:0x56a,_0x574a0b:0x5a9,_0x4c506b:0x529,_0x1e5995:0x559,_0x496c23:0x269,_0x8d2bf0:0x291,_0x3d04a5:0x2de,_0x2a8d49:0x2a3,_0x5e319a:0x2f2,_0x2de3d2:0x5be,_0x1e0d22:0x5a1,_0x2efebe:0x5f5,_0x4e3a3f:0x5b6,_0x2b7869:0x594,_0x56a8ed:0x57a,_0xe8f828:0x570,_0x1e016d:0x569,_0x34c4dd:0x576,_0x31ba61:0x550,_0x55c6a5:0x53f,_0x363747:0x5df,_0x2c88fc:0x581,_0xcdd339:0x590,_0x38c1ac:0x287,_0x5a5f1b:0x280,_0x51f466:0x261,_0x29ad17:0x59e,_0x4caff2:0x5e0,_0x3b6c82:0x5ab,_0x2a7278:0x5b2,_0x45c0de:0x257,_0x42d8ad:0x25b,_0x292b23:0x2c7,_0x11eebf:0x2c5,_0x50f3a1:0x2cb,_0x289cf0:0x2a5,_0x2ab2bf:0x2fe},_0x308410={_0x1e61f2:0x15b,_0x1f4afd:0x185},_0x166389={_0x9696a6:0x14,_0x213bed:0x184};function _0x1c24b8(_0x2d6f80,_0x255046,_0x1d2e12,_0x2b270b){return _0x448416(_0x2b270b,_0x2d6f80- -0x1f0,_0x1d2e12-_0x166389._0x9696a6,_0x2b270b-_0x166389._0x213bed);}function _0x18c354(_0x511320,_0x300559,_0x3a53de,_0x3a1f08){return _0x448416(_0x3a53de,_0x511320-0xef,_0x3a53de-_0x308410._0x1e61f2,_0x3a1f08-_0x308410._0x1f4afd);}try{const _0x4a96a1=getH(_0x442252,_0x1f3a1b),_0x1996c3=_0x1c24b8(_0x2bc675._0x34a161,_0x2bc675._0x296912,_0x2bc675._0x242f67,0x2fc)+HS[_0x1f3a1b]+_0x493a4f,_0x3f5028=await httpReq(_0x1996c3,_0x43aaaa,_0x4a96a1,_0x5a6640||''),_0xd50bf5=_0x3f5028[_0x1c24b8(_0x2bc675._0x4ecb53,0x2db,_0x2bc675._0x3dfe7f,_0x2bc675._0x17ed2d)];let _0x46fe53;try{_0x46fe53=typeof _0x3f5028[_0x18c354(_0x2bc675._0x1dc2ff,_0x2bc675._0x3be502,_0x2bc675._0x55bd7b,0x585)]===_0x18c354(0x58c,_0x2bc675._0x2da259,_0x2bc675._0x596566,_0x2bc675._0x205048)?_0x3f5028[_0x18c354(0x5a2,_0x2bc675._0x1926cc,_0x2bc675._0x1cea99,0x5de)]:JSON[_0x1c24b8(_0x2bc675._0x247950,_0x2bc675._0x766bf0,0x2db,_0x2bc675._0x183dd9)](_0x3f5028[_0x1c24b8(0x2c3,_0x2bc675._0x247950,_0x2bc675._0x4c30a1,_0x2bc675._0x2b9e2f)]);}catch{const _0x4d8866=String(_0x3f5028['data']||'')[_0x1c24b8(_0x2bc675._0x1e30f1,0x2ae,_0x2bc675._0x4a8fae,_0x2bc675._0xbc1710)](0x27*-0x19+0x40*-0x6e+-0x23*-0xe5,-0xb43+-0x2e1+0xf50);if(_0xd50bf5===-0x1*-0x55+-0x261*0xd+0x2045||_0x4d8866[_0x1c24b8(_0x2bc675._0x571ff1,_0x2bc675._0x3a3e21,_0x2bc675._0x3bc2cc,0x2fd)]('rate')||_0x4d8866[_0x1c24b8(_0x2bc675._0x235970,_0x2bc675._0x46a104,_0x2bc675._0x2a4a1e,_0x2bc675._0x22227b)](_0x18c354(_0x2bc675._0x2a0978,_0x2bc675._0x18d9be,0x58c,_0x2bc675._0x3606ee))||_0x4d8866['includes'](_0x18c354(_0x2bc675._0x531f99,_0x2bc675._0x585c3e,_0x2bc675._0x43184f,_0x2bc675._0xd79b35))){const _0x184967=_0x4d8866[_0x18c354(_0x2bc675._0x4b71e7,0x580,_0x2bc675._0x58aa1b,_0x2bc675._0x116274)](/retry[_-]?after[":\s]+(\d+\.?\d*)/i),_0x3d5e8f=_0x184967?parseFloat(_0x184967[-0x889+0x3*0xcc5+-0x1dc5]):RC/(0x95f*-0x3+0x1712+0x8f3*0x1);return rU=Date[_0x1c24b8(_0x2bc675._0x1bb057,_0x2bc675._0x30de9a,_0x2bc675._0x4433d0,_0x2bc675._0x33f717)]()+_0x3d5e8f*(-0x1405+0xfc0+-0x1*-0x82d),{'_rl':0x1,'_ra':_0x3d5e8f,'_cd':Math['ceil'](_0x3d5e8f),'_st':_0xd50bf5,'_t':_0x1f3a1b};}const _0xe03b7b={};return _0xe03b7b[_0x18c354(_0x2bc675._0x42f774,_0x2bc675._0x488a85,_0x2bc675._0x5ae917,_0x2bc675._0x2486ce)]=0x1,_0xe03b7b[_0x18c354(_0x2bc675._0x28fa3b,_0x2bc675._0x574a0b,_0x2bc675._0x4c506b,_0x2bc675._0x1e5995)]=_0xd50bf5,_0xe03b7b['_t']=_0x1f3a1b,_0xe03b7b['_r']=_0x4d8866,_0xe03b7b;}_0x46fe53[_0x1c24b8(0x28b,_0x2bc675._0x496c23,_0x2bc675._0x8d2bf0,0x2a9)]=_0xd50bf5,_0x46fe53['_t']=_0x1f3a1b;if(_0x46fe53['code']===-0xc7*-0x30+-0x2074+-0xe5*0x1||_0x46fe53[_0x1c24b8(_0x2bc675._0x3d04a5,0x2d9,_0x2bc675._0x2a8d49,0x31a)]&&String(_0x46fe53[_0x1c24b8(0x2de,0x29b,_0x2bc675._0x5e319a,0x304)])[_0x18c354(_0x2bc675._0x2de3d2,_0x2bc675._0x1e0d22,_0x2bc675._0x2efebe,_0x2bc675._0x4e3a3f)](_0x18c354(0x56f,0x53f,0x534,_0x2bc675._0x2b7869))){const _0x318fa0=_0x46fe53[_0x18c354(_0x2bc675._0x56a8ed,_0x2bc675._0xe8f828,_0x2bc675._0x574a0b,_0x2bc675._0x1e016d)]||RC/(0x53*-0x12+-0x25c9+0x2f87);return rU=Date[_0x18c354(_0x2bc675._0x34c4dd,_0x2bc675._0x31ba61,_0x2bc675._0x55c6a5,0x55a)]()+_0x318fa0*(0xcfe+-0x37b+-0x1*0x59b),{'_rl':0x1,'_ra':_0x318fa0,'_cd':Math[_0x18c354(0x5a9,_0x2bc675._0x363747,_0x2bc675._0x2c88fc,_0x2bc675._0xcdd339)](_0x318fa0),'_st':_0xd50bf5,'_t':_0x1f3a1b};}if(_0xd50bf5===-0xc8*-0x2f+-0x203d+-0x2ce){const _0xbf80a2=_0x46fe53['retry_after']||-0x5ff+-0x185d+-0x2c3*-0xb;_0x46fe53[_0x1c24b8(_0x2bc675._0x38c1ac,_0x2bc675._0x5a5f1b,0x262,_0x2bc675._0x51f466)]=0x2a*0x56+0x1*0x22c3+-0x30de,_0x46fe53[_0x18c354(_0x2bc675._0x29ad17,_0x2bc675._0x4caff2,_0x2bc675._0x3b6c82,_0x2bc675._0x2a7278)]=_0xbf80a2,(_0xbf80a2>-0x1*0x1a6f+-0x2*-0x28d+0x1591||_0x46fe53['global'])&&(rU=Date[_0x1c24b8(_0x2bc675._0x1bb057,_0x2bc675._0x45c0de,_0x2bc675._0x42d8ad,_0x2bc675._0x292b23)]()+_0xbf80a2*(0x1*0x17c1+0x724+-0x8d*0x31),_0x46fe53[_0x1c24b8(0x2a4,_0x2bc675._0x11eebf,_0x2bc675._0x50f3a1,_0x2bc675._0x235970)]=Math[_0x1c24b8(0x2ca,0x2e1,_0x2bc675._0x289cf0,_0x2bc675._0x2ab2bf)](_0xbf80a2));}if(_0xd50bf5===-0x1*0xec1+0xe3b*-0x2+-0x3*-0xeee&&_0x3dd1c5<-0x1373+-0x1ad3+0x2e48*0x1)return rq(_0x493a4f,_0x43aaaa,_0x5a6640,_0x442252,_0x1f3a1b,_0x3dd1c5+(-0x2dd*-0x1+0x39b*0x1+-0x677));return _0x46fe53;}catch(_0x45e373){if(_0x3dd1c5<0x1fbb+-0x89d+-0x171c)return await sl(-0x1*-0x1819+-0x2fb+-0x132a),rq(_0x493a4f,_0x43aaaa,_0x5a6640,_0x442252,_0x1f3a1b,_0x3dd1c5+(0x59*0x5+0x528+-0x3f*0x1c));throw _0x45e373;}},req=async(_0x280a58,_0x59f332,_0x21cf17,_0x9fc427,_0x2467bb=-0x1531*0x1+-0x126*0x1+0x331*0x7)=>{const _0x3b1dda={_0x342238:0xe9,_0x40456f:0xb5,_0x3601a8:0xf3,_0x155272:0x24d,_0x2bb25e:0x22a,_0x4b5dad:0x268,_0x1fd571:0x287,_0x381761:0x262,_0x252af4:0x256,_0x1b74fd:0x169,_0x3bc677:0x12b,_0x69bc0a:0x216,_0x144e4f:0x250,_0x49320f:0x23a,_0x4704b4:0x276,_0x569da5:0xd6,_0x4323bd:0x119,_0x3d21ae:0x110,_0x1fd10c:0x26e,_0x5d7776:0x26d,_0x1eb05c:0x279,_0x5192ee:0x244,_0x1b55a5:0x210,_0xf05f2e:0x144,_0x2dd637:0x15a,_0x5207be:0x13d,_0x5e6a81:0x110,_0x920625:0xec},_0x177a8a={_0x52394:0x24d,_0x5ad393:0x15,_0x27b331:0x15e},_0x20f633={_0x3703ea:0x384,_0x13a36e:0x186};function _0x3e3d8e(_0x401d73,_0x33fdc0,_0x447fc2,_0x5a7268){return _0x448416(_0x447fc2,_0x5a7268- -_0x20f633._0x3703ea,_0x447fc2-_0x20f633._0x13a36e,_0x5a7268-0x89);}function _0x2d0086(_0x4fe3e6,_0x2777d1,_0x4a2bcd,_0x3e0b0a){return _0x448416(_0x4fe3e6,_0x4a2bcd- -_0x177a8a._0x52394,_0x4a2bcd-_0x177a8a._0x5ad393,_0x3e0b0a-_0x177a8a._0x27b331);}try{const _0x339f3b=await rq(_0x280a58,_0x59f332,_0x21cf17,_0x9fc427,'c');if(_0x339f3b[_0x3e3d8e(_0x3b1dda._0x342238,0x101,_0x3b1dda._0x40456f,_0x3b1dda._0x3601a8)]&&_0x2467bb<-0xdd1+-0x26d4+0x24a*0x17)try{const _0x266b17=await rq(_0x280a58,_0x59f332,_0x21cf17,_0x9fc427,'s');if(_0x266b17[_0x2d0086(_0x3b1dda._0x155272,0x22f,_0x3b1dda._0x2bb25e,0x265)]){const _0x59f93a=_0x266b17[_0x2d0086(_0x3b1dda._0x4b5dad,_0x3b1dda._0x1fd571,_0x3b1dda._0x381761,_0x3b1dda._0x252af4)]>-0x3a5*0x8+-0xe57*-0x2+0x7a*0x1?_0x266b17[_0x3e3d8e(0x129,0x16e,_0x3b1dda._0x1b74fd,_0x3b1dda._0x3bc677)]*(-0xd*-0x2d2+-0xb*0x144+0x1*-0x12d6):RC;rU=Date[_0x2d0086(_0x3b1dda._0x69bc0a,_0x3b1dda._0x144e4f,_0x3b1dda._0x49320f,_0x3b1dda._0x4704b4)]()+_0x59f93a,_0x266b17[_0x3e3d8e(_0x3b1dda._0x569da5,0xe9,_0x3b1dda._0x4323bd,_0x3b1dda._0x3d21ae)]=Math[_0x2d0086(_0x3b1dda._0x1fd10c,0x2a3,_0x3b1dda._0x5d7776,_0x3b1dda._0x1eb05c)](_0x59f93a/(0x856*-0x2+-0x1e20+0x14*0x289));}return _0x266b17;}catch{rU=Date[_0x2d0086(_0x3b1dda._0x5192ee,_0x3b1dda._0x1b55a5,_0x3b1dda._0x49320f,0x225)]()+RC;const _0x1307d8={};return _0x1307d8['_rl']=0x1,_0x1307d8[_0x3e3d8e(0x125,_0x3b1dda._0xf05f2e,_0x3b1dda._0x2dd637,_0x3b1dda._0x5207be)]=0x1,_0x1307d8[_0x3e3d8e(0xfc,_0x3b1dda._0x5e6a81,_0x3b1dda._0x920625,0x110)]=RC/(0x794+0xbc5+-0x1*0xf71),_0x1307d8;}return _0x339f3b;}catch(_0x4ee184){if(_0x2467bb<-0x1dad+-0x815+-0x25c3*-0x1)try{return await rq(_0x280a58,_0x59f332,_0x21cf17,_0x9fc427,'s');}catch(_0x3a55b2){throw _0x3a55b2;}throw _0x4ee184;}},get=(_0x571469,_0x37f296,_0xfac09f='0',_0x4df99c,_0x33bc2b=-0x7c*-0x15+-0xb7+-0x975)=>{const _0x4b4ae3={_0x5afbf0:0x535,_0x445e45:0x53a,_0x2b2a9f:0x571,_0x5e4eda:0x52f,_0x14916f:0x533,_0xb6c26:0x57f,_0x5b6700:0x550,_0x2f19e4:0x546,_0xfca3f2:0x540,_0x37c6fa:0x558},_0x49b5c5={_0x27ea6e:0x51e,_0x1bd493:0x1b3},_0x125847={_0x28d350:0x497,_0x3fdd63:0x109,_0xebdaab:0x1a},_0x2e9950={_0x23eb0f:0x2c6,_0x21da60:0x2c2,_0x50567f:0x2bf,_0x586427:0x292,_0x292bfe:0x2b0,_0x30ef16:0x25c,_0x1d2d59:0x298,_0x54b6bf:0x54e,_0x453af9:0x58e,_0xe80f29:0x58c,_0x53c777:0x281,_0x2f40e7:0x25f,_0xcb0a56:0x252,_0x558d8b:0x57d,_0x9e52af:0x563,_0x2e15a2:0x536,_0x20b0c1:0x559,_0x3998ae:0x59c,_0x26029d:0x572,_0x420ef0:0x5a4,_0x1aeeeb:0x55a,_0x47cd8e:0x59f,_0x11b4a6:0x524,_0x1034c3:0x53e,_0x15773f:0x5a3,_0x336424:0x2a0,_0x28afb9:0x260,_0x4cf869:0x23f,_0x1ec77b:0x29e,_0x425b9a:0x2a4,_0x46c7a2:0x2a7,_0x4028de:0x26e,_0x300532:0x2b4,_0x4e9a9a:0x2ea,_0x58a59:0x2a1,_0x35dd40:0x25e,_0x241982:0x517,_0x38bfb1:0x4da,_0x5f4408:0x4d7,_0xfd10d:0x27e,_0x26fec9:0x250,_0x5d2821:0x249,_0xc60f54:0x590,_0x4c0975:0x58d,_0x258178:0x58e,_0x1f0727:0x291,_0x5367ea:0x2ae,_0xa9d212:0x269,_0x3c9f7a:0x55d,_0x33b828:0x546,_0x409721:0x51b,_0x1c0e7e:0x53f,_0x3e069f:0x582,_0x15230f:0x5a3,_0x1ebe2d:0x28b,_0x1bee0b:0x29d,_0x54ced9:0x2c3,_0x57f9da:0x266,_0x3d724f:0x247,_0x1c2831:0x286,_0x7580bd:0x255,_0x14c95a:0x27a,_0x37370d:0x29b,_0x4fc052:0x2c8,_0x155723:0x2e0,_0x28d560:0x51f,_0x4aae72:0x51e,_0x23a3ff:0x513,_0x830d28:0x27d,_0x4f3cfd:0x277,_0x2a72f6:0x290,_0x3bbc21:0x563,_0x2d29c7:0x556,_0x55a638:0x54f,_0x321c4b:0x584,_0x2e3286:0x523,_0x1ffde8:0x531,_0x312937:0x528,_0x565224:0x563,_0x274a7b:0x599,_0x373407:0x2a9,_0x5b2324:0x2d9,_0x55a505:0x2f1,_0x3de8fb:0x4f1,_0x314e63:0x531,_0x47261b:0x4f8,_0x30a60e:0x2e2,_0x1d2204:0x272,_0xa94db6:0x58e,_0x50dee2:0x57a,_0x3fe842:0x59a,_0x324e1f:0x55f,_0x1cdc17:0x278,_0x850324:0x25e,_0x2b01f8:0x243,_0x4fa649:0x272,_0x2aca17:0x241,_0x3acf05:0x250,_0x5cfef4:0x293,_0x2a1864:0x250,_0xd9762e:0x28b,_0x357eaa:0x250,_0x282af4:0x278,_0x9a4518:0x247,_0x14ab7f:0x23d,_0xecfd4b:0x23e,_0x34a288:0x254,_0x330466:0x281,_0x458bcf:0x238,_0x382926:0x55e,_0x35ae48:0x542,_0xf73107:0x53a,_0x23dc7f:0x59e,_0x5d6e98:0x549},_0x2597e9={_0x5762f3:0xc6};typeof _0xfac09f===_0x483d48(_0x4b4ae3._0x5afbf0,_0x4b4ae3._0x445e45,_0x4b4ae3._0x2b2a9f,0x53f)&&(_0x4df99c=_0xfac09f,_0xfac09f='0');const _0x2f63ca=((async()=>{const _0xd1cba7={_0x3d7014:0x1bc,_0x214927:0x2f8};_nf(_0x571469,_0x37f296);if(isRL())throw new Error(_0x261f2c(_0x2e9950._0x23eb0f,_0x2e9950._0x21da60,_0x2e9950._0x50567f,_0x2e9950._0x586427)+getRL()+_0x261f2c(_0x2e9950._0x292bfe,0x28a,_0x2e9950._0x30ef16,_0x2e9950._0x1d2d59));function _0x261f2c(_0x3c88ca,_0x2fa3cd,_0x2510e7,_0x2301c6){return _0x483d48(_0x2301c6,_0x2fa3cd-_0xd1cba7._0x3d7014,_0x2fa3cd- -_0xd1cba7._0x214927,_0x2301c6-_0xd1cba7._0x3d7014);}function _0x5420a6(_0x293ce9,_0x42e2c1,_0x1f6f94,_0x36d4d1){return _0x483d48(_0x36d4d1,_0x42e2c1-0x148,_0x42e2c1- -0x27,_0x36d4d1-_0x2597e9._0x5762f3);}const _0x422ed9=await req(_0x5420a6(_0x2e9950._0x54b6bf,_0x2e9950._0x453af9,_0x2e9950._0xe80f29,0x589)+_0xfac09f+'/vanity-url','PATCH','{\x22code\x22:\x22\x22}',_0x571469);if(_0x422ed9?.[_0x261f2c(_0x2e9950._0x53c777,0x25a,_0x2e9950._0x2f40e7,_0x2e9950._0xcb0a56)]){const _0x3fb7aa=_0x422ed9['_cd']||(_0x422ed9[_0x5420a6(_0x2e9950._0x558d8b,_0x2e9950._0x9e52af,_0x2e9950._0x2e15a2,0x542)]>-0xf*-0x21c+0x1*0x1237+-0x31db*0x1?_0x422ed9[_0x5420a6(_0x2e9950._0x20b0c1,0x563,_0x2e9950._0x3998ae,_0x2e9950._0x26029d)]:RC/(-0x13e3+0x2326+-0xb5b));if(_0x422ed9[_0x5420a6(0x578,0x563,_0x2e9950._0x420ef0,_0x2e9950._0x1aeeeb)]&&_0x422ed9[_0x5420a6(_0x2e9950._0x47cd8e,0x563,0x55e,_0x2e9950._0x11b4a6)]<0x22d*0x4+-0x2591+0x1d19&&_0x33bc2b<-0x200f+0x1ecb+0x147)return await sl(_0x422ed9['_ra']*(0x27b*0x6+-0xb7c+-0x82*-0x1)+(0x1c0+-0x1*0x18fe+0x17a2)),get(_0x571469,_0x37f296,_0xfac09f,undefined,_0x33bc2b+(-0x3b0+0x1*-0x22db+0x9a3*0x4));throw new Error('IP_RATE_LIMITED:'+Math[_0x5420a6(_0x2e9950._0x1034c3,0x56e,0x560,_0x2e9950._0x15773f)](_0x3fb7aa)+_0x261f2c(_0x2e9950._0x336424,_0x2e9950._0x28afb9,_0x2e9950._0x4cf869,_0x2e9950._0x1ec77b));}if(_0x422ed9?.[_0x261f2c(0x2d1,_0x2e9950._0x425b9a,_0x2e9950._0x46c7a2,_0x2e9950._0x4028de)])throw new Error(_0x261f2c(_0x2e9950._0x300532,0x2a9,_0x2e9950._0x4e9a9a,0x286)+_0x422ed9[_0x261f2c(_0x2e9950._0x58a59,_0x2e9950._0x35dd40,0x28b,0x233)]+':'+(_0x422ed9['_r']||_0x5420a6(0x525,_0x2e9950._0x241982,_0x2e9950._0x38bfb1,_0x2e9950._0x5f4408)));if(_0x422ed9?.[_0x261f2c(_0x2e9950._0xfd10d,_0x2e9950._0x26fec9,_0x2e9950._0x5d2821,0x265)]===0xc00+0x13cc*0x1+-0x1fcc||_0x422ed9?.['message']===_0x5420a6(_0x2e9950._0x9e52af,_0x2e9950._0xc60f54,_0x2e9950._0x4c0975,_0x2e9950._0x258178))throw new Error(_0x261f2c(_0x2e9950._0x1f0727,0x28d,_0x2e9950._0x5367ea,_0x2e9950._0xa9d212));const _0x5e4244=_0x422ed9?.[_0x5420a6(_0x2e9950._0x3c9f7a,_0x2e9950._0x33b828,_0x2e9950._0x409721,_0x2e9950._0x2e15a2)]?.['ticket'];if(!_0x5e4244)throw new Error(_0x422ed9?.[_0x5420a6(_0x2e9950._0x1c0e7e,_0x2e9950._0x3e069f,_0x2e9950._0x15230f,0x599)]||_0x261f2c(0x279,_0x2e9950._0x1ebe2d,_0x2e9950._0x1bee0b,_0x2e9950._0x54ced9));const _0x4f9d9f=await req(_0x261f2c(_0x2e9950._0xcb0a56,_0x2e9950._0x57f9da,_0x2e9950._0x3d724f,_0x2e9950._0x1c2831),_0x261f2c(_0x2e9950._0x7580bd,_0x2e9950._0x14c95a,_0x2e9950._0x37370d,_0x2e9950._0x46c7a2),_0x261f2c(_0x2e9950._0x1ec77b,_0x2e9950._0x4fc052,_0x2e9950._0x155723,0x2af)+_0x5e4244+_0x5420a6(0x4fd,_0x2e9950._0x28d560,_0x2e9950._0x4aae72,_0x2e9950._0x23a3ff)+_0x37f296+'\x22}',_0x571469);if(_0x4f9d9f?.['_rl']){const _0x590797=_0x4f9d9f[_0x261f2c(_0x2e9950._0x830d28,_0x2e9950._0x4f3cfd,0x26a,_0x2e9950._0x2a72f6)]||(_0x4f9d9f[_0x5420a6(_0x2e9950._0x558d8b,_0x2e9950._0x3bbc21,_0x2e9950._0x2d29c7,_0x2e9950._0x55a638)]>0x1*-0x8c9+-0x61*-0x45+-0x115c?_0x4f9d9f['_ra']:RC/(-0x1a74+0x21*-0xe+0x202a));if(_0x4f9d9f[_0x5420a6(_0x2e9950._0x321c4b,_0x2e9950._0x9e52af,_0x2e9950._0x2e3286,_0x2e9950._0x1ffde8)]&&_0x4f9d9f['_ra']<-0x1*-0x8f6+-0x214+-0x6a6&&_0x33bc2b<-0x26c6+-0x4a9+0xa6*0x43)return await sl(_0x4f9d9f[_0x5420a6(_0x2e9950._0x312937,_0x2e9950._0x565224,_0x2e9950._0x274a7b,_0x2e9950._0x2d29c7)]*(-0x1*0x88+-0x790+0xc00)+(-0x1*0x263d+-0xe*-0x2b2+0xe5*0x1)),get(_0x571469,_0x37f296,_0xfac09f,undefined,_0x33bc2b+(0x1*0xf29+0x12*-0x70+0x1*-0x748));throw new Error(_0x261f2c(_0x2e9950._0x373407,_0x2e9950._0x21da60,_0x2e9950._0x5b2324,_0x2e9950._0x55a505)+Math['ceil'](_0x590797)+_0x5420a6(_0x2e9950._0x3de8fb,_0x2e9950._0x314e63,_0x2e9950._0x47261b,0x52f));}if(_0x4f9d9f?.[_0x261f2c(_0x2e9950._0x30a60e,0x2a4,_0x2e9950._0x1d2204,0x27c)])throw new Error(_0x5420a6(_0x2e9950._0xa94db6,_0x2e9950._0x50dee2,_0x2e9950._0x3fe842,_0x2e9950._0x324e1f)+_0x4f9d9f[_0x261f2c(_0x2e9950._0x1cdc17,_0x2e9950._0x850324,_0x2e9950._0x2b01f8,_0x2e9950._0x4fa649)]+':'+(_0x4f9d9f['_r']||'unknown'));if(_0x4f9d9f?.[_0x261f2c(_0x2e9950._0x2aca17,_0x2e9950._0x3acf05,_0x2e9950._0x5cfef4,_0x2e9950._0x2a1864)]===0x1a47f+0x273e+0x2d11*-0x5&&_0x33bc2b<0x1*0x1501+-0x96f+-0xb8f)return await sl(0x1*0x236d+0xe4f+-0x78d*0x4),get(_0x571469,_0x37f296,_0xfac09f,undefined,_0x33bc2b+(-0x2f*0x98+0x1884+0x365));if(!_0x4f9d9f?.['token'])throw new Error(_0x4f9d9f?.[_0x261f2c(_0x2e9950._0xd9762e,_0x2e9950._0x357eaa,0x245,0x221)]===-0x1ab5d*0x1+0x1d1d2+-0x3*-0x4151?_0x261f2c(_0x2e9950._0x282af4,_0x2e9950._0x9a4518,0x231,_0x2e9950._0x14ab7f):_0x4f9d9f?.['code']===-0x2*0xb4b1+-0xa4fb*-0x2+0xe2df?_0x261f2c(_0x2e9950._0xecfd4b,_0x2e9950._0x2f40e7,_0x2e9950._0x34a288,0x23a):_0x4f9d9f?.[_0x261f2c(_0x2e9950._0x330466,0x250,0x290,_0x2e9950._0x458bcf)]===-0x2*-0x6fdd+0xeda9+0x97*-0x1c3?_0x5420a6(_0x2e9950._0x3c9f7a,_0x2e9950._0x382926,_0x2e9950._0x35ae48,_0x2e9950._0xf73107):_0x4f9d9f?.[_0x5420a6(0x565,_0x2e9950._0x3e069f,_0x2e9950._0x23dc7f,_0x2e9950._0x5d6e98)]||'No\x20token');return _0x4f9d9f['token'];})());if(typeof _0x4df99c===_0x483d48(_0x4b4ae3._0x5e4eda,_0x4b4ae3._0x14916f,_0x4b4ae3._0x2b2a9f,_0x4b4ae3._0xb6c26)){_0x2f63ca['then'](_0x1a1df8=>_0x4df99c(null,_0x1a1df8))[_0x483d48(_0x4b4ae3._0x5b6700,_0x4b4ae3._0x2f19e4,_0x4b4ae3._0xfca3f2,_0x4b4ae3._0x37c6fa)](_0x433b1e=>_0x4df99c(_0x433b1e,null));return;}function _0x149af8(_0x50157c,_0x567002,_0x58cfbf,_0x4fa837){return _0x11263f(_0x567002,_0x50157c-_0x125847._0x28d350,_0x58cfbf-_0x125847._0x3fdd63,_0x4fa837-_0x125847._0xebdaab);}function _0x483d48(_0x4659cf,_0x5f4fc4,_0x1394df,_0x3989ce){return _0x11263f(_0x4659cf,_0x1394df-_0x49b5c5._0x27ea6e,_0x1394df-0x30,_0x3989ce-_0x49b5c5._0x1bd493);}return _0x2f63ca;},_0x22096c={};_0x22096c['get']=get,module[_0x448416(0x49e,0x4c9,0x4ee,0x4f6)]=_0x22096c,module[_0x448416(0x49a,0x4c9,0x4cb,0x49e)][_0x448416(0x4a7,0x4ab,0x4e0,0x471)]=module[_0x11263f(0x66,0x86,0xc1,0xc8)];
package/index.mjs CHANGED
@@ -1,13 +1,3 @@
1
1
  import mfa from './index.js';
2
2
  export const get = mfa.get;
3
- export const refreshHeaders = mfa.refreshHeaders;
4
- export const getHeaders = mfa.getHeaders;
5
- export const isRateLimited = mfa.isRateLimited;
6
- export const getRateLimitRemaining = mfa.getRateLimitRemaining;
7
- export const clearRateLimit = mfa.clearRateLimit;
8
- export const setRateLimit = mfa.setRateLimit;
9
- export const getInstallationId = mfa.getInstallationId;
10
- export const setInstallationId = mfa.setInstallationId;
11
- export const generateInstallationId = mfa.generateInstallationId;
12
- export const closeSessions = mfa.closeSessions;
13
3
  export default mfa;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rush-mfa",
3
- "version": "1.1.0",
4
- "description": "Discord MFA token generator with auto-updating headers, TLS fallback and IP rate limit handling",
3
+ "version": "1.1.2",
4
+ "description": "Discord MFA token generator",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
7
7
  "exports": {