@baskerhq/localstage 1.0.1-beta.6 → 1.0.1-beta.8

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/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  LocalStage is a local development server and CLI for Basker themes. Run a theme locally while using live data from a Basker CMS environment.
4
4
 
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @baskerhq/localstage
9
+ ```
10
+
5
11
  ## Usage
6
12
 
7
13
  From a theme directory:
@@ -10,12 +16,10 @@ From a theme directory:
10
16
  basker theme dev
11
17
  ```
12
18
 
13
- The published CLI defaults to `https://basker.app`.
14
-
15
- Advanced testing override:
19
+ Use a custom CMS URL:
16
20
 
17
21
  ```bash
18
- BASKER_CMS_URL=https://staging.example.com LOCALSTAGE_THEME_PATH=/path/to/theme basker theme dev
22
+ BASKER_URL=https://example.com LOCALSTAGE_THEME_PATH=/path/to/theme basker theme dev
19
23
  ```
20
24
 
21
25
  Open http://localhost:9292 and sign in.
@@ -36,42 +40,27 @@ your_theme/
36
40
 
37
41
  ## Environment Variables
38
42
 
39
- - `BASKER_CMS_URL` - optional CMS URL override (testing only)
40
- - `LOCALSTAGE_THEME_PATH` - path to a theme directory
43
+ - `BASKER_URL` CMS base URL
44
+ - `LOCALSTAGE_THEME_PATH` path to a theme directory
41
45
 
42
46
  ## Commands
43
47
 
44
- - `basker theme dev` - start the local dev server
45
- - `basker theme check` - validate theme structure
46
-
47
- ## Release Validation (Shay)
48
-
49
- Use `shay` for validation only. This flow never publishes to npm.
48
+ ### Authentication
50
49
 
51
- ```bash
52
- cd packages/localstage
53
- pnpm run release:cli -- --target shay --cms-url https://admin.shay.example.com
54
- ```
55
-
56
- This command runs:
57
-
58
- - release verification (`typecheck`, release build, prepublish checks)
59
- - local smoke test against `../../localstagetesttheme` (Cleveland Orchestra)
60
- - `npm pack --dry-run`
50
+ - `basker auth login [theme-path]` — authenticate and select a workspace
51
+ - `basker auth tenant [theme-path]` — switch the active workspace for this theme
52
+ - `basker auth logout [theme-path]` clear the stored session for this theme
61
53
 
62
- ## Production Publish
54
+ ### Theme
63
55
 
64
- Production is the only target that can publish to npm.
65
-
66
- ```bash
67
- cd packages/localstage
68
- pnpm run release:cli -- --target production --cms-url https://basker.app --tag latest --publish
69
- ```
56
+ - `basker theme dev [theme-path]` — start the local dev server (alias: `basker dev`)
57
+ - `basker theme check [theme-path]` — validate theme structure and schema (alias: `basker check`)
58
+ - `basker theme set [theme-path] --theme-id <id>` — store or look up the theme ID used for remote settings
70
59
 
71
- Use `--target production` without `--publish` for a production dry run.
72
- When `--target production` is used and `--cms-url` is omitted, LocalStage defaults to `https://basker.app`.
60
+ Common flags: `--theme, -t <path>`, `--payload-url <url>`, `--port, -p <port>` (dev only), `--no-livereload` (dev only), `--debug, -d` (dev only).
73
61
 
74
62
  ## Troubleshooting
75
63
 
76
64
  - Ensure your CMS URL is reachable and your account can access the target tenant.
77
65
  - Verify the theme path exists and contains `layouts/` and `templates/`.
66
+ - If sign-in fails, run `basker auth logout` then `basker auth login` to reset the cached session.
package/bin/basker.js ADDED
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { runEntry } from "./run-entry.js";
4
+
5
+ await runEntry({
6
+ distPath: "dist/basker.js",
7
+ sourcePath: "src/basker.ts",
8
+ env: {
9
+ BASKER_CLI_MODE: "basker",
10
+ OCLIF_BIN: "basker",
11
+ },
12
+ });
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { runEntry } from "./run-entry.js";
4
+
5
+ await runEntry({
6
+ distPath: "dist/cli.js",
7
+ sourcePath: "src/cli.ts",
8
+ env: {
9
+ OCLIF_BIN: "localstage",
10
+ },
11
+ });
@@ -0,0 +1,53 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { spawn } from "node:child_process";
4
+ import { existsSync } from "node:fs";
5
+ import { dirname, resolve } from "node:path";
6
+ import { fileURLToPath, pathToFileURL } from "node:url";
7
+
8
+ const packageDir = resolve(dirname(fileURLToPath(import.meta.url)), "..");
9
+
10
+ /**
11
+ * @param {{
12
+ * distPath: string;
13
+ * sourcePath: string;
14
+ * env?: Record<string, string>;
15
+ * }} options
16
+ */
17
+ export const runEntry = async ({
18
+ distPath,
19
+ sourcePath,
20
+ env,
21
+ }) => {
22
+ const resolvedDistPath = resolve(packageDir, distPath);
23
+ if (existsSync(resolvedDistPath)) {
24
+ await import(pathToFileURL(resolvedDistPath).href);
25
+ return;
26
+ }
27
+
28
+ const resolvedSourcePath = resolve(packageDir, sourcePath);
29
+ const child = spawn(
30
+ process.execPath,
31
+ ["--import", "tsx", resolvedSourcePath, ...process.argv.slice(2)],
32
+ {
33
+ stdio: "inherit",
34
+ env: {
35
+ ...process.env,
36
+ NODE_ENV: process.env.NODE_ENV ?? "development",
37
+ ...env,
38
+ },
39
+ },
40
+ );
41
+
42
+ await new Promise((resolvePromise, reject) => {
43
+ child.on("error", reject);
44
+ child.on("exit", (code) => {
45
+ if (code === 0) {
46
+ resolvePromise();
47
+ return;
48
+ }
49
+
50
+ reject(new Error(`LocalStage CLI exited with code ${code ?? "unknown"}.`));
51
+ });
52
+ });
53
+ };
package/dist/basker.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- var _0x4872f5=_0x1e8b;(function(_0x4553ba,_0x129696){var _0x405687=_0x1e8b,_0x2245d3=_0x4553ba();while(!![]){try{var _0x3abade=parseInt(_0x405687(0xa7))/0x1*(-parseInt(_0x405687(0x99))/0x2)+-parseInt(_0x405687(0xb4))/0x3+-parseInt(_0x405687(0xa5))/0x4+-parseInt(_0x405687(0x9b))/0x5*(-parseInt(_0x405687(0xb0))/0x6)+parseInt(_0x405687(0xa0))/0x7*(parseInt(_0x405687(0xaa))/0x8)+parseInt(_0x405687(0xa3))/0x9+-parseInt(_0x405687(0xa4))/0xa*(parseInt(_0x405687(0x9a))/0xb);if(_0x3abade===_0x129696)break;else _0x2245d3['push'](_0x2245d3['shift']());}catch(_0x2ef5fb){_0x2245d3['push'](_0x2245d3['shift']());}}}(_0x32f1,0xe2364));import{basename}from'\x70\x61\x74\x68';function _0x32f1(){var _0xdc124c=['\x33\x30\x5a\x42\x46\x57\x72\x4b','\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65','\x65\x6e\x76','\x74\x68\x65\x6d\x65','\x33\x39\x30\x34\x31\x37\x5a\x48\x42\x54\x53\x69','\x35\x36\x32\x36\x32\x46\x64\x4f\x65\x58\x51','\x33\x33\x4b\x6a\x72\x43\x44\x7a','\x37\x36\x36\x36\x31\x30\x70\x59\x47\x74\x6a\x4e','\x69\x6e\x63\x6c\x75\x64\x65\x73','\x64\x65\x76','\x42\x41\x53\x4b\x45\x52\x5f\x43\x4c\x49\x5f\x4d\x4f\x44\x45','\x74\x68\x65\x6e','\x32\x31\x37\x38\x38\x39\x6b\x47\x6f\x6d\x44\x6c','\x61\x72\x67\x76','\x73\x70\x6c\x69\x74','\x31\x34\x37\x34\x32\x30\x33\x36\x64\x58\x63\x52\x70\x4e','\x39\x30\x36\x35\x35\x30\x6d\x6e\x41\x66\x70\x6b','\x36\x31\x36\x34\x37\x31\x36\x56\x49\x6d\x79\x6a\x65','\x62\x61\x73\x6b\x65\x72\x2e\x6a\x73','\x34\x31\x64\x45\x49\x4b\x77\x7a','\x65\x76\x65\x72\x79','\x65\x78\x69\x74','\x34\x31\x36\x4a\x4c\x44\x7a\x6a\x4b','\x6c\x65\x6e\x67\x74\x68','\x74\x72\x69\x6d','\x4f\x43\x4c\x49\x46\x5f\x42\x49\x4e','\x62\x61\x73\x6b\x65\x72','\x72\x65\x73\x6f\x6c\x76\x65'];_0x32f1=function(){return _0xdc124c;};return _0x32f1();}function _0x1e8b(_0x389b97,_0x5135ab){_0x389b97=_0x389b97-0x99;var _0x32f144=_0x32f1();var _0x1e8bbf=_0x32f144[_0x389b97];return _0x1e8bbf;}import{run}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';var s=(_0x2efe6c,_0x4dd44a)=>()=>(_0x2efe6c&&(_0x4dd44a=_0x2efe6c(_0x2efe6c=0x0)),_0x4dd44a),o,m,t,i=s(()=>{var _0x1c16aa=_0x1e8b;o=[_0x1c16aa(0xb3),_0x1c16aa(0x9d)],m=_0xf4e158=>typeof _0xf4e158!='\x73\x74\x72\x69\x6e\x67'||_0xf4e158[_0x1c16aa(0xac)]()['\x6c\x65\x6e\x67\x74\x68']===0x0,t=_0xc3db06=>{var _0x29d877=_0x1c16aa;if(_0xc3db06[_0x29d877(0xab)]===0x0||_0xc3db06[_0x29d877(0xa8)](m))return[...o];if(_0xc3db06['\x6c\x65\x6e\x67\x74\x68']===0x1){let _0x34d5d7=_0xc3db06[0x0]?.[_0x29d877(0xac)]();if(_0x34d5d7&&_0x34d5d7[_0x29d877(0x9c)]('\x3a')){let _0x2db690=_0x34d5d7[_0x29d877(0xa2)]('\x3a')['\x66\x69\x6c\x74\x65\x72'](Boolean);return _0x2db690[_0x29d877(0xab)]>0x0?_0x2db690:[...o];}}return[..._0xc3db06];};}),c,l=s(()=>{c=()=>{var _0x1950b5=_0x1e8b;if(process[_0x1950b5(0xb2)][_0x1950b5(0xad)])return process[_0x1950b5(0xb2)][_0x1950b5(0xad)];let _0x3c267c=basename(process[_0x1950b5(0xa1)][0x1]??'');return _0x3c267c===_0x1950b5(0xae)||_0x3c267c===_0x1950b5(0xa6)?'\x62\x61\x73\x6b\x65\x72':_0x1950b5(0xb1);};}),v,a=s(()=>{i(),l(),v=async()=>{var _0x55920b=_0x1e8b;process['\x65\x6e\x76'][_0x55920b(0xad)]=c();let _0x20b0c4=t(process[_0x55920b(0xa1)]['\x73\x6c\x69\x63\x65'](0x2));try{await run(_0x20b0c4,import.meta.url);}catch(_0x31f80f){console['\x65\x72\x72\x6f\x72'](_0x31f80f),process[_0x55920b(0xa9)](0x1);}},v();});process[_0x4872f5(0xb2)][_0x4872f5(0x9e)]=_0x4872f5(0xae),process[_0x4872f5(0xb2)][_0x4872f5(0xad)]=_0x4872f5(0xae),Promise[_0x4872f5(0xaf)]()[_0x4872f5(0x9f)](()=>a());
2
+ var _0xe481d4=_0x2573;(function(_0x4c03cf,_0x88970){var _0x3185da=_0x2573,_0x4ded57=_0x4c03cf();while(!![]){try{var _0x1c8816=-parseInt(_0x3185da(0x16e))/0x1*(parseInt(_0x3185da(0x16f))/0x2)+-parseInt(_0x3185da(0x15b))/0x3+-parseInt(_0x3185da(0x169))/0x4*(parseInt(_0x3185da(0x158))/0x5)+-parseInt(_0x3185da(0x162))/0x6*(-parseInt(_0x3185da(0x15c))/0x7)+parseInt(_0x3185da(0x164))/0x8+parseInt(_0x3185da(0x16c))/0x9+-parseInt(_0x3185da(0x167))/0xa*(-parseInt(_0x3185da(0x163))/0xb);if(_0x1c8816===_0x88970)break;else _0x4ded57['push'](_0x4ded57['shift']());}catch(_0x2b7b7b){_0x4ded57['push'](_0x4ded57['shift']());}}}(_0xee06,0xcb337));import{basename}from'\x70\x61\x74\x68';function _0xee06(){var _0x322098=['\x32\x34\x34\x38\x39\x38\x37\x61\x79\x4c\x6c\x67\x58','\x32\x34\x32\x33\x33\x37\x39\x56\x42\x42\x55\x64\x64','\x65\x6e\x76','\x6c\x65\x6e\x67\x74\x68','\x42\x41\x53\x4b\x45\x52\x5f\x43\x4c\x49\x5f\x4d\x4f\x44\x45','\x64\x65\x76','\x4f\x43\x4c\x49\x46\x5f\x42\x49\x4e','\x31\x38\x42\x69\x42\x53\x66\x70','\x31\x31\x47\x50\x6a\x53\x59\x6b','\x34\x33\x34\x31\x31\x33\x36\x5a\x67\x61\x59\x4f\x74','\x73\x74\x72\x69\x6e\x67','\x65\x78\x69\x74','\x31\x30\x32\x32\x35\x32\x37\x30\x49\x79\x50\x61\x42\x42','\x73\x6c\x69\x63\x65','\x31\x32\x49\x43\x6d\x6d\x74\x45','\x73\x70\x6c\x69\x74','\x61\x72\x67\x76','\x38\x39\x39\x32\x34\x34\x30\x6e\x71\x76\x6d\x68\x66','\x69\x6e\x63\x6c\x75\x64\x65\x73','\x31\x77\x6b\x46\x4c\x63\x53','\x32\x30\x37\x37\x32\x34\x36\x6d\x64\x49\x67\x55\x50','\x74\x68\x65\x6d\x65','\x65\x72\x72\x6f\x72','\x72\x65\x73\x6f\x6c\x76\x65','\x66\x69\x6c\x74\x65\x72','\x74\x68\x65\x6e','\x31\x35\x32\x36\x30\x39\x35\x56\x6a\x58\x56\x6f\x4e','\x62\x61\x73\x6b\x65\x72\x2e\x6a\x73','\x62\x61\x73\x6b\x65\x72'];_0xee06=function(){return _0x322098;};return _0xee06();}import{run}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';function _0x2573(_0x24310a,_0x21bea8){_0x24310a=_0x24310a-0x157;var _0xee0656=_0xee06();var _0x257396=_0xee0656[_0x24310a];return _0x257396;}var s=(_0x275dd5,_0x570f84)=>()=>(_0x275dd5&&(_0x570f84=_0x275dd5(_0x275dd5=0x0)),_0x570f84),o,m,t,i=s(()=>{var _0x15dbdb=_0x2573;o=[_0x15dbdb(0x170),_0x15dbdb(0x160)],m=_0x41089c=>typeof _0x41089c!=_0x15dbdb(0x165)||_0x41089c['\x74\x72\x69\x6d']()[_0x15dbdb(0x15e)]===0x0,t=_0x3b6d53=>{var _0x22a7ea=_0x15dbdb;if(_0x3b6d53[_0x22a7ea(0x15e)]===0x0||_0x3b6d53['\x65\x76\x65\x72\x79'](m))return[...o];if(_0x3b6d53[_0x22a7ea(0x15e)]===0x1){let _0x1add50=_0x3b6d53[0x0]?.['\x74\x72\x69\x6d']();if(_0x1add50&&_0x1add50[_0x22a7ea(0x16d)]('\x3a')){let _0x340731=_0x1add50[_0x22a7ea(0x16a)]('\x3a')[_0x22a7ea(0x173)](Boolean);return _0x340731['\x6c\x65\x6e\x67\x74\x68']>0x0?_0x340731:[...o];}}return[..._0x3b6d53];};}),c,l=s(()=>{c=()=>{var _0x35f1b9=_0x2573;if(process[_0x35f1b9(0x15d)][_0x35f1b9(0x161)])return process['\x65\x6e\x76'][_0x35f1b9(0x161)];let _0x26465f=basename(process[_0x35f1b9(0x16b)][0x1]??'');return _0x26465f===_0x35f1b9(0x15a)||_0x26465f===_0x35f1b9(0x159)?_0x35f1b9(0x15a):'\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65';};}),v,a=s(()=>{i(),l(),v=async()=>{var _0x43d444=_0x2573;process['\x65\x6e\x76'][_0x43d444(0x161)]=c();let _0x13b821=t(process[_0x43d444(0x16b)][_0x43d444(0x168)](0x2));try{await run(_0x13b821,import.meta.url);}catch(_0x3120dc){console[_0x43d444(0x171)](_0x3120dc),process[_0x43d444(0x166)](0x1);}},v();});process[_0xe481d4(0x15d)][_0xe481d4(0x15f)]=_0xe481d4(0x15a),process['\x65\x6e\x76'][_0xe481d4(0x161)]=_0xe481d4(0x15a),Promise[_0xe481d4(0x172)]()[_0xe481d4(0x157)](()=>a());
package/dist/cli.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- const _0x1afb02=_0x2a9c;(function(_0x41e70a,_0x54e764){const _0x243c76=_0x2a9c,_0x3ad797=_0x41e70a();while(!![]){try{const _0x6b2f0d=parseInt(_0x243c76(0x165))/0x1*(-parseInt(_0x243c76(0x171))/0x2)+parseInt(_0x243c76(0x16f))/0x3+parseInt(_0x243c76(0x15d))/0x4*(-parseInt(_0x243c76(0x175))/0x5)+-parseInt(_0x243c76(0x166))/0x6+parseInt(_0x243c76(0x164))/0x7*(parseInt(_0x243c76(0x160))/0x8)+parseInt(_0x243c76(0x174))/0x9*(parseInt(_0x243c76(0x159))/0xa)+parseInt(_0x243c76(0x16e))/0xb;if(_0x6b2f0d===_0x54e764)break;else _0x3ad797['push'](_0x3ad797['shift']());}catch(_0x2446d4){_0x3ad797['push'](_0x3ad797['shift']());}}}(_0x30e1,0x48910));function _0x2a9c(_0x3d4069,_0x3bd99b){_0x3d4069=_0x3d4069-0x159;const _0x30e195=_0x30e1();let _0x2a9c33=_0x30e195[_0x3d4069];return _0x2a9c33;}import{run}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';import{basename}from'\x70\x61\x74\x68';var n=[_0x1afb02(0x170),_0x1afb02(0x169)],i=_0x4f95a6=>typeof _0x4f95a6!=_0x1afb02(0x15c)||_0x4f95a6['\x74\x72\x69\x6d']()[_0x1afb02(0x16b)]===0x0,o=_0x130f24=>{const _0x32fc0b=_0x1afb02;if(_0x130f24['\x6c\x65\x6e\x67\x74\x68']===0x0||_0x130f24[_0x32fc0b(0x161)](i))return[...n];if(_0x130f24[_0x32fc0b(0x16b)]===0x1){let _0x2caf97=_0x130f24[0x0]?.[_0x32fc0b(0x15b)]();if(_0x2caf97&&_0x2caf97[_0x32fc0b(0x168)]('\x3a')){let _0x145ea1=_0x2caf97[_0x32fc0b(0x15a)]('\x3a')[_0x32fc0b(0x172)](Boolean);return _0x145ea1[_0x32fc0b(0x16b)]>0x0?_0x145ea1:[...n];}}return[..._0x130f24];},t=()=>{const _0x5d425c=_0x1afb02;if(process['\x65\x6e\x76'][_0x5d425c(0x167)])return process['\x65\x6e\x76']['\x4f\x43\x4c\x49\x46\x5f\x42\x49\x4e'];let _0x4e9577=basename(process[_0x5d425c(0x15e)][0x1]??'');return _0x4e9577===_0x5d425c(0x16a)||_0x4e9577===_0x5d425c(0x16d)?_0x5d425c(0x16a):_0x5d425c(0x15f);},m=async()=>{const _0x3c5671=_0x1afb02;process[_0x3c5671(0x173)][_0x3c5671(0x167)]=t();let _0x9e8c49=o(process[_0x3c5671(0x15e)][_0x3c5671(0x163)](0x2));try{await run(_0x9e8c49,import.meta.url);}catch(_0x56dff9){console[_0x3c5671(0x162)](_0x56dff9),process[_0x3c5671(0x16c)](0x1);}};function _0x30e1(){const _0x26a537=['\x39\x33\x33\x38\x38\x39\x56\x49\x52\x71\x62\x4f','\x37\x33\x38\x39\x33\x33\x5a\x69\x44\x6b\x59\x71','\x74\x68\x65\x6d\x65','\x33\x31\x38\x33\x38\x30\x66\x63\x63\x77\x69\x45','\x66\x69\x6c\x74\x65\x72','\x65\x6e\x76','\x37\x30\x32\x4b\x6f\x78\x58\x73\x6b','\x31\x35\x66\x51\x50\x48\x6d\x6d','\x36\x38\x37\x31\x30\x52\x49\x53\x77\x78\x6c','\x73\x70\x6c\x69\x74','\x74\x72\x69\x6d','\x73\x74\x72\x69\x6e\x67','\x31\x39\x30\x34\x36\x30\x42\x68\x6d\x51\x4a\x6b','\x61\x72\x67\x76','\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65','\x38\x58\x44\x55\x42\x66\x59','\x65\x76\x65\x72\x79','\x65\x72\x72\x6f\x72','\x73\x6c\x69\x63\x65','\x33\x35\x34\x30\x37\x30\x35\x4b\x48\x57\x64\x58\x4d','\x33\x69\x63\x62\x49\x58\x4f','\x32\x37\x33\x31\x38\x39\x36\x6f\x43\x65\x6a\x4b\x6e','\x4f\x43\x4c\x49\x46\x5f\x42\x49\x4e','\x69\x6e\x63\x6c\x75\x64\x65\x73','\x64\x65\x76','\x62\x61\x73\x6b\x65\x72','\x6c\x65\x6e\x67\x74\x68','\x65\x78\x69\x74','\x62\x61\x73\x6b\x65\x72\x2e\x6a\x73'];_0x30e1=function(){return _0x26a537;};return _0x30e1();}m();
2
+ function _0x1ffd(_0x474158,_0x3febc3){_0x474158=_0x474158-0xd9;const _0x12e194=_0x12e1();let _0x1ffdb4=_0x12e194[_0x474158];return _0x1ffdb4;}const _0x25910e=_0x1ffd;(function(_0x35417e,_0x59bb79){const _0x1168b1=_0x1ffd,_0x49e976=_0x35417e();while(!![]){try{const _0x43a008=parseInt(_0x1168b1(0xde))/0x1*(-parseInt(_0x1168b1(0xef))/0x2)+parseInt(_0x1168b1(0xdc))/0x3+-parseInt(_0x1168b1(0xdf))/0x4+-parseInt(_0x1168b1(0xda))/0x5+-parseInt(_0x1168b1(0xe8))/0x6+parseInt(_0x1168b1(0xf0))/0x7+-parseInt(_0x1168b1(0xe1))/0x8*(-parseInt(_0x1168b1(0xee))/0x9);if(_0x43a008===_0x59bb79)break;else _0x49e976['push'](_0x49e976['shift']());}catch(_0x498573){_0x49e976['push'](_0x49e976['shift']());}}}(_0x12e1,0xa7955));function _0x12e1(){const _0x2a9e01=['\x38\x35\x36\x5a\x6f\x68\x59\x48\x77','\x62\x61\x73\x6b\x65\x72','\x61\x72\x67\x76','\x73\x6c\x69\x63\x65','\x74\x68\x65\x6d\x65','\x65\x76\x65\x72\x79','\x4f\x43\x4c\x49\x46\x5f\x42\x49\x4e','\x34\x33\x34\x36\x33\x30\x34\x7a\x79\x45\x48\x77\x4d','\x66\x69\x6c\x74\x65\x72','\x73\x70\x6c\x69\x74','\x62\x61\x73\x6b\x65\x72\x2e\x6a\x73','\x65\x6e\x76','\x64\x65\x76','\x32\x30\x30\x31\x35\x31\x58\x41\x65\x74\x63\x4a','\x31\x30\x31\x34\x34\x36\x36\x77\x58\x79\x75\x6a\x54','\x32\x39\x39\x35\x37\x34\x38\x46\x6a\x56\x58\x69\x54','\x65\x72\x72\x6f\x72','\x65\x78\x69\x74','\x6c\x65\x6e\x67\x74\x68','\x69\x6e\x63\x6c\x75\x64\x65\x73','\x32\x38\x37\x37\x37\x38\x30\x71\x47\x55\x48\x4d\x6c','\x73\x74\x72\x69\x6e\x67','\x31\x37\x39\x30\x32\x37\x37\x72\x67\x53\x6b\x76\x41','\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65','\x32\x68\x54\x6b\x47\x4d\x44','\x31\x36\x31\x33\x38\x37\x36\x66\x4a\x63\x72\x69\x63','\x74\x72\x69\x6d'];_0x12e1=function(){return _0x2a9e01;};return _0x12e1();}import{run}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';import{basename}from'\x70\x61\x74\x68';var n=[_0x25910e(0xe5),_0x25910e(0xed)],i=_0xc08d99=>typeof _0xc08d99!=_0x25910e(0xdb)||_0xc08d99[_0x25910e(0xe0)]()[_0x25910e(0xf3)]===0x0,o=_0x5e2f7d=>{const _0x27f452=_0x25910e;if(_0x5e2f7d[_0x27f452(0xf3)]===0x0||_0x5e2f7d[_0x27f452(0xe6)](i))return[...n];if(_0x5e2f7d[_0x27f452(0xf3)]===0x1){let _0x20b53e=_0x5e2f7d[0x0]?.['\x74\x72\x69\x6d']();if(_0x20b53e&&_0x20b53e[_0x27f452(0xd9)]('\x3a')){let _0x2c6bd3=_0x20b53e[_0x27f452(0xea)]('\x3a')[_0x27f452(0xe9)](Boolean);return _0x2c6bd3[_0x27f452(0xf3)]>0x0?_0x2c6bd3:[...n];}}return[..._0x5e2f7d];},t=()=>{const _0x3f60da=_0x25910e;if(process[_0x3f60da(0xec)]['\x4f\x43\x4c\x49\x46\x5f\x42\x49\x4e'])return process['\x65\x6e\x76'][_0x3f60da(0xe7)];let _0x4228d1=basename(process[_0x3f60da(0xe3)][0x1]??'');return _0x4228d1===_0x3f60da(0xe2)||_0x4228d1===_0x3f60da(0xeb)?'\x62\x61\x73\x6b\x65\x72':_0x3f60da(0xdd);},m=async()=>{const _0x362845=_0x25910e;process[_0x362845(0xec)][_0x362845(0xe7)]=t();let _0x1cc584=o(process[_0x362845(0xe3)][_0x362845(0xe4)](0x2));try{await run(_0x1cc584,import.meta.url);}catch(_0x58682c){console[_0x362845(0xf1)](_0x58682c),process[_0x362845(0xf2)](0x1);}};m();
@@ -0,0 +1,16 @@
1
+ import * as _oclif_core_interfaces from '@oclif/core/interfaces';
2
+ import { Command } from '@oclif/core';
3
+
4
+ declare class AuthLogin extends Command {
5
+ static description: string;
6
+ static args: {
7
+ themePath: _oclif_core_interfaces.Arg<string | undefined, Record<string, unknown>>;
8
+ };
9
+ static flags: {
10
+ theme: _oclif_core_interfaces.OptionFlag<string | undefined, _oclif_core_interfaces.CustomOptions>;
11
+ "payload-url": _oclif_core_interfaces.OptionFlag<string, _oclif_core_interfaces.CustomOptions>;
12
+ };
13
+ run(): Promise<void>;
14
+ }
15
+
16
+ export { AuthLogin as default };
@@ -0,0 +1 @@
1
+ const _0x3b465e=_0x5877;(function(_0x24becc,_0x10466f){const _0xb6cbcc=_0x5877,_0x3cc5af=_0x24becc();while(!![]){try{const _0x148aad=parseInt(_0xb6cbcc(0x21e))/0x1*(-parseInt(_0xb6cbcc(0x20c))/0x2)+-parseInt(_0xb6cbcc(0x1c3))/0x3+-parseInt(_0xb6cbcc(0x1ed))/0x4*(parseInt(_0xb6cbcc(0x206))/0x5)+-parseInt(_0xb6cbcc(0x1b6))/0x6*(-parseInt(_0xb6cbcc(0x230))/0x7)+-parseInt(_0xb6cbcc(0x1fa))/0x8+-parseInt(_0xb6cbcc(0x1d4))/0x9+parseInt(_0xb6cbcc(0x1e3))/0xa*(parseInt(_0xb6cbcc(0x20d))/0xb);if(_0x148aad===_0x10466f)break;else _0x3cc5af['push'](_0x3cc5af['shift']());}catch(_0x599a9c){_0x3cc5af['push'](_0x3cc5af['shift']());}}}(_0x1931,0x73c2a));import{Command,Args,Flags}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';import{join,dirname,resolve}from'\x70\x61\x74\x68';import{existsSync,unlinkSync,writeFileSync,readFileSync}from'\x66\x73';function _0x5877(_0xccb4a7,_0x5f0a60){_0xccb4a7=_0xccb4a7-0x1ab;const _0x193177=_0x1931();let _0x587735=_0x193177[_0xccb4a7];return _0x587735;}import{PayloadSDK}from'\x40\x70\x61\x79\x6c\x6f\x61\x64\x63\x6d\x73\x2f\x73\x64\x6b';import{stdin,stdout}from'\x70\x72\x6f\x63\x65\x73\x73';import{emitKeypressEvents}from'\x72\x65\x61\x64\x6c\x69\x6e\x65';import{createInterface}from'\x72\x65\x61\x64\x6c\x69\x6e\x65\x2f\x70\x72\x6f\x6d\x69\x73\x65\x73';import{fileURLToPath}from'\x75\x72\x6c';var _=_0x5113d6=>typeof _0x5113d6==_0x3b465e(0x22a),$=_0x1ca38b=>typeof _0x1ca38b==_0x3b465e(0x238)&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x1ca38b),i=_0x4bf12d=>typeof _0x4bf12d==_0x3b465e(0x1f5)&&_0x4bf12d!==null&&!Array['\x69\x73\x41\x72\x72\x61\x79'](_0x4bf12d),a=(_0x20f5d3,_0x39fb25)=>{if(!i(_0x20f5d3))return null;let _0x4a7d9a=_0x20f5d3[_0x39fb25];return _(_0x4a7d9a)?_0x4a7d9a:null;},R=(_0x3ce4c6,_0x519d0d)=>{if(!i(_0x3ce4c6))return null;let _0x275e32=_0x3ce4c6[_0x519d0d];return $(_0x275e32)?_0x275e32:null;},f=(_0x4d835e,_0x3daf2b)=>a(_0x4d835e,_0x3daf2b)!==null,k=_0x2bd15c=>f(_0x2bd15c,'\x69\x64')&&f(_0x2bd15c,'\x6e\x61\x6d\x65')&&f(_0x2bd15c,_0x3b465e(0x1b0)),ue=_0x3f5505=>f(_0x3f5505,'\x69\x64')&&f(_0x3f5505,_0x3b465e(0x1b4)),M=_0x57de6a=>ue(_0x57de6a)&&f(_0x57de6a,_0x3b465e(0x1e8))&&f(_0x57de6a,_0x3b465e(0x216)),he=join(process['\x63\x77\x64'](),_0x3b465e(0x1f3)),ge=0x18*0x3c*0x3c*0x3e8,C=class{[_0x3b465e(0x231)]=null;['\x74\x65\x6e\x61\x6e\x74\x49\x64']=null;['\x74\x65\x6e\x61\x6e\x74']=null;[_0x3b465e(0x22e)]=null;[_0x3b465e(0x1ba)];constructor(_0x40b827=he){const _0x1d6ac0=_0x3b465e;this[_0x1d6ac0(0x1ba)]=_0x40b827;}['\x67\x65\x74\x53\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65'](){const _0xa656f4=_0x3b465e;return this[_0xa656f4(0x1ba)];}[_0x3b465e(0x21a)](_0x3d9d3b){const _0x1b48f1=_0x3b465e;this[_0x1b48f1(0x1ba)]=_0x3d9d3b,this[_0x1b48f1(0x1c2)]();}[_0x3b465e(0x239)](){const _0x40c55d=_0x3b465e;return this[_0x40c55d(0x231)];}[_0x3b465e(0x1be)](){const _0x563e6f=_0x3b465e;return this[_0x563e6f(0x1ae)];}[_0x3b465e(0x23a)](){const _0x2947fe=_0x3b465e;return this[_0x2947fe(0x1df)];}[_0x3b465e(0x1de)](){const _0x33d2ea=_0x3b465e;return this[_0x33d2ea(0x22e)];}[_0x3b465e(0x1b2)](_0x4edc0f,_0x435b4a,_0x120e52){const _0x2d94dd=_0x3b465e;this['\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e']=_0x4edc0f,this[_0x2d94dd(0x1ae)]=_0x435b4a,this['\x74\x65\x6e\x61\x6e\x74']=_0x120e52??null;}['\x73\x65\x74\x54\x68\x65\x6d\x65\x49\x64'](_0x415247){const _0x5a82ca=_0x3b465e;this[_0x5a82ca(0x22e)]=_0x415247;}[_0x3b465e(0x228)](){const _0x4abc8f=_0x3b465e;this[_0x4abc8f(0x22e)]=null;}[_0x3b465e(0x1b5)](){const _0x89203e=_0x3b465e;if(this[_0x89203e(0x1da)](),!!existsSync(this[_0x89203e(0x1ba)]))try{unlinkSync(this[_0x89203e(0x1ba)]);}catch(_0x1e0516){console[_0x89203e(0x1d8)](_0x89203e(0x215),_0x1e0516);}}[_0x3b465e(0x210)](){const _0x304d80=_0x3b465e;let _0x521808=!!(this[_0x304d80(0x231)]&&this[_0x304d80(0x1ae)]),_0x673923=!!this['\x74\x68\x65\x6d\x65\x49\x64'];if(!_0x521808&&!_0x673923){if(!existsSync(this['\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65']))return;try{unlinkSync(this[_0x304d80(0x1ba)]);}catch(_0xe669da){console['\x77\x61\x72\x6e'](_0x304d80(0x215),_0xe669da);}return;}let _0x57b4af={'\x74\x69\x6d\x65\x73\x74\x61\x6d\x70':Date[_0x304d80(0x1c0)]()};this[_0x304d80(0x231)]&&this['\x74\x65\x6e\x61\x6e\x74\x49\x64']&&(_0x57b4af[_0x304d80(0x231)]=this[_0x304d80(0x231)],_0x57b4af[_0x304d80(0x1ae)]=this['\x74\x65\x6e\x61\x6e\x74\x49\x64'],_0x57b4af[_0x304d80(0x1df)]=this[_0x304d80(0x1df)]??void 0x0),this['\x74\x68\x65\x6d\x65\x49\x64']&&(_0x57b4af[_0x304d80(0x22e)]=this[_0x304d80(0x22e)]);try{writeFileSync(this[_0x304d80(0x1ba)],JSON[_0x304d80(0x207)](_0x57b4af,null,0x2));}catch(_0x270138){console[_0x304d80(0x1d8)](_0x304d80(0x21f),_0x270138);}}[_0x3b465e(0x1c2)](){const _0x5aa964=_0x3b465e;this[_0x5aa964(0x1da)]();try{if(!existsSync(this['\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65']))return;let _0x3186b7=readFileSync(this[_0x5aa964(0x1ba)],_0x5aa964(0x1e7)),_0x41a0d2=JSON[_0x5aa964(0x202)](_0x3186b7);if(!i(_0x41a0d2))return;let _0x50e288=R(_0x41a0d2,'\x74\x69\x6d\x65\x73\x74\x61\x6d\x70');if(typeof _0x50e288!='\x6e\x75\x6d\x62\x65\x72')return;if(Date[_0x5aa964(0x1c0)]()-_0x50e288>ge){let _0x1d2667=a(_0x41a0d2,_0x5aa964(0x22e));_0x1d2667&&(this[_0x5aa964(0x22e)]=_0x1d2667);return;}let _0x1f55d5=a(_0x41a0d2,_0x5aa964(0x231)),_0x3ad4e1=a(_0x41a0d2,'\x74\x65\x6e\x61\x6e\x74\x49\x64'),_0x35e7a2=_0x5aa964(0x1df)in _0x41a0d2?_0x41a0d2[_0x5aa964(0x1df)]:null,_0x2f62d7=a(_0x41a0d2,_0x5aa964(0x22e));this[_0x5aa964(0x231)]=_0x1f55d5??null,this[_0x5aa964(0x1ae)]=_0x3ad4e1??null,this[_0x5aa964(0x1df)]=_0x35e7a2??null,this[_0x5aa964(0x22e)]=_0x2f62d7??null;}catch(_0x6a03b4){console[_0x5aa964(0x1d8)]('\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6c\x6f\x61\x64\x20\x63\x61\x63\x68\x65\x64\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a',_0x6a03b4);}}[_0x3b465e(0x1da)](){const _0x9a5306=_0x3b465e;this[_0x9a5306(0x231)]=null,this[_0x9a5306(0x1ae)]=null,this[_0x9a5306(0x1df)]=null,this[_0x9a5306(0x22e)]=null;}},p=new C();p[_0x3b465e(0x1c2)]();function B(_0x477dcf){const _0x315074=_0x3b465e;let _0x164fef=join(_0x477dcf,_0x315074(0x1f3));return p[_0x315074(0x21a)](_0x164fef),_0x164fef;}function q(_0x274efe,_0x2ca320,_0x3c6391){const _0x42e510=_0x3b465e;p[_0x42e510(0x1b2)](_0x274efe,_0x2ca320,_0x3c6391),p[_0x42e510(0x210)]();}function j(_0x4c97f7){const _0x524d60=_0x3b465e;p[_0x524d60(0x23e)](_0x4c97f7),p[_0x524d60(0x210)]();}function z(){const _0x5c4f70=_0x3b465e;p[_0x5c4f70(0x228)](),p[_0x5c4f70(0x210)]();}function K(){const _0x4f9213=_0x3b465e;p[_0x4f9213(0x1b5)]();}function _0x1931(){const _0xa1019e=['\x2e\x2e\x2f\x2e\x2e\x2f\x63\x6f\x6e\x66\x69\x67\x2f\x64\x65\x66\x61\x75\x6c\x74\x73\x2e\x6a\x73\x6f\x6e','\x69\x73\x50\x61\x75\x73\x65\x64','\x70\x61\x75\x73\x65','\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x34\x67\x44\x6b\x76\x61\x62','\x50\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x68\x65\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79','\x72\x65\x73\x70\x6f\x6e\x73\x65','\x73\x6f\x72\x74','\x64\x65\x6c\x65\x74\x65','\x47\x45\x54','\x2e\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65\x2d\x73\x65\x73\x73\x69\x6f\x6e\x2e\x6a\x73\x6f\x6e','\x74\x72\x75\x65','\x6f\x62\x6a\x65\x63\x74','\x66\x72\x6f\x6d','\x68\x69\x6e\x74','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x44\x45\x42\x55\x47','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x53\x44\x4b\x5f\x43\x41\x43\x48\x45\x5f\x44\x49\x53\x41\x42\x4c\x45\x44','\x34\x32\x38\x30\x30\x30\x38\x72\x6c\x68\x57\x66\x49','\x65\x6e\x74\x65\x72','\x6a\x73\x6f\x6e','\x2f\x61\x70\x69\x2f\x75\x73\x65\x72\x73\x2f\x73\x65\x74\x2d\x74\x65\x6e\x61\x6e\x74','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x54\x45\x4e\x41\x4e\x54\x5f\x49\x44','\x64\x6f\x63\x73','\x76\x61\x6c\x75\x65','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x75\x70\x64\x61\x74\x65\x20\x74\x68\x65\x20\x43\x4d\x53\x20\x74\x65\x6e\x61\x6e\x74\x20\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x2e\x20\x43\x6f\x6e\x74\x69\x6e\x75\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6c\x6f\x63\x61\x6c\x20\x73\x65\x73\x73\x69\x6f\x6e\x2e','\x70\x61\x72\x73\x65','\x61\x72\x67\x73','\x6d\x65\x73\x73\x61\x67\x65','\x68\x74\x74\x70\x3a\x2f\x2f\x6c\x6f\x63\x61\x6c\x68\x6f\x73\x74\x3a\x33\x30\x30\x30','\x34\x32\x35\x37\x30\x33\x30\x54\x71\x50\x44\x69\x62','\x73\x74\x72\x69\x6e\x67\x69\x66\x79','\x69\x73\x49\x6e\x74\x65\x67\x65\x72','\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65\x49\x64','\x61\x70\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x2f\x6a\x73\x6f\x6e','\x41\x75\x74\x68\x6f\x72\x69\x7a\x61\x74\x69\x6f\x6e','\x33\x36\x44\x42\x43\x53\x47\x62','\x35\x39\x31\x39\x36\x35\x65\x77\x6f\x42\x51\x78','\x66\x69\x6c\x74\x65\x72','\x6d\x65\x74\x68\x6f\x64','\x70\x65\x72\x73\x69\x73\x74\x54\x6f\x46\x69\x6c\x65','\x69\x73\x52\x61\x77','\x73\x65\x74\x52\x61\x77\x4d\x6f\x64\x65','\x65\x6e\x64\x73\x57\x69\x74\x68','\x6c\x6f\x67','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x72\x65\x6d\x6f\x76\x65\x20\x63\x61\x63\x68\x65\x64\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a','\x63\x72\x65\x61\x74\x65\x64\x41\x74','\x4e\x6f\x20\x74\x68\x65\x6d\x65\x20\x66\x69\x6c\x65\x73\x20\x64\x65\x74\x65\x63\x74\x65\x64\x20\x69\x6e\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x20\x45\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x66\x69\x6e\x64\x3a\x20\x6c\x61\x79\x6f\x75\x74\x73\x2f\x20\x6f\x72\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f\x2e','\x77\x72\x69\x74\x65','\x73\x6c\x69\x63\x65','\x73\x65\x74\x53\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65','\x45\x6e\x74\x65\x72\x20\x61\x20\x6e\x75\x6d\x62\x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x31\x20\x61\x6e\x64\x20','\x2f\x61\x70\x69','\x6e\x61\x6d\x65','\x32\x39\x35\x36\x39\x62\x6d\x69\x74\x70\x59','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x63\x61\x63\x68\x65\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a','\x54\x65\x6e\x61\x6e\x74\x20\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x20\x66\x61\x69\x6c\x65\x64\x20\x77\x69\x74\x68\x20\x73\x74\x61\x74\x75\x73\x20','\x73\x74\x61\x74\x75\x73','\x6f\x66\x66','\x4e\x6f\x20\x61\x63\x63\x65\x73\x73\x69\x62\x6c\x65\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x73\x20\x77\x65\x72\x65\x20\x66\x6f\x75\x6e\x64\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x61\x63\x63\x6f\x75\x6e\x74\x2e','\x49\x6e\x76\x61\x6c\x69\x64\x20\x65\x6d\x61\x69\x6c\x20\x6f\x72\x20\x70\x61\x73\x73\x77\x6f\x72\x64\x2e','\x69\x73\x41\x72\x72\x61\x79','\x75\x72\x6c','\x75\x73\x65\x72','\x63\x6c\x65\x61\x72\x54\x68\x65\x6d\x65\x49\x64','\x42\x65\x61\x72\x65\x72\x20','\x73\x74\x72\x69\x6e\x67','\x6d\x65\x74\x61','\x67\x65\x74','\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65','\x74\x68\x65\x6d\x65\x49\x64','\x73\x74\x61\x72\x74\x73\x57\x69\x74\x68','\x31\x37\x31\x37\x35\x32\x6a\x70\x55\x65\x6a\x70','\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e','\x74\x72\x69\x6d','\x74\x6f\x55\x70\x70\x65\x72\x43\x61\x73\x65','\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65','\x78\x2d\x62\x61\x73\x6b\x65\x72\x2d\x72\x65\x6e\x64\x65\x72\x65\x72','\x65\x6e\x74\x72\x69\x65\x73','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x54\x48\x45\x4d\x45\x5f\x50\x41\x54\x48','\x6e\x75\x6d\x62\x65\x72','\x67\x65\x74\x54\x6f\x6b\x65\x6e','\x67\x65\x74\x54\x65\x6e\x61\x6e\x74','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x53\x44\x4b\x5f\x43\x41\x43\x48\x45\x5f\x54\x54\x4c\x5f\x4d\x53','\x74\x68\x65\x6d\x65','\x53\x65\x73\x73\x69\x6f\x6e\x20\x65\x78\x70\x69\x72\x65\x64\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x69\x67\x6e\x20\x69\x6e\x20\x61\x67\x61\x69\x6e\x2e','\x73\x65\x74\x54\x68\x65\x6d\x65\x49\x64','\x50\x61\x73\x73\x77\x6f\x72\x64','\x6c\x6f\x63\x61\x6c\x65\x43\x6f\x6d\x70\x61\x72\x65','\x74\x65\x6e\x61\x6e\x74\x73','\x74\x65\x6e\x61\x6e\x74\x49\x64','\x69\x73\x46\x69\x6e\x69\x74\x65','\x73\x6c\x75\x67','\x6c\x6f\x67\x69\x6e','\x73\x65\x74\x41\x75\x74\x68','\x68\x74\x74\x70\x73\x3a\x2f\x2f','\x65\x6d\x61\x69\x6c','\x63\x6c\x65\x61\x72','\x36\x69\x55\x73\x5a\x43\x6d','\x6a\x6f\x69\x6e','\x65\x72\x72\x6f\x72','\x61\x72\x72\x61\x79\x42\x75\x66\x66\x65\x72','\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65','\x75\x73\x65\x72\x73','\x74\x6f\x53\x74\x72\x69\x6e\x67','\x74\x6f\x4c\x6f\x77\x65\x72\x43\x61\x73\x65','\x67\x65\x74\x54\x65\x6e\x61\x6e\x74\x49\x64','\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x6e\x6f\x77','\x65\x78\x70\x69\x72\x65\x73\x41\x74','\x6c\x6f\x61\x64\x46\x72\x6f\x6d\x46\x69\x6c\x65','\x32\x38\x30\x34\x37\x37\x35\x43\x51\x41\x6c\x41\x46','\x45\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x74\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20','\x63\x74\x72\x6c','\x66\x69\x6e\x64','\x6c\x65\x6e\x67\x74\x68','\x63\x77\x64','\x72\x65\x73\x75\x6d\x65','\x6b\x65\x79\x70\x72\x65\x73\x73','\x72\x75\x6e','\x63\x6c\x6f\x73\x65','\x73\x69\x7a\x65','\x66\x69\x6e\x64\x42\x79\x49\x44','\x50\x61\x79\x6c\x6f\x61\x64\x20\x43\x4d\x53\x20\x62\x61\x73\x65\x20\x55\x52\x4c','\x49\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x69\x6e\x70\x75\x74\x20\x63\x61\x6e\x63\x65\x6c\x6c\x65\x64\x2e','\x2e\x2e\x2f\x63\x6f\x6e\x66\x69\x67\x2f\x64\x65\x66\x61\x75\x6c\x74\x73\x2e\x6a\x73\x6f\x6e','\x73\x65\x74','\x71\x75\x65\x73\x74\x69\x6f\x6e','\x34\x31\x37\x34\x37\x32\x32\x50\x68\x6c\x6a\x42\x4a','\x62\x61\x63\x6b\x73\x70\x61\x63\x65','\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65','\x42\x41\x53\x4b\x45\x52\x5f\x55\x52\x4c','\x77\x61\x72\x6e','\x63\x6d\x73\x55\x72\x6c','\x72\x65\x73\x65\x74\x53\x74\x61\x74\x65','\x41\x75\x74\x68\x65\x6e\x74\x69\x63\x61\x74\x65\x20\x4c\x6f\x63\x61\x6c\x53\x74\x61\x67\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x74\x65\x72\x6d\x69\x6e\x61\x6c\x20\x61\x6e\x64\x20\x73\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x2e','\x6c\x61\x73\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64','\x54\x68\x65\x6d\x65\x20\x49\x44\x3a\x20','\x67\x65\x74\x54\x68\x65\x6d\x65\x49\x64','\x74\x65\x6e\x61\x6e\x74','\x72\x65\x74\x75\x72\x6e','\x68\x65\x61\x64\x65\x72\x73','\x63\x6c\x6f\x6e\x65','\x37\x30\x30\x73\x73\x46\x78\x61\x48','\x65\x6e\x76','\x6d\x61\x70','\x6c\x61\x79\x6f\x75\x74\x73','\x75\x74\x66\x2d\x38','\x75\x70\x64\x61\x74\x65\x64\x41\x74'];_0x1931=function(){return _0xa1019e;};return _0x1931();}var we=_0x46367b=>i(_0x46367b)&&typeof _0x46367b[_0x3b465e(0x221)]=='\x6e\x75\x6d\x62\x65\x72',ye=_0x19fde9=>{const _0x5487ba=_0x3b465e;if(!i(_0x19fde9))return null;let _0x3aef9a=_0x19fde9[_0x5487ba(0x1ef)];return we(_0x3aef9a)?_0x3aef9a:null;},J=async(_0x40e9c1,_0x56da15)=>{const _0x3a299a=_0x3b465e;let _0xbfabce=ye(_0x40e9c1);if(!_0xbfabce)return a(_0x40e9c1,'\x6d\x65\x73\x73\x61\x67\x65')??_0x56da15;if(_0xbfabce[_0x3a299a(0x221)]===0x191||_0xbfabce[_0x3a299a(0x221)]===0x193)return _0x3a299a(0x23d);let _0x1e8e32=typeof _0xbfabce[_0x3a299a(0x1e2)]==_0x3a299a(0x1bf)?_0xbfabce[_0x3a299a(0x1e2)]():_0xbfabce;if(i(_0x1e8e32)&&typeof _0x1e8e32['\x6a\x73\x6f\x6e']==_0x3a299a(0x1bf))try{let _0x3bd6cd=await _0x1e8e32[_0x3a299a(0x1fc)](),_0x7ceb4b=a(_0x3bd6cd,_0x3a299a(0x204));if(_0x7ceb4b)return _0x7ceb4b;}catch{}return _0x56da15;},Te=()=>process[_0x3b465e(0x1e4)]['\x44\x45\x42\x55\x47']===_0x3b465e(0x1f4)||process['\x65\x6e\x76'][_0x3b465e(0x1f8)]===_0x3b465e(0x1f4),H={'\x69\x6e\x66\x6f'(_0x5e5ede){const _0x3dd0f3=_0x3b465e;console[_0x3dd0f3(0x1d8)](_0x5e5ede);},'\x77\x61\x72\x6e'(_0x143852,_0x439dac){const _0x47002e=_0x3b465e;if(_0x439dac){console[_0x47002e(0x1d8)](_0x143852,_0x439dac);return;}console[_0x47002e(0x1d8)](_0x143852);},'\x65\x72\x72\x6f\x72'(_0x4feccb,_0xde594e){const _0x18a4c3=_0x3b465e;if(_0xde594e){console[_0x18a4c3(0x1b8)](_0x4feccb,_0xde594e);return;}console[_0x18a4c3(0x1b8)](_0x4feccb);},'\x64\x65\x62\x75\x67'(_0x28ee14,_0x314c1e){const _0x423161=_0x3b465e;if(Te()){if(_0x314c1e){console[_0x423161(0x1d8)](_0x28ee14,_0x314c1e);return;}console[_0x423161(0x1d8)](_0x28ee14);}}},V=0x3a98,W=_0x4291ac=>_0x4291ac?_0x4291ac instanceof Headers?Array[_0x3b465e(0x1f6)](_0x4291ac[_0x3b465e(0x236)]()):Array[_0x3b465e(0x225)](_0x4291ac)?_0x4291ac[_0x3b465e(0x20e)](_0x56d6e8=>Array[_0x3b465e(0x225)](_0x56d6e8)&&_0x56d6e8[_0x3b465e(0x1c7)]===0x2&&typeof _0x56d6e8[0x0]==_0x3b465e(0x22a)&&typeof _0x56d6e8[0x1]==_0x3b465e(0x22a)):i(_0x4291ac)?Object[_0x3b465e(0x236)](_0x4291ac)[_0x3b465e(0x20e)](_0x124122=>typeof _0x124122[0x0]==_0x3b465e(0x22a)&&typeof _0x124122[0x1]==_0x3b465e(0x22a)):[]:[],Se=(_0x13fc17,_0x178c36)=>_0x178c36[_0x3b465e(0x22f)]('\x68\x74\x74\x70\x3a\x2f\x2f')||_0x178c36[_0x3b465e(0x22f)](_0x3b465e(0x1b3))?_0x178c36:!_0x13fc17[_0x3b465e(0x213)]('\x2f')&&!_0x178c36[_0x3b465e(0x22f)]('\x2f')?_0x13fc17+'\x2f'+_0x178c36:''+_0x13fc17+_0x178c36,ke=()=>{const _0x4f0005=_0x3b465e;let _0x4a095f=process[_0x4f0005(0x1e4)][_0x4f0005(0x1f9)]??'';return _0x4a095f[_0x4f0005(0x1bd)]()===_0x4f0005(0x1f4)||_0x4a095f==='\x31';},xe=()=>{const _0x1e3c81=_0x3b465e;let _0x431548=process[_0x1e3c81(0x1e4)][_0x1e3c81(0x23b)];if(!_0x431548)return V;let _0x388c82=Number(_0x431548);return!Number[_0x1e3c81(0x1af)](_0x388c82)||_0x388c82<0x0?V:_0x388c82;},Ie=(_0x22b0f9,_0x2b31ae)=>{const _0x406d0b=_0x3b465e;let _0xdc4d65=(_0x2b31ae[_0x406d0b(0x20f)]??_0x406d0b(0x1f2))[_0x406d0b(0x233)](),_0x2d675b=W(_0x2b31ae[_0x406d0b(0x1e1)])[_0x406d0b(0x1e5)](([_0x619448,_0x5b534b])=>_0x619448[_0x406d0b(0x1bd)]()+'\x3a'+_0x5b534b)[_0x406d0b(0x1f0)]()[_0x406d0b(0x1b7)]('\x7c');return _0xdc4d65+'\x3a'+_0x22b0f9+'\x3a'+_0x2d675b;},Pe=(_0x1ebb28,_0x57a6d9)=>!(_0x1ebb28!==_0x3b465e(0x1f2)||_0x57a6d9<=0x0||ke()),Q=_0x2ebd49=>{let _0x243838=new Map(),_0x20f8ff=()=>{const _0x39586d=_0x5877;let _0x255a53=Date[_0x39586d(0x1c0)]();for(let [_0x9fdf27,_0x3fceae]of _0x243838[_0x39586d(0x236)]())_0x3fceae[_0x39586d(0x1c1)]<=_0x255a53&&_0x243838[_0x39586d(0x1f1)](_0x9fdf27);};return async(_0x1e27af,_0x1f3c30)=>{const _0x282e61=_0x5877;let _0x385922=_0x1f3c30?.[_0x282e61(0x20f)],_0x3c20ef=_0x1e27af instanceof Request?_0x1e27af[_0x282e61(0x20f)]:void 0x0,_0x1acc71=(_0x385922??_0x3c20ef??_0x282e61(0x1f2))[_0x282e61(0x233)](),_0x580f7f=xe(),_0x54d69f=_0x1f3c30?.[_0x282e61(0x1e1)]??(_0x1e27af instanceof Request?_0x1e27af[_0x282e61(0x1e1)]:void 0x0),_0x55f38a=W(_0x54d69f),_0x531725=typeof _0x1e27af==_0x282e61(0x22a)?Se(_0x2ebd49,_0x1e27af):_0x1e27af instanceof URL?_0x1e27af[_0x282e61(0x1bc)]():_0x1e27af[_0x282e61(0x226)];if(!Pe(_0x1acc71,_0x580f7f))return fetch(_0x531725,_0x1f3c30);let _0x364731=Ie(_0x531725,{..._0x1f3c30,'\x6d\x65\x74\x68\x6f\x64':_0x1acc71,'\x68\x65\x61\x64\x65\x72\x73':_0x55f38a}),_0x3a08c2=Date[_0x282e61(0x1c0)](),_0x12311d=_0x243838[_0x282e61(0x22c)](_0x364731);if(_0x12311d&&_0x12311d[_0x282e61(0x1c1)]>_0x3a08c2)return new Response(_0x12311d['\x62\x6f\x64\x79'][_0x282e61(0x219)](0x0),{'\x73\x74\x61\x74\x75\x73':_0x12311d[_0x282e61(0x221)],'\x68\x65\x61\x64\x65\x72\x73':_0x12311d['\x68\x65\x61\x64\x65\x72\x73']});let _0x3456ec=await fetch(_0x531725,_0x1f3c30);if(_0x3456ec['\x6f\x6b']){let _0x4d2220=await _0x3456ec[_0x282e61(0x1e2)]()[_0x282e61(0x1b9)]();_0x243838[_0x282e61(0x1d2)](_0x364731,{'\x62\x6f\x64\x79':_0x4d2220,'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x3a08c2+_0x580f7f,'\x68\x65\x61\x64\x65\x72\x73':Array['\x66\x72\x6f\x6d'](_0x3456ec[_0x282e61(0x1e1)][_0x282e61(0x236)]()),'\x73\x74\x61\x74\x75\x73':_0x3456ec[_0x282e61(0x221)]}),_0x243838[_0x282e61(0x1cd)]>0xc8&&_0x20f8ff();}return _0x3456ec;};};function T(_0x29d05e){const _0x7a49b=_0x3b465e;let _0x32711c=(_0x29d05e[_0x7a49b(0x213)]('\x2f')?_0x29d05e[_0x7a49b(0x219)](0x0,-0x1):_0x29d05e)+_0x7a49b(0x21c);return new PayloadSDK({'\x62\x61\x73\x65\x55\x52\x4c':_0x32711c,'\x66\x65\x74\x63\x68':Q(_0x32711c)});}function x({token:_0x3e11d3,tenantId:_0x170af8,renderer:_0x114fdc=_0x3b465e(0x234)}){const _0x2d802c=_0x3b465e;let _0x436d27={};_0x3e11d3&&(_0x436d27[_0x2d802c(0x20b)]=_0x2d802c(0x229)+_0x3e11d3),_0x170af8&&(_0x436d27['\x78\x2d\x62\x61\x73\x6b\x65\x72\x2d\x74\x65\x6e\x61\x6e\x74\x2d\x69\x64']=String(_0x170af8));let _0x50c729=_0x114fdc[_0x2d802c(0x232)]();return _0x50c729&&(_0x436d27[_0x2d802c(0x235)]=_0x50c729),_0x436d27;}var Ce=_0x1bb48d=>typeof _0x1bb48d[_0x3b465e(0x212)]==_0x3b465e(0x1bf),E=()=>{if(!stdin['\x69\x73\x54\x54\x59'])throw new Error('\x49\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x69\x6e\x70\x75\x74\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x2e');},Y=async(_0x3ab647,_0x1af5ef)=>{const _0x5d7335=_0x3b465e;let _0x596894=createInterface({'\x69\x6e\x70\x75\x74':stdin,'\x6f\x75\x74\x70\x75\x74':_0x1af5ef});try{return(await _0x596894[_0x5d7335(0x1d3)](_0x3ab647+'\x3a\x20'))[_0x5d7335(0x232)]();}finally{_0x596894[_0x5d7335(0x1cc)]();}},v=async({message:_0x1b9bee,required:_0x189e30=![]})=>{E();let _0x31117f='';if(_0x189e30){do _0x31117f=await Y(_0x1b9bee,stdout);while(!_0x31117f);}else _0x31117f=await Y(_0x1b9bee,stdout);return _0x31117f;},X=async({message:_0xb02e35,required:_0x41932a=![]})=>{const _0x3aedb1=_0x3b465e;E(),emitKeypressEvents(stdin);let _0x25afb0=Ce(stdin),_0x25eafb=_0x25afb0&&stdin[_0x3aedb1(0x211)]===!![];_0x25afb0&&!_0x25eafb&&stdin[_0x3aedb1(0x212)](!![]);let _0x34b3b9=stdin[_0x3aedb1(0x1ea)]();return stdin[_0x3aedb1(0x1c9)](),stdout[_0x3aedb1(0x218)](_0xb02e35+'\x3a\x20'),await new Promise((_0x411a68,_0x4a2816)=>{const _0x5bbeb9=_0x3aedb1;let _0x117e73='',_0x528efc=()=>{const _0x583ade=_0x5877;stdin[_0x583ade(0x222)](_0x583ade(0x1ca),_0x3f436b),_0x25afb0&&!_0x25eafb&&stdin[_0x583ade(0x212)](![]),_0x34b3b9&&stdin[_0x583ade(0x1eb)]();},_0x3f436b=(_0x58dbfd,_0x45801a)=>{const _0x45f2ad=_0x5877;if(_0x45801a[_0x45f2ad(0x1c5)]&&_0x45801a['\x6e\x61\x6d\x65']==='\x63'){stdout[_0x45f2ad(0x218)]('\x0a'),_0x528efc(),_0x4a2816(new Error(_0x45f2ad(0x1d0)));return;}if(_0x45801a[_0x45f2ad(0x21d)]===_0x45f2ad(0x1e0)||_0x45801a[_0x45f2ad(0x21d)]===_0x45f2ad(0x1fb)){if(stdout[_0x45f2ad(0x218)]('\x0a'),_0x41932a&&_0x117e73[_0x45f2ad(0x1c7)]===0x0){stdout[_0x45f2ad(0x218)](_0xb02e35+'\x3a\x20');return;}_0x528efc(),_0x411a68(_0x117e73);return;}if(_0x45801a[_0x45f2ad(0x21d)]===_0x45f2ad(0x1d5)){_0x117e73=_0x117e73[_0x45f2ad(0x219)](0x0,-0x1);return;}!_0x45801a[_0x45f2ad(0x1c5)]&&!_0x45801a[_0x45f2ad(0x22b)]&&_0x58dbfd&&(_0x117e73+=_0x58dbfd);};stdin['\x6f\x6e'](_0x5bbeb9(0x1ca),_0x3f436b);});},Z=async({message:_0x3e2ab6,options:_0xa4718a})=>{const _0x3cdae4=_0x3b465e;if(E(),_0xa4718a[_0x3cdae4(0x1c7)]===0x0)throw new Error('\x4e\x6f\x20\x6f\x70\x74\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x2e');stdout[_0x3cdae4(0x218)](_0x3e2ab6+'\x0a');for(let [_0x4329f8,_0x274b8a]of _0xa4718a['\x65\x6e\x74\x72\x69\x65\x73']()){let _0x4c45a1=_0x274b8a[_0x3cdae4(0x1f7)]?'\x20\x28'+_0x274b8a['\x68\x69\x6e\x74']+'\x29':'';stdout[_0x3cdae4(0x218)]('\x20\x20'+(_0x4329f8+0x1)+'\x2e\x20'+_0x274b8a['\x6c\x61\x62\x65\x6c']+_0x4c45a1+'\x0a');}for(;;){let _0x2612d4=await v({'\x6d\x65\x73\x73\x61\x67\x65':'\x43\x68\x6f\x6f\x73\x65\x20\x61\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x20\x5b\x31\x2d'+_0xa4718a[_0x3cdae4(0x1c7)]+'\x5d','\x72\x65\x71\x75\x69\x72\x65\x64':!![]}),_0x43dcf2=Number(_0x2612d4);if(Number[_0x3cdae4(0x208)](_0x43dcf2)&&_0x43dcf2>=0x1&&_0x43dcf2<=_0xa4718a[_0x3cdae4(0x1c7)])return _0xa4718a[_0x43dcf2-0x1][_0x3cdae4(0x200)];stdout[_0x3cdae4(0x218)](_0x3cdae4(0x21b)+_0xa4718a[_0x3cdae4(0x1c7)]+'\x2e\x0a');}},I=_0x2d9fad=>{const _0x3e824d=_0x3b465e;if(!i(_0x2d9fad))return null;let _0x17b05b=_0x2d9fad[_0x3e824d(0x22d)];return typeof _0x17b05b==_0x3e824d(0x22a)?_0x17b05b:a(_0x17b05b,'\x69\x64');},F={'\x69\x64':!![],'\x6e\x61\x6d\x65':!![],'\x73\x6c\x75\x67':!![],'\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65':!![]},ee=_0x328092=>_0x328092[_0x3b465e(0x213)]('\x2f')?_0x328092[_0x3b465e(0x219)](0x0,-0x1):_0x328092,te=_0x566271=>{const _0x4950e5=_0x3b465e;let _0x5a5bc8=i(_0x566271)&&'\x75\x73\x65\x72'in _0x566271?_0x566271[_0x4950e5(0x227)]:_0x566271;if(!M(_0x5a5bc8))throw new Error(_0x4950e5(0x23d));return _0x5a5bc8;},ne=_0x36abda=>!i(_0x36abda)||!Array[_0x3b465e(0x225)](_0x36abda[_0x3b465e(0x1ff)])?[]:_0x36abda[_0x3b465e(0x1ff)][_0x3b465e(0x20e)](k)[_0x3b465e(0x1e5)](_0x4f21ee=>{const _0x2ec888=_0x3b465e;let _0x9445d6=I(_0x4f21ee);return{'\x69\x64':_0x4f21ee['\x69\x64'],'\x6e\x61\x6d\x65':_0x4f21ee[_0x2ec888(0x21d)],'\x73\x6c\x75\x67':_0x4f21ee[_0x2ec888(0x1b0)],'\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65\x49\x64':_0x9445d6};})['\x73\x6f\x72\x74']((_0x913961,_0x7eac95)=>_0x913961[_0x3b465e(0x21d)][_0x3b465e(0x1ac)](_0x7eac95['\x6e\x61\x6d\x65'])),Ee=async(_0x351b91,_0x1a87e9)=>{const _0x10d066=_0x3b465e;let _0x13ad57=await T(_0x351b91)['\x6d\x65']({'\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e':_0x10d066(0x1bb)},{'\x68\x65\x61\x64\x65\x72\x73':x({'\x74\x6f\x6b\x65\x6e':_0x1a87e9})});return te(_0x13ad57);},ve=async(_0x504442,_0x359709)=>{const _0x68fe74=_0x3b465e;let _0x51fe69=await T(_0x504442)[_0x68fe74(0x1c6)]({'\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e':_0x68fe74(0x1ad),'\x6c\x69\x6d\x69\x74':0x64,'\x64\x65\x70\x74\x68':0x0,'\x73\x65\x6c\x65\x63\x74':F},{'\x68\x65\x61\x64\x65\x72\x73':x({'\x74\x6f\x6b\x65\x6e':_0x359709})});return ne(_0x51fe69);},Fe=async(_0x1e86ec,_0x2fde74,_0x442fb2)=>{const _0x479f23=_0x3b465e;let _0x237a62=await T(_0x1e86ec)[_0x479f23(0x1ce)]({'\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e':_0x479f23(0x1ad),'\x69\x64':_0x442fb2,'\x64\x65\x70\x74\x68':0x0,'\x73\x65\x6c\x65\x63\x74':F},{'\x68\x65\x61\x64\x65\x72\x73':x({'\x74\x6f\x6b\x65\x6e':_0x2fde74,'\x74\x65\x6e\x61\x6e\x74\x49\x64':_0x442fb2})});return k(_0x237a62)?{'\x69\x64':_0x237a62['\x69\x64'],'\x6e\x61\x6d\x65':_0x237a62['\x6e\x61\x6d\x65'],'\x73\x6c\x75\x67':_0x237a62['\x73\x6c\x75\x67'],'\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65\x49\x64':I(_0x237a62)}:null;},Ue=({authToken:_0x9cfc0a,tenant:_0x5cc808,user:_0x24e1e7})=>(q(_0x9cfc0a,_0x5cc808['\x69\x64'],{'\x69\x64':_0x5cc808['\x69\x64'],'\x6e\x61\x6d\x65':_0x5cc808[_0x3b465e(0x21d)],'\x73\x6c\x75\x67':_0x5cc808[_0x3b465e(0x1b0)]}),_0x5cc808[_0x3b465e(0x209)]?j(_0x5cc808[_0x3b465e(0x209)]):z(),process[_0x3b465e(0x1e4)][_0x3b465e(0x1fe)]=_0x5cc808['\x69\x64'],{'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x9cfc0a,'\x74\x65\x6e\x61\x6e\x74':_0x5cc808,'\x74\x68\x65\x6d\x65\x49\x64':_0x5cc808[_0x3b465e(0x209)],'\x75\x73\x65\x72':_0x24e1e7}),Le=()=>{const _0x559838=_0x3b465e;K(),delete process[_0x559838(0x1e4)][_0x559838(0x1fe)];},De=async({authToken:_0x531b32,payloadUrl:_0xb2c13a,tenantId:_0x370b33})=>{const _0x12f81f=_0x3b465e;let _0x20e351=await fetch(ee(_0xb2c13a)+_0x12f81f(0x1fd),{'\x6d\x65\x74\x68\x6f\x64':'\x50\x4f\x53\x54','\x68\x65\x61\x64\x65\x72\x73':{'\x41\x75\x74\x68\x6f\x72\x69\x7a\x61\x74\x69\x6f\x6e':_0x12f81f(0x229)+_0x531b32,'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':_0x12f81f(0x20a),'\x78\x2d\x62\x61\x73\x6b\x65\x72\x2d\x72\x65\x6e\x64\x65\x72\x65\x72':_0x12f81f(0x234)},'\x62\x6f\x64\x79':JSON[_0x12f81f(0x207)]({'\x74\x65\x6e\x61\x6e\x74\x49\x64':_0x370b33})});if(!_0x20e351['\x6f\x6b'])throw new Error(_0x12f81f(0x220)+_0x20e351[_0x12f81f(0x221)]+'\x2e');},Ne=async({payloadUrl:_0x4d3c09,authToken:_0x309322,user:_0x1c3664})=>{const _0x1f455d=_0x3b465e;let _0x1883d8=await ve(_0x4d3c09,_0x309322);if(_0x1883d8[_0x1f455d(0x1c7)]===0x0)throw new Error(_0x1f455d(0x223));if(_0x1883d8[_0x1f455d(0x1c7)]===0x1)return _0x1883d8[0x0];let _0x4fd505=await Z({'\x6d\x65\x73\x73\x61\x67\x65':_0x1f455d(0x1d6),'\x6f\x70\x74\x69\x6f\x6e\x73':_0x1883d8[_0x1f455d(0x1e5)](_0x586efd=>({'\x6c\x61\x62\x65\x6c':_0x586efd[_0x1f455d(0x21d)]+'\x20\x28'+_0x586efd[_0x1f455d(0x1b0)]+'\x29','\x76\x61\x6c\x75\x65':_0x586efd['\x69\x64'],'\x68\x69\x6e\x74':_0x586efd['\x69\x64']===_0x1c3664['\x6c\x61\x73\x74\x53\x65\x6c\x65\x63\x74\x65\x64\x54\x65\x6e\x61\x6e\x74']?_0x1f455d(0x1dc):void 0x0}))});return _0x1883d8[_0x1f455d(0x1c6)](_0x3229cc=>_0x3229cc['\x69\x64']===_0x4fd505)??_0x1883d8[0x0];},Oe=async _0x104c18=>{const _0x463f5d=_0x3b465e;let _0x36ce3f=await v({'\x6d\x65\x73\x73\x61\x67\x65':'\x45\x6d\x61\x69\x6c','\x72\x65\x71\x75\x69\x72\x65\x64':!![]}),_0x5cdafa=await X({'\x6d\x65\x73\x73\x61\x67\x65':_0x463f5d(0x1ab),'\x72\x65\x71\x75\x69\x72\x65\x64':!![]}),_0x4f42d3=await T(_0x104c18)[_0x463f5d(0x1b1)]({'\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e':'\x75\x73\x65\x72\x73','\x64\x61\x74\x61':{'\x65\x6d\x61\x69\x6c':_0x36ce3f,'\x70\x61\x73\x73\x77\x6f\x72\x64':_0x5cdafa}}),_0x1721fb=a(_0x4f42d3,'\x74\x6f\x6b\x65\x6e');if(!_0x1721fb)throw new Error(_0x463f5d(0x224));let _0x3f8728=await Ee(_0x104c18,_0x1721fb),_0x4fb407=await Ne({'\x70\x61\x79\x6c\x6f\x61\x64\x55\x72\x6c':_0x104c18,'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x1721fb,'\x75\x73\x65\x72':_0x3f8728});try{await De({'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x1721fb,'\x70\x61\x79\x6c\x6f\x61\x64\x55\x72\x6c':_0x104c18,'\x74\x65\x6e\x61\x6e\x74\x49\x64':_0x4fb407['\x69\x64']});}catch(_0x11ecdb){H[_0x463f5d(0x1d8)](_0x463f5d(0x201),_0x11ecdb);}let _0x2557c7=await Fe(_0x104c18,_0x1721fb,_0x4fb407['\x69\x64']);return Ue({'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x1721fb,'\x74\x65\x6e\x61\x6e\x74':_0x2557c7??_0x4fb407,'\x75\x73\x65\x72':_0x3f8728});},se=async _0x2d3264=>(Le(),Oe(_0x2d3264)),Be=fileURLToPath(import.meta.url),oe=dirname(Be),qe=[resolve(oe,_0x3b465e(0x1d1)),resolve(oe,_0x3b465e(0x1e9))],P,ie=()=>{const _0x2c3cbd=_0x3b465e;if(P!==void 0x0)return P;for(let _0x2e9c25 of qe)if(existsSync(_0x2e9c25))try{let _0x1b8cc0=readFileSync(_0x2e9c25,_0x2c3cbd(0x1e7)),_0x29fca5=JSON[_0x2c3cbd(0x202)](_0x1b8cc0);if(!i(_0x29fca5))continue;let _0x46ce0c=a(_0x29fca5,_0x2c3cbd(0x1d9));if(_0x46ce0c)return P=_0x46ce0c,_0x46ce0c;}catch{}return P=null,null;},A=_0x100d3a=>{const _0x51364a=_0x3b465e;if(_0x100d3a!=null)return _0x100d3a;let _0x144054=process[_0x51364a(0x1e4)][_0x51364a(0x1d7)];return _0x144054||ie()||_0x51364a(0x205);},ae=_0x48fa6f=>{const _0x3afbfc=_0x3b465e;let _0x595119=process[_0x3afbfc(0x1e4)][_0x3afbfc(0x237)];if(_0x595119&&!_0x48fa6f){let _0xe796ab=resolve(_0x595119);if(!existsSync(_0xe796ab))throw new Error(_0x3afbfc(0x1c4)+_0xe796ab);return _0xe796ab;}if(_0x48fa6f){let _0x16a80=resolve(_0x48fa6f);if(!existsSync(_0x16a80))throw new Error('\x54\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20'+_0x16a80);return _0x16a80;}let _0x18738f=process[_0x3afbfc(0x1c8)]();if([_0x3afbfc(0x1e6),_0x3afbfc(0x1ec)]['\x73\x6f\x6d\x65'](_0x33db4d=>existsSync(resolve(_0x18738f,_0x33db4d))))return _0x18738f;throw new Error(_0x3afbfc(0x217));},D=class e extends Command{static ['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e']=_0x3b465e(0x1db);static [_0x3b465e(0x203)]={'\x74\x68\x65\x6d\x65\x50\x61\x74\x68':Args[_0x3b465e(0x22a)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x50\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x68\x65\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79','\x72\x65\x71\x75\x69\x72\x65\x64':![]})};static ['\x66\x6c\x61\x67\x73']={'\x74\x68\x65\x6d\x65':Flags[_0x3b465e(0x22a)]({'\x63\x68\x61\x72':'\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3b465e(0x1ee)}),'\x70\x61\x79\x6c\x6f\x61\x64\x2d\x75\x72\x6c':Flags[_0x3b465e(0x22a)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3b465e(0x1cf),'\x64\x65\x66\x61\x75\x6c\x74':A()})};async[_0x3b465e(0x1cb)](){const _0x1b1198=_0x3b465e;let {args:_0xc57887,flags:_0x4c90c3}=await this[_0x1b1198(0x202)](e),_0x56aba9=_0x4c90c3[_0x1b1198(0x23c)]??_0xc57887['\x74\x68\x65\x6d\x65\x50\x61\x74\x68']??null,_0x152ea8;try{_0x152ea8=ae(_0x56aba9);}catch(_0x58ae08){this[_0x1b1198(0x1b8)](_0x58ae08 instanceof Error?_0x58ae08[_0x1b1198(0x204)]:'\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6c\x6f\x63\x61\x74\x65\x20\x74\x68\x65\x6d\x65\x2e');return;}B(_0x152ea8);try{let _0x4bf75f=await se(A(_0x4c90c3['\x70\x61\x79\x6c\x6f\x61\x64\x2d\x75\x72\x6c']));this['\x6c\x6f\x67']('\x41\x75\x74\x68\x65\x6e\x74\x69\x63\x61\x74\x65\x64\x20\x66\x6f\x72\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x3a\x20'+_0x4bf75f[_0x1b1198(0x1df)][_0x1b1198(0x21d)]+'\x20\x28'+_0x4bf75f['\x74\x65\x6e\x61\x6e\x74'][_0x1b1198(0x1b0)]+'\x29'),_0x4bf75f[_0x1b1198(0x22e)]&&this[_0x1b1198(0x214)](_0x1b1198(0x1dd)+_0x4bf75f[_0x1b1198(0x22e)]);}catch(_0x5fab00){let _0x3891c7=await J(_0x5fab00,'\x41\x75\x74\x68\x65\x6e\x74\x69\x63\x61\x74\x69\x6f\x6e\x20\x66\x61\x69\x6c\x65\x64\x2e');this[_0x1b1198(0x1b8)](_0x3891c7);}}};export{D as default};
@@ -0,0 +1,15 @@
1
+ import * as _oclif_core_interfaces from '@oclif/core/interfaces';
2
+ import { Command } from '@oclif/core';
3
+
4
+ declare class AuthLogout extends Command {
5
+ static description: string;
6
+ static args: {
7
+ themePath: _oclif_core_interfaces.Arg<string | undefined, Record<string, unknown>>;
8
+ };
9
+ static flags: {
10
+ theme: _oclif_core_interfaces.OptionFlag<string | undefined, _oclif_core_interfaces.CustomOptions>;
11
+ };
12
+ run(): Promise<void>;
13
+ }
14
+
15
+ export { AuthLogout as default };
@@ -0,0 +1 @@
1
+ const _0x3bd372=_0x366f;(function(_0x49cdae,_0x1deca7){const _0x50768e=_0x366f,_0x4968be=_0x49cdae();while(!![]){try{const _0x4e3221=-parseInt(_0x50768e(0xe3))/0x1*(parseInt(_0x50768e(0xbb))/0x2)+-parseInt(_0x50768e(0xef))/0x3+-parseInt(_0x50768e(0xce))/0x4+-parseInt(_0x50768e(0xb8))/0x5*(parseInt(_0x50768e(0xdf))/0x6)+parseInt(_0x50768e(0xbe))/0x7*(parseInt(_0x50768e(0xe6))/0x8)+-parseInt(_0x50768e(0xcc))/0x9+-parseInt(_0x50768e(0xd2))/0xa*(-parseInt(_0x50768e(0xc3))/0xb);if(_0x4e3221===_0x1deca7)break;else _0x4968be['push'](_0x4968be['shift']());}catch(_0x29f9ed){_0x4968be['push'](_0x4968be['shift']());}}}(_0x3875,0xa8ab8));import{Command,Args,Flags}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';import{join,resolve}from'\x70\x61\x74\x68';import{existsSync,unlinkSync,writeFileSync,readFileSync}from'\x66\x73';var g=_0xd5aa95=>typeof _0xd5aa95==_0x3bd372(0xec),f=_0x55be0c=>typeof _0x55be0c=='\x6e\x75\x6d\x62\x65\x72'&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x55be0c),a=_0x5d5e39=>typeof _0x5d5e39==_0x3bd372(0xc2)&&_0x5d5e39!==null&&!Array['\x69\x73\x41\x72\x72\x61\x79'](_0x5d5e39),i=(_0x29d09c,_0x11cac9)=>{if(!a(_0x29d09c))return null;let _0x36a39f=_0x29d09c[_0x11cac9];return g(_0x36a39f)?_0x36a39f:null;},T=(_0x38e581,_0x43c543)=>{if(!a(_0x38e581))return null;let _0x1d9d1b=_0x38e581[_0x43c543];return f(_0x1d9d1b)?_0x1d9d1b:null;},E=join(process['\x63\x77\x64'](),_0x3bd372(0xd8)),b=0x18*0x3c*0x3c*0x3e8,h=class{[_0x3bd372(0xd5)]=null;[_0x3bd372(0xcb)]=null;[_0x3bd372(0xdb)]=null;['\x74\x68\x65\x6d\x65\x49\x64']=null;[_0x3bd372(0xd1)];constructor(_0x393da6=E){const _0x35c093=_0x3bd372;this[_0x35c093(0xd1)]=_0x393da6;}[_0x3bd372(0xe7)](){const _0x67e133=_0x3bd372;return this[_0x67e133(0xd1)];}[_0x3bd372(0xe8)](_0x8c0100){const _0x26fb29=_0x3bd372;this[_0x26fb29(0xd1)]=_0x8c0100,this[_0x26fb29(0xbc)]();}['\x67\x65\x74\x54\x6f\x6b\x65\x6e'](){return this['\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e'];}[_0x3bd372(0xd3)](){const _0x7b9ec8=_0x3bd372;return this[_0x7b9ec8(0xcb)];}[_0x3bd372(0xe5)](){const _0x64f100=_0x3bd372;return this[_0x64f100(0xdb)];}[_0x3bd372(0xcd)](){return this['\x74\x68\x65\x6d\x65\x49\x64'];}[_0x3bd372(0xc1)](_0xb684c1,_0x5d02b1,_0x4c045d){const _0x29395e=_0x3bd372;this['\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e']=_0xb684c1,this[_0x29395e(0xcb)]=_0x5d02b1,this[_0x29395e(0xdb)]=_0x4c045d??null;}[_0x3bd372(0xbd)](_0x1c2d3a){const _0x14ca7e=_0x3bd372;this[_0x14ca7e(0xe0)]=_0x1c2d3a;}[_0x3bd372(0xeb)](){const _0x5a7406=_0x3bd372;this[_0x5a7406(0xe0)]=null;}[_0x3bd372(0xda)](){const _0x3e5fb9=_0x3bd372;if(this[_0x3e5fb9(0xc6)](),!!existsSync(this[_0x3e5fb9(0xd1)]))try{unlinkSync(this[_0x3e5fb9(0xd1)]);}catch(_0x5b6234){console[_0x3e5fb9(0xd7)](_0x3e5fb9(0xc8),_0x5b6234);}}[_0x3bd372(0xc0)](){const _0x2ff984=_0x3bd372;let _0x177ccb=!!(this['\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e']&&this[_0x2ff984(0xcb)]),_0x4e7fa0=!!this[_0x2ff984(0xe0)];if(!_0x177ccb&&!_0x4e7fa0){if(!existsSync(this[_0x2ff984(0xd1)]))return;try{unlinkSync(this[_0x2ff984(0xd1)]);}catch(_0x1c9fcd){console['\x77\x61\x72\x6e']('\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x72\x65\x6d\x6f\x76\x65\x20\x63\x61\x63\x68\x65\x64\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a',_0x1c9fcd);}return;}let _0x45e988={'\x74\x69\x6d\x65\x73\x74\x61\x6d\x70':Date[_0x2ff984(0xde)]()};this[_0x2ff984(0xd5)]&&this[_0x2ff984(0xcb)]&&(_0x45e988[_0x2ff984(0xd5)]=this[_0x2ff984(0xd5)],_0x45e988[_0x2ff984(0xcb)]=this[_0x2ff984(0xcb)],_0x45e988['\x74\x65\x6e\x61\x6e\x74']=this[_0x2ff984(0xdb)]??void 0x0),this['\x74\x68\x65\x6d\x65\x49\x64']&&(_0x45e988[_0x2ff984(0xe0)]=this[_0x2ff984(0xe0)]);try{writeFileSync(this[_0x2ff984(0xd1)],JSON[_0x2ff984(0xea)](_0x45e988,null,0x2));}catch(_0x205e5e){console[_0x2ff984(0xd7)](_0x2ff984(0xc5),_0x205e5e);}}[_0x3bd372(0xbc)](){const _0x432526=_0x3bd372;this['\x72\x65\x73\x65\x74\x53\x74\x61\x74\x65']();try{if(!existsSync(this[_0x432526(0xd1)]))return;let _0x30f6e8=readFileSync(this[_0x432526(0xd1)],_0x432526(0xbf)),_0x481567=JSON[_0x432526(0xc9)](_0x30f6e8);if(!a(_0x481567))return;let _0x25cbca=T(_0x481567,_0x432526(0xe1));if(typeof _0x25cbca!=_0x432526(0xcf))return;if(Date[_0x432526(0xde)]()-_0x25cbca>b){let _0x5254c1=i(_0x481567,_0x432526(0xe0));_0x5254c1&&(this[_0x432526(0xe0)]=_0x5254c1);return;}let _0x8ab9fa=i(_0x481567,_0x432526(0xd5)),_0x363116=i(_0x481567,_0x432526(0xcb)),_0x567acc=_0x432526(0xdb)in _0x481567?_0x481567[_0x432526(0xdb)]:null,_0x7d243c=i(_0x481567,_0x432526(0xe0));this[_0x432526(0xd5)]=_0x8ab9fa??null,this[_0x432526(0xcb)]=_0x363116??null,this[_0x432526(0xdb)]=_0x567acc??null,this[_0x432526(0xe0)]=_0x7d243c??null;}catch(_0x174f4a){console[_0x432526(0xd7)](_0x432526(0xdc),_0x174f4a);}}['\x72\x65\x73\x65\x74\x53\x74\x61\x74\x65'](){const _0x912dd2=_0x3bd372;this[_0x912dd2(0xd5)]=null,this['\x74\x65\x6e\x61\x6e\x74\x49\x64']=null,this[_0x912dd2(0xdb)]=null,this[_0x912dd2(0xe0)]=null;}},l=new h();function _0x3875(){const _0x21c383=['\x6f\x62\x6a\x65\x63\x74','\x36\x38\x34\x33\x31\x72\x51\x47\x4d\x72\x74','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x54\x45\x4e\x41\x4e\x54\x5f\x49\x44','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x63\x61\x63\x68\x65\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a','\x72\x65\x73\x65\x74\x53\x74\x61\x74\x65','\x74\x68\x65\x6d\x65\x50\x61\x74\x68','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x72\x65\x6d\x6f\x76\x65\x20\x63\x61\x63\x68\x65\x64\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a','\x70\x61\x72\x73\x65','\x6c\x61\x79\x6f\x75\x74\x73','\x74\x65\x6e\x61\x6e\x74\x49\x64','\x31\x30\x30\x32\x39\x33\x39\x33\x56\x4f\x4a\x67\x4b\x45','\x67\x65\x74\x54\x68\x65\x6d\x65\x49\x64','\x31\x35\x38\x33\x35\x33\x36\x70\x54\x74\x47\x45\x6b','\x6e\x75\x6d\x62\x65\x72','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x54\x48\x45\x4d\x45\x5f\x50\x41\x54\x48','\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65','\x34\x34\x33\x30\x4d\x4e\x73\x68\x72\x79','\x67\x65\x74\x54\x65\x6e\x61\x6e\x74\x49\x64','\x61\x72\x67\x73','\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e','\x74\x68\x65\x6d\x65','\x77\x61\x72\x6e','\x2e\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65\x2d\x73\x65\x73\x73\x69\x6f\x6e\x2e\x6a\x73\x6f\x6e','\x4c\x6f\x63\x61\x6c\x53\x74\x61\x67\x65\x20\x73\x65\x73\x73\x69\x6f\x6e\x20\x63\x6c\x65\x61\x72\x65\x64\x2e','\x63\x6c\x65\x61\x72','\x74\x65\x6e\x61\x6e\x74','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6c\x6f\x61\x64\x20\x63\x61\x63\x68\x65\x64\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a','\x50\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x68\x65\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79','\x6e\x6f\x77','\x33\x32\x34\x46\x6c\x49\x4a\x4a\x49','\x74\x68\x65\x6d\x65\x49\x64','\x74\x69\x6d\x65\x73\x74\x61\x6d\x70','\x54\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20','\x31\x37\x36\x30\x39\x54\x44\x45\x7a\x42\x66','\x65\x6e\x76','\x67\x65\x74\x54\x65\x6e\x61\x6e\x74','\x34\x36\x38\x31\x36\x38\x73\x45\x5a\x67\x5a\x64','\x67\x65\x74\x53\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65','\x73\x65\x74\x53\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6c\x6f\x63\x61\x74\x65\x20\x74\x68\x65\x6d\x65\x2e','\x73\x74\x72\x69\x6e\x67\x69\x66\x79','\x63\x6c\x65\x61\x72\x54\x68\x65\x6d\x65\x49\x64','\x73\x74\x72\x69\x6e\x67','\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x6d\x65\x73\x73\x61\x67\x65','\x33\x37\x32\x39\x30\x33\x56\x52\x61\x70\x62\x54','\x45\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x74\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20','\x66\x6c\x61\x67\x73','\x4e\x6f\x20\x74\x68\x65\x6d\x65\x20\x66\x69\x6c\x65\x73\x20\x64\x65\x74\x65\x63\x74\x65\x64\x20\x69\x6e\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x20\x45\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x66\x69\x6e\x64\x3a\x20\x6c\x61\x79\x6f\x75\x74\x73\x2f\x20\x6f\x72\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f\x2e','\x34\x39\x30\x36\x35\x58\x67\x55\x4b\x63\x58','\x65\x72\x72\x6f\x72','\x73\x6f\x6d\x65','\x32\x42\x48\x69\x46\x64\x57','\x6c\x6f\x61\x64\x46\x72\x6f\x6d\x46\x69\x6c\x65','\x73\x65\x74\x54\x68\x65\x6d\x65\x49\x64','\x31\x34\x74\x44\x74\x65\x43\x53','\x75\x74\x66\x2d\x38','\x70\x65\x72\x73\x69\x73\x74\x54\x6f\x46\x69\x6c\x65','\x73\x65\x74\x41\x75\x74\x68'];_0x3875=function(){return _0x21c383;};return _0x3875();}l[_0x3bd372(0xbc)]();function _0x366f(_0x81b024,_0x203a0d){_0x81b024=_0x81b024-0xb7;const _0x387514=_0x3875();let _0x366f2b=_0x387514[_0x81b024];return _0x366f2b;}function y(_0x55a96c){const _0x4e64f9=_0x3bd372;let _0x30c1af=join(_0x55a96c,'\x2e\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65\x2d\x73\x65\x73\x73\x69\x6f\x6e\x2e\x6a\x73\x6f\x6e');return l[_0x4e64f9(0xe8)](_0x30c1af),_0x30c1af;}function I(){const _0x2e3611=_0x3bd372;l[_0x2e3611(0xda)]();}var L=()=>{const _0x366762=_0x3bd372;I(),delete process['\x65\x6e\x76'][_0x366762(0xc4)];},S=()=>{L();},k=_0x5a2540=>{const _0x43e966=_0x3bd372;let _0x511404=process[_0x43e966(0xe4)][_0x43e966(0xd0)];if(_0x511404&&!_0x5a2540){let _0x2fd93a=resolve(_0x511404);if(!existsSync(_0x2fd93a))throw new Error(_0x43e966(0xf0)+_0x2fd93a);return _0x2fd93a;}if(_0x5a2540){let _0x3c5ef1=resolve(_0x5a2540);if(!existsSync(_0x3c5ef1))throw new Error(_0x43e966(0xe2)+_0x3c5ef1);return _0x3c5ef1;}let _0x49fd96=process['\x63\x77\x64']();if([_0x43e966(0xca),_0x43e966(0xed)][_0x43e966(0xba)](_0x3bd06a=>existsSync(resolve(_0x49fd96,_0x3bd06a))))return _0x49fd96;throw new Error(_0x43e966(0xb7));},m=class t extends Command{static ['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e']='\x43\x6c\x65\x61\x72\x20\x74\x68\x65\x20\x4c\x6f\x63\x61\x6c\x53\x74\x61\x67\x65\x20\x73\x65\x73\x73\x69\x6f\x6e\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x74\x68\x65\x6d\x65\x2e';static [_0x3bd372(0xd4)]={'\x74\x68\x65\x6d\x65\x50\x61\x74\x68':Args[_0x3bd372(0xec)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3bd372(0xdd),'\x72\x65\x71\x75\x69\x72\x65\x64':![]})};static [_0x3bd372(0xf1)]={'\x74\x68\x65\x6d\x65':Flags[_0x3bd372(0xec)]({'\x63\x68\x61\x72':'\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3bd372(0xdd)})};async['\x72\x75\x6e'](){const _0x338f4b=_0x3bd372;let {args:_0x5603b5,flags:_0x35dc50}=await this[_0x338f4b(0xc9)](t),_0x5e67c4=_0x35dc50[_0x338f4b(0xd6)]??_0x5603b5[_0x338f4b(0xc7)]??null,_0x5cbc90;try{_0x5cbc90=k(_0x5e67c4);}catch(_0x2eb0b3){this[_0x338f4b(0xb9)](_0x2eb0b3 instanceof Error?_0x2eb0b3[_0x338f4b(0xee)]:_0x338f4b(0xe9));return;}y(_0x5cbc90),S(),this['\x6c\x6f\x67'](_0x338f4b(0xd9));}};export{m as default};
@@ -0,0 +1,16 @@
1
+ import * as _oclif_core_interfaces from '@oclif/core/interfaces';
2
+ import { Command } from '@oclif/core';
3
+
4
+ declare class AuthTenant extends Command {
5
+ static description: string;
6
+ static args: {
7
+ themePath: _oclif_core_interfaces.Arg<string | undefined, Record<string, unknown>>;
8
+ };
9
+ static flags: {
10
+ theme: _oclif_core_interfaces.OptionFlag<string | undefined, _oclif_core_interfaces.CustomOptions>;
11
+ "payload-url": _oclif_core_interfaces.OptionFlag<string, _oclif_core_interfaces.CustomOptions>;
12
+ };
13
+ run(): Promise<void>;
14
+ }
15
+
16
+ export { AuthTenant as default };
@@ -0,0 +1 @@
1
+ const _0x10b68b=_0x54b5;(function(_0x1fa733,_0x1644c2){const _0x7c0303=_0x54b5,_0x24cded=_0x1fa733();while(!![]){try{const _0x36d00e=parseInt(_0x7c0303(0xdb))/0x1+parseInt(_0x7c0303(0x10b))/0x2+parseInt(_0x7c0303(0xe6))/0x3+-parseInt(_0x7c0303(0x108))/0x4+-parseInt(_0x7c0303(0xfc))/0x5*(-parseInt(_0x7c0303(0xe4))/0x6)+parseInt(_0x7c0303(0xd0))/0x7*(-parseInt(_0x7c0303(0x119))/0x8)+-parseInt(_0x7c0303(0x13f))/0x9*(parseInt(_0x7c0303(0x11c))/0xa);if(_0x36d00e===_0x1644c2)break;else _0x24cded['push'](_0x24cded['shift']());}catch(_0x4790b6){_0x24cded['push'](_0x24cded['shift']());}}}(_0x4723,0x189be));import{Command,Args,Flags}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';import{join,dirname,resolve}from'\x70\x61\x74\x68';import{existsSync,unlinkSync,writeFileSync,readFileSync}from'\x66\x73';import{PayloadSDK}from'\x40\x70\x61\x79\x6c\x6f\x61\x64\x63\x6d\x73\x2f\x73\x64\x6b';import{stdout,stdin}from'\x70\x72\x6f\x63\x65\x73\x73';import'\x72\x65\x61\x64\x6c\x69\x6e\x65';import{createInterface}from'\x72\x65\x61\x64\x6c\x69\x6e\x65\x2f\x70\x72\x6f\x6d\x69\x73\x65\x73';function _0x4723(){const _0x13b9d0=['\x50\x4f\x53\x54','\x54\x65\x6e\x61\x6e\x74\x20\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x20\x66\x61\x69\x6c\x65\x64\x20\x77\x69\x74\x68\x20\x73\x74\x61\x74\x75\x73\x20','\x6d\x65\x73\x73\x61\x67\x65','\x54\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20','\x66\x69\x6e\x64\x42\x79\x49\x44','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6c\x6f\x61\x64\x20\x63\x61\x63\x68\x65\x64\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a','\x6f\x62\x6a\x65\x63\x74','\x54\x68\x65\x6d\x65\x20\x49\x44\x20\x63\x6c\x65\x61\x72\x65\x64\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x2e','\x53\x65\x73\x73\x69\x6f\x6e\x20\x65\x78\x70\x69\x72\x65\x64\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x69\x67\x6e\x20\x69\x6e\x20\x61\x67\x61\x69\x6e\x2e','\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65','\x42\x41\x53\x4b\x45\x52\x5f\x55\x52\x4c','\x69\x73\x41\x72\x72\x61\x79','\x4e\x6f\x20\x61\x63\x63\x65\x73\x73\x69\x62\x6c\x65\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x73\x20\x77\x65\x72\x65\x20\x66\x6f\x75\x6e\x64\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x61\x63\x63\x6f\x75\x6e\x74\x2e','\x73\x6f\x72\x74','\x6a\x6f\x69\x6e','\x63\x77\x64','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x54\x45\x4e\x41\x4e\x54\x5f\x49\x44','\x38\x32\x35\x38\x31\x33\x72\x63\x51\x74\x41\x74','\x75\x73\x65\x72\x73','\x74\x65\x6e\x61\x6e\x74\x73','\x6e\x75\x6d\x62\x65\x72','\x63\x6c\x6f\x6e\x65','\x61\x72\x72\x61\x79\x42\x75\x66\x66\x65\x72','\x65\x72\x72\x6f\x72','\x2e\x2e\x2f\x2e\x2e\x2f\x63\x6f\x6e\x66\x69\x67\x2f\x64\x65\x66\x61\x75\x6c\x74\x73\x2e\x6a\x73\x6f\x6e','\x66\x69\x6e\x64','\x6c\x61\x73\x74\x20\x73\x65\x6c\x65\x63\x74\x65\x64','\x69\x73\x46\x69\x6e\x69\x74\x65','\x75\x74\x66\x2d\x38','\x75\x73\x65\x72','\x67\x65\x74','\x73\x6c\x75\x67','\x70\x61\x72\x73\x65','\x63\x6c\x65\x61\x72','\x65\x6e\x76','\x78\x2d\x62\x61\x73\x6b\x65\x72\x2d\x72\x65\x6e\x64\x65\x72\x65\x72','\x63\x6d\x73\x55\x72\x6c','\x50\x61\x79\x6c\x6f\x61\x64\x20\x43\x4d\x53\x20\x62\x61\x73\x65\x20\x55\x52\x4c','\x73\x69\x7a\x65','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x44\x45\x42\x55\x47','\x73\x65\x74\x54\x68\x65\x6d\x65\x49\x64','\x74\x72\x69\x6d','\x73\x65\x74\x41\x75\x74\x68','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x54\x48\x45\x4d\x45\x5f\x50\x41\x54\x48','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x75\x70\x64\x61\x74\x65\x20\x74\x68\x65\x20\x43\x4d\x53\x20\x74\x65\x6e\x61\x6e\x74\x20\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x2e\x20\x43\x6f\x6e\x74\x69\x6e\x75\x69\x6e\x67\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x6c\x6f\x63\x61\x6c\x20\x73\x65\x73\x73\x69\x6f\x6e\x2e','\x32\x31\x44\x78\x53\x63\x71\x61','\x70\x61\x79\x6c\x6f\x61\x64\x2d\x75\x72\x6c','\x74\x6f\x4c\x6f\x77\x65\x72\x43\x61\x73\x65','\x74\x68\x65\x6d\x65\x49\x64','\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65\x49\x64','\x73\x65\x74\x53\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65','\x67\x65\x74\x54\x68\x65\x6d\x65\x49\x64','\x67\x65\x74\x53\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65','\x6e\x6f\x77','\x61\x70\x70\x6c\x69\x63\x61\x74\x69\x6f\x6e\x2f\x6a\x73\x6f\x6e','\x65\x78\x70\x69\x72\x65\x73\x41\x74','\x31\x30\x30\x39\x35\x33\x79\x52\x48\x46\x50\x47','\x44\x45\x42\x55\x47','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6c\x6f\x63\x61\x74\x65\x20\x74\x68\x65\x6d\x65\x2e','\x68\x65\x61\x64\x65\x72\x73','\x6c\x6f\x67','\x66\x72\x6f\x6d','\x63\x6c\x65\x61\x72\x54\x68\x65\x6d\x65\x49\x64','\x72\x65\x73\x65\x74\x53\x74\x61\x74\x65','\x2f\x61\x70\x69\x2f\x75\x73\x65\x72\x73\x2f\x73\x65\x74\x2d\x74\x65\x6e\x61\x6e\x74','\x31\x32\x68\x6f\x61\x70\x7a\x78','\x64\x65\x6c\x65\x74\x65','\x31\x39\x39\x38\x33\x39\x69\x5a\x71\x7a\x6b\x6d','\x6c\x61\x73\x74\x53\x65\x6c\x65\x63\x74\x65\x64\x54\x65\x6e\x61\x6e\x74','\x73\x74\x72\x69\x6e\x67','\x65\x6e\x74\x72\x69\x65\x73','\x41\x75\x74\x68\x6f\x72\x69\x7a\x61\x74\x69\x6f\x6e','\x2e\x2e\x2f\x63\x6f\x6e\x66\x69\x67\x2f\x64\x65\x66\x61\x75\x6c\x74\x73\x2e\x6a\x73\x6f\x6e','\x45\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x74\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20','\x74\x65\x6e\x61\x6e\x74\x49\x64','\x74\x65\x6e\x61\x6e\x74','\x53\x65\x6c\x65\x63\x74\x20\x61\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65','\x43\x68\x6f\x6f\x73\x65\x20\x61\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x20\x5b\x31\x2d','\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e','\x6c\x61\x62\x65\x6c','\x6c\x6f\x61\x64\x46\x72\x6f\x6d\x46\x69\x6c\x65','\x64\x6f\x63\x73','\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65','\x74\x6f\x53\x74\x72\x69\x6e\x67','\x6a\x73\x6f\x6e','\x2e\x6c\x6f\x63\x61\x6c\x73\x74\x61\x67\x65\x2d\x73\x65\x73\x73\x69\x6f\x6e\x2e\x6a\x73\x6f\x6e','\x70\x65\x72\x73\x69\x73\x74\x54\x6f\x46\x69\x6c\x65','\x69\x73\x54\x54\x59','\x42\x65\x61\x72\x65\x72\x20','\x31\x37\x39\x33\x31\x35\x67\x7a\x77\x41\x67\x41','\x50\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x68\x65\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79','\x68\x69\x6e\x74','\x76\x61\x6c\x75\x65','\x53\x65\x6c\x65\x63\x74\x65\x64\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x3a\x20','\x49\x6e\x74\x65\x72\x61\x63\x74\x69\x76\x65\x20\x69\x6e\x70\x75\x74\x20\x69\x73\x20\x6e\x6f\x74\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x2e','\x6c\x6f\x63\x61\x6c\x65\x43\x6f\x6d\x70\x61\x72\x65','\x68\x74\x74\x70\x73\x3a\x2f\x2f','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x73\x77\x69\x74\x63\x68\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x2e','\x61\x72\x67\x73','\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x69\x73\x49\x6e\x74\x65\x67\x65\x72','\x35\x30\x39\x34\x35\x36\x68\x43\x46\x4f\x62\x46','\x4e\x6f\x20\x74\x68\x65\x6d\x65\x20\x66\x69\x6c\x65\x73\x20\x64\x65\x74\x65\x63\x74\x65\x64\x20\x69\x6e\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x20\x45\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x66\x69\x6e\x64\x3a\x20\x6c\x61\x79\x6f\x75\x74\x73\x2f\x20\x6f\x72\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f\x2e','\x78\x2d\x62\x61\x73\x6b\x65\x72\x2d\x74\x65\x6e\x61\x6e\x74\x2d\x69\x64','\x33\x32\x39\x31\x30\x34\x6e\x52\x58\x72\x72\x49','\x6d\x61\x70','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x53\x44\x4b\x5f\x43\x41\x43\x48\x45\x5f\x44\x49\x53\x41\x42\x4c\x45\x44','\x65\x6e\x64\x73\x57\x69\x74\x68','\x6c\x65\x6e\x67\x74\x68','\x73\x6c\x69\x63\x65','\x74\x68\x65\x6d\x65','\x53\x77\x69\x74\x63\x68\x20\x74\x68\x65\x20\x61\x63\x74\x69\x76\x65\x20\x4c\x6f\x63\x61\x6c\x53\x74\x61\x67\x65\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x20\x66\x6f\x72\x20\x74\x68\x69\x73\x20\x74\x68\x65\x6d\x65\x2e','\x73\x74\x61\x72\x74\x73\x57\x69\x74\x68','\x67\x65\x74\x54\x65\x6e\x61\x6e\x74\x49\x64','\x72\x75\x6e','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x53\x44\x4b\x5f\x43\x41\x43\x48\x45\x5f\x54\x54\x4c\x5f\x4d\x53','\x66\x69\x6c\x74\x65\x72','\x77\x72\x69\x74\x65','\x32\x32\x33\x38\x30\x30\x54\x4c\x66\x77\x66\x72','\x54\x68\x65\x6d\x65\x20\x49\x44\x3a\x20','\x68\x74\x74\x70\x3a\x2f\x2f\x6c\x6f\x63\x61\x6c\x68\x6f\x73\x74\x3a\x33\x30\x30\x30','\x31\x30\x4e\x75\x6b\x6d\x47\x70','\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x71\x75\x65\x73\x74\x69\x6f\x6e','\x73\x6f\x6d\x65','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x72\x65\x6d\x6f\x76\x65\x20\x63\x61\x63\x68\x65\x64\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x63\x61\x63\x68\x65\x20\x73\x65\x73\x73\x69\x6f\x6e\x3a','\x47\x45\x54','\x6e\x61\x6d\x65','\x62\x6f\x64\x79','\x66\x6c\x61\x67\x73','\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65','\x75\x72\x6c','\x6d\x65\x74\x68\x6f\x64','\x73\x74\x61\x74\x75\x73','\x68\x74\x74\x70\x3a\x2f\x2f','\x74\x72\x75\x65','\x74\x68\x65\x6d\x65\x50\x61\x74\x68','\x77\x61\x72\x6e'];_0x4723=function(){return _0x13b9d0;};return _0x4723();}import{fileURLToPath}from'\x75\x72\x6c';var D=_0x4c87bf=>typeof _0x4c87bf==_0x10b68b(0xe8),N=_0x5b71f2=>typeof _0x5b71f2=='\x6e\x75\x6d\x62\x65\x72'&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x5b71f2),i=_0x1f286c=>typeof _0x1f286c==_0x10b68b(0x134)&&_0x1f286c!==null&&!Array[_0x10b68b(0x139)](_0x1f286c),a=(_0x3aa4a3,_0x2e7d2b)=>{if(!i(_0x3aa4a3))return null;let _0x52641a=_0x3aa4a3[_0x2e7d2b];return D(_0x52641a)?_0x52641a:null;},m=(_0x58cc41,_0x1b02fe)=>{if(!i(_0x58cc41))return null;let _0x12d4c1=_0x58cc41[_0x1b02fe];return N(_0x12d4c1)?_0x12d4c1:null;},u=(_0x4f913f,_0xe0f85e)=>a(_0x4f913f,_0xe0f85e)!==null,y=_0x41f916=>u(_0x41f916,'\x69\x64')&&u(_0x41f916,_0x10b68b(0x123))&&u(_0x41f916,_0x10b68b(0xc2)),we=_0x6d873=>u(_0x6d873,'\x69\x64')&&u(_0x6d873,'\x65\x6d\x61\x69\x6c'),O=_0x4d3030=>we(_0x4d3030)&&u(_0x4d3030,'\x75\x70\x64\x61\x74\x65\x64\x41\x74')&&u(_0x4d3030,'\x63\x72\x65\x61\x74\x65\x64\x41\x74'),ke=join(process[_0x10b68b(0x13d)](),_0x10b68b(0xf8)),Ie=0x18*0x3c*0x3c*0x3e8,b=class{['\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e']=null;[_0x10b68b(0xed)]=null;[_0x10b68b(0xee)]=null;[_0x10b68b(0xd3)]=null;[_0x10b68b(0xf5)];constructor(_0x3ed427=ke){this['\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65']=_0x3ed427;}[_0x10b68b(0xd7)](){const _0x486a27=_0x10b68b;return this[_0x486a27(0xf5)];}[_0x10b68b(0xd5)](_0x1d3e91){const _0x2596ec=_0x10b68b;this['\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65']=_0x1d3e91,this[_0x2596ec(0xf3)]();}['\x67\x65\x74\x54\x6f\x6b\x65\x6e'](){const _0x38a813=_0x10b68b;return this[_0x38a813(0xf1)];}[_0x10b68b(0x114)](){const _0x193d21=_0x10b68b;return this[_0x193d21(0xed)];}['\x67\x65\x74\x54\x65\x6e\x61\x6e\x74'](){const _0x10b58b=_0x10b68b;return this[_0x10b58b(0xee)];}[_0x10b68b(0xd6)](){const _0x39a4b9=_0x10b68b;return this[_0x39a4b9(0xd3)];}[_0x10b68b(0xcd)](_0x268270,_0x38cfdc,_0xa2cea9){const _0x36c636=_0x10b68b;this[_0x36c636(0xf1)]=_0x268270,this['\x74\x65\x6e\x61\x6e\x74\x49\x64']=_0x38cfdc,this[_0x36c636(0xee)]=_0xa2cea9??null;}[_0x10b68b(0xcb)](_0x24c976){const _0x29eb0a=_0x10b68b;this[_0x29eb0a(0xd3)]=_0x24c976;}[_0x10b68b(0xe1)](){const _0x21fbe5=_0x10b68b;this[_0x21fbe5(0xd3)]=null;}[_0x10b68b(0xc4)](){const _0x335617=_0x10b68b;if(this[_0x335617(0xe2)](),!!existsSync(this['\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65']))try{unlinkSync(this[_0x335617(0xf5)]);}catch(_0x1e52c1){console[_0x335617(0x12d)](_0x335617(0x120),_0x1e52c1);}}['\x70\x65\x72\x73\x69\x73\x74\x54\x6f\x46\x69\x6c\x65'](){const _0x68b4b0=_0x10b68b;let _0x50ba8f=!!(this[_0x68b4b0(0xf1)]&&this['\x74\x65\x6e\x61\x6e\x74\x49\x64']),_0x5961ea=!!this[_0x68b4b0(0xd3)];if(!_0x50ba8f&&!_0x5961ea){if(!existsSync(this[_0x68b4b0(0xf5)]))return;try{unlinkSync(this['\x73\x65\x73\x73\x69\x6f\x6e\x46\x69\x6c\x65']);}catch(_0x31d831){console[_0x68b4b0(0x12d)](_0x68b4b0(0x120),_0x31d831);}return;}let _0xd9ad1f={'\x74\x69\x6d\x65\x73\x74\x61\x6d\x70':Date['\x6e\x6f\x77']()};this[_0x68b4b0(0xf1)]&&this[_0x68b4b0(0xed)]&&(_0xd9ad1f['\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e']=this[_0x68b4b0(0xf1)],_0xd9ad1f['\x74\x65\x6e\x61\x6e\x74\x49\x64']=this[_0x68b4b0(0xed)],_0xd9ad1f[_0x68b4b0(0xee)]=this['\x74\x65\x6e\x61\x6e\x74']??void 0x0),this[_0x68b4b0(0xd3)]&&(_0xd9ad1f['\x74\x68\x65\x6d\x65\x49\x64']=this[_0x68b4b0(0xd3)]);try{writeFileSync(this[_0x68b4b0(0xf5)],JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0xd9ad1f,null,0x2));}catch(_0xf5b094){console[_0x68b4b0(0x12d)](_0x68b4b0(0x121),_0xf5b094);}}['\x6c\x6f\x61\x64\x46\x72\x6f\x6d\x46\x69\x6c\x65'](){const _0x5dc5a2=_0x10b68b;this[_0x5dc5a2(0xe2)]();try{if(!existsSync(this[_0x5dc5a2(0xf5)]))return;let _0x327ec8=readFileSync(this[_0x5dc5a2(0xf5)],_0x5dc5a2(0xbf)),_0x567f81=JSON[_0x5dc5a2(0xc3)](_0x327ec8);if(!i(_0x567f81))return;let _0x5b338f=m(_0x567f81,'\x74\x69\x6d\x65\x73\x74\x61\x6d\x70');if(typeof _0x5b338f!=_0x5dc5a2(0x142))return;if(Date['\x6e\x6f\x77']()-_0x5b338f>Ie){let _0x260dad=a(_0x567f81,_0x5dc5a2(0xd3));_0x260dad&&(this['\x74\x68\x65\x6d\x65\x49\x64']=_0x260dad);return;}let _0x58d0d7=a(_0x567f81,_0x5dc5a2(0xf1)),_0xb0a734=a(_0x567f81,_0x5dc5a2(0xed)),_0x1905fa=_0x5dc5a2(0xee)in _0x567f81?_0x567f81[_0x5dc5a2(0xee)]:null,_0x25f5dc=a(_0x567f81,'\x74\x68\x65\x6d\x65\x49\x64');this[_0x5dc5a2(0xf1)]=_0x58d0d7??null,this[_0x5dc5a2(0xed)]=_0xb0a734??null,this[_0x5dc5a2(0xee)]=_0x1905fa??null,this[_0x5dc5a2(0xd3)]=_0x25f5dc??null;}catch(_0x2593cb){console['\x77\x61\x72\x6e'](_0x5dc5a2(0x133),_0x2593cb);}}[_0x10b68b(0xe2)](){const _0x1740aa=_0x10b68b;this[_0x1740aa(0xf1)]=null,this['\x74\x65\x6e\x61\x6e\x74\x49\x64']=null,this['\x74\x65\x6e\x61\x6e\x74']=null,this[_0x1740aa(0xd3)]=null;}},c=new b();c[_0x10b68b(0xf3)]();function $(){return c['\x67\x65\x74\x54\x6f\x6b\x65\x6e']();}function M(){const _0x19b050=_0x10b68b;return c[_0x19b050(0x114)]();}function G(_0x730eab){const _0x5a7da7=_0x10b68b;let _0x18c47c=join(_0x730eab,_0x5a7da7(0xf8));return c[_0x5a7da7(0xd5)](_0x18c47c),_0x18c47c;}function _0x54b5(_0x2b00ac,_0x18957d){_0x2b00ac=_0x2b00ac-0xbe;const _0x4723f4=_0x4723();let _0x54b5f2=_0x4723f4[_0x2b00ac];return _0x54b5f2;}function B(){c['\x6c\x6f\x61\x64\x46\x72\x6f\x6d\x46\x69\x6c\x65']();}function q(_0xe42c12,_0x1f5343,_0x4d05bb){const _0x263cd8=_0x10b68b;c[_0x263cd8(0xcd)](_0xe42c12,_0x1f5343,_0x4d05bb),c[_0x263cd8(0xf9)]();}function j(_0x812ec8){const _0x487a5a=_0x10b68b;c[_0x487a5a(0xcb)](_0x812ec8),c['\x70\x65\x72\x73\x69\x73\x74\x54\x6f\x46\x69\x6c\x65']();}function z(){const _0x508087=_0x10b68b;c['\x63\x6c\x65\x61\x72\x54\x68\x65\x6d\x65\x49\x64'](),c[_0x508087(0xf9)]();}function K(){const _0x49bbe2=_0x10b68b;c[_0x49bbe2(0xc4)]();}var Pe=_0x56572f=>i(_0x56572f)&&typeof _0x56572f[_0x10b68b(0x129)]==_0x10b68b(0x142),J=_0x411333=>{if(!i(_0x411333))return null;let _0x450f38=_0x411333['\x72\x65\x73\x70\x6f\x6e\x73\x65'];return Pe(_0x450f38)?_0x450f38:null;},Re=_0x278ec9=>{const _0xc37d1e=_0x10b68b;let _0x50ef7d=J(_0x278ec9);return _0x50ef7d?_0x50ef7d[_0xc37d1e(0x129)]:m(_0x278ec9,'\x73\x74\x61\x74\x75\x73')??m(_0x278ec9,'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65');},H=_0x1de2a8=>{let _0x48c68b=Re(_0x1de2a8);return _0x48c68b===0x191||_0x48c68b===0x193;},A=async(_0x5abe30,_0x1c7e11)=>{const _0x5447b2=_0x10b68b;let _0x2dec27=J(_0x5abe30);if(!_0x2dec27)return a(_0x5abe30,_0x5447b2(0x130))??_0x1c7e11;if(_0x2dec27[_0x5447b2(0x129)]===0x191||_0x2dec27[_0x5447b2(0x129)]===0x193)return'\x53\x65\x73\x73\x69\x6f\x6e\x20\x65\x78\x70\x69\x72\x65\x64\x2e\x20\x50\x6c\x65\x61\x73\x65\x20\x73\x69\x67\x6e\x20\x69\x6e\x20\x61\x67\x61\x69\x6e\x2e';let _0x7e0415=typeof _0x2dec27[_0x5447b2(0x143)]==_0x5447b2(0x106)?_0x2dec27[_0x5447b2(0x143)]():_0x2dec27;if(i(_0x7e0415)&&typeof _0x7e0415[_0x5447b2(0xf7)]=='\x66\x75\x6e\x63\x74\x69\x6f\x6e')try{let _0x1b77a7=await _0x7e0415[_0x5447b2(0xf7)](),_0x538c0f=a(_0x1b77a7,_0x5447b2(0x130));if(_0x538c0f)return _0x538c0f;}catch{}return _0x1c7e11;},be=()=>process[_0x10b68b(0xc5)][_0x10b68b(0xdc)]===_0x10b68b(0x12b)||process[_0x10b68b(0xc5)][_0x10b68b(0xca)]===_0x10b68b(0x12b),V={'\x69\x6e\x66\x6f'(_0x4e4503){console['\x77\x61\x72\x6e'](_0x4e4503);},'\x77\x61\x72\x6e'(_0x3227cc,_0x2f2643){const _0x53c813=_0x10b68b;if(_0x2f2643){console[_0x53c813(0x12d)](_0x3227cc,_0x2f2643);return;}console[_0x53c813(0x12d)](_0x3227cc);},'\x65\x72\x72\x6f\x72'(_0x4cf9c4,_0x2f8087){const _0xd81d8a=_0x10b68b;if(_0x2f8087){console[_0xd81d8a(0x145)](_0x4cf9c4,_0x2f8087);return;}console[_0xd81d8a(0x145)](_0x4cf9c4);},'\x64\x65\x62\x75\x67'(_0x3128e1,_0x301a76){const _0x54127f=_0x10b68b;if(be()){if(_0x301a76){console[_0x54127f(0x12d)](_0x3128e1,_0x301a76);return;}console['\x77\x61\x72\x6e'](_0x3128e1);}}},W=0x3a98,Q=_0x3a3285=>_0x3a3285?_0x3a3285 instanceof Headers?Array[_0x10b68b(0xe0)](_0x3a3285['\x65\x6e\x74\x72\x69\x65\x73']()):Array[_0x10b68b(0x139)](_0x3a3285)?_0x3a3285['\x66\x69\x6c\x74\x65\x72'](_0xaa079b=>Array[_0x10b68b(0x139)](_0xaa079b)&&_0xaa079b[_0x10b68b(0x10f)]===0x2&&typeof _0xaa079b[0x0]==_0x10b68b(0xe8)&&typeof _0xaa079b[0x1]==_0x10b68b(0xe8)):i(_0x3a3285)?Object[_0x10b68b(0xe9)](_0x3a3285)[_0x10b68b(0x117)](_0x2b840d=>typeof _0x2b840d[0x0]==_0x10b68b(0xe8)&&typeof _0x2b840d[0x1]==_0x10b68b(0xe8)):[]:[],Ae=(_0x287a0d,_0x265dd3)=>_0x265dd3['\x73\x74\x61\x72\x74\x73\x57\x69\x74\x68'](_0x10b68b(0x12a))||_0x265dd3['\x73\x74\x61\x72\x74\x73\x57\x69\x74\x68'](_0x10b68b(0x103))?_0x265dd3:!_0x287a0d[_0x10b68b(0x10e)]('\x2f')&&!_0x265dd3[_0x10b68b(0x113)]('\x2f')?_0x287a0d+'\x2f'+_0x265dd3:''+_0x287a0d+_0x265dd3,Ce=()=>{const _0x245e93=_0x10b68b;let _0x467474=process[_0x245e93(0xc5)][_0x245e93(0x10d)]??'';return _0x467474[_0x245e93(0xd2)]()===_0x245e93(0x12b)||_0x467474==='\x31';},Ee=()=>{const _0x258bf3=_0x10b68b;let _0x5c7f95=process[_0x258bf3(0xc5)][_0x258bf3(0x116)];if(!_0x5c7f95)return W;let _0x427e0b=Number(_0x5c7f95);return!Number[_0x258bf3(0xbe)](_0x427e0b)||_0x427e0b<0x0?W:_0x427e0b;},ve=(_0x11dfdb,_0x22b33b)=>{const _0x3ca68b=_0x10b68b;let _0x3ce3c5=(_0x22b33b[_0x3ca68b(0x128)]??'\x47\x45\x54')['\x74\x6f\x55\x70\x70\x65\x72\x43\x61\x73\x65'](),_0x537f8f=Q(_0x22b33b[_0x3ca68b(0xde)])[_0x3ca68b(0x10c)](([_0x4ee7b8,_0x4e0d15])=>_0x4ee7b8['\x74\x6f\x4c\x6f\x77\x65\x72\x43\x61\x73\x65']()+'\x3a'+_0x4e0d15)[_0x3ca68b(0x13b)]()[_0x3ca68b(0x13c)]('\x7c');return _0x3ce3c5+'\x3a'+_0x11dfdb+'\x3a'+_0x537f8f;},Fe=(_0x4fa368,_0x1ca228)=>!(_0x4fa368!==_0x10b68b(0x122)||_0x1ca228<=0x0||Ce()),Y=_0x10c72d=>{let _0x105676=new Map(),_0x4c4697=()=>{const _0x175731=_0x54b5;let _0xe73050=Date[_0x175731(0xd8)]();for(let [_0x173cb0,_0x355e97]of _0x105676[_0x175731(0xe9)]())_0x355e97[_0x175731(0xda)]<=_0xe73050&&_0x105676[_0x175731(0xe5)](_0x173cb0);};return async(_0x3f3625,_0x56ef29)=>{const _0x55282b=_0x54b5;let _0x3e24ce=_0x56ef29?.[_0x55282b(0x128)],_0x4fc779=_0x3f3625 instanceof Request?_0x3f3625['\x6d\x65\x74\x68\x6f\x64']:void 0x0,_0x32fba1=(_0x3e24ce??_0x4fc779??'\x47\x45\x54')['\x74\x6f\x55\x70\x70\x65\x72\x43\x61\x73\x65'](),_0x49e136=Ee(),_0x165dd5=_0x56ef29?.[_0x55282b(0xde)]??(_0x3f3625 instanceof Request?_0x3f3625['\x68\x65\x61\x64\x65\x72\x73']:void 0x0),_0x34ac1b=Q(_0x165dd5),_0x1e21d9=typeof _0x3f3625==_0x55282b(0xe8)?Ae(_0x10c72d,_0x3f3625):_0x3f3625 instanceof URL?_0x3f3625[_0x55282b(0xf6)]():_0x3f3625[_0x55282b(0x127)];if(!Fe(_0x32fba1,_0x49e136))return fetch(_0x1e21d9,_0x56ef29);let _0x2b21c9=ve(_0x1e21d9,{..._0x56ef29,'\x6d\x65\x74\x68\x6f\x64':_0x32fba1,'\x68\x65\x61\x64\x65\x72\x73':_0x34ac1b}),_0x1c5833=Date[_0x55282b(0xd8)](),_0x4231dd=_0x105676[_0x55282b(0xc1)](_0x2b21c9);if(_0x4231dd&&_0x4231dd['\x65\x78\x70\x69\x72\x65\x73\x41\x74']>_0x1c5833)return new Response(_0x4231dd[_0x55282b(0x124)][_0x55282b(0x110)](0x0),{'\x73\x74\x61\x74\x75\x73':_0x4231dd[_0x55282b(0x129)],'\x68\x65\x61\x64\x65\x72\x73':_0x4231dd['\x68\x65\x61\x64\x65\x72\x73']});let _0x52c881=await fetch(_0x1e21d9,_0x56ef29);if(_0x52c881['\x6f\x6b']){let _0x311fe1=await _0x52c881[_0x55282b(0x143)]()[_0x55282b(0x144)]();_0x105676['\x73\x65\x74'](_0x2b21c9,{'\x62\x6f\x64\x79':_0x311fe1,'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x1c5833+_0x49e136,'\x68\x65\x61\x64\x65\x72\x73':Array[_0x55282b(0xe0)](_0x52c881['\x68\x65\x61\x64\x65\x72\x73']['\x65\x6e\x74\x72\x69\x65\x73']()),'\x73\x74\x61\x74\x75\x73':_0x52c881[_0x55282b(0x129)]}),_0x105676[_0x55282b(0xc9)]>0xc8&&_0x4c4697();}return _0x52c881;};};function T(_0xa54148){const _0x554fe2=_0x10b68b;let _0x2da0fa=(_0xa54148[_0x554fe2(0x10e)]('\x2f')?_0xa54148[_0x554fe2(0x110)](0x0,-0x1):_0xa54148)+'\x2f\x61\x70\x69';return new PayloadSDK({'\x62\x61\x73\x65\x55\x52\x4c':_0x2da0fa,'\x66\x65\x74\x63\x68':Y(_0x2da0fa)});}function S({token:_0x51917f,tenantId:_0x3db8b6,renderer:_0x31d627=_0x10b68b(0x137)}){const _0x2c9ec8=_0x10b68b;let _0x1c60f1={};_0x51917f&&(_0x1c60f1[_0x2c9ec8(0xea)]=_0x2c9ec8(0xfb)+_0x51917f),_0x3db8b6&&(_0x1c60f1[_0x2c9ec8(0x10a)]=String(_0x3db8b6));let _0x408e5b=_0x31d627[_0x2c9ec8(0xcc)]();return _0x408e5b&&(_0x1c60f1[_0x2c9ec8(0xc6)]=_0x408e5b),_0x1c60f1;}var ee=()=>{const _0x33586c=_0x10b68b;if(!stdin[_0x33586c(0xfa)])throw new Error(_0x33586c(0x101));},X=async(_0x698240,_0x2378a7)=>{const _0x533e84=_0x10b68b;let _0x43aa89=createInterface({'\x69\x6e\x70\x75\x74':stdin,'\x6f\x75\x74\x70\x75\x74':_0x2378a7});try{return(await _0x43aa89[_0x533e84(0x11e)](_0x698240+'\x3a\x20'))[_0x533e84(0xcc)]();}finally{_0x43aa89['\x63\x6c\x6f\x73\x65']();}},te=async({message:_0x26071f,required:_0x582124=![]})=>{ee();let _0x20fe78='';if(_0x582124){do _0x20fe78=await X(_0x26071f,stdout);while(!_0x20fe78);}else _0x20fe78=await X(_0x26071f,stdout);return _0x20fe78;},ne=async({message:_0x5cb523,options:_0x149826})=>{const _0x24e720=_0x10b68b;if(ee(),_0x149826[_0x24e720(0x10f)]===0x0)throw new Error('\x4e\x6f\x20\x6f\x70\x74\x69\x6f\x6e\x73\x20\x61\x72\x65\x20\x61\x76\x61\x69\x6c\x61\x62\x6c\x65\x2e');stdout[_0x24e720(0x118)](_0x5cb523+'\x0a');for(let [_0x4f2144,_0x115220]of _0x149826[_0x24e720(0xe9)]()){let _0x2b17ec=_0x115220[_0x24e720(0xfe)]?'\x20\x28'+_0x115220['\x68\x69\x6e\x74']+'\x29':'';stdout[_0x24e720(0x118)]('\x20\x20'+(_0x4f2144+0x1)+'\x2e\x20'+_0x115220[_0x24e720(0xf2)]+_0x2b17ec+'\x0a');}for(;;){let _0x3854e4=await te({'\x6d\x65\x73\x73\x61\x67\x65':_0x24e720(0xf0)+_0x149826[_0x24e720(0x10f)]+'\x5d','\x72\x65\x71\x75\x69\x72\x65\x64':!![]}),_0x42d8c4=Number(_0x3854e4);if(Number[_0x24e720(0x107)](_0x42d8c4)&&_0x42d8c4>=0x1&&_0x42d8c4<=_0x149826[_0x24e720(0x10f)])return _0x149826[_0x42d8c4-0x1][_0x24e720(0xff)];stdout['\x77\x72\x69\x74\x65']('\x45\x6e\x74\x65\x72\x20\x61\x20\x6e\x75\x6d\x62\x65\x72\x20\x62\x65\x74\x77\x65\x65\x6e\x20\x31\x20\x61\x6e\x64\x20'+_0x149826[_0x24e720(0x10f)]+'\x2e\x0a');}},k=_0x2a6581=>{const _0x19b815=_0x10b68b;if(!i(_0x2a6581))return null;let _0x33d61a=_0x2a6581[_0x19b815(0x126)];return typeof _0x33d61a==_0x19b815(0xe8)?_0x33d61a:a(_0x33d61a,'\x69\x64');},C={'\x69\x64':!![],'\x6e\x61\x6d\x65':!![],'\x73\x6c\x75\x67':!![],'\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65':!![]},se=_0xd1f434=>_0xd1f434[_0x10b68b(0x10e)]('\x2f')?_0xd1f434[_0x10b68b(0x110)](0x0,-0x1):_0xd1f434,re=_0x42be52=>{const _0x32b9ce=_0x10b68b;let _0x3d0bd2=i(_0x42be52)&&_0x32b9ce(0xc0)in _0x42be52?_0x42be52[_0x32b9ce(0xc0)]:_0x42be52;if(!O(_0x3d0bd2))throw new Error(_0x32b9ce(0x136));return _0x3d0bd2;},oe=_0x1f4c30=>!i(_0x1f4c30)||!Array[_0x10b68b(0x139)](_0x1f4c30[_0x10b68b(0xf4)])?[]:_0x1f4c30[_0x10b68b(0xf4)]['\x66\x69\x6c\x74\x65\x72'](y)[_0x10b68b(0x10c)](_0x5cd423=>{const _0x425ca9=_0x10b68b;let _0x100761=k(_0x5cd423);return{'\x69\x64':_0x5cd423['\x69\x64'],'\x6e\x61\x6d\x65':_0x5cd423[_0x425ca9(0x123)],'\x73\x6c\x75\x67':_0x5cd423['\x73\x6c\x75\x67'],'\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65\x49\x64':_0x100761};})[_0x10b68b(0x13b)]((_0x59dd66,_0x53aa20)=>_0x59dd66['\x6e\x61\x6d\x65'][_0x10b68b(0x102)](_0x53aa20[_0x10b68b(0x123)])),De=async(_0x4e2a95,_0x1b068f)=>{const _0x4ef3d1=_0x10b68b;let _0x8e6646=await T(_0x4e2a95)['\x6d\x65']({'\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e':_0x4ef3d1(0x140)},{'\x68\x65\x61\x64\x65\x72\x73':S({'\x74\x6f\x6b\x65\x6e':_0x1b068f})});return re(_0x8e6646);},Ne=async(_0x22c451,_0x3c0d6e)=>{const _0x22644e=_0x10b68b;let _0x41497c=await T(_0x22c451)[_0x22644e(0x147)]({'\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e':_0x22644e(0x141),'\x6c\x69\x6d\x69\x74':0x64,'\x64\x65\x70\x74\x68':0x0,'\x73\x65\x6c\x65\x63\x74':C},{'\x68\x65\x61\x64\x65\x72\x73':S({'\x74\x6f\x6b\x65\x6e':_0x3c0d6e})});return oe(_0x41497c);},ae=async(_0x25137f,_0x17b1d2,_0x57f770)=>{const _0x1c35aa=_0x10b68b;let _0x5c199d=await T(_0x25137f)[_0x1c35aa(0x132)]({'\x63\x6f\x6c\x6c\x65\x63\x74\x69\x6f\x6e':_0x1c35aa(0x141),'\x69\x64':_0x57f770,'\x64\x65\x70\x74\x68':0x0,'\x73\x65\x6c\x65\x63\x74':C},{'\x68\x65\x61\x64\x65\x72\x73':S({'\x74\x6f\x6b\x65\x6e':_0x17b1d2,'\x74\x65\x6e\x61\x6e\x74\x49\x64':_0x57f770})});return y(_0x5c199d)?{'\x69\x64':_0x5c199d['\x69\x64'],'\x6e\x61\x6d\x65':_0x5c199d['\x6e\x61\x6d\x65'],'\x73\x6c\x75\x67':_0x5c199d[_0x1c35aa(0xc2)],'\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65\x49\x64':k(_0x5c199d)}:null;},ce=({authToken:_0x46cc7c,tenant:_0x215bb1,user:_0x1c3c3d})=>(q(_0x46cc7c,_0x215bb1['\x69\x64'],{'\x69\x64':_0x215bb1['\x69\x64'],'\x6e\x61\x6d\x65':_0x215bb1[_0x10b68b(0x123)],'\x73\x6c\x75\x67':_0x215bb1[_0x10b68b(0xc2)]}),_0x215bb1[_0x10b68b(0xd4)]?j(_0x215bb1['\x73\x65\x6c\x65\x63\x74\x65\x64\x54\x68\x65\x6d\x65\x49\x64']):z(),process['\x65\x6e\x76'][_0x10b68b(0x13e)]=_0x215bb1['\x69\x64'],{'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x46cc7c,'\x74\x65\x6e\x61\x6e\x74':_0x215bb1,'\x74\x68\x65\x6d\x65\x49\x64':_0x215bb1[_0x10b68b(0xd4)],'\x75\x73\x65\x72':_0x1c3c3d}),ie=()=>{const _0x58f613=_0x10b68b;K(),delete process[_0x58f613(0xc5)][_0x58f613(0x13e)];},Oe=async({authToken:_0x2c3fda,payloadUrl:_0x707b1,tenantId:_0x90d2c8})=>{const _0x24aebf=_0x10b68b;let _0x195d0f=await fetch(se(_0x707b1)+_0x24aebf(0xe3),{'\x6d\x65\x74\x68\x6f\x64':_0x24aebf(0x12e),'\x68\x65\x61\x64\x65\x72\x73':{'\x41\x75\x74\x68\x6f\x72\x69\x7a\x61\x74\x69\x6f\x6e':_0x24aebf(0xfb)+_0x2c3fda,'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':_0x24aebf(0xd9),'\x78\x2d\x62\x61\x73\x6b\x65\x72\x2d\x72\x65\x6e\x64\x65\x72\x65\x72':_0x24aebf(0x137)},'\x62\x6f\x64\x79':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x74\x65\x6e\x61\x6e\x74\x49\x64':_0x90d2c8})});if(!_0x195d0f['\x6f\x6b'])throw new Error(_0x24aebf(0x12f)+_0x195d0f[_0x24aebf(0x129)]+'\x2e');},_e=async({payloadUrl:_0x1be2da,authToken:_0x227ae7,user:_0x4d1f22})=>{const _0x483a90=_0x10b68b;let _0x448fdc=await Ne(_0x1be2da,_0x227ae7);if(_0x448fdc[_0x483a90(0x10f)]===0x0)throw new Error(_0x483a90(0x13a));if(_0x448fdc['\x6c\x65\x6e\x67\x74\x68']===0x1)return _0x448fdc[0x0];let _0x24679c=await ne({'\x6d\x65\x73\x73\x61\x67\x65':_0x483a90(0xef),'\x6f\x70\x74\x69\x6f\x6e\x73':_0x448fdc[_0x483a90(0x10c)](_0x48e902=>({'\x6c\x61\x62\x65\x6c':_0x48e902[_0x483a90(0x123)]+'\x20\x28'+_0x48e902[_0x483a90(0xc2)]+'\x29','\x76\x61\x6c\x75\x65':_0x48e902['\x69\x64'],'\x68\x69\x6e\x74':_0x48e902['\x69\x64']===_0x4d1f22[_0x483a90(0xe7)]?_0x483a90(0x148):void 0x0}))});return _0x448fdc[_0x483a90(0x147)](_0x7d1894=>_0x7d1894['\x69\x64']===_0x24679c)??_0x448fdc[0x0];},$e=async _0x525b84=>{const _0x266a44=_0x10b68b;B();let _0x2585b5=$(),_0x1c3577=M();if(!_0x2585b5||!_0x1c3577)return null;try{let _0x3489ff=await De(_0x525b84,_0x2585b5),_0x184735=await ae(_0x525b84,_0x2585b5,_0x1c3577);return _0x184735?ce({'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x2585b5,'\x74\x65\x6e\x61\x6e\x74':_0x184735,'\x75\x73\x65\x72':_0x3489ff}):(ie(),null);}catch(_0x3e8231){if(H(_0x3e8231)||_0x3e8231 instanceof Error&&_0x3e8231[_0x266a44(0x130)]===_0x266a44(0x136))return ie(),null;throw _0x3e8231;}},le=async _0x591a9d=>{const _0x3bdb99=_0x10b68b;let _0x2f9825=await $e(_0x591a9d);if(!_0x2f9825)throw new Error('\x4e\x6f\x20\x63\x61\x63\x68\x65\x64\x20\x73\x65\x73\x73\x69\x6f\x6e\x20\x77\x61\x73\x20\x66\x6f\x75\x6e\x64\x2e\x20\x52\x75\x6e\x20\x27\x62\x61\x73\x6b\x65\x72\x20\x61\x75\x74\x68\x20\x6c\x6f\x67\x69\x6e\x27\x20\x66\x69\x72\x73\x74\x2e');let _0x253848=_0x2f9825[_0x3bdb99(0xf1)],_0x3b0820=_0x2f9825[_0x3bdb99(0xc0)],_0x2a2a72=await _e({'\x70\x61\x79\x6c\x6f\x61\x64\x55\x72\x6c':_0x591a9d,'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x253848,'\x75\x73\x65\x72':_0x3b0820});try{await Oe({'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x253848,'\x70\x61\x79\x6c\x6f\x61\x64\x55\x72\x6c':_0x591a9d,'\x74\x65\x6e\x61\x6e\x74\x49\x64':_0x2a2a72['\x69\x64']});}catch(_0x20895f){V['\x77\x61\x72\x6e'](_0x3bdb99(0xcf),_0x20895f);}let _0x28d035=await ae(_0x591a9d,_0x253848,_0x2a2a72['\x69\x64']);return ce({'\x61\x75\x74\x68\x54\x6f\x6b\x65\x6e':_0x253848,'\x74\x65\x6e\x61\x6e\x74':_0x28d035??_0x2a2a72,'\x75\x73\x65\x72':_0x3b0820});},je=fileURLToPath(import.meta.url),de=dirname(je),ze=[resolve(de,_0x10b68b(0xeb)),resolve(de,_0x10b68b(0x146))],I,pe=()=>{const _0x43b4a5=_0x10b68b;if(I!==void 0x0)return I;for(let _0x1f9237 of ze)if(existsSync(_0x1f9237))try{let _0x1a8ca8=readFileSync(_0x1f9237,_0x43b4a5(0xbf)),_0xd32e5b=JSON[_0x43b4a5(0xc3)](_0x1a8ca8);if(!i(_0xd32e5b))continue;let _0x32ae1c=a(_0xd32e5b,_0x43b4a5(0xc7));if(_0x32ae1c)return I=_0x32ae1c,_0x32ae1c;}catch{}return I=null,null;},x=_0x1b5685=>{const _0x5ca1e7=_0x10b68b;if(_0x1b5685!=null)return _0x1b5685;let _0x4a6dc9=process['\x65\x6e\x76'][_0x5ca1e7(0x138)];return _0x4a6dc9||pe()||_0x5ca1e7(0x11b);},me=_0x157c28=>{const _0x1ef45f=_0x10b68b;let _0xe950f8=process[_0x1ef45f(0xc5)][_0x1ef45f(0xce)];if(_0xe950f8&&!_0x157c28){let _0x1f6538=resolve(_0xe950f8);if(!existsSync(_0x1f6538))throw new Error(_0x1ef45f(0xec)+_0x1f6538);return _0x1f6538;}if(_0x157c28){let _0x355cc7=resolve(_0x157c28);if(!existsSync(_0x355cc7))throw new Error(_0x1ef45f(0x131)+_0x355cc7);return _0x355cc7;}let _0x275a66=process[_0x1ef45f(0x13d)]();if(['\x6c\x61\x79\x6f\x75\x74\x73',_0x1ef45f(0x11d)][_0x1ef45f(0x11f)](_0x39df53=>existsSync(resolve(_0x275a66,_0x39df53))))return _0x275a66;throw new Error(_0x1ef45f(0x109));},F=class e extends Command{static ['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e']=_0x10b68b(0x112);static [_0x10b68b(0x105)]={'\x74\x68\x65\x6d\x65\x50\x61\x74\x68':Args[_0x10b68b(0xe8)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x10b68b(0xfd),'\x72\x65\x71\x75\x69\x72\x65\x64':![]})};static [_0x10b68b(0x125)]={'\x74\x68\x65\x6d\x65':Flags['\x73\x74\x72\x69\x6e\x67']({'\x63\x68\x61\x72':'\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x50\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x68\x65\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79'}),'\x70\x61\x79\x6c\x6f\x61\x64\x2d\x75\x72\x6c':Flags[_0x10b68b(0xe8)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x10b68b(0xc8),'\x64\x65\x66\x61\x75\x6c\x74':x()})};async[_0x10b68b(0x115)](){const _0x810600=_0x10b68b;let {args:_0x5e0c83,flags:_0x4410fa}=await this['\x70\x61\x72\x73\x65'](e),_0x14c82a=_0x4410fa[_0x810600(0x111)]??_0x5e0c83[_0x810600(0x12c)]??null,_0x1abb0b;try{_0x1abb0b=me(_0x14c82a);}catch(_0x344ba2){this['\x65\x72\x72\x6f\x72'](_0x344ba2 instanceof Error?_0x344ba2[_0x810600(0x130)]:_0x810600(0xdd));return;}G(_0x1abb0b);try{let _0x51ed1b=await le(x(_0x4410fa[_0x810600(0xd1)]));this['\x6c\x6f\x67'](_0x810600(0x100)+_0x51ed1b[_0x810600(0xee)][_0x810600(0x123)]+'\x20\x28'+_0x51ed1b[_0x810600(0xee)][_0x810600(0xc2)]+'\x29'),_0x51ed1b['\x74\x68\x65\x6d\x65\x49\x64']?this[_0x810600(0xdf)](_0x810600(0x11a)+_0x51ed1b['\x74\x68\x65\x6d\x65\x49\x64']):this[_0x810600(0xdf)](_0x810600(0x135));}catch(_0x818917){let _0x1a7f09=await A(_0x818917,_0x810600(0x104));this['\x65\x72\x72\x6f\x72'](_0x1a7f09);}}};export{F as default};
@@ -1 +1 @@
1
- const _0x56931e=_0x36be;(function(_0x50261d,_0x19818a){const _0x2f558a=_0x36be,_0x5826da=_0x50261d();while(!![]){try{const _0x3d6fda=-parseInt(_0x2f558a(0x1e8))/0x1*(-parseInt(_0x2f558a(0x223))/0x2)+parseInt(_0x2f558a(0x1f3))/0x3*(-parseInt(_0x2f558a(0x1da))/0x4)+-parseInt(_0x2f558a(0x1d9))/0x5*(parseInt(_0x2f558a(0x212))/0x6)+-parseInt(_0x2f558a(0x1e4))/0x7+-parseInt(_0x2f558a(0x1e9))/0x8+parseInt(_0x2f558a(0x1ee))/0x9*(parseInt(_0x2f558a(0x234))/0xa)+-parseInt(_0x2f558a(0x22d))/0xb*(-parseInt(_0x2f558a(0x216))/0xc);if(_0x3d6fda===_0x19818a)break;else _0x5826da['push'](_0x5826da['shift']());}catch(_0x2013df){_0x5826da['push'](_0x5826da['shift']());}}}(_0x1ac1,0x79ce4));function _0x36be(_0x3246d2,_0x14c259){_0x3246d2=_0x3246d2-0x1c8;const _0x1ac160=_0x1ac1();let _0x36be9b=_0x1ac160[_0x3246d2];return _0x36be9b;}import{Command,Args,Flags}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';import{existsSync,readFileSync,readdirSync}from'\x66\x73';import{resolve,join,relative}from'\x70\x61\x74\x68';var C=_0x1965fc=>typeof _0x1965fc==_0x56931e(0x203),k=_0x346756=>typeof _0x346756==_0x56931e(0x1d0)&&_0x346756!==null&&!Array[_0x56931e(0x238)](_0x346756),A=(_0x444f78,_0x534307)=>{if(!k(_0x444f78))return null;let _0x2eeda3=_0x444f78[_0x534307];return C(_0x2eeda3)?_0x2eeda3:null;},q=()=>process[_0x56931e(0x239)][_0x56931e(0x207)]==='\x74\x72\x75\x65'||process[_0x56931e(0x239)][_0x56931e(0x22a)]===_0x56931e(0x1f8),w={'\x69\x6e\x66\x6f'(_0x4f9446){const _0x53df18=_0x56931e;console[_0x53df18(0x221)](_0x4f9446);},'\x77\x61\x72\x6e'(_0x2ea467,_0x58a656){const _0x37f722=_0x56931e;if(_0x58a656){console['\x77\x61\x72\x6e'](_0x2ea467,_0x58a656);return;}console[_0x37f722(0x221)](_0x2ea467);},'\x65\x72\x72\x6f\x72'(_0x4761fc,_0x10fec1){const _0x543439=_0x56931e;if(_0x10fec1){console[_0x543439(0x1f9)](_0x4761fc,_0x10fec1);return;}console['\x65\x72\x72\x6f\x72'](_0x4761fc);},'\x64\x65\x62\x75\x67'(_0x329304,_0x2a21e5){const _0x56f960=_0x56931e;if(q()){if(_0x2a21e5){console['\x77\x61\x72\x6e'](_0x329304,_0x2a21e5);return;}console[_0x56f960(0x221)](_0x329304);}}},b={'\x69\x6e\x66\x6f':0x1,'\x77\x61\x72\x6e\x69\x6e\x67':0x2,'\x65\x72\x72\x6f\x72':0x3},M=new Set(['\x2e\x67\x69\x74',_0x56931e(0x1eb),_0x56931e(0x213),_0x56931e(0x1cc),_0x56931e(0x219),_0x56931e(0x1cd)]),R=_0xd8d169=>{const _0x208740=_0x56931e;let _0x3926a0=[],_0x40820a=join(_0xd8d169,'\x6c\x61\x79\x6f\x75\x74\x73'),_0x3b6031=join(_0xd8d169,_0x208740(0x1dd)),_0x3373c7=join(_0xd8d169,'\x62\x6c\x6f\x63\x6b\x73');existsSync(_0x40820a)||_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1f9),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x200),'\x66\x69\x6c\x65':'\x6c\x61\x79\x6f\x75\x74\x73\x2f','\x63\x6f\x64\x65':_0x208740(0x211)}),existsSync(_0x3b6031)||_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1f9),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x1f1),'\x66\x69\x6c\x65':_0x208740(0x1fd),'\x63\x6f\x64\x65':_0x208740(0x229)}),existsSync(_0x40820a)&&!existsSync(join(_0x40820a,'\x64\x65\x66\x61\x75\x6c\x74\x2e\x6c\x69\x71\x75\x69\x64'))&&_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x1de),'\x66\x69\x6c\x65':_0x208740(0x1fe),'\x63\x6f\x64\x65':'\x6d\x69\x73\x73\x69\x6e\x67\x2d\x64\x65\x66\x61\x75\x6c\x74\x2d\x6c\x61\x79\x6f\x75\x74'});let _0xb9a943=F(_0x3b6031);existsSync(_0x3b6031)&&_0xb9a943[_0x208740(0x205)]===0x0&&_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x232),'\x66\x69\x6c\x65':'\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f','\x63\x6f\x64\x65':_0x208740(0x236)});let _0x21932b=F(_0x3373c7),_0x473091=new Map();for(let _0x2e58c4 of _0x21932b){let _0x1e55f1=readFileSync(_0x2e58c4,'\x75\x74\x66\x2d\x38'),_0x511e71=N(_0x1e55f1),_0x39705f=relative(_0xd8d169,_0x2e58c4);if(_0x511e71[_0x208740(0x205)]===0x0){_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x20e),'\x66\x69\x6c\x65':_0x39705f,'\x63\x6f\x64\x65':_0x208740(0x220)});continue;}_0x511e71[_0x208740(0x205)]>0x1&&_0x3926a0['\x70\x75\x73\x68']({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x1fb),'\x66\x69\x6c\x65':_0x39705f,'\x63\x6f\x64\x65':'\x62\x6c\x6f\x63\x6b\x2d\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x73\x63\x68\x65\x6d\x61'});let _0x3dabec=P(_0x511e71[0x0],_0x39705f,_0x3926a0);if(!_0x3dabec||!k(_0x3dabec))continue;let _0xa85d7f=A(_0x3dabec,_0x208740(0x21a));if(!_0xa85d7f)_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1f9),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x21d),'\x66\x69\x6c\x65':_0x39705f,'\x6c\x69\x6e\x65':_0x511e71[0x0][_0x208740(0x1f2)],'\x63\x6f\x64\x65':_0x208740(0x1ce)});else{let _0x140360=_0x473091[_0x208740(0x1cb)](_0xa85d7f);_0x140360?_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x1ef)+_0xa85d7f+'\x27\x20\x28\x61\x6c\x73\x6f\x20\x69\x6e\x20'+_0x140360+'\x29\x2e','\x66\x69\x6c\x65':_0x39705f,'\x6c\x69\x6e\x65':_0x511e71[0x0][_0x208740(0x1f2)],'\x63\x6f\x64\x65':_0x208740(0x230)}):_0x473091[_0x208740(0x1f5)](_0xa85d7f,_0x39705f);}let _0x31919d=_0x3dabec[_0x208740(0x21f)];Array[_0x208740(0x238)](_0x31919d)||_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1f9),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x226),'\x66\x69\x6c\x65':_0x39705f,'\x6c\x69\x6e\x65':_0x511e71[0x0][_0x208740(0x1f2)],'\x63\x6f\x64\x65':_0x208740(0x1e6)});}for(let _0x27b216 of _0xb9a943){let _0x31402a=readFileSync(_0x27b216,_0x208740(0x1f0)),_0x327d9c=N(_0x31402a),_0x1d16cb=relative(_0xd8d169,_0x27b216);if(_0x327d9c['\x6c\x65\x6e\x67\x74\x68']===0x0){_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x1d7),'\x66\x69\x6c\x65':_0x1d16cb,'\x63\x6f\x64\x65':_0x208740(0x202)});continue;}_0x327d9c['\x6c\x65\x6e\x67\x74\x68']>0x1&&_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x201),'\x66\x69\x6c\x65':_0x1d16cb,'\x63\x6f\x64\x65':_0x208740(0x21e)});let _0x3faaa6=P(_0x327d9c[0x0],_0x1d16cb,_0x3926a0);if(!_0x3faaa6||!k(_0x3faaa6))continue;let _0xdcd9f1=_0x3faaa6[_0x208740(0x21f)];_0xdcd9f1!==void 0x0&&!Array[_0x208740(0x238)](_0xdcd9f1)&&_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x217),'\x66\x69\x6c\x65':_0x1d16cb,'\x6c\x69\x6e\x65':_0x327d9c[0x0][_0x208740(0x1f2)],'\x63\x6f\x64\x65':'\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x73\x65\x74\x74\x69\x6e\x67\x73\x2d\x69\x6e\x76\x61\x6c\x69\x64'});let _0x108136=_0x3faaa6['\x62\x6c\x6f\x63\x6b\x73'];if(_0x108136!==void 0x0&&!Array[_0x208740(0x238)](_0x108136)){_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x1e1),'\x66\x69\x6c\x65':_0x1d16cb,'\x6c\x69\x6e\x65':_0x327d9c[0x0][_0x208740(0x1f2)],'\x63\x6f\x64\x65':'\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x62\x6c\x6f\x63\x6b\x73\x2d\x69\x6e\x76\x61\x6c\x69\x64'});continue;}if(Array['\x69\x73\x41\x72\x72\x61\x79'](_0x108136))for(let _0x197b0c of _0x108136){if(typeof _0x197b0c!='\x73\x74\x72\x69\x6e\x67'){_0x3926a0['\x70\x75\x73\x68']({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x208740(0x1ca),'\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x1ea),'\x66\x69\x6c\x65':_0x1d16cb,'\x6c\x69\x6e\x65':_0x327d9c[0x0]['\x6c\x69\x6e\x65'],'\x63\x6f\x64\x65':_0x208740(0x22e)});continue;}_0x473091['\x68\x61\x73'](_0x197b0c)||_0x3926a0[_0x208740(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':'\x77\x61\x72\x6e\x69\x6e\x67','\x6d\x65\x73\x73\x61\x67\x65':_0x208740(0x227)+_0x197b0c+'\x27\x20\x62\x75\x74\x20\x6e\x6f\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x62\x6c\x6f\x63\x6b\x20\x73\x63\x68\x65\x6d\x61\x20\x77\x61\x73\x20\x66\x6f\x75\x6e\x64\x2e','\x66\x69\x6c\x65':_0x1d16cb,'\x6c\x69\x6e\x65':_0x327d9c[0x0][_0x208740(0x1f2)],'\x63\x6f\x64\x65':_0x208740(0x237)});}}return _0x3926a0;},j=(_0x1c417e,_0x2acbca)=>({'\x65\x72\x72\x6f\x72\x73':_0x1c417e[_0x56931e(0x1e5)](_0x1bb17d=>_0x1bb17d[_0x56931e(0x1e0)]===_0x56931e(0x1f9))[_0x56931e(0x205)],'\x77\x61\x72\x6e\x69\x6e\x67\x73':_0x1c417e['\x66\x69\x6c\x74\x65\x72'](_0x215ccb=>_0x215ccb[_0x56931e(0x1e0)]===_0x56931e(0x1ca))[_0x56931e(0x205)],'\x69\x6e\x66\x6f':_0x1c417e[_0x56931e(0x1e5)](_0x4ed77d=>_0x4ed77d[_0x56931e(0x1e0)]==='\x69\x6e\x66\x6f')[_0x56931e(0x205)],'\x66\x61\x69\x6c\x4c\x65\x76\x65\x6c':_0x2acbca,'\x66\x61\x69\x6c\x65\x64':x(_0x1c417e,_0x2acbca)}),x=(_0x346d23,_0x52107)=>{const _0x186a5c=_0x56931e;let _0x3ebc76=b[_0x52107];return _0x346d23['\x73\x6f\x6d\x65'](_0x3df750=>b[_0x3df750[_0x186a5c(0x1e0)]]>=_0x3ebc76);},D=(_0x3c6600,_0x975086)=>{const _0x539ab7=_0x56931e;let _0xd930b8=_0x975086[_0x539ab7(0x1e5)](_0x4a5737=>_0x4a5737[_0x539ab7(0x1e0)]===_0x539ab7(0x1f9)),_0x193b09=_0x975086[_0x539ab7(0x1e5)](_0x10cc06=>_0x10cc06[_0x539ab7(0x1e0)]===_0x539ab7(0x1ca)),_0x1f10b3=_0x975086[_0x539ab7(0x1e5)](_0x282634=>_0x282634[_0x539ab7(0x1e0)]===_0x539ab7(0x1d3));if(w[_0x539ab7(0x1d3)](_0x539ab7(0x208)+_0xd930b8[_0x539ab7(0x205)]+_0x539ab7(0x228)+_0x193b09[_0x539ab7(0x205)]+'\x20\x77\x61\x72\x6e\x69\x6e\x67\x73\x2c\x20'+_0x1f10b3[_0x539ab7(0x205)]+_0x539ab7(0x21c)),_0x975086[_0x539ab7(0x205)]===0x0){w[_0x539ab7(0x1d3)]('\u2705\x20\x4e\x6f\x20\x69\x73\x73\x75\x65\x73\x20\x66\x6f\x75\x6e\x64\x2e');return;}let _0x1e9a54=[..._0x975086][_0x539ab7(0x20c)]((_0x64bdb,_0x32109c)=>b[_0x32109c[_0x539ab7(0x1e0)]]-b[_0x64bdb[_0x539ab7(0x1e0)]]);for(let _0xc39d25 of _0x1e9a54){let _0x57b1d0=_0xc39d25[_0x539ab7(0x1ff)]?''+_0xc39d25[_0x539ab7(0x1ff)]+(_0xc39d25[_0x539ab7(0x1f2)]?'\x3a'+_0xc39d25['\x6c\x69\x6e\x65']:''):_0x3c6600,_0x2c7959=_0xc39d25[_0x539ab7(0x1f7)]?'\x20\x28'+_0xc39d25[_0x539ab7(0x1f7)]+'\x29':'';w['\x69\x6e\x66\x6f']('\x2d\x20\x5b'+_0xc39d25['\x73\x65\x76\x65\x72\x69\x74\x79']+'\x5d\x20'+_0x57b1d0+'\x3a\x20'+_0xc39d25[_0x539ab7(0x231)]+_0x2c7959);}},O=_0x59af92=>_0x59af92===_0x56931e(0x1f9)||_0x59af92===_0x56931e(0x1ca)||_0x59af92===_0x56931e(0x1d3),_=_0x57b846=>_0x57b846==='\x74\x65\x78\x74'||_0x57b846===_0x56931e(0x23a),F=_0x28c33f=>{if(!existsSync(_0x28c33f))return[];let _0x4b57d8=[];return B(_0x28c33f,_0x4b57d8),_0x4b57d8;},B=(_0x1b127b,_0x52e7bf)=>{const _0x2d5917=_0x56931e;let _0x34dc7a=readdirSync(_0x1b127b,{'\x77\x69\x74\x68\x46\x69\x6c\x65\x54\x79\x70\x65\x73':!![]});for(let _0x476b68 of _0x34dc7a)if(_0x476b68[_0x2d5917(0x1fa)]()){if(M[_0x2d5917(0x206)](_0x476b68[_0x2d5917(0x21a)]))continue;B(join(_0x1b127b,_0x476b68[_0x2d5917(0x21a)]),_0x52e7bf);}else _0x476b68['\x69\x73\x46\x69\x6c\x65']()&&_0x476b68['\x6e\x61\x6d\x65'][_0x2d5917(0x1c8)](_0x2d5917(0x1d6))&&_0x52e7bf[_0x2d5917(0x1db)](join(_0x1b127b,_0x476b68[_0x2d5917(0x21a)]));},N=_0x11d2a4=>{const _0x13ad36=_0x56931e;let _0x28fc54=/\{%\s*schema\s*%\}([\s\S]*?)\{%\s*endschema\s*%\}/g,_0x54f971=[];for(let _0x3d596d of _0x11d2a4[_0x13ad36(0x22b)](_0x28fc54)){let _0x3737c7=typeof _0x3d596d[0x1]==_0x13ad36(0x203)?_0x3d596d[0x1][_0x13ad36(0x1e2)]():'',_0xb488ad=typeof _0x3d596d[_0x13ad36(0x1d8)]==_0x13ad36(0x214)?_0x3d596d[_0x13ad36(0x1d8)]:0x0,_0x17028a=_0x11d2a4[_0x13ad36(0x20d)](0x0,_0xb488ad)[_0x13ad36(0x1d4)]('\x0a')[_0x13ad36(0x205)];_0x54f971[_0x13ad36(0x1db)]({'\x72\x61\x77':_0x3737c7,'\x6c\x69\x6e\x65':_0x17028a});}return _0x54f971;},P=(_0xc718d,_0x18fc1a,_0x16b394)=>{const _0x2cb739=_0x56931e;if(!_0xc718d[_0x2cb739(0x1e3)])return _0x16b394[_0x2cb739(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x2cb739(0x1f9),'\x6d\x65\x73\x73\x61\x67\x65':_0x2cb739(0x20f),'\x66\x69\x6c\x65':_0x18fc1a,'\x6c\x69\x6e\x65':_0xc718d[_0x2cb739(0x1f2)],'\x63\x6f\x64\x65':_0x2cb739(0x222)}),null;try{return JSON['\x70\x61\x72\x73\x65'](_0xc718d['\x72\x61\x77']);}catch(_0x464e3d){let _0x4a334b=_0x464e3d instanceof Error?_0x464e3d['\x6d\x65\x73\x73\x61\x67\x65']:_0x2cb739(0x23b);return _0x16b394[_0x2cb739(0x1db)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x2cb739(0x1f9),'\x6d\x65\x73\x73\x61\x67\x65':'\x53\x63\x68\x65\x6d\x61\x20\x4a\x53\x4f\x4e\x20\x70\x61\x72\x73\x65\x20\x65\x72\x72\x6f\x72\x3a\x20'+_0x4a334b,'\x66\x69\x6c\x65':_0x18fc1a,'\x6c\x69\x6e\x65':_0xc718d[_0x2cb739(0x1f2)],'\x63\x6f\x64\x65':_0x2cb739(0x22f)}),null;}},L=_0x287fff=>{const _0xd0f80c=_0x56931e;let _0x2e698c=process['\x65\x6e\x76'][_0xd0f80c(0x1ec)];if(_0x2e698c&&!_0x287fff){let _0x2fe427=resolve(_0x2e698c);if(!existsSync(_0x2fe427))throw new Error(_0xd0f80c(0x1d2)+_0x2fe427);return _0x2fe427;}if(_0x287fff){let _0xe3a224=resolve(_0x287fff);if(!existsSync(_0xe3a224))throw new Error(_0xd0f80c(0x209)+_0xe3a224);return _0xe3a224;}let _0x1f5e98=process[_0xd0f80c(0x1df)]();if(['\x6c\x61\x79\x6f\x75\x74\x73',_0xd0f80c(0x1dd)]['\x73\x6f\x6d\x65'](_0x21466a=>existsSync(resolve(_0x1f5e98,_0x21466a))))return _0x1f5e98;throw new Error('\x4e\x6f\x20\x74\x68\x65\x6d\x65\x20\x66\x69\x6c\x65\x73\x20\x64\x65\x74\x65\x63\x74\x65\x64\x20\x69\x6e\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x20\x45\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x66\x69\x6e\x64\x3a\x20\x6c\x61\x79\x6f\x75\x74\x73\x2f\x20\x6f\x72\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f\x2e');},G='\x65\x72\x72\x6f\x72',E=class e extends Command{static ['\x61\x6c\x69\x61\x73\x65\x73']=[_0x56931e(0x225)];static ['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e']=_0x56931e(0x1e7);static [_0x56931e(0x218)]={'\x74\x68\x65\x6d\x65\x50\x61\x74\x68':Args[_0x56931e(0x203)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x56931e(0x215),'\x72\x65\x71\x75\x69\x72\x65\x64':![]})};static [_0x56931e(0x21b)]={'\x74\x68\x65\x6d\x65':Flags[_0x56931e(0x203)]({'\x63\x68\x61\x72':'\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x56931e(0x215)}),'\x66\x6f\x72\x6d\x61\x74':Flags[_0x56931e(0x203)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x56931e(0x22c),'\x64\x65\x66\x61\x75\x6c\x74':_0x56931e(0x224)}),'\x6a\x73\x6f\x6e':Flags[_0x56931e(0x210)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x56931e(0x1d5),'\x64\x65\x66\x61\x75\x6c\x74':![]}),'\x66\x61\x69\x6c\x2d\x6c\x65\x76\x65\x6c':Flags[_0x56931e(0x203)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x56931e(0x1dc),'\x64\x65\x66\x61\x75\x6c\x74':G})};async[_0x56931e(0x1d1)](){const _0x5791ac=_0x56931e;let {args:_0x2a03fe,flags:_0x12bda0}=await this[_0x5791ac(0x1fc)](e),_0x40f2e3=_0x12bda0[_0x5791ac(0x235)]??_0x2a03fe[_0x5791ac(0x204)]??null,_0x128ba3;try{_0x128ba3=L(_0x40f2e3);}catch(_0x26356c){this[_0x5791ac(0x1f9)](_0x26356c instanceof Error?_0x26356c[_0x5791ac(0x231)]:_0x5791ac(0x1f4));return;}let _0x390146=_0x12bda0[_0x5791ac(0x23a)]?_0x5791ac(0x23a):_0x12bda0[_0x5791ac(0x20a)];if(!_(_0x390146)){this[_0x5791ac(0x1f9)](_0x5791ac(0x1c9));return;}let _0x3a8182=_0x12bda0[_0x5791ac(0x20b)];if(!O(_0x3a8182)){this[_0x5791ac(0x1f9)](_0x5791ac(0x1ed));return;}let _0x1f8051=R(_0x128ba3);if(_0x390146===_0x5791ac(0x23a)){let _0x43e3e9={'\x73\x75\x6d\x6d\x61\x72\x79':j(_0x1f8051,_0x3a8182),'\x69\x73\x73\x75\x65\x73':_0x1f8051};this[_0x5791ac(0x1f6)](JSON[_0x5791ac(0x233)](_0x43e3e9,null,0x2));}else D(_0x128ba3,_0x1f8051);let _0x188560=x(_0x1f8051,_0x3a8182)?0x1:0x0;_0x188560!==0x0&&this[_0x5791ac(0x1cf)](_0x188560);}};function _0x1ac1(){const _0x3778a2=['\x4d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x65\x76\x65\x72\x69\x74\x79\x20\x74\x68\x61\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x66\x61\x69\x6c\x20\x28\x65\x72\x72\x6f\x72\x2c\x20\x77\x61\x72\x6e\x69\x6e\x67\x2c\x20\x69\x6e\x66\x6f\x29','\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x4d\x69\x73\x73\x69\x6e\x67\x20\x6c\x61\x79\x6f\x75\x74\x73\x2f\x64\x65\x66\x61\x75\x6c\x74\x2e\x6c\x69\x71\x75\x69\x64\x2e','\x63\x77\x64','\x73\x65\x76\x65\x72\x69\x74\x79','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x27\x62\x6c\x6f\x63\x6b\x73\x27\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x61\x6e\x20\x61\x72\x72\x61\x79\x20\x6f\x66\x20\x62\x6c\x6f\x63\x6b\x20\x6e\x61\x6d\x65\x73\x2e','\x74\x72\x69\x6d','\x72\x61\x77','\x32\x34\x30\x33\x33\x30\x33\x4d\x75\x4b\x53\x69\x64','\x66\x69\x6c\x74\x65\x72','\x62\x6c\x6f\x63\x6b\x2d\x73\x65\x74\x74\x69\x6e\x67\x73\x2d\x69\x6e\x76\x61\x6c\x69\x64','\x56\x61\x6c\x69\x64\x61\x74\x65\x20\x74\x68\x65\x6d\x65\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x61\x6e\x64\x20\x73\x63\x68\x65\x6d\x61\x2e','\x31\x68\x7a\x4f\x4e\x49\x4c','\x36\x34\x33\x31\x38\x36\x34\x47\x54\x6d\x6a\x76\x77','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x27\x62\x6c\x6f\x63\x6b\x73\x27\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x73\x74\x72\x69\x6e\x67\x73\x2e','\x6e\x6f\x64\x65\x5f\x6d\x6f\x64\x75\x6c\x65\x73','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x54\x48\x45\x4d\x45\x5f\x50\x41\x54\x48','\x2d\x2d\x66\x61\x69\x6c\x2d\x6c\x65\x76\x65\x6c\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x27\x65\x72\x72\x6f\x72\x27\x2c\x20\x27\x77\x61\x72\x6e\x69\x6e\x67\x27\x2c\x20\x6f\x72\x20\x27\x69\x6e\x66\x6f\x27\x2e','\x31\x30\x38\x75\x42\x42\x74\x4d\x5a','\x44\x75\x70\x6c\x69\x63\x61\x74\x65\x20\x62\x6c\x6f\x63\x6b\x20\x6e\x61\x6d\x65\x20\x27','\x75\x74\x66\x2d\x38','\x4d\x69\x73\x73\x69\x6e\x67\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e','\x6c\x69\x6e\x65','\x33\x33\x76\x6b\x56\x5a\x67\x57','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6c\x6f\x63\x61\x74\x65\x20\x74\x68\x65\x6d\x65\x2e','\x73\x65\x74','\x6c\x6f\x67','\x63\x6f\x64\x65','\x74\x72\x75\x65','\x65\x72\x72\x6f\x72','\x69\x73\x44\x69\x72\x65\x63\x74\x6f\x72\x79','\x42\x6c\x6f\x63\x6b\x20\x68\x61\x73\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x73\x3b\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2e','\x70\x61\x72\x73\x65','\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f','\x6c\x61\x79\x6f\x75\x74\x73\x2f\x64\x65\x66\x61\x75\x6c\x74\x2e\x6c\x69\x71\x75\x69\x64','\x66\x69\x6c\x65','\x4d\x69\x73\x73\x69\x6e\x67\x20\x6c\x61\x79\x6f\x75\x74\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x68\x61\x73\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x73\x3b\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2e','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x6d\x69\x73\x73\x69\x6e\x67\x2d\x73\x63\x68\x65\x6d\x61','\x73\x74\x72\x69\x6e\x67','\x74\x68\x65\x6d\x65\x50\x61\x74\x68','\x6c\x65\x6e\x67\x74\x68','\x68\x61\x73','\x44\x45\x42\x55\x47','\x54\x68\x65\x6d\x65\x20\x63\x68\x65\x63\x6b\x3a\x20','\x54\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20','\x66\x6f\x72\x6d\x61\x74','\x66\x61\x69\x6c\x2d\x6c\x65\x76\x65\x6c','\x73\x6f\x72\x74','\x73\x6c\x69\x63\x65','\x42\x6c\x6f\x63\x6b\x20\x69\x73\x20\x6d\x69\x73\x73\x69\x6e\x67\x20\x61\x20\x73\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x2e','\x53\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x20\x69\x73\x20\x65\x6d\x70\x74\x79\x2e','\x62\x6f\x6f\x6c\x65\x61\x6e','\x6d\x69\x73\x73\x69\x6e\x67\x2d\x6c\x61\x79\x6f\x75\x74\x73','\x39\x34\x32\x4d\x69\x57\x72\x4b\x41','\x64\x69\x73\x74','\x6e\x75\x6d\x62\x65\x72','\x50\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x68\x65\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79','\x31\x32\x56\x44\x70\x5a\x77\x53','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x27\x73\x65\x74\x74\x69\x6e\x67\x73\x27\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x61\x6e\x20\x61\x72\x72\x61\x79\x2e','\x61\x72\x67\x73','\x2e\x62\x61\x73\x6b\x65\x72','\x6e\x61\x6d\x65','\x66\x6c\x61\x67\x73','\x20\x69\x6e\x66\x6f','\x42\x6c\x6f\x63\x6b\x20\x73\x63\x68\x65\x6d\x61\x20\x69\x73\x20\x6d\x69\x73\x73\x69\x6e\x67\x20\x72\x65\x71\x75\x69\x72\x65\x64\x20\x27\x6e\x61\x6d\x65\x27\x20\x66\x69\x65\x6c\x64\x2e','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x73\x63\x68\x65\x6d\x61','\x73\x65\x74\x74\x69\x6e\x67\x73','\x62\x6c\x6f\x63\x6b\x2d\x6d\x69\x73\x73\x69\x6e\x67\x2d\x73\x63\x68\x65\x6d\x61','\x77\x61\x72\x6e','\x73\x63\x68\x65\x6d\x61\x2d\x65\x6d\x70\x74\x79','\x31\x34\x39\x37\x34\x36\x32\x6d\x70\x4c\x73\x50\x47','\x74\x65\x78\x74','\x63\x68\x65\x63\x6b','\x42\x6c\x6f\x63\x6b\x20\x73\x63\x68\x65\x6d\x61\x20\x27\x73\x65\x74\x74\x69\x6e\x67\x73\x27\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x6e\x20\x61\x72\x72\x61\x79\x2e','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x61\x6c\x6c\x6f\x77\x73\x20\x62\x6c\x6f\x63\x6b\x20\x27','\x20\x65\x72\x72\x6f\x72\x73\x2c\x20','\x6d\x69\x73\x73\x69\x6e\x67\x2d\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x44\x45\x42\x55\x47','\x6d\x61\x74\x63\x68\x41\x6c\x6c','\x4f\x75\x74\x70\x75\x74\x20\x66\x6f\x72\x6d\x61\x74\x20\x28\x74\x65\x78\x74\x20\x6f\x72\x20\x6a\x73\x6f\x6e\x29','\x31\x34\x36\x31\x38\x32\x38\x35\x51\x43\x64\x6b\x64\x74','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x62\x6c\x6f\x63\x6b\x73\x2d\x65\x6e\x74\x72\x79\x2d\x69\x6e\x76\x61\x6c\x69\x64','\x73\x63\x68\x65\x6d\x61\x2d\x69\x6e\x76\x61\x6c\x69\x64\x2d\x6a\x73\x6f\x6e','\x62\x6c\x6f\x63\x6b\x2d\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x2d\x6e\x61\x6d\x65','\x6d\x65\x73\x73\x61\x67\x65','\x4e\x6f\x20\x4c\x69\x71\x75\x69\x64\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x20\x66\x6f\x75\x6e\x64\x20\x69\x6e\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f\x2e','\x73\x74\x72\x69\x6e\x67\x69\x66\x79','\x37\x36\x35\x30\x34\x30\x55\x42\x6a\x62\x66\x61','\x74\x68\x65\x6d\x65','\x65\x6d\x70\x74\x79\x2d\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x62\x6c\x6f\x63\x6b\x2d\x6d\x69\x73\x73\x69\x6e\x67','\x69\x73\x41\x72\x72\x61\x79','\x65\x6e\x76','\x6a\x73\x6f\x6e','\x49\x6e\x76\x61\x6c\x69\x64\x20\x4a\x53\x4f\x4e','\x65\x6e\x64\x73\x57\x69\x74\x68','\x2d\x2d\x66\x6f\x72\x6d\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x27\x74\x65\x78\x74\x27\x20\x6f\x72\x20\x27\x6a\x73\x6f\x6e\x27\x2e','\x77\x61\x72\x6e\x69\x6e\x67','\x67\x65\x74','\x62\x75\x69\x6c\x64','\x2e\x73\x73\x74','\x62\x6c\x6f\x63\x6b\x2d\x6d\x69\x73\x73\x69\x6e\x67\x2d\x6e\x61\x6d\x65','\x65\x78\x69\x74','\x6f\x62\x6a\x65\x63\x74','\x72\x75\x6e','\x45\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x74\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20','\x69\x6e\x66\x6f','\x73\x70\x6c\x69\x74','\x4f\x75\x74\x70\x75\x74\x20\x4a\x53\x4f\x4e\x20\x72\x65\x70\x6f\x72\x74','\x2e\x6c\x69\x71\x75\x69\x64','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x69\x73\x20\x6d\x69\x73\x73\x69\x6e\x67\x20\x61\x20\x73\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x2e','\x69\x6e\x64\x65\x78','\x32\x35\x31\x34\x35\x4a\x68\x76\x67\x74\x52','\x32\x30\x33\x36\x31\x32\x48\x76\x43\x75\x51\x47','\x70\x75\x73\x68'];_0x1ac1=function(){return _0x3778a2;};return _0x1ac1();}export{E as default};
1
+ function _0x4a7e(_0x2847f0,_0xd3e4a7){_0x2847f0=_0x2847f0-0xfb;const _0x5bc610=_0x5bc6();let _0x4a7eed=_0x5bc610[_0x2847f0];return _0x4a7eed;}const _0x4d2ada=_0x4a7e;(function(_0x58a0ef,_0x3f02bc){const _0x3b8eb4=_0x4a7e,_0x3ebbaa=_0x58a0ef();while(!![]){try{const _0x586d88=-parseInt(_0x3b8eb4(0x146))/0x1+-parseInt(_0x3b8eb4(0x10e))/0x2*(-parseInt(_0x3b8eb4(0x168))/0x3)+-parseInt(_0x3b8eb4(0x160))/0x4+parseInt(_0x3b8eb4(0x16c))/0x5*(parseInt(_0x3b8eb4(0x165))/0x6)+parseInt(_0x3b8eb4(0x130))/0x7+parseInt(_0x3b8eb4(0x117))/0x8+-parseInt(_0x3b8eb4(0x14b))/0x9*(parseInt(_0x3b8eb4(0x123))/0xa);if(_0x586d88===_0x3f02bc)break;else _0x3ebbaa['push'](_0x3ebbaa['shift']());}catch(_0x3f4f16){_0x3ebbaa['push'](_0x3ebbaa['shift']());}}}(_0x5bc6,0xa90f2));import{Command,Args,Flags}from'\x40\x6f\x63\x6c\x69\x66\x2f\x63\x6f\x72\x65';import{existsSync,readFileSync,readdirSync}from'\x66\x73';import{resolve,join,relative}from'\x70\x61\x74\x68';function _0x5bc6(){const _0x2f0f87=['\x4f\x75\x74\x70\x75\x74\x20\x66\x6f\x72\x6d\x61\x74\x20\x28\x74\x65\x78\x74\x20\x6f\x72\x20\x6a\x73\x6f\x6e\x29','\x65\x72\x72\x6f\x72','\x20\x69\x6e\x66\x6f','\x6f\x62\x6a\x65\x63\x74','\x4d\x69\x73\x73\x69\x6e\x67\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e','\x2e\x6c\x69\x71\x75\x69\x64','\x49\x6e\x76\x61\x6c\x69\x64\x20\x4a\x53\x4f\x4e','\x62\x75\x69\x6c\x64','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x68\x61\x73\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x73\x3b\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2e','\x63\x77\x64','\x74\x72\x75\x65','\x61\x72\x67\x73','\x73\x63\x68\x65\x6d\x61\x2d\x65\x6d\x70\x74\x79','\x65\x78\x69\x74','\x31\x35\x33\x30\x32\x58\x64\x61\x71\x49\x5a','\x2d\x20\x5b','\x62\x6f\x6f\x6c\x65\x61\x6e','\x62\x6c\x6f\x63\x6b\x2d\x6d\x69\x73\x73\x69\x6e\x67\x2d\x6e\x61\x6d\x65','\x4f\x75\x74\x70\x75\x74\x20\x4a\x53\x4f\x4e\x20\x72\x65\x70\x6f\x72\x74','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x6d\x69\x73\x73\x69\x6e\x67\x2d\x73\x63\x68\x65\x6d\x61','\x6c\x61\x79\x6f\x75\x74\x73\x2f','\x69\x73\x41\x72\x72\x61\x79','\x6e\x6f\x64\x65\x5f\x6d\x6f\x64\x75\x6c\x65\x73','\x32\x39\x33\x32\x32\x34\x30\x6b\x4c\x65\x4b\x6b\x5a','\x42\x6c\x6f\x63\x6b\x20\x73\x63\x68\x65\x6d\x61\x20\x27\x73\x65\x74\x74\x69\x6e\x67\x73\x27\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x61\x6e\x20\x61\x72\x72\x61\x79\x2e','\x73\x6c\x69\x63\x65','\x69\x6e\x66\x6f','\x73\x74\x72\x69\x6e\x67\x69\x66\x79','\x64\x69\x73\x74','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x54\x48\x45\x4d\x45\x5f\x50\x41\x54\x48','\x70\x75\x73\x68','\x6a\x73\x6f\x6e','\x69\x73\x46\x69\x6c\x65','\x62\x6c\x6f\x63\x6b\x2d\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x73\x63\x68\x65\x6d\x61','\x74\x68\x65\x6d\x65\x50\x61\x74\x68','\x37\x38\x35\x35\x38\x34\x30\x4e\x59\x59\x6a\x55\x4c','\x2d\x2d\x66\x61\x69\x6c\x2d\x6c\x65\x76\x65\x6c\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x27\x65\x72\x72\x6f\x72\x27\x2c\x20\x27\x77\x61\x72\x6e\x69\x6e\x67\x27\x2c\x20\x6f\x72\x20\x27\x69\x6e\x66\x6f\x27\x2e','\x77\x61\x72\x6e\x69\x6e\x67','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x27\x62\x6c\x6f\x63\x6b\x73\x27\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x73\x74\x72\x69\x6e\x67\x73\x2e','\x66\x69\x6c\x74\x65\x72','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x69\x73\x20\x6d\x69\x73\x73\x69\x6e\x67\x20\x61\x20\x73\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x2e','\x20\x65\x72\x72\x6f\x72\x73\x2c\x20','\x56\x61\x6c\x69\x64\x61\x74\x65\x20\x74\x68\x65\x6d\x65\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x20\x61\x6e\x64\x20\x73\x63\x68\x65\x6d\x61\x2e','\x6d\x69\x73\x73\x69\x6e\x67\x2d\x6c\x61\x79\x6f\x75\x74\x73','\x50\x61\x74\x68\x20\x74\x6f\x20\x74\x68\x65\x20\x74\x68\x65\x6d\x65\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79','\x2d\x2d\x66\x6f\x72\x6d\x61\x74\x20\x6d\x75\x73\x74\x20\x62\x65\x20\x27\x74\x65\x78\x74\x27\x20\x6f\x72\x20\x27\x6a\x73\x6f\x6e\x27\x2e','\x73\x74\x72\x69\x6e\x67','\x6c\x65\x6e\x67\x74\x68','\x34\x32\x38\x34\x34\x32\x30\x53\x64\x53\x44\x47\x6c','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x62\x6c\x6f\x63\x6b\x73\x2d\x69\x6e\x76\x61\x6c\x69\x64','\x74\x65\x78\x74','\x75\x74\x66\x2d\x38','\x62\x6c\x6f\x63\x6b\x2d\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x2d\x6e\x61\x6d\x65','\x63\x68\x65\x63\x6b','\x66\x6c\x61\x67\x73','\x6d\x69\x73\x73\x69\x6e\x67\x2d\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x6d\x75\x6c\x74\x69\x70\x6c\x65\x2d\x73\x63\x68\x65\x6d\x61','\x42\x6c\x6f\x63\x6b\x20\x69\x73\x20\x6d\x69\x73\x73\x69\x6e\x67\x20\x61\x20\x73\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x2e','\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x67\x65\x74','\x65\x6d\x70\x74\x79\x2d\x74\x65\x6d\x70\x6c\x61\x74\x65\x73','\x27\x20\x28\x61\x6c\x73\x6f\x20\x69\x6e\x20','\x68\x61\x73','\x4d\x69\x6e\x69\x6d\x75\x6d\x20\x73\x65\x76\x65\x72\x69\x74\x79\x20\x74\x68\x61\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x66\x61\x69\x6c\x20\x28\x65\x72\x72\x6f\x72\x2c\x20\x77\x61\x72\x6e\x69\x6e\x67\x2c\x20\x69\x6e\x66\x6f\x29','\x4c\x4f\x43\x41\x4c\x53\x54\x41\x47\x45\x5f\x44\x45\x42\x55\x47','\x73\x65\x74\x74\x69\x6e\x67\x73','\x6c\x69\x6e\x65','\x4e\x6f\x20\x74\x68\x65\x6d\x65\x20\x66\x69\x6c\x65\x73\x20\x64\x65\x74\x65\x63\x74\x65\x64\x20\x69\x6e\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e\x20\x45\x78\x70\x65\x63\x74\x65\x64\x20\x74\x6f\x20\x66\x69\x6e\x64\x3a\x20\x6c\x61\x79\x6f\x75\x74\x73\x2f\x20\x6f\x72\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f\x2e','\x6c\x61\x79\x6f\x75\x74\x73\x2f\x64\x65\x66\x61\x75\x6c\x74\x2e\x6c\x69\x71\x75\x69\x64','\x73\x63\x68\x65\x6d\x61\x2d\x69\x6e\x76\x61\x6c\x69\x64\x2d\x6a\x73\x6f\x6e','\x31\x33\x33\x39\x35\x37\x79\x6c\x51\x49\x41\x56','\x77\x61\x72\x6e','\x73\x6f\x6d\x65','\x27\x20\x62\x75\x74\x20\x6e\x6f\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x62\x6c\x6f\x63\x6b\x20\x73\x63\x68\x65\x6d\x61\x20\x77\x61\x73\x20\x66\x6f\x75\x6e\x64\x2e','\x53\x63\x68\x65\x6d\x61\x20\x4a\x53\x4f\x4e\x20\x70\x61\x72\x73\x65\x20\x65\x72\x72\x6f\x72\x3a\x20','\x39\x59\x46\x7a\x73\x56\x6d','\x44\x75\x70\x6c\x69\x63\x61\x74\x65\x20\x62\x6c\x6f\x63\x6b\x20\x6e\x61\x6d\x65\x20\x27','\x70\x61\x72\x73\x65','\x6e\x61\x6d\x65','\x44\x45\x42\x55\x47','\x72\x75\x6e','\x66\x6f\x72\x6d\x61\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e','\x74\x72\x69\x6d','\x45\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x74\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20','\x61\x6c\x69\x61\x73\x65\x73','\x73\x65\x76\x65\x72\x69\x74\x79','\x72\x61\x77','\x6d\x65\x73\x73\x61\x67\x65','\x63\x6f\x64\x65','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x62\x6c\x6f\x63\x6b\x2d\x6d\x69\x73\x73\x69\x6e\x67','\x54\x68\x65\x6d\x65\x20\x63\x68\x65\x63\x6b\x3a\x20','\x62\x6c\x6f\x63\x6b\x73','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x27\x62\x6c\x6f\x63\x6b\x73\x27\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x61\x6e\x20\x61\x72\x72\x61\x79\x20\x6f\x66\x20\x62\x6c\x6f\x63\x6b\x20\x6e\x61\x6d\x65\x73\x2e','\x66\x61\x69\x6c\x2d\x6c\x65\x76\x65\x6c','\x6e\x75\x6d\x62\x65\x72','\x32\x30\x33\x36\x35\x36\x30\x6c\x43\x6a\x6d\x44\x6a','\x20\x77\x61\x72\x6e\x69\x6e\x67\x73\x2c\x20','\x66\x69\x6c\x65','\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x73\x65\x74\x74\x69\x6e\x67\x73\x2d\x69\x6e\x76\x61\x6c\x69\x64','\x73\x6f\x72\x74','\x34\x38\x70\x48\x6f\x48\x76\x42','\x65\x6e\x76','\x2e\x62\x61\x73\x6b\x65\x72','\x36\x39\x52\x48\x51\x53\x72\x70','\x69\x6e\x64\x65\x78','\x74\x68\x65\x6d\x65','\x4e\x6f\x20\x4c\x69\x71\x75\x69\x64\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x20\x66\x6f\x75\x6e\x64\x20\x69\x6e\x20\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f\x2e','\x36\x30\x34\x31\x31\x35\x51\x64\x43\x66\x49\x51','\x2e\x73\x73\x74','\x46\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x6c\x6f\x63\x61\x74\x65\x20\x74\x68\x65\x6d\x65\x2e','\x73\x70\x6c\x69\x74','\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x61\x6c\x6c\x6f\x77\x73\x20\x62\x6c\x6f\x63\x6b\x20\x27','\x6c\x61\x79\x6f\x75\x74\x73','\u2705\x20\x4e\x6f\x20\x69\x73\x73\x75\x65\x73\x20\x66\x6f\x75\x6e\x64\x2e'];_0x5bc6=function(){return _0x2f0f87;};return _0x5bc6();}var C=_0x1023b4=>typeof _0x1023b4==_0x4d2ada(0x12e),k=_0x293598=>typeof _0x293598==_0x4d2ada(0x103)&&_0x293598!==null&&!Array[_0x4d2ada(0x115)](_0x293598),A=(_0x53a9ae,_0x2353bf)=>{if(!k(_0x53a9ae))return null;let _0x23dc0c=_0x53a9ae[_0x2353bf];return C(_0x23dc0c)?_0x23dc0c:null;},q=()=>process[_0x4d2ada(0x166)][_0x4d2ada(0x14f)]===_0x4d2ada(0x10a)||process[_0x4d2ada(0x166)][_0x4d2ada(0x140)]===_0x4d2ada(0x10a),w={'\x69\x6e\x66\x6f'(_0x2f64c0){console['\x77\x61\x72\x6e'](_0x2f64c0);},'\x77\x61\x72\x6e'(_0x18e07d,_0x62dde4){const _0x541466=_0x4d2ada;if(_0x62dde4){console['\x77\x61\x72\x6e'](_0x18e07d,_0x62dde4);return;}console[_0x541466(0x147)](_0x18e07d);},'\x65\x72\x72\x6f\x72'(_0x877132,_0x5dc2b6){const _0x3c4fa8=_0x4d2ada;if(_0x5dc2b6){console[_0x3c4fa8(0x101)](_0x877132,_0x5dc2b6);return;}console[_0x3c4fa8(0x101)](_0x877132);},'\x64\x65\x62\x75\x67'(_0x588b4f,_0x316cba){if(q()){if(_0x316cba){console['\x77\x61\x72\x6e'](_0x588b4f,_0x316cba);return;}console['\x77\x61\x72\x6e'](_0x588b4f);}}},v={'\x69\x6e\x66\x6f':0x1,'\x77\x61\x72\x6e\x69\x6e\x67':0x2,'\x65\x72\x72\x6f\x72':0x3},M=new Set(['\x2e\x67\x69\x74',_0x4d2ada(0x116),_0x4d2ada(0x11c),_0x4d2ada(0x107),_0x4d2ada(0x167),_0x4d2ada(0x16d)]),R=_0x449b22=>{const _0x423bea=_0x4d2ada;let _0x8fdf54=[],_0x9e6231=join(_0x449b22,_0x423bea(0xfe)),_0x556da1=join(_0x449b22,_0x423bea(0x13a)),_0x490289=join(_0x449b22,_0x423bea(0x15c));existsSync(_0x9e6231)||_0x8fdf54['\x70\x75\x73\x68']({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x101),'\x6d\x65\x73\x73\x61\x67\x65':'\x4d\x69\x73\x73\x69\x6e\x67\x20\x6c\x61\x79\x6f\x75\x74\x73\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x2e','\x66\x69\x6c\x65':_0x423bea(0x114),'\x63\x6f\x64\x65':_0x423bea(0x12b)}),existsSync(_0x556da1)||_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x101),'\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x104),'\x66\x69\x6c\x65':'\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f','\x63\x6f\x64\x65':_0x423bea(0x137)}),existsSync(_0x9e6231)&&!existsSync(join(_0x9e6231,'\x64\x65\x66\x61\x75\x6c\x74\x2e\x6c\x69\x71\x75\x69\x64'))&&_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x125),'\x6d\x65\x73\x73\x61\x67\x65':'\x4d\x69\x73\x73\x69\x6e\x67\x20\x6c\x61\x79\x6f\x75\x74\x73\x2f\x64\x65\x66\x61\x75\x6c\x74\x2e\x6c\x69\x71\x75\x69\x64\x2e','\x66\x69\x6c\x65':_0x423bea(0x144),'\x63\x6f\x64\x65':'\x6d\x69\x73\x73\x69\x6e\x67\x2d\x64\x65\x66\x61\x75\x6c\x74\x2d\x6c\x61\x79\x6f\x75\x74'});let _0x522d96=F(_0x556da1);existsSync(_0x556da1)&&_0x522d96[_0x423bea(0x12f)]===0x0&&_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x125),'\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x16b),'\x66\x69\x6c\x65':'\x74\x65\x6d\x70\x6c\x61\x74\x65\x73\x2f','\x63\x6f\x64\x65':_0x423bea(0x13c)});let _0x4dcd02=F(_0x490289),_0x4e4855=new Map();for(let _0x454555 of _0x4dcd02){let _0x47830e=readFileSync(_0x454555,'\x75\x74\x66\x2d\x38'),_0x146dd7=N(_0x47830e),_0x1b7b22=relative(_0x449b22,_0x454555);if(_0x146dd7[_0x423bea(0x12f)]===0x0){_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':'\x77\x61\x72\x6e\x69\x6e\x67','\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x139),'\x66\x69\x6c\x65':_0x1b7b22,'\x63\x6f\x64\x65':'\x62\x6c\x6f\x63\x6b\x2d\x6d\x69\x73\x73\x69\x6e\x67\x2d\x73\x63\x68\x65\x6d\x61'});continue;}_0x146dd7[_0x423bea(0x12f)]>0x1&&_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x125),'\x6d\x65\x73\x73\x61\x67\x65':'\x42\x6c\x6f\x63\x6b\x20\x68\x61\x73\x20\x6d\x75\x6c\x74\x69\x70\x6c\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x73\x3b\x20\x6f\x6e\x6c\x79\x20\x74\x68\x65\x20\x66\x69\x72\x73\x74\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x75\x73\x65\x64\x2e','\x66\x69\x6c\x65':_0x1b7b22,'\x63\x6f\x64\x65':_0x423bea(0x121)});let _0xcf6ffb=P(_0x146dd7[0x0],_0x1b7b22,_0x8fdf54);if(!_0xcf6ffb||!k(_0xcf6ffb))continue;let _0x249f13=A(_0xcf6ffb,'\x6e\x61\x6d\x65');if(!_0x249f13)_0x8fdf54['\x70\x75\x73\x68']({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x101),'\x6d\x65\x73\x73\x61\x67\x65':'\x42\x6c\x6f\x63\x6b\x20\x73\x63\x68\x65\x6d\x61\x20\x69\x73\x20\x6d\x69\x73\x73\x69\x6e\x67\x20\x72\x65\x71\x75\x69\x72\x65\x64\x20\x27\x6e\x61\x6d\x65\x27\x20\x66\x69\x65\x6c\x64\x2e','\x66\x69\x6c\x65':_0x1b7b22,'\x6c\x69\x6e\x65':_0x146dd7[0x0][_0x423bea(0x142)],'\x63\x6f\x64\x65':_0x423bea(0x111)});else{let _0x2e9da9=_0x4e4855[_0x423bea(0x13b)](_0x249f13);_0x2e9da9?_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x125),'\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x14c)+_0x249f13+_0x423bea(0x13d)+_0x2e9da9+'\x29\x2e','\x66\x69\x6c\x65':_0x1b7b22,'\x6c\x69\x6e\x65':_0x146dd7[0x0][_0x423bea(0x142)],'\x63\x6f\x64\x65':_0x423bea(0x134)}):_0x4e4855['\x73\x65\x74'](_0x249f13,_0x1b7b22);}let _0x2b19bc=_0xcf6ffb[_0x423bea(0x141)];Array[_0x423bea(0x115)](_0x2b19bc)||_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x101),'\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x118),'\x66\x69\x6c\x65':_0x1b7b22,'\x6c\x69\x6e\x65':_0x146dd7[0x0]['\x6c\x69\x6e\x65'],'\x63\x6f\x64\x65':'\x62\x6c\x6f\x63\x6b\x2d\x73\x65\x74\x74\x69\x6e\x67\x73\x2d\x69\x6e\x76\x61\x6c\x69\x64'});}for(let _0x119bd6 of _0x522d96){let _0x22248d=readFileSync(_0x119bd6,_0x423bea(0x133)),_0x2d7065=N(_0x22248d),_0x165dc9=relative(_0x449b22,_0x119bd6);if(_0x2d7065['\x6c\x65\x6e\x67\x74\x68']===0x0){_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':'\x77\x61\x72\x6e\x69\x6e\x67','\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x128),'\x66\x69\x6c\x65':_0x165dc9,'\x63\x6f\x64\x65':_0x423bea(0x113)});continue;}_0x2d7065[_0x423bea(0x12f)]>0x1&&_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x125),'\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x108),'\x66\x69\x6c\x65':_0x165dc9,'\x63\x6f\x64\x65':_0x423bea(0x138)});let _0x3db5a7=P(_0x2d7065[0x0],_0x165dc9,_0x8fdf54);if(!_0x3db5a7||!k(_0x3db5a7))continue;let _0x3904a3=_0x3db5a7[_0x423bea(0x141)];_0x3904a3!==void 0x0&&!Array[_0x423bea(0x115)](_0x3904a3)&&_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x125),'\x6d\x65\x73\x73\x61\x67\x65':'\x54\x65\x6d\x70\x6c\x61\x74\x65\x20\x73\x63\x68\x65\x6d\x61\x20\x27\x73\x65\x74\x74\x69\x6e\x67\x73\x27\x20\x73\x68\x6f\x75\x6c\x64\x20\x62\x65\x20\x61\x6e\x20\x61\x72\x72\x61\x79\x2e','\x66\x69\x6c\x65':_0x165dc9,'\x6c\x69\x6e\x65':_0x2d7065[0x0][_0x423bea(0x142)],'\x63\x6f\x64\x65':_0x423bea(0x163)});let _0x396efe=_0x3db5a7['\x62\x6c\x6f\x63\x6b\x73'];if(_0x396efe!==void 0x0&&!Array[_0x423bea(0x115)](_0x396efe)){_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':'\x77\x61\x72\x6e\x69\x6e\x67','\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x15d),'\x66\x69\x6c\x65':_0x165dc9,'\x6c\x69\x6e\x65':_0x2d7065[0x0][_0x423bea(0x142)],'\x63\x6f\x64\x65':_0x423bea(0x131)});continue;}if(Array[_0x423bea(0x115)](_0x396efe))for(let _0x64e67e of _0x396efe){if(typeof _0x64e67e!=_0x423bea(0x12e)){_0x8fdf54['\x70\x75\x73\x68']({'\x73\x65\x76\x65\x72\x69\x74\x79':'\x77\x61\x72\x6e\x69\x6e\x67','\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0x126),'\x66\x69\x6c\x65':_0x165dc9,'\x6c\x69\x6e\x65':_0x2d7065[0x0][_0x423bea(0x142)],'\x63\x6f\x64\x65':'\x74\x65\x6d\x70\x6c\x61\x74\x65\x2d\x62\x6c\x6f\x63\x6b\x73\x2d\x65\x6e\x74\x72\x79\x2d\x69\x6e\x76\x61\x6c\x69\x64'});continue;}_0x4e4855[_0x423bea(0x13e)](_0x64e67e)||_0x8fdf54[_0x423bea(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x423bea(0x125),'\x6d\x65\x73\x73\x61\x67\x65':_0x423bea(0xfd)+_0x64e67e+_0x423bea(0x149),'\x66\x69\x6c\x65':_0x165dc9,'\x6c\x69\x6e\x65':_0x2d7065[0x0]['\x6c\x69\x6e\x65'],'\x63\x6f\x64\x65':_0x423bea(0x15a)});}}return _0x8fdf54;},j=(_0x5f1f6b,_0xe4789b)=>({'\x65\x72\x72\x6f\x72\x73':_0x5f1f6b[_0x4d2ada(0x127)](_0xa6b80a=>_0xa6b80a['\x73\x65\x76\x65\x72\x69\x74\x79']===_0x4d2ada(0x101))['\x6c\x65\x6e\x67\x74\x68'],'\x77\x61\x72\x6e\x69\x6e\x67\x73':_0x5f1f6b[_0x4d2ada(0x127)](_0x175d40=>_0x175d40[_0x4d2ada(0x156)]===_0x4d2ada(0x125))[_0x4d2ada(0x12f)],'\x69\x6e\x66\x6f':_0x5f1f6b[_0x4d2ada(0x127)](_0x59f3c4=>_0x59f3c4[_0x4d2ada(0x156)]===_0x4d2ada(0x11a))[_0x4d2ada(0x12f)],'\x66\x61\x69\x6c\x4c\x65\x76\x65\x6c':_0xe4789b,'\x66\x61\x69\x6c\x65\x64':x(_0x5f1f6b,_0xe4789b)}),x=(_0x216f67,_0x2e60c5)=>{const _0x1844ae=_0x4d2ada;let _0x346f70=v[_0x2e60c5];return _0x216f67['\x73\x6f\x6d\x65'](_0x38ad21=>v[_0x38ad21[_0x1844ae(0x156)]]>=_0x346f70);},D=(_0x2c14e3,_0x124bd1)=>{const _0x5641de=_0x4d2ada;let _0x5b13e8=_0x124bd1[_0x5641de(0x127)](_0x35de48=>_0x35de48[_0x5641de(0x156)]==='\x65\x72\x72\x6f\x72'),_0x59c848=_0x124bd1[_0x5641de(0x127)](_0x2a796b=>_0x2a796b[_0x5641de(0x156)]==='\x77\x61\x72\x6e\x69\x6e\x67'),_0xa9d9f8=_0x124bd1[_0x5641de(0x127)](_0x5acea5=>_0x5acea5['\x73\x65\x76\x65\x72\x69\x74\x79']==='\x69\x6e\x66\x6f');if(w['\x69\x6e\x66\x6f'](_0x5641de(0x15b)+_0x5b13e8[_0x5641de(0x12f)]+_0x5641de(0x129)+_0x59c848[_0x5641de(0x12f)]+_0x5641de(0x161)+_0xa9d9f8[_0x5641de(0x12f)]+_0x5641de(0x102)),_0x124bd1['\x6c\x65\x6e\x67\x74\x68']===0x0){w[_0x5641de(0x11a)](_0x5641de(0xff));return;}let _0xf23099=[..._0x124bd1][_0x5641de(0x164)]((_0x51173f,_0xbb6431)=>v[_0xbb6431[_0x5641de(0x156)]]-v[_0x51173f[_0x5641de(0x156)]]);for(let _0x15c450 of _0xf23099){let _0x2e8e13=_0x15c450[_0x5641de(0x162)]?''+_0x15c450[_0x5641de(0x162)]+(_0x15c450['\x6c\x69\x6e\x65']?'\x3a'+_0x15c450[_0x5641de(0x142)]:''):_0x2c14e3,_0x1904fe=_0x15c450[_0x5641de(0x159)]?'\x20\x28'+_0x15c450['\x63\x6f\x64\x65']+'\x29':'';w['\x69\x6e\x66\x6f'](_0x5641de(0x10f)+_0x15c450[_0x5641de(0x156)]+'\x5d\x20'+_0x2e8e13+'\x3a\x20'+_0x15c450[_0x5641de(0x158)]+_0x1904fe);}},O=_0x5d9048=>_0x5d9048===_0x4d2ada(0x101)||_0x5d9048===_0x4d2ada(0x125)||_0x5d9048===_0x4d2ada(0x11a),_=_0x120642=>_0x120642===_0x4d2ada(0x132)||_0x120642===_0x4d2ada(0x11f),F=_0x41af49=>{if(!existsSync(_0x41af49))return[];let _0xe2cc93=[];return B(_0x41af49,_0xe2cc93),_0xe2cc93;},B=(_0x18c6b2,_0x521d10)=>{const _0x12fb88=_0x4d2ada;let _0x2a1fe5=readdirSync(_0x18c6b2,{'\x77\x69\x74\x68\x46\x69\x6c\x65\x54\x79\x70\x65\x73':!![]});for(let _0x5b3da2 of _0x2a1fe5)if(_0x5b3da2['\x69\x73\x44\x69\x72\x65\x63\x74\x6f\x72\x79']()){if(M[_0x12fb88(0x13e)](_0x5b3da2[_0x12fb88(0x14e)]))continue;B(join(_0x18c6b2,_0x5b3da2['\x6e\x61\x6d\x65']),_0x521d10);}else _0x5b3da2[_0x12fb88(0x120)]()&&_0x5b3da2[_0x12fb88(0x14e)]['\x65\x6e\x64\x73\x57\x69\x74\x68'](_0x12fb88(0x105))&&_0x521d10[_0x12fb88(0x11e)](join(_0x18c6b2,_0x5b3da2['\x6e\x61\x6d\x65']));},N=_0x2e1eec=>{const _0x27a209=_0x4d2ada;let _0x3e7854=/\{%\s*schema\s*%\}([\s\S]*?)\{%\s*endschema\s*%\}/g,_0x13929a=[];for(let _0x50c840 of _0x2e1eec['\x6d\x61\x74\x63\x68\x41\x6c\x6c'](_0x3e7854)){let _0x1910b2=typeof _0x50c840[0x1]=='\x73\x74\x72\x69\x6e\x67'?_0x50c840[0x1][_0x27a209(0x153)]():'',_0x2194f0=typeof _0x50c840[_0x27a209(0x169)]==_0x27a209(0x15f)?_0x50c840[_0x27a209(0x169)]:0x0,_0x3768c4=_0x2e1eec[_0x27a209(0x119)](0x0,_0x2194f0)[_0x27a209(0xfc)]('\x0a')[_0x27a209(0x12f)];_0x13929a[_0x27a209(0x11e)]({'\x72\x61\x77':_0x1910b2,'\x6c\x69\x6e\x65':_0x3768c4});}return _0x13929a;},P=(_0x279759,_0x482c4f,_0x2b3023)=>{const _0x4cf49b=_0x4d2ada;if(!_0x279759[_0x4cf49b(0x157)])return _0x2b3023[_0x4cf49b(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':_0x4cf49b(0x101),'\x6d\x65\x73\x73\x61\x67\x65':'\x53\x63\x68\x65\x6d\x61\x20\x74\x61\x67\x20\x69\x73\x20\x65\x6d\x70\x74\x79\x2e','\x66\x69\x6c\x65':_0x482c4f,'\x6c\x69\x6e\x65':_0x279759['\x6c\x69\x6e\x65'],'\x63\x6f\x64\x65':_0x4cf49b(0x10c)}),null;try{return JSON[_0x4cf49b(0x14d)](_0x279759['\x72\x61\x77']);}catch(_0x465e11){let _0x1e67c0=_0x465e11 instanceof Error?_0x465e11['\x6d\x65\x73\x73\x61\x67\x65']:_0x4cf49b(0x106);return _0x2b3023[_0x4cf49b(0x11e)]({'\x73\x65\x76\x65\x72\x69\x74\x79':'\x65\x72\x72\x6f\x72','\x6d\x65\x73\x73\x61\x67\x65':_0x4cf49b(0x14a)+_0x1e67c0,'\x66\x69\x6c\x65':_0x482c4f,'\x6c\x69\x6e\x65':_0x279759[_0x4cf49b(0x142)],'\x63\x6f\x64\x65':_0x4cf49b(0x145)}),null;}},L=_0x476788=>{const _0x588fd5=_0x4d2ada;let _0x49b89b=process[_0x588fd5(0x166)][_0x588fd5(0x11d)];if(_0x49b89b&&!_0x476788){let _0x25bcc7=resolve(_0x49b89b);if(!existsSync(_0x25bcc7))throw new Error(_0x588fd5(0x154)+_0x25bcc7);return _0x25bcc7;}if(_0x476788){let _0x507935=resolve(_0x476788);if(!existsSync(_0x507935))throw new Error('\x54\x68\x65\x6d\x65\x20\x70\x61\x74\x68\x20\x64\x6f\x65\x73\x20\x6e\x6f\x74\x20\x65\x78\x69\x73\x74\x3a\x20'+_0x507935);return _0x507935;}let _0x289f0d=process[_0x588fd5(0x109)]();if([_0x588fd5(0xfe),_0x588fd5(0x13a)][_0x588fd5(0x148)](_0x93a59a=>existsSync(resolve(_0x289f0d,_0x93a59a))))return _0x289f0d;throw new Error(_0x588fd5(0x143));},G=_0x4d2ada(0x101),E=class e extends Command{static [_0x4d2ada(0x155)]=[_0x4d2ada(0x135)];static [_0x4d2ada(0x152)]=_0x4d2ada(0x12a);static [_0x4d2ada(0x10b)]={'\x74\x68\x65\x6d\x65\x50\x61\x74\x68':Args[_0x4d2ada(0x12e)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4d2ada(0x12c),'\x72\x65\x71\x75\x69\x72\x65\x64':![]})};static [_0x4d2ada(0x136)]={'\x74\x68\x65\x6d\x65':Flags['\x73\x74\x72\x69\x6e\x67']({'\x63\x68\x61\x72':'\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4d2ada(0x12c)}),'\x66\x6f\x72\x6d\x61\x74':Flags[_0x4d2ada(0x12e)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4d2ada(0x100),'\x64\x65\x66\x61\x75\x6c\x74':_0x4d2ada(0x132)}),'\x6a\x73\x6f\x6e':Flags[_0x4d2ada(0x110)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4d2ada(0x112),'\x64\x65\x66\x61\x75\x6c\x74':![]}),'\x66\x61\x69\x6c\x2d\x6c\x65\x76\x65\x6c':Flags['\x73\x74\x72\x69\x6e\x67']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4d2ada(0x13f),'\x64\x65\x66\x61\x75\x6c\x74':G})};async[_0x4d2ada(0x150)](){const _0x17ef46=_0x4d2ada;let {args:_0x5e2fe0,flags:_0x29ed23}=await this[_0x17ef46(0x14d)](e),_0x10a8ea=_0x29ed23[_0x17ef46(0x16a)]??_0x5e2fe0[_0x17ef46(0x122)]??null,_0x308320;try{_0x308320=L(_0x10a8ea);}catch(_0x2486ff){this[_0x17ef46(0x101)](_0x2486ff instanceof Error?_0x2486ff[_0x17ef46(0x158)]:_0x17ef46(0xfb));return;}let _0xe13a52=_0x29ed23['\x6a\x73\x6f\x6e']?_0x17ef46(0x11f):_0x29ed23[_0x17ef46(0x151)];if(!_(_0xe13a52)){this[_0x17ef46(0x101)](_0x17ef46(0x12d));return;}let _0x56e141=_0x29ed23[_0x17ef46(0x15e)];if(!O(_0x56e141)){this[_0x17ef46(0x101)](_0x17ef46(0x124));return;}let _0x34b96c=R(_0x308320);if(_0xe13a52==='\x6a\x73\x6f\x6e'){let _0x1422b2={'\x73\x75\x6d\x6d\x61\x72\x79':j(_0x34b96c,_0x56e141),'\x69\x73\x73\x75\x65\x73':_0x34b96c};this['\x6c\x6f\x67'](JSON[_0x17ef46(0x11b)](_0x1422b2,null,0x2));}else D(_0x308320,_0x34b96c);let _0x2363ef=x(_0x34b96c,_0x56e141)?0x1:0x0;_0x2363ef!==0x0&&this[_0x17ef46(0x10d)](_0x2363ef);}};export{E as default};