@nx/enterprise-cloud 4.0.0 → 5.0.1
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 +1 -1
- package/THIRD_PARTY_LICENSES.txt +24 -38
- package/package.json +5 -5
- package/src/generators/init/init.js +1 -1
- package/src/index.js +1 -1
- package/src/plugin/plugin.d.ts +15 -1
- package/src/plugin/plugin.js +1 -1
- package/src/plugin/plugin.js.map +1 -1
package/README.md
CHANGED
package/THIRD_PARTY_LICENSES.txt
CHANGED
|
@@ -397,25 +397,33 @@ limitations under the License.
|
|
|
397
397
|
|
|
398
398
|
---
|
|
399
399
|
|
|
400
|
-
Package: lru-cache (
|
|
400
|
+
Package: lru-cache (2.2.4)
|
|
401
401
|
Type: npm
|
|
402
|
-
License:
|
|
403
|
-
|
|
404
|
-
|
|
402
|
+
License: [object Object]
|
|
403
|
+
|
|
404
|
+
Copyright 2009, 2010, 2011 Isaac Z. Schlueter.
|
|
405
|
+
All rights reserved.
|
|
406
|
+
|
|
407
|
+
Permission is hereby granted, free of charge, to any person
|
|
408
|
+
obtaining a copy of this software and associated documentation
|
|
409
|
+
files (the "Software"), to deal in the Software without
|
|
410
|
+
restriction, including without limitation the rights to use,
|
|
411
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
412
|
+
copies of the Software, and to permit persons to whom the
|
|
413
|
+
Software is furnished to do so, subject to the following
|
|
414
|
+
conditions:
|
|
405
415
|
|
|
406
|
-
|
|
416
|
+
The above copyright notice and this permission notice shall be
|
|
417
|
+
included in all copies or substantial portions of the Software.
|
|
407
418
|
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
417
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
418
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
419
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
420
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
421
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
422
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
423
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
424
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
425
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
426
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
419
427
|
|
|
420
428
|
---
|
|
421
429
|
|
|
@@ -786,25 +794,3 @@ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
|
786
794
|
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
787
795
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
788
796
|
DEALINGS IN THE SOFTWARE.
|
|
789
|
-
|
|
790
|
-
---
|
|
791
|
-
|
|
792
|
-
Package: yallist (3.1.1)
|
|
793
|
-
Type: npm
|
|
794
|
-
License: ISC
|
|
795
|
-
|
|
796
|
-
The ISC License
|
|
797
|
-
|
|
798
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
799
|
-
|
|
800
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
801
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
802
|
-
copyright notice and this permission notice appear in all copies.
|
|
803
|
-
|
|
804
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
805
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
806
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
807
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
808
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
809
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
810
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/enterprise-cloud",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "A Nx plugin which is specific to Nx Enterprise Cloud workspaces.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"THIRD_PARTY_LICENSES.txt"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@nx/devkit": "
|
|
23
|
-
"@nx/key": "
|
|
22
|
+
"@nx/devkit": "22.0.3",
|
|
23
|
+
"@nx/key": "5.0.1",
|
|
24
24
|
"semver": "7.5.4"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"nx": ">= 18 <
|
|
27
|
+
"nx": ">= 18 < 23"
|
|
28
28
|
},
|
|
29
29
|
"types": "./src/index.d.ts"
|
|
30
|
-
}
|
|
30
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';function
|
|
1
|
+
'use strict';function a0_0x2a3e(){const _0x2a852a=['253166dDwSmo','nx.json','plugins','1ihYTrK','1513369fInZTw','719750JIPNvV','24sncRDU','10KrrtWa','2303917ZxKrOT','@nx/key','updateJson','9yjCwLd','3uqYNCi','515694TAXjDm','getNxKeyInformationAsync','default','142812XtYRzx','formatFiles','You\x20must\x20have\x20a\x20valid\x20Nx\x20key\x20to\x20use\x20@nx/enterprise-cloud,\x20read\x20more\x20about\x20Nx\x20keys\x20on\x20https://nx.dev/powerpack','workspaceRoot','some','defineProperty','368YdBixY','29113VcaUKA','initGenerator','__esModule','@nx/enterprise-cloud'];a0_0x2a3e=function(){return _0x2a852a;};return a0_0x2a3e();}const a0_0x3b5211=a0_0x96de;(function(_0x13102b,_0x3e16de){const _0x2a3193=a0_0x96de,_0x4592c2=_0x13102b();while(!![]){try{const _0x3c038b=parseInt(_0x2a3193(0x86))/0x1*(parseInt(_0x2a3193(0x83))/0x2)+-parseInt(_0x2a3193(0x8f))/0x3*(-parseInt(_0x2a3193(0x93))/0x4)+parseInt(_0x2a3193(0x8a))/0x5*(-parseInt(_0x2a3193(0x90))/0x6)+-parseInt(_0x2a3193(0x7f))/0x7*(-parseInt(_0x2a3193(0x99))/0x8)+parseInt(_0x2a3193(0x8e))/0x9*(-parseInt(_0x2a3193(0x88))/0xa)+-parseInt(_0x2a3193(0x8b))/0xb+-parseInt(_0x2a3193(0x89))/0xc*(-parseInt(_0x2a3193(0x87))/0xd);if(_0x3c038b===_0x3e16de)break;else _0x4592c2['push'](_0x4592c2['shift']());}catch(_0x16155d){_0x4592c2['push'](_0x4592c2['shift']());}}}(a0_0x2a3e,0x207f2));Object[a0_0x3b5211(0x98)](exports,a0_0x3b5211(0x81),{'value':!0x0}),exports[a0_0x3b5211(0x80)]=r;let e=require('@nx/devkit'),t=require(a0_0x3b5211(0x8c));function a0_0x96de(_0x367367,_0x16ed77){const _0x2a3e7a=a0_0x2a3e();return a0_0x96de=function(_0x96de33,_0x1cd56b){_0x96de33=_0x96de33-0x7f;let _0x141ff2=_0x2a3e7a[_0x96de33];return _0x141ff2;},a0_0x96de(_0x367367,_0x16ed77);}async function r(_0xe34b05){const _0x5756d7=a0_0x3b5211;if(!await(0x0,t[_0x5756d7(0x91)])(e[_0x5756d7(0x96)]))throw Error(_0x5756d7(0x95));(0x0,e[_0x5756d7(0x8d)])(_0xe34b05,_0x5756d7(0x84),_0x51d118=>{const _0x2dd5bb=_0x5756d7;_0x51d118[_0x2dd5bb(0x85)]=_0x51d118[_0x2dd5bb(0x85)]||[];let _0x3899d9=_0x2dd5bb(0x82);return _0x51d118[_0x2dd5bb(0x85)][_0x2dd5bb(0x97)](_0x4e4e3f=>'string'==typeof _0x4e4e3f?_0x4e4e3f===_0x3899d9:_0x4e4e3f['plugin']===_0x3899d9)||_0x51d118[_0x2dd5bb(0x85)]['push'](_0x2dd5bb(0x82)),_0x51d118;}),await(0x0,e[_0x5756d7(0x94)])(_0xe34b05);}exports[a0_0x3b5211(0x92)]=r;
|
package/src/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';
|
|
1
|
+
'use strict';var a1_0x1bd96b=a1_0x55ef;(function(_0x422da9,_0x28312c){var _0x41d84d=a1_0x55ef,_0x5014b9=_0x422da9();while(!![]){try{var _0x242d39=parseInt(_0x41d84d(0x195))/0x1+-parseInt(_0x41d84d(0x199))/0x2+-parseInt(_0x41d84d(0x194))/0x3*(parseInt(_0x41d84d(0x198))/0x4)+-parseInt(_0x41d84d(0x19f))/0x5+-parseInt(_0x41d84d(0x19b))/0x6*(parseInt(_0x41d84d(0x19c))/0x7)+-parseInt(_0x41d84d(0x1a1))/0x8+parseInt(_0x41d84d(0x19a))/0x9;if(_0x242d39===_0x28312c)break;else _0x5014b9['push'](_0x5014b9['shift']());}catch(_0x251d94){_0x5014b9['push'](_0x5014b9['shift']());}}}(a1_0x21dc,0xbea16));function a1_0x55ef(_0x42a2a2,_0x4cf1a1){var _0x21dc18=a1_0x21dc();return a1_0x55ef=function(_0x55efa0,_0x409035){_0x55efa0=_0x55efa0-0x194;var _0x22994b=_0x21dc18[_0x55efa0];return _0x22994b;},a1_0x55ef(_0x42a2a2,_0x4cf1a1);}function a1_0x21dc(){var _0x2ecd96=['7751320AMbgbA','797799nAZIQg','176654fVfPzZ','defineProperty','./plugin/plugin','4nOmZhr','84422EcNXGu','32582817IUqcbb','122070fMwPAM','406LzMGTm','createNodes','__esModule','2795380pMbids','createMetadata'];a1_0x21dc=function(){return _0x2ecd96;};return a1_0x21dc();}Object[a1_0x1bd96b(0x196)](exports,a1_0x1bd96b(0x19e),{'value':!0x0}),exports['createNodes']=exports[a1_0x1bd96b(0x1a0)]=void 0x0;var e=require(a1_0x1bd96b(0x197));Object[a1_0x1bd96b(0x196)](exports,a1_0x1bd96b(0x1a0),{'enumerable':!0x0,'get':function(){var _0x1270a1=a1_0x1bd96b;return e[_0x1270a1(0x1a0)];}}),Object[a1_0x1bd96b(0x196)](exports,a1_0x1bd96b(0x19d),{'enumerable':!0x0,'get':function(){var _0x383820=a1_0x1bd96b;return e[_0x383820(0x19d)];}});
|
package/src/plugin/plugin.d.ts
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
-
import { CreateMetadata,
|
|
1
|
+
import { CreateMetadata, CreateNodesContextV2, ProjectConfiguration, ProjectGraphExternalNode } from '@nx/devkit';
|
|
2
|
+
export interface CreateNodesContext extends CreateNodesContextV2 {
|
|
3
|
+
readonly configFiles: readonly string[];
|
|
4
|
+
}
|
|
5
|
+
type CreateNodesFunction<T = unknown> = (projectConfigurationFile: string, options: T | undefined, context: CreateNodesContext) => CreateNodesResult | Promise<CreateNodesResult>;
|
|
6
|
+
type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
7
|
+
interface CreateNodesResult {
|
|
8
|
+
projects?: Record<string, Optional<ProjectConfiguration, 'root'>>;
|
|
9
|
+
externalNodes?: Record<string, ProjectGraphExternalNode>;
|
|
10
|
+
}
|
|
11
|
+
type CreateNodes<T = unknown> = readonly [
|
|
12
|
+
projectFilePattern: string,
|
|
13
|
+
createNodesFunction: CreateNodesFunction<T>
|
|
14
|
+
];
|
|
2
15
|
export declare const createMetadata: CreateMetadata;
|
|
3
16
|
export declare const createNodes: CreateNodes | undefined;
|
|
17
|
+
export {};
|
package/src/plugin/plugin.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const
|
|
1
|
+
'use strict';const a2_0x31c58e=a2_0x4963;(function(_0x4135eb,_0x47e522){const _0x31b3e0=a2_0x4963,_0x41a04e=_0x4135eb();while(!![]){try{const _0x1b9394=-parseInt(_0x31b3e0(0x1f6))/0x1+parseInt(_0x31b3e0(0x1df))/0x2+parseInt(_0x31b3e0(0x1f1))/0x3*(parseInt(_0x31b3e0(0x1f4))/0x4)+-parseInt(_0x31b3e0(0x1f3))/0x5+-parseInt(_0x31b3e0(0x1e7))/0x6*(-parseInt(_0x31b3e0(0x1f0))/0x7)+parseInt(_0x31b3e0(0x1eb))/0x8+-parseInt(_0x31b3e0(0x1e4))/0x9;if(_0x1b9394===_0x47e522)break;else _0x41a04e['push'](_0x41a04e['shift']());}catch(_0x573a3d){_0x41a04e['push'](_0x41a04e['shift']());}}}(a2_0x3848,0xe5f94));function a2_0x4963(_0x35c449,_0x36cbd2){const _0x3848ed=a2_0x3848();return a2_0x4963=function(_0x4963af,_0xd1326a){_0x4963af=_0x4963af-0x1dc;let _0x31ebae=_0x3848ed[_0x4963af];return _0x31ebae;},a2_0x4963(_0x35c449,_0x36cbd2);}Object[a2_0x31c58e(0x1e9)](exports,a2_0x31c58e(0x1ef),{'value':!0x0}),exports[a2_0x31c58e(0x1e8)]=exports['createMetadata']=void 0x0;let e=require(a2_0x31c58e(0x1de)),t=require(a2_0x31c58e(0x1dc)),r=require(a2_0x31c58e(0x1e0)),a=require(a2_0x31c58e(0x1fd)),o=require(a2_0x31c58e(0x1f9)),n=async(_0x1f7be8,_0x2fd96b,_0x12aa90)=>{const _0x297ae0=a2_0x31c58e;if(_0x297ae0(0x1e1)===process[_0x297ae0(0x1ed)]['NX_POWERPACK_DISABLE'])return{};if(!await(0x0,t[_0x297ae0(0x1fc)])(_0x12aa90[_0x297ae0(0x1f5)]))throw Error('You\x20must\x20have\x20a\x20valid\x20Nx\x20key\x20to\x20use\x20@nx/enterprise-cloud,\x20read\x20more\x20about\x20Nx\x20keys\x20on\x20https://nx.dev/powerpack');let _0x3c0159={};for(let [_0x455990,_0x37f86f]of Object[_0x297ae0(0x1e6)](_0x1f7be8[_0x297ae0(0x1f8)])){if(!_0x37f86f[_0x297ae0(0x1fa)]['root'])continue;let _0xacd669=(0x0,e['joinPathFragments'])(_0x37f86f[_0x297ae0(0x1fa)][_0x297ae0(0x1f2)],'package.json'),_0x3978e9=(0x0,r[_0x297ae0(0x1e2)])(_0xacd669)?(0x0,e[_0x297ae0(0x1dd)])(_0xacd669):null,_0x47b165=_0x3978e9?.[_0x297ae0(0x1f7)]||'';_0x47b165&&(_0x3c0159[_0x455990]={'metadata':{'jsPackageName':_0x47b165}});}return _0x3c0159;};exports[a2_0x31c58e(0x1ee)]=n;let s=[a2_0x31c58e(0x1e5),async(_0x442c6d,_0x4a1be3,_0x85fbf3)=>{const _0x3a522e=a2_0x31c58e;if('true'===process['env']['NX_POWERPACK_DISABLE'])return{'projects':{}};try{let _0xcf699a=(0x0,a['dirname'])(_0x442c6d),_0x22599a=(0x0,e[_0x3a522e(0x1dd)])(_0x442c6d);if('.'===_0xcf699a&&(!_0x22599a['nx']||!_0x22599a['nx'][_0x3a522e(0x1ec)]))return{'projects':{}};return{'projects':{[_0xcf699a]:{'metadata':{'jsPackageName':_0x22599a[_0x3a522e(0x1f7)]}}}};}catch{return{'projects':{}};}}];function a2_0x3848(){const _0xc108ae=['18384237PhqIAs','**/package.json','entries','8898QEfVbb','createNodes','defineProperty','NX_VERSION','7066736qKysmV','enabled','env','createMetadata','__esModule','7301vfKSJU','11805bNonUJ','root','1930585pEaWtY','332poIwNi','workspaceRoot','589566cJFnAR','name','nodes','semver','data','gte','getNxKeyInformationAsync','node:path','@nx/key','readJsonFile','@nx/devkit','2407264VIQpZY','node:fs','true','existsSync','19.0.0'];a2_0x3848=function(){return _0xc108ae;};return a2_0x3848();}exports[a2_0x31c58e(0x1e8)]=(0x0,o[a2_0x31c58e(0x1fb)])(e[a2_0x31c58e(0x1ea)],a2_0x31c58e(0x1e3))?void 0x0:s;
|
package/src/plugin/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../../../../libs/nx-packages/enterprise-cloud/src/plugin/plugin.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../../../../libs/nx-packages/enterprise-cloud/src/plugin/plugin.ts"],"names":[],"mappings":";;;AAAA,uCASoB;AAEpB,iCAAmD;AACnD,qCAAqC;AACrC,yCAAoC;AACpC,mCAA6B;AA2CtB,MAAM,cAAc,GAAmB,KAAK,EACjD,KAAK,EACL,QAAQ,EACR,OAAO,EACP,EAAE;IACF,IAAI,OAAO,CAAC,GAAG,CAAC,oBAAoB,KAAK,MAAM,EAAE,CAAC;QAChD,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,MAAM,OAAO,GAAG,MAAM,IAAA,8BAAwB,EAAC,OAAO,CAAC,aAAa,CAAC,CAAC;IACtE,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,MAAM,IAAI,KAAK,CACb,+GAA+G,CAChH,CAAC;IACJ,CAAC;IAED,MAAM,QAAQ,GAAsC,EAAE,CAAC;IAEvD,KAAK,MAAM,CAAC,WAAW,EAAE,aAAa,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC;QACvE,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI;YAAE,SAAS;QAEvC,MAAM,eAAe,GAAG,IAAA,0BAAiB,EACvC,aAAa,CAAC,IAAI,CAAC,IAAI,EACvB,cAAc,CACf,CAAC;QACF,MAAM,WAAW,GAAG,IAAA,oBAAU,EAAC,eAAe,CAAC;YAC7C,CAAC,CAAC,IAAA,qBAAY,EAAC,eAAe,CAAC;YAC/B,CAAC,CAAC,IAAI,CAAC;QAET,MAAM,aAAa,GAAG,WAAW,EAAE,IAAI,IAAI,EAAE,CAAC;QAE9C,IAAI,CAAC,aAAa;YAAE,SAAS;QAE7B,QAAQ,CAAC,WAAW,CAAC,GAAG;YACtB,QAAQ,EAAE,EAAE,aAAa,EAAE;SAC5B,CAAC;IACJ,CAAC;IAED,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC;AAvCW,QAAA,cAAc,kBAuCzB;AAEF;;;;;;;GAOG;AACH,MAAM,aAAa,GAAgB;IACjC,iBAAiB;IACjB,KAAK,EAAE,cAAc,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE;QAC3C,IAAI,OAAO,CAAC,GAAG,CAAC,oBAAoB,KAAK,MAAM,EAAE,CAAC;YAChD,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;QAC1B,CAAC;QAED,IAAI,CAAC;YACH,MAAM,WAAW,GAAG,IAAA,mBAAO,EAAC,cAAc,CAAC,CAAC;YAC5C,MAAM,WAAW,GAAG,IAAA,qBAAY,EAAC,cAAc,CAAC,CAAC;YACjD,yFAAyF;YACzF,IAAI,WAAW,KAAK,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,EAAE,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;gBACxE,OAAO;oBACL,QAAQ,EAAE,EAAE;iBACb,CAAC;YACJ,CAAC;YAED,OAAO;gBACL,QAAQ,EAAE;oBACR,CAAC,WAAW,CAAC,EAAE;wBACb,QAAQ,EAAE;4BACR,aAAa,EAAE,WAAW,CAAC,IAAI;yBACzB;qBACT;iBACF;aACF,CAAC;QACJ,CAAC;QAAC,MAAM,CAAC;YACP,OAAO;gBACL,QAAQ,EAAE,EAAE;aACb,CAAC;QACJ,CAAC;IACH,CAAC;CACF,CAAC;AAEF,mFAAmF;AACtE,QAAA,WAAW,GAA4B,IAAA,YAAG,EAAC,mBAAU,EAAE,QAAQ,CAAC;IAC3E,CAAC,CAAC,SAAS;IACX,CAAC,CAAC,aAAa,CAAC"}
|