@cartridge/connector 0.3.18 → 0.3.20

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/LICENSE ADDED
@@ -0,0 +1,16 @@
1
+ Copyright Cartridge Gaming Company 2022. All rights reserved.
2
+
3
+ You acknowledge and agree that Cartridge Gaming Company (“Cartridge”) (or Cartridge’s licensors) own all legal right, title and interest in and to the work, software, application, source code, documentation and any other documents in this repository (collectively, the “Program”), including any intellectual property rights which subsist in the Program (whether those rights happen to be registered or not, and wherever in the world those rights may exist), whether in source code or any other form.
4
+
5
+ Subject to the limited license below, you may not (and you may not permit anyone else to) distribute, publish, copy, modify, merge, combine with another program, create derivative works of, reverse engineer, decompile or otherwise attempt to extract the source code of, the Program or any part thereof, except that you may contribute to this repository.
6
+
7
+ You are granted a non-exclusive, non-transferable, non-sublicensable license to distribute, publish, copy, modify, merge, combine with another program or create derivative works of the Program (such resulting program, collectively, the “Resulting Program”) solely for Non-Commercial Use as long as you:
8
+ 1. give prominent notice (“Notice”) with each copy of the Resulting Program that the Program is used in the Resulting Program and that the Program is the copyright of Cartridge; and
9
+ 2. subject the Resulting Program and any distribution, publication, copy, modification, merger therewith, combination with another program or derivative works thereof to the same Notice requirement and Non-Commercial Use restriction set forth herein.
10
+
11
+ “Non-Commercial Use” means each use as described in clauses (1)-(3) below, as reasonably determined by Cartridge in its sole discretion:
12
+ 1. personal use for research, personal study, private entertainment, hobby projects or amateur pursuits, in each case without any anticipated commercial application;
13
+ 2. use by any charitable organization, educational institution, public research organization, public safety or health organization, environmental protection organization or government institution; or
14
+ 3. the number of monthly active users of the Resulting Program across all versions thereof and platforms globally do not exceed 10,000 at any time.
15
+
16
+ You will not use any trade mark, service mark, trade name, logo of Cartridge or any other company or organization in a way that is likely or intended to cause confusion about the owner or authorized user of such marks, names or logos.
@@ -1,17 +1,22 @@
1
1
  /// <reference types="node" />
2
- import { Connector, EventHandler } from "@starknet-react/core";
3
- import Controller, { Assertion, Policy, SupportedChainIds } from "@cartridge/controller";
4
- import { AccountInterface, InvokeFunctionResponse } from "starknet";
2
+ import { Connector } from "@starknet-react/core";
3
+ import Controller, { Assertion, Policy } from "@cartridge/controller";
4
+ import { AccountInterface, InvokeFunctionResponse, constants } from "starknet";
5
5
  declare class ControllerConnector extends Connector {
6
6
  controller: Controller;
7
7
  private _account;
8
8
  constructor(policies?: Policy[], options?: {
9
9
  url?: string;
10
10
  origin?: string;
11
- chainId?: SupportedChainIds;
11
+ chainId?: constants.StarknetChainId;
12
12
  });
13
- id(): string;
14
- name(): string;
13
+ readonly id = "cartridge";
14
+ readonly name = "Cartridge";
15
+ readonly icon: {
16
+ dark: string;
17
+ light: string;
18
+ };
19
+ chainId(): Promise<bigint>;
15
20
  available(): boolean;
16
21
  ready(): Promise<boolean>;
17
22
  register(username: string, credentialId: string, credential: {
@@ -20,20 +25,21 @@ declare class ControllerConnector extends Connector {
20
25
  }): Promise<import("@cartridge/controller").Error | {
21
26
  address: string;
22
27
  deviceKey: string;
23
- }>;
28
+ } | null>;
24
29
  login(address: string, credentialId: string, options: {
25
30
  rpId?: string;
26
31
  challengeExt?: Buffer;
27
32
  }): Promise<{
28
33
  assertion: Assertion;
29
34
  } | null>;
30
- provision(address: string, credentialId: string): Promise<string>;
31
- connect(): Promise<AccountInterface>;
35
+ provision(address: string, credentialId: string): Promise<string | null>;
36
+ connect(): Promise<{
37
+ account: string;
38
+ chainId: bigint;
39
+ }>;
32
40
  disconnect(): Promise<void>;
33
41
  account(): Promise<AccountInterface>;
34
42
  issueStarterPack(id: string): Promise<InvokeFunctionResponse>;
35
43
  showQuests(gameId: string): Promise<void>;
36
- initEventListener(accountChangeCb: EventHandler): Promise<void>;
37
- removeEventListener(accountChangeCb: EventHandler): Promise<void>;
38
44
  }
39
45
  export default ControllerConnector;
package/dist/index.js ADDED
@@ -0,0 +1,64 @@
1
+ import { Connector } from "@starknet-react/core";
2
+ import Controller from "@cartridge/controller";
3
+ class ControllerConnector extends Connector {
4
+ constructor(policies, options) {
5
+ super();
6
+ this.id = "cartridge";
7
+ this.name = "Cartridge";
8
+ this.icon = {
9
+ dark: icon,
10
+ light: icon,
11
+ };
12
+ this.controller = new Controller(policies, options);
13
+ }
14
+ async chainId() {
15
+ if (!this._account) {
16
+ return Promise.reject("Account is not connected");
17
+ }
18
+ const val = await this._account.getChainId();
19
+ return Promise.resolve(BigInt(val));
20
+ }
21
+ available() {
22
+ return true;
23
+ }
24
+ ready() {
25
+ return this.controller.ready();
26
+ }
27
+ async register(username, credentialId, credential) {
28
+ return this.controller.register(username, credentialId, credential);
29
+ }
30
+ async login(address, credentialId, options) {
31
+ return this.controller.login(address, credentialId, options);
32
+ }
33
+ async provision(address, credentialId) {
34
+ return this.controller.provision(address, credentialId);
35
+ }
36
+ async connect() {
37
+ this._account = await this.controller.connect();
38
+ if (!this._account) {
39
+ return Promise.reject("account not found");
40
+ }
41
+ return {
42
+ account: this._account.address,
43
+ chainId: await this.chainId(),
44
+ };
45
+ }
46
+ disconnect() {
47
+ return this.controller.disconnect();
48
+ }
49
+ account() {
50
+ if (!this._account) {
51
+ return Promise.reject("account not found");
52
+ }
53
+ return Promise.resolve(this._account);
54
+ }
55
+ async issueStarterPack(id) {
56
+ return this.controller.issueStarterPack(id);
57
+ }
58
+ async showQuests(gameId) {
59
+ return this.controller.showQuests(gameId);
60
+ }
61
+ }
62
+ export default ControllerConnector;
63
+ const icon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjkiIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA2OSA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMy41NTEzIDAuMDM5MDYyNUg0NC42Mjc4TDQ0LjcwMTIgMC4wNDE3NTc4QzQ2LjI2MjQgMC4wOTkwOTkyIDQ3Ljc5NDggMC40NzQ3OTUgNDkuMjA0OSAxLjE0NTA5TDYzLjUyMjcgNy4xODc5NUw2My42NTIyIDcuMjU0MDRDNjUuMDExOCA3Ljk0ODEyIDY2LjE0NzggOS4wMTA3NyA2Ni45MzE2IDEwLjMxOTNDNjcuNzA4MSAxMS42MTU3IDY4LjEwODUgMTMuMTAyMSA2OC4wODg5IDE0LjYxMjFWMzguNjg0QzY4LjA4ODkgMzguNzEgNjguMDg5IDM4LjczNzYgNjguMDg5MSAzOC43NjY2QzY4LjA5MTQgMzkuNjQwOSA2OC4wOTc0IDQxLjgzNTYgNjYuMTY5NyA0My43NjgxTDYxLjY2MjYgNDguMjg2NUM2MC44OTEzIDQ5LjA1OTggNTkuOTY3IDQ5LjY3NDkgNTguODA3IDQ5Ljk4NDlDNTcuOTIxNyA1MC4yMjE1IDU3LjA1MzUgNTAuMjE3IDU2LjY2MyA1MC4yMTVDNTYuNjMxMSA1MC4yMTQ4IDU2LjYwMjQgNTAuMjE0NyA1Ni41NzcxIDUwLjIxNDdMNTAuMzM4NSA1MC4yMDk5TDUwLjMzNjIgNTYuMjM1M0gxNy45MjkzVjUwLjIxNDdIMTEuNjA0QzExLjU3ODggNTAuMjE0NyAxMS41NTAxIDUwLjIxNDggMTEuNTE4MiA1MC4yMTVDMTEuMTI3NiA1MC4yMTcgMTAuMjU5NSA1MC4yMjE1IDkuMzc0MTYgNDkuOTg0OUM4LjIxNDUgNDkuNjc0OSA3LjI5MDQgNDkuMDYwMiA2LjUxOTEyIDQ4LjI4NzFMMi4wMTAxMSA0My43Njg3QzAuMDgyNDUwMyA0MS44MzYyIDAuMDg3Nzg0NCAzOS42NDA5IDAuMDkwMTUyNCAzOC43NjY2QzAuMDkwMjMwOSAzOC43Mzc2IDAuMDkwMzA1NSAzOC43MSAwLjA5MDMwNTUgMzguNjg0VjE0LjYxMjdDMC4wNzA0MyAxMy4xMDI1IDAuNDcwNjMgMTEuNjE1NyAxLjI0NzI5IDEwLjMxOTJDMi4wMzEzOSA5LjAxMDE4IDMuMTY3OTIgNy45NDczOCA0LjUyODExIDcuMjUzNUw0LjY1Njk3IDcuMTg3NzZMMTguOTcyOCAxLjE0NDg5QzIwLjM4MzUgMC40NzQ4MDggMjEuOTE2MiAwLjA5OTE5NTUgMjMuNDc3OCAwLjA0MTc2NUwyMy41NTEzIDAuMDM5MDYyNVoiIGZpbGw9IiMwRjE0MTAiLz4KPHBhdGggZD0iTTIyLjI4NjMgMjIuOTcyOUg0NS42NDdWMTcuMDcxN0gyMi4yOTIyQzIyLjI5MjIgMTcuNjc0NiAyMi4yODYzIDIyLjk3MjkgMjIuMjg2MyAyMi45NzI5WiIgZmlsbD0iI0ZCQ0I0QSIvPgo8cGF0aCBkPSJNNjEuODMzNCAxMC44MTY3TDQ3LjU1OTEgNC43OTIxM0M0Ni42MjA4IDQuMzMzODggNDUuNTk3NCA0LjA3NzM3IDQ0LjU1NDQgNC4wMzkwNkgyMy42MjQ4QzIyLjU4MTIgNC4wNzc0NCAyMS41NTcxIDQuMzMzOTQgMjAuNjE4MiA0Ljc5MjEzTDYuMzQ1NzkgMTAuODE2N0M1LjY1NTMgMTEuMTY4OSA1LjA3NzYxIDExLjcwODggNC42Nzg3NiAxMi4zNzQ3QzQuMjc5OSAxMy4wNDA1IDQuMDc1OTggMTMuODA1NCA0LjA5MDMxIDE0LjU4MlYzOC42ODRDNC4wOTAzMSAzOS40MzcxIDQuMDkwMyA0MC4xOTAxIDQuODQxNDggNDAuOTQzMkw5LjM1MDQ5IDQ1LjQ2MTZDMTAuMTAxNyA0Ni4yMTQ3IDEwLjY2NTUgNDYuMjE0NyAxMS42MDQgNDYuMjE0N0gyMS45MjkzQzIxLjkyOTMgNDYuODYyMSAyMS45MjkzIDUyLjIzNTMgMjEuOTI5MyA1Mi4yMzUzSDQ2LjMzNzdWNDYuMjA2OUgyMS45NDg4VjQwLjE5MDFIMTAuODUyOEMxMC4xMDE3IDQwLjE5MDEgMTAuMTAxNyAzOS40MzcxIDEwLjEwMTcgMzkuNDM3MVYxMC44MTY3QzEwLjEwMTcgMTAuODE2NyAxMC4xMDE3IDEwLjA2MzYgMTAuODUyOCAxMC4wNjM2SDU3LjMyODNDNTguMDc5NSAxMC4wNjM2IDU4LjA3OTUgMTAuODE2NyA1OC4wNzk1IDEwLjgxNjdWMzkuNDM3MUM1OC4wNzk1IDM5LjQzNzEgNTguMDc5NSA0MC4xOTAxIDU3LjMyODMgNDAuMTkwMUg0Ni4zNDM2TDQ2LjMzNzcgNDYuMjA2OUw1Ni41NzcxIDQ2LjIxNDdDNTcuNTE1NiA0Ni4yMTQ3IDU4LjA3OTUgNDYuMjE0NyA1OC44MzA3IDQ1LjQ2MTZMNjMuMzM3NyA0MC45NDMyQzY0LjA4ODkgNDAuMTkwMSA2NC4wODg5IDM5LjQzNzEgNjQuMDg4OSAzOC42ODRWMTQuNTgyQzY0LjEwMyAxMy44MDU1IDYzLjg5OSAxMy4wNDA2IDYzLjUwMDEgMTIuMzc0OEM2My4xMDEzIDExLjcwOSA2Mi41MjM4IDExLjE2OTEgNjEuODMzNCAxMC44MTY3WiIgZmlsbD0iI0ZCQ0I0QSIvPgo8L3N2Zz4K";
64
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACjD,OAAO,UAAiC,MAAM,uBAAuB,CAAC;AAGtE,MAAM,mBAAoB,SAAQ,SAAS;IAIzC,YACE,QAAmB,EACnB,OAIC;QAED,KAAK,EAAE,CAAC;QAID,OAAE,GAAG,WAAW,CAAC;QAEjB,SAAI,GAAG,WAAW,CAAC;QAEnB,SAAI,GAAG;YACd,IAAI,EAAE,IAAI;YACV,KAAK,EAAE,IAAI;SACZ,CAAC;QAVA,IAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;IACtD,CAAC;IAWD,KAAK,CAAC,OAAO;QACX,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;YACnB,OAAO,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAAC,CAAC;QACpD,CAAC;QACD,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QAC7C,OAAO,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;IACtC,CAAC;IAED,SAAS;QACP,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK;QACH,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;IACjC,CAAC;IAED,KAAK,CAAC,QAAQ,CACZ,QAAgB,EAChB,YAAoB,EACpB,UAAoC;QAEpC,OAAO,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,QAAQ,EAAE,YAAY,EAAE,UAAU,CAAC,CAAC;IACtE,CAAC;IAED,KAAK,CAAC,KAAK,CACT,OAAe,EACf,YAAoB,EACpB,OAGC;QAED,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,CAAC,CAAC;IAC/D,CAAC;IAED,KAAK,CAAC,SAAS,CAAC,OAAe,EAAE,YAAoB;QACnD,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,OAAO,EAAE,YAAY,CAAC,CAAC;IAC1D,CAAC;IAED,KAAK,CAAC,OAAO;QACX,IAAI,CAAC,QAAQ,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC;QAEhD,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;YACnB,OAAO,OAAO,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC;QAC7C,CAAC;QAED,OAAO;YACL,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,OAAO;YAC9B,OAAO,EAAE,MAAM,IAAI,CAAC,OAAO,EAAE;SAC9B,CAAC;IACJ,CAAC;IAED,UAAU;QACR,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,EAAE,CAAC;IACtC,CAAC;IAED,OAAO;QACL,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;YACnB,OAAO,OAAO,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC;QAC7C,CAAC;QACD,OAAO,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IACxC,CAAC;IAED,KAAK,CAAC,gBAAgB,CAAC,EAAU;QAC/B,OAAO,IAAI,CAAC,UAAU,CAAC,gBAAgB,CAAC,EAAE,CAAC,CAAC;IAC9C,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,MAAc;QAC7B,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;IAC5C,CAAC;CACF;AAED,eAAe,mBAAmB,CAAC;AAEnC,MAAM,IAAI,GACR,w8FAAw8F,CAAC"}
package/package.json CHANGED
@@ -1,32 +1,26 @@
1
1
  {
2
2
  "name": "@cartridge/connector",
3
- "version": "0.3.18",
3
+ "version": "0.3.20",
4
4
  "description": "Cartridge Controler Connector",
5
- "main": "lib/index.js",
6
- "types": "lib/index.d.ts",
7
- "scripts": {
8
- "build": "tsc",
9
- "prepublish": "yarn build",
10
- "dev": "tsc --watch",
11
- "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
12
- "test:watch": "jest --watchAll",
13
- "test": "jest --ci --runInBand"
14
- },
5
+ "module": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "type": "module",
15
8
  "files": [
16
- "lib"
9
+ "dist"
17
10
  ],
11
+ "dependencies": {
12
+ "@starknet-react/core": "^2.1.5",
13
+ "starknet": "^6.6.0",
14
+ "typescript": "^5.4.5",
15
+ "@cartridge/controller": "^0.3.20"
16
+ },
18
17
  "devDependencies": {
19
- "@types/jest": "^26.0.18",
20
- "@types/node": "^17.0.23",
21
- "jest": "^26.6.3",
22
- "ts-jest": "^26.5.1",
23
- "ts-node": "^10.4.0",
24
- "tslib": "^2.3.1",
25
- "typescript": "^4.5.4"
18
+ "@cartridge/tsconfig": "^0.0.1"
26
19
  },
27
- "dependencies": {
28
- "@cartridge/controller": "0.3.18",
29
- "@starknet-react/core": "^0.16.0",
30
- "starknet": "^4.22.0"
20
+ "scripts": {
21
+ "build": "tsc",
22
+ "prepublish": "pnpm build",
23
+ "dev": "tsc",
24
+ "format": "prettier --write \"src/**/*.ts\""
31
25
  }
32
- }
26
+ }
package/lib/index.js DELETED
@@ -1,88 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __importDefault = (this && this.__importDefault) || function (mod) {
12
- return (mod && mod.__esModule) ? mod : { "default": mod };
13
- };
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- const core_1 = require("@starknet-react/core");
16
- const controller_1 = __importDefault(require("@cartridge/controller"));
17
- class ControllerConnector extends core_1.Connector {
18
- constructor(policies, options) {
19
- super({ options });
20
- this._account = null;
21
- this.controller = new controller_1.default(policies, options);
22
- }
23
- id() {
24
- return "cartridge";
25
- }
26
- name() {
27
- return "Cartridge";
28
- }
29
- available() {
30
- return true;
31
- }
32
- ready() {
33
- return __awaiter(this, void 0, void 0, function* () {
34
- return yield this.controller.ready();
35
- });
36
- }
37
- register(username, credentialId, credential) {
38
- return __awaiter(this, void 0, void 0, function* () {
39
- return this.controller.register(username, credentialId, credential);
40
- });
41
- }
42
- login(address, credentialId, options) {
43
- return __awaiter(this, void 0, void 0, function* () {
44
- return this.controller.login(address, credentialId, options);
45
- });
46
- }
47
- provision(address, credentialId) {
48
- return __awaiter(this, void 0, void 0, function* () {
49
- return this.controller.provision(address, credentialId);
50
- });
51
- }
52
- connect() {
53
- return __awaiter(this, void 0, void 0, function* () {
54
- this._account = yield this.controller.connect();
55
- if (!this._account) {
56
- throw new Error("account not found");
57
- }
58
- return this._account;
59
- });
60
- }
61
- disconnect() {
62
- return __awaiter(this, void 0, void 0, function* () {
63
- return this.controller.disconnect();
64
- });
65
- }
66
- account() {
67
- return Promise.resolve(this._account);
68
- }
69
- issueStarterPack(id) {
70
- return __awaiter(this, void 0, void 0, function* () {
71
- return this.controller.issueStarterPack(id);
72
- });
73
- }
74
- showQuests(gameId) {
75
- return __awaiter(this, void 0, void 0, function* () {
76
- return this.controller.showQuests(gameId);
77
- });
78
- }
79
- initEventListener(accountChangeCb) {
80
- // TODO
81
- return Promise.resolve();
82
- }
83
- removeEventListener(accountChangeCb) {
84
- // TODO
85
- return Promise.resolve();
86
- }
87
- }
88
- exports.default = ControllerConnector;
@@ -1 +0,0 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/setBatchUpdatesFn.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/subscribable.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/queryObserver.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/queryCache.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/logger.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/removable.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/query.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/utils.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/queryClient.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/mutationObserver.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/mutationCache.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/mutation.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/types.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/retryer.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/queriesObserver.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/infiniteQueryObserver.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/notifyManager.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/focusManager.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/onlineManager.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/hydration.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/query-core/build/lib/index.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/types.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/useQueries.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/useQuery.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/QueryClientProvider.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/QueryErrorResetBoundary.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/Hydrate.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/useIsFetching.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/useIsMutating.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/useMutation.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/useInfiniteQuery.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/isRestoring.d.ts","../../node_modules/@starknet-react/core/node_modules/@tanstack/react-query/build/lib/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/bn.js/index.d.ts","../../node_modules/ts-custom-error/dist/custom-error.d.ts","../../node_modules/starknet/dist/index.d.ts","../../node_modules/@starknet-react/core/dist/connectors/injected.d.ts","../../node_modules/@starknet-react/core/dist/connectors/base.d.ts","../../node_modules/@starknet-react/core/dist/connectors/index.d.ts","../../node_modules/@starknet-react/core/dist/providers/starknet.d.ts","../../node_modules/@starknet-react/core/dist/providers/transaction.d.ts","../../node_modules/@starknet-react/core/dist/providers/index.d.ts","../../node_modules/@starknet-react/core/dist/hooks/account.d.ts","../../node_modules/@starknet-react/core/dist/hooks/block.d.ts","../../node_modules/@starknet-react/core/dist/hooks/call.d.ts","../../node_modules/@starknet-react/core/dist/hooks/connectors.d.ts","../../node_modules/@starknet-react/core/dist/hooks/contract.d.ts","../../node_modules/@starknet-react/core/dist/hooks/deploy.d.ts","../../node_modules/@starknet-react/core/dist/hooks/execute.d.ts","../../node_modules/@starknet-react/core/dist/hooks/invoke.d.ts","../../node_modules/@starknet-react/core/dist/network.d.ts","../../node_modules/@starknet-react/core/dist/hooks/network.d.ts","../../node_modules/@starknet-react/core/dist/hooks/sign.d.ts","../../node_modules/@starknet-react/core/dist/hooks/transaction.d.ts","../../node_modules/@starknet-react/core/dist/hooks/receipt.d.ts","../../node_modules/@starknet-react/core/dist/hooks/starknetid.d.ts","../../node_modules/@starknet-react/core/dist/hooks/index.d.ts","../../node_modules/@starknet-react/core/dist/index.d.ts","../../controller/node_modules/starknet/dist/index.d.ts","../../node_modules/@cartridge/penpal/lib/enums.d.ts","../../node_modules/@cartridge/penpal/lib/types.d.ts","../../node_modules/@cartridge/penpal/lib/parent/connectToChild.d.ts","../../node_modules/@cartridge/penpal/lib/child/connectToParent.d.ts","../../node_modules/@cartridge/penpal/lib/index.d.ts","../../controller/lib/types.d.ts","../../controller/lib/errors.d.ts","../../controller/lib/utils.d.ts","../../controller/lib/inject.d.ts","../../controller/lib/index.d.ts","../src/index.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/bonjour/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/mime/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/history/DOMUtils.d.ts","../../node_modules/@types/history/createBrowserHistory.d.ts","../../node_modules/@types/history/createHashHistory.d.ts","../../node_modules/@types/history/createMemoryHistory.d.ts","../../node_modules/@types/history/LocationUtils.d.ts","../../node_modules/@types/history/PathUtils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/js-cookie/index.d.ts","../../node_modules/@types/js-yaml/index.d.ts","../../node_modules/parse5/dist/common/html.d.ts","../../node_modules/parse5/dist/common/token.d.ts","../../node_modules/parse5/dist/common/error-codes.d.ts","../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../node_modules/parse5/dist/tokenizer/index.d.ts","../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../node_modules/parse5/dist/parser/index.d.ts","../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../node_modules/parse5/dist/serializer/index.d.ts","../../node_modules/parse5/dist/common/foreign-content.d.ts","../../node_modules/parse5/dist/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/jsonwebtoken/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/lodash.mergewith/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/pbkdf2/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/q/index.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-dom/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-router/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-config/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-router-config/index.d.ts","../../node_modules/@types/react-router-dom/node_modules/@types/react/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/sax/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/secp256k1/index.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/serve-index/index.d.ts","../../node_modules/@types/sockjs/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/testing-library__jest-dom/matchers.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/treeify/index.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/react-router-config/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-router-dom/node_modules/@types/react/global.d.ts","../../node_modules/@types/react-router/node_modules/@types/react/global.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2f93dda35dafec68ec217c9ce67f0f4fbbbb030c055ac312641565ad60dd7e26","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5917af4ff931b050dba49a1dedd9c00f15f7b3dc4345ad8491bfacd2ec68ed32","affectsGlobalScope":true},"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","d81ac5fa56a650daffd46e0fcb6f8bdd56db3a03e42dac256db1da4448089f0b","a26f0c964f5c919a17922ee048843e9006ef56d7b19200478263bbfcf1b2c422","fe34dfc033be1144362e549ba55b92bde147a6c6d92edf17e4d5597512b1ff9a","3c46b5e7a836ba669bd9b128b649c8925e7ab25f69badc9f2f4eb27d6ea190eb","0dd7bc3250da0677a9f39147800d5209b360d3d6561a371d13f8095983791bec","e75821710f5adce6110067e4031c79ce8f562c934ae74d8409fe98d9396ba44e","95fe50f64fc00ac887c9fe5a71b2b64bed3ccf659dd56494ecbc0f184fbd989f","1dcd77c12dde563791260ab041dc4e2e3f315bee5017110469eac0ec1cb87e73","c3d4e154af61b48b1a643ac85496728fe9d6bf08185b94fb1f17ab1a8fe86532","a5a2c8dfc3f9cfca91ed20baab8c4e52b8dc2336557b8038aef96533007e4bd4","9d2022af216a6704c40b8ba9b298650e5761828916a9122aed2a97d57e5d393c","f8ddcd33927e31f4fb9ddac3dee0a6ea81f7b19b43259e1fab4e69eb87b080f5","51affde30ce0c6d16863b353a108ff5cc016cafcd29fa0fcb41e01670ec2e448","41d6b856dd5b750adfab90997654c91c9e011774f10839d7025e97bf33d6727c","c2f19013bd30a8bc03f02362f5ff24f336fc2d7e4c9bafed81a9c149ac9399fa","160c862dbb7cb9b459486cbd7c88d002e322a5d8dc37cb16b023aa98cd387dea","a419ef898e624f14b3619f4a2bf889ab2cd0d0e6165fe4e8eec8e4994173df92","b42b3ec88494f4a7f208335e75a610c44d7b26e86f37644506d33cc9190afd1e","db6ec19c2f7c8e1e5121cdcc78cc91af4b7a1df2ec444ff6e036fb669df1edee","58dfcd08cf27f0069b972333886b86797eca1beb6c5a3734cf54dc585e323b7e","dfc6d142a4a24d1294301a0245555a17471fc6ae70172e41e9304b63300939c8","4c60d84b1f113cfd2953820e17abbd34d448a304183f8e60192e1229bd5dc964","1b338d38c15dbed19dda260198f17431fc5a0b83583b5c6ce0605da405b2413f",{"version":"70012d8a9a48f28f325739c37b8b7686fc43b81ebd20ab75151caedd911e1c0f","affectsGlobalScope":true},"fec4dc4428894c8580c4499a2fb3597f28a91f38a91dc85d0f81c084f5edb564","fabcf8a317c5a9e0b9f10e4158b6fff596ca4b69ce141186abb5db073626a7b9","19992c04ab7af902a2be49e11d16ebefe80883a276b984249e18e20ea9dac8c6","b1132c9f4e5585968fb6c6fc6da93725d9b84c0d672c2f5a6dd43ccf41b6a0ef","1323085c5e51f01e7e262e7e92d2458905a7232c66dfa891321d7b87d1f517e5","3ef31e112d99b9e3061f2fd57faa0503e309c8dd5b1da4f18635c4060655d245","c038d8a953b5728afe6efe989414d6ef03f411af3f239072c970e419c2ab7389","8ed3fbb7e972ba87c638c0537bb14419a056f826e490cf7d789018dd57414127","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","01f7828047b5c6703d3c601473618b448f5506a88fcac852638b0715c3abf4eb","0d965d3c9c10fddf9146e1552951a8c691cc49743d9ffc132bf0afc4510b51e2","95372c6e9dc5f86db839489f9877e160a6b1ae7c73b799cbdaf4c00662ab9237","5c5781be52bd71cd9166f9087f67f23f43bd9bd2a4e8151affef76bfac33b2ff","8b3e14cec5eb7bd5dbb6c065ec35086679af61215d442a968329c0588d8591e0","1fa180160d8ae36f03e9024fa38daeba62e50ae350e6cc35e9a182043988145e","7b54395a6746b564083d8c5a64935d98edd19d2cb655478bd6af919961d64386","f4edf6187109a15bf29ca9874489b23de9ce9263d627cdc3feded3bf86a5761a","3d8a4025bcfaa03ea01f8d338c24263074972d35b214281e084fcb47ab0ddead","72eec1f7f8d50bd43acafae92d7d87f79e6b8801e2cdb30edd08c2fde68e9a3c","6faca698dfad4d5917a03c5ebeeabf906667c1a13f90775a82ec04621c3e07dc","f9172674c28fa3fa627260360b0b472f762dc99b9dd4c040cb0a5b454ec4cbb6","f43b218889d85d794a8a60b0441d731e2a0d6225e21aa56cbd4b70639a506aba","d7ced2a88d0940a0e39246198c559b12ef28ae9086973ddfe62b092565cb403d","9fabb36b98a6da5476529e79c31e2e98897cb9542c83f78d23b177bd60b109cd","81486ab105b5c59f745de078c16282e06161ffd61c8b29748c9477f7c541b092","9faab547d15cb01d7c43cca6c393e263a4593741ce961e1a2c5a0a3903aed335","f9ac73ea2419de24fa41349f52974109f1e9be4f1773200941164deec890beb6","88b2d1c37e7aeca094a0c70d00d37b20716d404d3e95b5a2e1be42281107a31d","904dbd32143b141e87f3eb396a85f43a1b979a651ce7536abcb3b9e9270360e3","aab60bdd7d4420319280f118900b30bfb65b23ce1f827382b24cc6dbef83fc4e","48e74902fc4fde3c789bb7e44712bd070084fab6a1af8e806718861245bb1220","2f7bfb46854a90ac15dff602cbf6e65ca504aa9291c2681547dc480e5b3f721f","fc4d2c41eb141e520021b44144ba54ffcd0e6d81748f4ba6138cb5d1d56cb293","68ac480d89aa93b24c2003f509d149c6416c7e7a783d995e9fbceb3096572de4","043fa5b050252da2bdc0736dcf51817a5238ddcd3a04468dc0c0a11213b97c63","3df8a74f3e9190bff7ee5d39798c8364bf79e6b826e3615a2333738c9ffb15c9","e056f2a312059425d424d8ed6c8f5708a248ca7b5b56593e0987eca245f6f81b","488c54805edc3ae2963d63e8f36ead0b2b84738dcf56d9ccc056d1b0edec00cc","35f8e1f68e84ca2c19dfcba5bfbbe32b3924280ab6251986943f3fd8ac11272b","d8e892ddb0f5ddd99efff7b36a3bc8d05ad0448a52dcfa6b20233855f778a8c3","b3e324d2117a58cb9ea9b729c11501012a0a67db501aa43cf6c4d01168677073","0cd4b0de4005f31dd0a18b21b499bbd268b9977236db1438e94ab31cf09654fe","4a844ab1fdcd0d2a9e5a5d13806f547dd5525c5054924b8b72bfea814cf1b2de","9b697d628268e60a680e774ec1d9e5087a05c078fe7ee89e8b6d3a9cbb379f65","6b09b8341800f9af893e52b1a89611be4dfc113730537d4770fb699afed68434",{"version":"d65ead96f60be5d8b2122885fdde0c7f1da155929b3fc8891fa222dc4d5f5a5a","signature":"94999666d2a86eb56bc1e57370657bea3c1d5ebd2866311614ac210ddda8dac6"},"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","2ff9995137f3e5d68971388ec58af0c79721626323884513f9f5e2e996ac1fdd","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1a7cc144992d79b062c22ac0309c6624dbb0d49bbddff7ea3b9daa0c17bcac0a","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","331dd4fb49f27df3e88bcd1361a063de1e9bcc7d463d6dc386b0c0d690c1a66f","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a",{"version":"82fcf338bc21711d93d65f981a7182f9942d3ac1f268c4480537c9b62c89d10d","affectsGlobalScope":true},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","c84d0f714fe122193c21c0f0917e873beb3a03fa3422ceb2fbd1ebc0558790a0","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0",{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","913754f9281683f22d98d0ba7796896cee30c302baefa3dda69f61af8de244d8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"15418e0b2cb1655d7503fd57bd55d761764d9d1d5b7c4941bf8bca0e3831a921","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","172dddc700c620827370b416d4aafbd7a4abd6f929cb50d6448cf6e3baeca38c","8cfa7e547e353e06dc3b486a400f95eef3a4aa9ded83ae38f325c0ce02e6d708","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","016821973966c7663ee27e1d1c75fa51d5e4f942506c44e083feda52c82e0848","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","657d689b204952d36655db5c6ba626414ff5e97fcc278f41edf872a6d3cc9e92","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","7426c455724cc1e1e7e6de540803db0a5858563e442b0640819dd316e4bc913c","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd0589ca571ad090b531d8c095e26caa53d4825c64d3ff2b2b1ab95d72294175",{"version":"669843ecafb89ae1e944df06360e8966219e4c1c34c0d28aa2503272cdd444a7","affectsGlobalScope":true},"13cc3979e1f548aacaa23911f2d6e69c1a2999266c4a1952806de1e9593bdaaa","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","bb4ed283cfb3db7ec1d4bb79c37f5e96d39b340f1f4de995c4b0b836c8d5fa05","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7a79ca84e4370ed2e1afaa99ff7d25194901916b7672e977d16f77af3b71342f","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"68b7968bfe692bb273debb1d38ed534b695f8b387d36b7b7a75a81b03f8bf238","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","a73a445c1e0a6d0f8b48e8eb22dc9d647896783a7f8991cbbc31c0d94bf1f5a2","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","62b931417104c7cb35d0725e1869f51d52d7b18462fd58f32f846a314a42ba10",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},{"version":"78e92f26901faf513581b3db36496e55a25e24ba3e60aa3ab9d48185452a3ab1","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042",{"version":"78e92f26901faf513581b3db36496e55a25e24ba3e60aa3ab9d48185452a3ab1","affectsGlobalScope":true},"6c362c5d50652957065cf52f282a2bf0a456ed3713738d0ee1a9089dbb5b5fe7",{"version":"78e92f26901faf513581b3db36496e55a25e24ba3e60aa3ab9d48185452a3ab1","affectsGlobalScope":true},"2ffcb0c75e294706a4d425ee3ead87826a4cda729fa901c6c605e68948adaf55",{"version":"78e92f26901faf513581b3db36496e55a25e24ba3e60aa3ab9d48185452a3ab1","affectsGlobalScope":true},"8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","8b3ba0006858bfefa8fd045d446377e0fb1738baa819a1f7e4a520644a0dc131","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066","87352bb579421f6938177a53bb66e8514067b4872ccaa5fe08ddbca56364570c","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","49c972b1c491933723861f15cba6ae694466abfd0938ca4f366621127bb51962",{"version":"910199067bfd07a4605bf51001677680e1691f8d403e9d410c0fe33a6079cd58","affectsGlobalScope":true},"e2c3fb7ba470548053dabb65521b89846fffad3a103ddc72b5115d8caa23ce8e","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","09c4b2e2d3070239d563fc690f0cc5db04a2d9b66a23e61aef8b5274e3e9910c"],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"jsx":1,"module":1,"outDir":"./","skipLibCheck":true,"strict":false,"target":2},"fileIdsList":[[133,143,165,176],[133,172],[133,140,166,171,172,173,174,175],[133,166,172],[133,140,166],[133,141,166,172],[133,141,142],[133,179],[133],[133,168],[133,167,168,169,170],[133,167],[133,143,144],[133,144,145],[133,143,145],[133,143,146],[133,143],[133,146],[89,133,143],[133,150,151,152,153,154,155,156,157,159,160,161,162,163],[133,158],[133,146,149,158,164],[56,133,147,148],[56,89,133,143,146],[56,133],[58,133],[63,65,68,69,133],[59,60,61,63,64,65,66,67,68,69,70,71,72,73,74,75,76,133],[59,63,65,69,133],[61,62,66,67,69,133],[58,64,65,66,68,69,133],[58,65,68,69,133],[58,59,63,65,69,133],[59,60,61,62,69,133],[58,59,63,64,65,69,133],[60,61,63,64,67,69,133],[58,63,65,69,133],[69,133],[60,61,63,64,67,68,70,133],[63,68,69,133],[56,77,78,133],[57,77,78,79,80,81,82,83,84,85,86,87,88,133],[56,77,133],[77,78,133],[133,179,180,181,182,183],[133,179,181],[133,140],[108,133,140,185],[100,133,140],[105,108,132,133,140,188,189,190],[132,133,140,194],[108,133,140],[133,198,200],[133,197,198,199],[105,108,133,140,192,193],[133,186,193,194,204],[106,133,140],[133,207],[133,215],[133,209,215],[133,210,211,212,213,214],[105,108,110,113,122,132,133,140],[133,218],[133,220],[133,221],[133,227,229],[133,228],[105,133,135,140,245,246,248],[133,247],[105,133,140],[133,264],[133,252,254,255,256,257,258,259,260,261,262,263,264],[133,252,253,255,256,257,258,259,260,261,262,263,264],[133,253,254,255,256,257,258,259,260,261,262,263,264],[133,252,253,254,256,257,258,259,260,261,262,263,264],[133,252,253,254,255,257,258,259,260,261,262,263,264],[133,252,253,254,255,256,258,259,260,261,262,263,264],[133,252,253,254,255,256,257,259,260,261,262,263,264],[133,252,253,254,255,256,257,258,260,261,262,263,264],[133,252,253,254,255,256,257,258,259,261,262,263,264],[133,252,253,254,255,256,257,258,259,260,262,263,264],[133,252,253,254,255,256,257,258,259,260,261,263,264],[133,252,253,254,255,256,257,258,259,260,261,262,264],[133,252,253,254,255,256,257,258,259,260,261,262,263],[133,203],[133,202],[90,133],[93,133],[94,99,133],[95,105,106,113,122,132,133],[95,96,105,113,133],[97,133],[98,99,106,114,133],[99,122,129,133],[100,102,105,113,133],[101,133],[102,103,133],[104,105,133],[105,133],[105,106,107,122,132,133],[105,106,107,122,133],[108,113,122,132,133],[105,106,108,109,113,122,129,132,133],[108,110,122,129,132,133],[90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139],[105,111,133],[112,132,133],[102,105,113,122,133],[114,133],[115,133],[93,116,133],[117,131,133,137],[118,133],[119,133],[105,120,133],[120,121,133,135],[105,122,123,124,133],[122,124,133],[122,123,133],[125,133],[126,133],[105,127,128,133],[127,128,133],[99,113,122,129,133],[130,133],[113,131,133],[94,108,119,132,133],[99,133],[122,133,134],[133,135],[133,136],[94,99,105,107,116,122,132,133,135,137],[122,133,138],[133,275],[53,54,55,133,274],[133,215,275,278],[53,54,55,133,300],[53,54,55,133,301],[133,215,275],[53,54,55,133,302],[52,53,54,55,133],[108,122,133,140],[122,133,140],[106,133,205],[108,133,140,203],[133,230,292],[133,295],[105,108,110,122,129,132,133,138,140],[133,298],[133,223,224],[133,223,224,225,226],[133,234],[133,233,234],[133,233],[133,233,234,235,237,238,241,242,243,244],[133,234,238],[133,233,234,235,237,238,239,240],[133,233,238],[133,238,242],[133,234,235,236],[133,235],[133,233,234,238],[143,165,176],[133,140,143,171,172,173,174,175],[133,143,172],[133,140,143],[133,141,143,172]],"referencedMap":[[177,1],[173,2],[176,3],[175,4],[172,5],[174,6],[166,7],[181,8],[179,9],[170,10],[167,9],[171,11],[169,10],[168,12],[145,13],[146,14],[144,15],[150,16],[151,17],[152,17],[153,18],[154,17],[155,17],[156,19],[164,20],[157,17],[159,21],[162,17],[160,17],[163,9],[161,17],[165,22],[158,17],[149,23],[147,24],[148,25],[74,26],[76,27],[77,28],[72,29],[61,9],[68,30],[67,31],[66,32],[73,9],[75,26],[71,33],[63,34],[60,35],[65,36],[59,37],[62,9],[70,38],[58,9],[69,39],[64,40],[83,41],[81,41],[82,25],[89,42],[88,25],[57,9],[78,43],[87,44],[84,44],[85,44],[86,44],[79,44],[80,44],[178,9],[184,45],[180,8],[182,46],[183,8],[141,47],[186,48],[187,49],[191,50],[195,51],[185,52],[196,9],[201,53],[197,9],[200,54],[198,9],[194,55],[205,56],[206,57],[208,58],[209,9],[213,59],[214,59],[210,60],[211,60],[212,60],[215,61],[216,9],[189,9],[217,62],[219,63],[220,9],[221,64],[222,65],[230,66],[229,67],[228,9],[231,9],[232,9],[247,68],[248,69],[199,9],[249,9],[250,9],[251,47],[188,70],[265,71],[253,72],[254,73],[252,74],[255,75],[256,76],[257,77],[258,78],[259,79],[260,80],[261,81],[262,82],[263,83],[264,84],[266,58],[202,85],[203,86],[267,9],[90,87],[91,87],[93,88],[94,89],[95,90],[96,91],[97,92],[98,93],[99,94],[100,95],[101,96],[102,97],[103,97],[104,98],[105,99],[106,100],[107,101],[92,9],[139,9],[108,102],[109,103],[110,104],[140,105],[111,106],[112,107],[113,108],[114,109],[115,110],[116,111],[117,112],[118,113],[119,114],[120,115],[121,116],[122,117],[124,118],[123,119],[125,120],[126,121],[127,122],[128,123],[129,124],[130,125],[131,126],[132,127],[133,128],[134,129],[135,130],[136,131],[137,132],[138,133],[268,9],[269,9],[270,9],[271,47],[272,9],[54,9],[273,9],[193,9],[192,9],[276,134],[274,9],[275,135],[280,136],[279,137],[282,136],[281,138],[278,139],[277,140],[52,9],[56,141],[283,47],[190,142],[284,9],[285,143],[286,9],[55,9],[287,47],[288,9],[289,144],[204,145],[290,52],[291,9],[293,146],[292,9],[246,9],[294,9],[296,147],[295,9],[207,9],[297,148],[298,9],[299,149],[218,9],[53,9],[223,9],[225,150],[227,151],[226,150],[224,9],[235,152],[244,153],[233,9],[234,154],[245,155],[240,156],[241,157],[239,158],[243,159],[237,160],[236,161],[242,162],[238,153],[143,7],[142,9],[11,9],[12,9],[14,9],[13,9],[2,9],[15,9],[16,9],[17,9],[18,9],[19,9],[20,9],[21,9],[22,9],[3,9],[4,9],[26,9],[23,9],[24,9],[25,9],[27,9],[28,9],[29,9],[5,9],[30,9],[31,9],[32,9],[33,9],[6,9],[34,9],[35,9],[36,9],[37,9],[7,9],[42,9],[38,9],[39,9],[40,9],[41,9],[8,9],[46,9],[43,9],[44,9],[45,9],[47,9],[9,9],[48,9],[49,9],[50,9],[1,9],[10,9],[51,9]],"exportedModulesMap":[[177,163],[173,2],[176,164],[175,165],[172,166],[174,167],[166,7],[181,8],[179,9],[170,10],[167,9],[171,11],[169,10],[168,12],[145,13],[146,14],[144,15],[150,16],[151,17],[152,17],[153,18],[154,17],[155,17],[156,19],[164,20],[157,17],[159,21],[162,17],[160,17],[163,9],[161,17],[165,22],[158,17],[149,23],[147,24],[148,25],[74,26],[76,27],[77,28],[72,29],[61,9],[68,30],[67,31],[66,32],[73,9],[75,26],[71,33],[63,34],[60,35],[65,36],[59,37],[62,9],[70,38],[58,9],[69,39],[64,40],[83,41],[81,41],[82,25],[89,42],[88,25],[57,9],[78,43],[87,44],[84,44],[85,44],[86,44],[79,44],[80,44],[178,9],[184,45],[180,8],[182,46],[183,8],[141,47],[186,48],[187,49],[191,50],[195,51],[185,52],[196,9],[201,53],[197,9],[200,54],[198,9],[194,55],[205,56],[206,57],[208,58],[209,9],[213,59],[214,59],[210,60],[211,60],[212,60],[215,61],[216,9],[189,9],[217,62],[219,63],[220,9],[221,64],[222,65],[230,66],[229,67],[228,9],[231,9],[232,9],[247,68],[248,69],[199,9],[249,9],[250,9],[251,47],[188,70],[265,71],[253,72],[254,73],[252,74],[255,75],[256,76],[257,77],[258,78],[259,79],[260,80],[261,81],[262,82],[263,83],[264,84],[266,58],[202,85],[203,86],[267,9],[90,87],[91,87],[93,88],[94,89],[95,90],[96,91],[97,92],[98,93],[99,94],[100,95],[101,96],[102,97],[103,97],[104,98],[105,99],[106,100],[107,101],[92,9],[139,9],[108,102],[109,103],[110,104],[140,105],[111,106],[112,107],[113,108],[114,109],[115,110],[116,111],[117,112],[118,113],[119,114],[120,115],[121,116],[122,117],[124,118],[123,119],[125,120],[126,121],[127,122],[128,123],[129,124],[130,125],[131,126],[132,127],[133,128],[134,129],[135,130],[136,131],[137,132],[138,133],[268,9],[269,9],[270,9],[271,47],[272,9],[54,9],[273,9],[193,9],[192,9],[276,134],[274,9],[275,135],[280,136],[279,137],[282,136],[281,138],[278,139],[277,140],[52,9],[56,141],[283,47],[190,142],[284,9],[285,143],[286,9],[55,9],[287,47],[288,9],[289,144],[204,145],[290,52],[291,9],[293,146],[292,9],[246,9],[294,9],[296,147],[295,9],[207,9],[297,148],[298,9],[299,149],[218,9],[53,9],[223,9],[225,150],[227,151],[226,150],[224,9],[235,152],[244,153],[233,9],[234,154],[245,155],[240,156],[241,157],[239,158],[243,159],[237,160],[236,161],[242,162],[238,153],[143,7],[142,9],[11,9],[12,9],[14,9],[13,9],[2,9],[15,9],[16,9],[17,9],[18,9],[19,9],[20,9],[21,9],[22,9],[3,9],[4,9],[26,9],[23,9],[24,9],[25,9],[27,9],[28,9],[29,9],[5,9],[30,9],[31,9],[32,9],[33,9],[6,9],[34,9],[35,9],[36,9],[37,9],[7,9],[42,9],[38,9],[39,9],[40,9],[41,9],[8,9],[46,9],[43,9],[44,9],[45,9],[47,9],[9,9],[48,9],[49,9],[50,9],[1,9],[10,9],[51,9]],"semanticDiagnosticsPerFile":[177,173,176,175,172,174,166,181,179,170,167,171,169,168,145,146,144,150,151,152,153,154,155,156,164,157,159,162,160,163,161,165,158,149,147,148,74,76,77,72,61,68,67,66,73,75,71,63,60,65,59,62,70,58,69,64,83,81,82,89,88,57,78,87,84,85,86,79,80,178,184,180,182,183,141,186,187,191,195,185,196,201,197,200,198,194,205,206,208,209,213,214,210,211,212,215,216,189,217,219,220,221,222,230,229,228,231,232,247,248,199,249,250,251,188,265,253,254,252,255,256,257,258,259,260,261,262,263,264,266,202,203,267,90,91,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,92,139,108,109,110,140,111,112,113,114,115,116,117,118,119,120,121,122,124,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,268,269,270,271,272,54,273,193,192,276,274,275,280,279,282,281,278,277,52,56,283,190,284,285,286,55,287,288,289,204,290,291,293,292,246,294,296,295,207,297,298,299,218,53,223,225,227,226,224,235,244,233,234,245,240,241,239,243,237,236,242,238,143,142,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,34,35,36,37,7,42,38,39,40,41,8,46,43,44,45,47,9,48,49,50,1,10,51]},"version":"4.6.3"}