@maci-protocol/domainobjs 0.0.0-ci.1e276ed
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/CHANGELOG.md +183 -0
- package/LICENSE +22 -0
- package/README.md +78 -0
- package/build/ts/ballot.d.ts +68 -0
- package/build/ts/ballot.d.ts.map +1 -0
- package/build/ts/ballot.js +120 -0
- package/build/ts/ballot.js.map +1 -0
- package/build/ts/commands/PCommand.d.ts +89 -0
- package/build/ts/commands/PCommand.d.ts.map +1 -0
- package/build/ts/commands/PCommand.js +171 -0
- package/build/ts/commands/PCommand.js.map +1 -0
- package/build/ts/commands/index.d.ts +3 -0
- package/build/ts/commands/index.d.ts.map +1 -0
- package/build/ts/commands/index.js +6 -0
- package/build/ts/commands/index.js.map +1 -0
- package/build/ts/commands/types.d.ts +21 -0
- package/build/ts/commands/types.d.ts.map +1 -0
- package/build/ts/commands/types.js +3 -0
- package/build/ts/commands/types.js.map +1 -0
- package/build/ts/constants.d.ts +6 -0
- package/build/ts/constants.d.ts.map +1 -0
- package/build/ts/constants.js +9 -0
- package/build/ts/constants.js.map +1 -0
- package/build/ts/index.d.ts +11 -0
- package/build/ts/index.d.ts.map +1 -0
- package/build/ts/index.js +26 -0
- package/build/ts/index.js.map +1 -0
- package/build/ts/keyPair.d.ts +49 -0
- package/build/ts/keyPair.d.ts.map +1 -0
- package/build/ts/keyPair.js +82 -0
- package/build/ts/keyPair.js.map +1 -0
- package/build/ts/message.d.ts +58 -0
- package/build/ts/message.d.ts.map +1 -0
- package/build/ts/message.js +78 -0
- package/build/ts/message.js.map +1 -0
- package/build/ts/privateKey.d.ts +56 -0
- package/build/ts/privateKey.d.ts.map +1 -0
- package/build/ts/privateKey.js +79 -0
- package/build/ts/privateKey.js.map +1 -0
- package/build/ts/publicKey.d.ts +89 -0
- package/build/ts/publicKey.d.ts.map +1 -0
- package/build/ts/publicKey.js +141 -0
- package/build/ts/publicKey.js.map +1 -0
- package/build/ts/stateLeaf.d.ts +83 -0
- package/build/ts/stateLeaf.d.ts.map +1 -0
- package/build/ts/stateLeaf.js +130 -0
- package/build/ts/stateLeaf.js.map +1 -0
- package/build/ts/types.d.ts +75 -0
- package/build/ts/types.d.ts.map +1 -0
- package/build/ts/types.js +3 -0
- package/build/ts/types.js.map +1 -0
- package/build/ts/verifyingKey.d.ts +57 -0
- package/build/ts/verifyingKey.d.ts.map +1 -0
- package/build/ts/verifyingKey.js +96 -0
- package/build/ts/verifyingKey.js.map +1 -0
- package/build/tsconfig.build.tsbuildinfo +1 -0
- package/package.json +55 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { PubKey } from "./publicKey";
|
|
2
|
+
import type { G1Point, G2Point } from "@maci-protocol/crypto";
|
|
3
|
+
/**
|
|
4
|
+
* @notice An interface representing a zk-SNARK proof
|
|
5
|
+
*/
|
|
6
|
+
export interface Proof {
|
|
7
|
+
a: G1Point;
|
|
8
|
+
b: G2Point;
|
|
9
|
+
c: G1Point;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* @notice An interface representing a MACI state leaf
|
|
13
|
+
*/
|
|
14
|
+
export interface IStateLeaf {
|
|
15
|
+
pubKey: PubKey;
|
|
16
|
+
voiceCreditBalance: bigint;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @notice An interface representing a MACI vote option leaf
|
|
20
|
+
*/
|
|
21
|
+
export interface VoteOptionTreeLeaf {
|
|
22
|
+
votes: bigint;
|
|
23
|
+
}
|
|
24
|
+
export interface IJsonKeyPair {
|
|
25
|
+
privKey: string;
|
|
26
|
+
pubKey: string;
|
|
27
|
+
}
|
|
28
|
+
export type IJsonPrivateKey = Pick<IJsonKeyPair, "privKey">;
|
|
29
|
+
export type IJsonPublicKey = Pick<IJsonKeyPair, "pubKey">;
|
|
30
|
+
export interface IJsonStateLeaf {
|
|
31
|
+
pubKey: string;
|
|
32
|
+
voiceCreditBalance: string;
|
|
33
|
+
timestamp: string;
|
|
34
|
+
}
|
|
35
|
+
export type BigNumberish = number | string | bigint;
|
|
36
|
+
export interface IG1ContractParams {
|
|
37
|
+
x: BigNumberish;
|
|
38
|
+
y: BigNumberish;
|
|
39
|
+
}
|
|
40
|
+
export interface IG2ContractParams {
|
|
41
|
+
x: BigNumberish[];
|
|
42
|
+
y: BigNumberish[];
|
|
43
|
+
}
|
|
44
|
+
export interface IVkContractParams {
|
|
45
|
+
alpha1: IG1ContractParams;
|
|
46
|
+
beta2: IG2ContractParams;
|
|
47
|
+
gamma2: IG2ContractParams;
|
|
48
|
+
delta2: IG2ContractParams;
|
|
49
|
+
ic: IG1ContractParams[];
|
|
50
|
+
}
|
|
51
|
+
export interface IVkObjectParams {
|
|
52
|
+
protocol: BigNumberish;
|
|
53
|
+
curve: BigNumberish;
|
|
54
|
+
nPublic: BigNumberish;
|
|
55
|
+
vk_alpha_1: BigNumberish[];
|
|
56
|
+
vk_beta_2: BigNumberish[][];
|
|
57
|
+
vk_gamma_2: BigNumberish[][];
|
|
58
|
+
vk_delta_2: BigNumberish[][];
|
|
59
|
+
vk_alphabeta_12: BigNumberish[][][];
|
|
60
|
+
IC: BigNumberish[][];
|
|
61
|
+
}
|
|
62
|
+
export interface IStateLeafContractParams {
|
|
63
|
+
pubKey: IG1ContractParams;
|
|
64
|
+
voiceCreditBalance: BigNumberish;
|
|
65
|
+
timestamp: BigNumberish;
|
|
66
|
+
}
|
|
67
|
+
export interface IMessageContractParams {
|
|
68
|
+
data: BigNumberish[];
|
|
69
|
+
}
|
|
70
|
+
export interface IJsonBallot {
|
|
71
|
+
votes: BigNumberish[];
|
|
72
|
+
nonce: BigNumberish;
|
|
73
|
+
voteOptionTreeDepth: BigNumberish;
|
|
74
|
+
}
|
|
75
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../ts/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAE9D;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB,CAAC,EAAE,OAAO,CAAC;IACX,CAAC,EAAE,OAAO,CAAC;IACX,CAAC,EAAE,OAAO,CAAC;CACZ;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,MAAM,eAAe,GAAG,IAAI,CAAC,YAAY,EAAE,SAAS,CAAC,CAAC;AAE5D,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;AAE1D,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,kBAAkB,EAAE,MAAM,CAAC;IAC3B,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAC;AAEpD,MAAM,WAAW,iBAAiB;IAChC,CAAC,EAAE,YAAY,CAAC;IAChB,CAAC,EAAE,YAAY,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IAChC,CAAC,EAAE,YAAY,EAAE,CAAC;IAClB,CAAC,EAAE,YAAY,EAAE,CAAC;CACnB;AAED,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,iBAAiB,CAAC;IAC1B,KAAK,EAAE,iBAAiB,CAAC;IACzB,MAAM,EAAE,iBAAiB,CAAC;IAC1B,MAAM,EAAE,iBAAiB,CAAC;IAC1B,EAAE,EAAE,iBAAiB,EAAE,CAAC;CACzB;AAED,MAAM,WAAW,eAAe;IAC9B,QAAQ,EAAE,YAAY,CAAC;IACvB,KAAK,EAAE,YAAY,CAAC;IACpB,OAAO,EAAE,YAAY,CAAC;IACtB,UAAU,EAAE,YAAY,EAAE,CAAC;IAC3B,SAAS,EAAE,YAAY,EAAE,EAAE,CAAC;IAC5B,UAAU,EAAE,YAAY,EAAE,EAAE,CAAC;IAC7B,UAAU,EAAE,YAAY,EAAE,EAAE,CAAC;IAC7B,eAAe,EAAE,YAAY,EAAE,EAAE,EAAE,CAAC;IACpC,EAAE,EAAE,YAAY,EAAE,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,iBAAiB,CAAC;IAC1B,kBAAkB,EAAE,YAAY,CAAC;IACjC,SAAS,EAAE,YAAY,CAAC;CACzB;AAED,MAAM,WAAW,sBAAsB;IACrC,IAAI,EAAE,YAAY,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB,KAAK,EAAE,YAAY,CAAC;IACpB,mBAAmB,EAAE,YAAY,CAAC;CACnC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../ts/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { G1Point, G2Point } from "@maci-protocol/crypto";
|
|
2
|
+
import type { IVkContractParams, IVkObjectParams } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* @notice A TS Class representing a zk-SNARK VerifyingKey
|
|
5
|
+
*/
|
|
6
|
+
export declare class VerifyingKey {
|
|
7
|
+
alpha1: G1Point;
|
|
8
|
+
beta2: G2Point;
|
|
9
|
+
gamma2: G2Point;
|
|
10
|
+
delta2: G2Point;
|
|
11
|
+
ic: G1Point[];
|
|
12
|
+
/**
|
|
13
|
+
* Generate a new VerifyingKey
|
|
14
|
+
* @param alpha1 the alpha1 point
|
|
15
|
+
* @param beta2 the beta2 point
|
|
16
|
+
* @param gamma2 the gamma2 point
|
|
17
|
+
* @param delta2 the delta2 point
|
|
18
|
+
* @param ic the ic points
|
|
19
|
+
*/
|
|
20
|
+
constructor(alpha1: G1Point, beta2: G2Point, gamma2: G2Point, delta2: G2Point, ic: G1Point[]);
|
|
21
|
+
/**
|
|
22
|
+
* Return this as an object which can be passed
|
|
23
|
+
* to the smart contract
|
|
24
|
+
* @returns the object representation of this
|
|
25
|
+
*/
|
|
26
|
+
asContractParam(): IVkContractParams;
|
|
27
|
+
/**
|
|
28
|
+
* Create a new verifying key from a contract representation of the VK
|
|
29
|
+
* @param data the object representation
|
|
30
|
+
* @returns a new VerifyingKey
|
|
31
|
+
*/
|
|
32
|
+
static fromContract(data: IVkContractParams): VerifyingKey;
|
|
33
|
+
/**
|
|
34
|
+
* Check whether this is equal to another verifying key
|
|
35
|
+
* @param vk the other verifying key
|
|
36
|
+
* @returns whether this is equal to the other verifying key
|
|
37
|
+
*/
|
|
38
|
+
equals(vk: VerifyingKey): boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Produce a copy of this verifying key
|
|
41
|
+
* @returns the copy
|
|
42
|
+
*/
|
|
43
|
+
copy(): VerifyingKey;
|
|
44
|
+
/**
|
|
45
|
+
* Deserialize into a VerifyingKey instance
|
|
46
|
+
* @param json the JSON representation
|
|
47
|
+
* @returns the VerifyingKey
|
|
48
|
+
*/
|
|
49
|
+
static fromJSON: (json: string) => VerifyingKey;
|
|
50
|
+
/**
|
|
51
|
+
* Convert an object representation to a VerifyingKey
|
|
52
|
+
* @param data the object representation
|
|
53
|
+
* @returns the VerifyingKey
|
|
54
|
+
*/
|
|
55
|
+
static fromObj: (data: IVkObjectParams) => VerifyingKey;
|
|
56
|
+
}
|
|
57
|
+
//# sourceMappingURL=verifyingKey.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"verifyingKey.d.ts","sourceRoot":"","sources":["../../ts/verifyingKey.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AAEzD,OAAO,KAAK,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAElE;;GAEG;AACH,qBAAa,YAAY;IACvB,MAAM,EAAE,OAAO,CAAC;IAEhB,KAAK,EAAE,OAAO,CAAC;IAEf,MAAM,EAAE,OAAO,CAAC;IAEhB,MAAM,EAAE,OAAO,CAAC;IAEhB,EAAE,EAAE,OAAO,EAAE,CAAC;IAEd;;;;;;;OAOG;gBACS,MAAM,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE;IAQ5F;;;;OAIG;IACH,eAAe,IAAI,iBAAiB;IAUpC;;;;OAIG;IACH,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,iBAAiB,GAAG,YAAY;IAa1D;;;;OAIG;IACH,MAAM,CAAC,EAAE,EAAE,YAAY,GAAG,OAAO;IAiBjC;;;OAGG;IACH,IAAI,IAAI,YAAY;IAgBpB;;;;OAIG;IACH,MAAM,CAAC,QAAQ,GAAI,MAAM,MAAM,KAAG,YAAY,CAG5C;IAEF;;;;OAIG;IACH,MAAM,CAAC,OAAO,GAAI,MAAM,eAAe,KAAG,YAAY,CAiBpD;CACH"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.VerifyingKey = void 0;
|
|
4
|
+
const crypto_1 = require("@maci-protocol/crypto");
|
|
5
|
+
/**
|
|
6
|
+
* @notice A TS Class representing a zk-SNARK VerifyingKey
|
|
7
|
+
*/
|
|
8
|
+
class VerifyingKey {
|
|
9
|
+
/**
|
|
10
|
+
* Generate a new VerifyingKey
|
|
11
|
+
* @param alpha1 the alpha1 point
|
|
12
|
+
* @param beta2 the beta2 point
|
|
13
|
+
* @param gamma2 the gamma2 point
|
|
14
|
+
* @param delta2 the delta2 point
|
|
15
|
+
* @param ic the ic points
|
|
16
|
+
*/
|
|
17
|
+
constructor(alpha1, beta2, gamma2, delta2, ic) {
|
|
18
|
+
this.alpha1 = alpha1;
|
|
19
|
+
this.beta2 = beta2;
|
|
20
|
+
this.gamma2 = gamma2;
|
|
21
|
+
this.delta2 = delta2;
|
|
22
|
+
this.ic = ic;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Return this as an object which can be passed
|
|
26
|
+
* to the smart contract
|
|
27
|
+
* @returns the object representation of this
|
|
28
|
+
*/
|
|
29
|
+
asContractParam() {
|
|
30
|
+
return {
|
|
31
|
+
alpha1: this.alpha1.asContractParam(),
|
|
32
|
+
beta2: this.beta2.asContractParam(),
|
|
33
|
+
gamma2: this.gamma2.asContractParam(),
|
|
34
|
+
delta2: this.delta2.asContractParam(),
|
|
35
|
+
ic: this.ic.map((x) => x.asContractParam()),
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Create a new verifying key from a contract representation of the VK
|
|
40
|
+
* @param data the object representation
|
|
41
|
+
* @returns a new VerifyingKey
|
|
42
|
+
*/
|
|
43
|
+
static fromContract(data) {
|
|
44
|
+
const convertG2 = (point) => new crypto_1.G2Point([BigInt(point.x[0]), BigInt(point.x[1])], [BigInt(point.y[0]), BigInt(point.y[1])]);
|
|
45
|
+
return new VerifyingKey(new crypto_1.G1Point(BigInt(data.alpha1.x), BigInt(data.alpha1.y)), convertG2(data.beta2), convertG2(data.gamma2), convertG2(data.delta2), data.ic.map((c) => new crypto_1.G1Point(BigInt(c.x), BigInt(c.y))));
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Check whether this is equal to another verifying key
|
|
49
|
+
* @param vk the other verifying key
|
|
50
|
+
* @returns whether this is equal to the other verifying key
|
|
51
|
+
*/
|
|
52
|
+
equals(vk) {
|
|
53
|
+
// Immediately return false if the length doesn't match
|
|
54
|
+
if (this.ic.length !== vk.ic.length) {
|
|
55
|
+
return false;
|
|
56
|
+
}
|
|
57
|
+
const icEqual = this.ic.every((ic, index) => ic.equals(vk.ic[index]));
|
|
58
|
+
return (this.alpha1.equals(vk.alpha1) &&
|
|
59
|
+
this.beta2.equals(vk.beta2) &&
|
|
60
|
+
this.gamma2.equals(vk.gamma2) &&
|
|
61
|
+
this.delta2.equals(vk.delta2) &&
|
|
62
|
+
icEqual);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Produce a copy of this verifying key
|
|
66
|
+
* @returns the copy
|
|
67
|
+
*/
|
|
68
|
+
copy() {
|
|
69
|
+
const copyG2 = (point) => new crypto_1.G2Point([BigInt(point.x[0].toString()), BigInt(point.x[1].toString())], [BigInt(point.y[0].toString()), BigInt(point.y[1].toString())]);
|
|
70
|
+
return new VerifyingKey(new crypto_1.G1Point(BigInt(this.alpha1.x.toString()), BigInt(this.alpha1.y.toString())), copyG2(this.beta2), copyG2(this.gamma2), copyG2(this.delta2), this.ic.map((c) => new crypto_1.G1Point(BigInt(c.x.toString()), BigInt(c.y.toString()))));
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
exports.VerifyingKey = VerifyingKey;
|
|
74
|
+
/**
|
|
75
|
+
* Deserialize into a VerifyingKey instance
|
|
76
|
+
* @param json the JSON representation
|
|
77
|
+
* @returns the VerifyingKey
|
|
78
|
+
*/
|
|
79
|
+
VerifyingKey.fromJSON = (json) => {
|
|
80
|
+
const data = JSON.parse(json);
|
|
81
|
+
return VerifyingKey.fromObj(data);
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Convert an object representation to a VerifyingKey
|
|
85
|
+
* @param data the object representation
|
|
86
|
+
* @returns the VerifyingKey
|
|
87
|
+
*/
|
|
88
|
+
VerifyingKey.fromObj = (data) => {
|
|
89
|
+
const alpha1 = new crypto_1.G1Point(BigInt(data.vk_alpha_1[0]), BigInt(data.vk_alpha_1[1]));
|
|
90
|
+
const beta2 = new crypto_1.G2Point([BigInt(data.vk_beta_2[0][1]), BigInt(data.vk_beta_2[0][0])], [BigInt(data.vk_beta_2[1][1]), BigInt(data.vk_beta_2[1][0])]);
|
|
91
|
+
const gamma2 = new crypto_1.G2Point([BigInt(data.vk_gamma_2[0][1]), BigInt(data.vk_gamma_2[0][0])], [BigInt(data.vk_gamma_2[1][1]), BigInt(data.vk_gamma_2[1][0])]);
|
|
92
|
+
const delta2 = new crypto_1.G2Point([BigInt(data.vk_delta_2[0][1]), BigInt(data.vk_delta_2[0][0])], [BigInt(data.vk_delta_2[1][1]), BigInt(data.vk_delta_2[1][0])]);
|
|
93
|
+
const ic = data.IC.map(([x, y]) => new crypto_1.G1Point(BigInt(x), BigInt(y)));
|
|
94
|
+
return new VerifyingKey(alpha1, beta2, gamma2, delta2, ic);
|
|
95
|
+
};
|
|
96
|
+
//# sourceMappingURL=verifyingKey.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"verifyingKey.js","sourceRoot":"","sources":["../../ts/verifyingKey.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../crypto/build/ts/utils.d.ts","../../crypto/build/ts/types.d.ts","../../crypto/build/ts/quinTree.d.ts","../../crypto/build/ts/bigIntUtils.d.ts","../../crypto/build/ts/constants.d.ts","../../crypto/build/ts/keys.d.ts","../../crypto/build/ts/babyjub.d.ts","../../crypto/build/ts/hashing.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/@types+snarkjs@0.7.9/node_modules/@types/snarkjs/index.d.cts","../../../node_modules/.pnpm/@types+snarkjs@0.7.9/node_modules/@types/snarkjs/index.d.ts","../../../node_modules/.pnpm/@zk-kit+utils@1.2.1/node_modules/@zk-kit/utils/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+baby-jubjub@1.0.3/node_modules/@zk-kit/baby-jubjub/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+poseidon-cipher@0.3.2/node_modules/@zk-kit/poseidon-cipher/dist/index.d.ts","../../../node_modules/.pnpm/@zk-kit+eddsa-poseidon@1.1.0/node_modules/@zk-kit/eddsa-poseidon/dist/index.d.ts","../../crypto/build/ts/index.d.ts","../ts/publicKey.ts","../ts/types.ts","../ts/ballot.ts","../ts/privateKey.ts","../ts/keyPair.ts","../ts/stateLeaf.ts","../ts/constants.ts","../ts/message.ts","../ts/commands/types.ts","../ts/commands/PCommand.ts","../ts/commands/index.ts","../ts/verifyingKey.ts","../ts/index.ts","../../../node_modules/.pnpm/@types+chai@4.3.20/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/@types+mocha@10.0.10/node_modules/@types/mocha/index.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.14.0/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.7/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier/index.d.ts"],"fileIdsList":[[82,124],[82,124,175,178],[82,124,175,176,177],[82,124,178],[82,121,124],[82,123,124],[124],[82,124,129,159],[82,124,125,130,136,137,144,156,167],[82,124,125,126,136,144],[77,78,79,82,124],[82,124,127,168],[82,124,128,129,137,145],[82,124,129,156,164],[82,124,130,132,136,144],[82,123,124,131],[82,124,132,133],[82,124,136],[82,124,134,136],[82,123,124,136],[82,124,136,137,138,156,167],[82,124,136,137,138,151,156,159],[82,119,124,172],[82,119,124,132,136,139,144,156,167],[82,124,136,137,139,140,144,156,164,167],[82,124,139,141,156,164,167],[80,81,82,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[82,124,136,142],[82,124,143,167],[82,124,132,136,144,156],[82,124,145],[82,124,146],[82,123,124,147],[82,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[82,124,149],[82,124,150],[82,124,136,151,152],[82,124,151,153,168,170],[82,124,136,156,157,159],[82,124,158,159],[82,124,156,157],[82,124,159],[82,124,160],[82,121,124,156],[82,124,136,162,163],[82,124,162,163],[82,124,129,144,156,164],[82,124,165],[82,124,144,166],[82,124,139,150,167],[82,124,129,168],[82,124,156,169],[82,124,143,170],[82,124,171],[82,124,129,136,138,147,156,167,170,172],[82,124,156,173],[55,82,124],[57,82,124],[57,58,82,124],[56,82,124],[82,91,95,124,167],[82,91,124,156,167],[82,86,124],[82,88,91,124,164,167],[82,124,144,164],[82,124,174],[82,86,124,174],[82,88,91,124,144,167],[82,83,84,87,90,124,136,156,167],[82,91,98,124],[82,83,89,124],[82,91,112,113,124],[82,87,91,124,159,167,174],[82,112,124,174],[82,85,86,124,174],[82,91,124],[82,85,86,87,88,89,90,91,92,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,113,114,115,116,117,118,124],[82,91,106,124],[82,91,98,99,124],[82,89,91,99,100,124],[82,90,124],[82,83,86,91,124],[82,91,95,99,100,124],[82,95,124],[82,89,91,94,124,167],[82,83,88,91,98,124],[82,124,156],[82,86,91,112,124,172,174],[47,82,124],[46,47,48,49,50,51,52,53,58,59,60,82,124],[61,63,82,121,124],[61,62,65,69,70,82,121,124],[70,71,82,124],[62,67,82,124],[62,63,64,65,66,67,68,69,72,73,82,124],[61,62,63,65,82,121,124],[61,62,63,82,121,124],[61,63,82,124],[61,62,63,66,82,124],[61,62,82,124]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"c1c58b7ced47e06c30af717cb99d2769d23e5dab10e5833958fad75bd2869584","a248e47564b5d0ec1cfcfaa6115f5e851ed1abbd9d429f83fcd71c2415d9fcc4","25af7addcc966487d27c59abb330c41f848a0b4bb267c4c3a75ab3389b674421","0c7d936c39037cfc48c558e4b1cad0acda9070a34b6730a8ec736818b32f0d11","d99c5f23f7bf1c105830bb62dc843f3493b299340f2f57f6669de9e3bb35c279","2739a070be203c8d95463fdc1bd574f171d82f5b3f9d57a4666d206116665037","6989d560c78681101a44e14d0bffe236c04eb730e7d54e12c7bfe6d218e7544e","9a8316bb379d037c3ae202e0bf0b73531775812b045375bde5fa4f4ab90e5ac1",{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"73d7b4877900a649baddf8e689e985553189e93fd9eedbdbbb29912194abfe12","impliedFormat":1},{"version":"02ce6690df0c77317e7c29fc74c400e6d31d41f0026e87c25d6045a01ea08993","impliedFormat":99},{"version":"d7031eee8d87b1027daf58c08b2f91b91e1f4c0f320a382c9ee5ade5b140600e","impliedFormat":99},{"version":"637aa706ffa05af6bdc9cb07c4287b7d224790ad0cf3e629a1549157fec34d9c","impliedFormat":99},{"version":"51a2c83f1c37db18beb632d893d8aec1460054487b3b93453c5f35c6c1a23db7","impliedFormat":99},{"version":"dc1113e7c556c83ce2e0604a5403733906facf38c7378b21c76aac2b7668f8fb","impliedFormat":99},"c0c3f83e514913c28f88af6110d543a20d8214cb5672e1f20c50ac06660d1ca8",{"version":"e128c3ce40339498f87b06432849bfa4cc7a60c3e7797c3eb6d49a603defbcfa","signature":"b87ed6d42e092be93a195a316fd0c671aa291e59dd1cff54280ebd96b76b215a"},{"version":"60c885a589b2cc9638a0afa1f83a60582c8661557cb4d09049bb8c44f6a5693a","signature":"3e84d1732327b70f65fe4a20614f53b801cf21965636f7b8aca468abdf9c5859"},{"version":"f30fe462fa10e98136e8dea3b7d091c723421f855a138b6037ec8bc3f8929099","signature":"43db6b40f22429f04628bb9c5c0fee2cb1ddeb7c9ab69244af01b436c472e399"},{"version":"1c28a987641fd5b63de4cb38bf0aec9ee8aef3242f09bf6578d0d033b28b975f","signature":"163aa07c76842d41b767f01dafd1d0b282385931dbbcb4f54168f4fe169070ea"},{"version":"a67ef27d9fbc32c15572030f3c635371052fa703e7d1fe5ce9b693cadecd6409","signature":"3cc10e734c36743fce81b4caffbb7c305bb0ea25801815a2a62ecaf4c99d49b3"},{"version":"71ccb230dc7f05d90986eb4b2e1110bdd44c15579677ffba386938821685b97b","signature":"85faedd0b91abaa4f27c62c88484fe9c72be6d5a439a8d02ec4ea253e19113a5"},{"version":"5e7b31acbf05135334862b3d9243ad95a9a6f0e8108ac31924087a0d12e0a4c9","signature":"808a5bca3a22ffcaf62dd019c7da8403dd5f8c799c759c3142a5935f64a732ba"},{"version":"e00467f77aab9a2b1d211159ed507b74eafa2e88d8c6859e544d0d3253d3b927","signature":"af10aa745d5a066a9bbe0661a156b0a2a584b3300ec2caf3b7eb0b45ff4237de"},{"version":"b7d5d598eaaad9d12c4518d7367aea27b376384f4742e7740eb400637c776ce9","signature":"bee4cb95fb001496cbed70fb7230c819ea15b0ab7a8e2686051dde6916f12b4d"},{"version":"d3439e90ee3e976aa95c83a5ba77749fe8263f79d20a78e5cab8bfeab6c33572","signature":"84b8618ac08c0258ff72f64b80b07b3be42aae8d21c13519f12d911608987d96"},"cd2d844d3d475b7490efd14bb86ac13d85ed08ce626f737c96fc252fae48631f",{"version":"da476b643eb908bf726600e31523f0a4270c726653662f6ccecedc4c77c68616","signature":"451c76ace0427db1af42737db599bd0eac236211d134a9de6ad6401bf7510b47"},{"version":"7899d8952e3bfdb8df0f726bd8a78d47783a7740b4875d69da74de9e31489dbd","signature":"af2269c6fa0e07583dd35a1daeba0149f5c554a165b3f9abc3a8b105f0042b77"},{"version":"eef204f061321360559bd19235ea32a9d55b3ec22a362cc78d14ef50d4db4490","affectsGlobalScope":true,"impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8fa51737611c21ba3a5ac02c4e1535741d58bec67c9bdf94b1837a31c97a2263","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4f0539c58717cbc8b73acb29f9e992ab5ff20adba5f9b57130691c7f9b186a4d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"9057f224b79846e3a95baf6dad2c8103278de2b0c5eebda23fc8188171ad2398","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0476e6b51a47a8eaf5ee6ecab0d686f066f3081de9a572f1dde3b2a8a7fb055","impliedFormat":1},{"version":"1e289f30a48126935a5d408a91129a13a59c9b0f8c007a816f9f16ef821e144e","impliedFormat":1},{"version":"f96a023e442f02cf551b4cfe435805ccb0a7e13c81619d4da61ec835d03fe512","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"5b2e73adcb25865d31c21accdc8f82de1eaded23c6f73230e474df156942380e","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"64ede330464b9fd5d35327c32dd2770e7474127ed09769655ebce70992af5f44","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"bcd0418abb8a5c9fe7db36a96ca75fc78455b0efab270ee89b8e49916eac5174","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"7d8b16d7f33d5081beac7a657a6d13f11a72cf094cc5e37cda1b9d8c89371951","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"e679ff5aba9041b932fd3789f4a1c69ddaf015ee54c5879b5b1f4727bcbe00dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"63b05afa6121657f25e99e1519596b0826cda026f09372c9100dfe21417f4bd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"e2b48abff5a8adc6bb1cd13a702b9ef05e6045a98e7cfa95a8779b53b6d0e69d","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"d88a5e779faf033be3d52142a04fbe1cb96009868e3bbdd296b2bc6c59e06c0e","impliedFormat":1}],"root":[[62,74]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":false,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"strictPropertyInitialization":true,"stripInternal":true,"target":7},"referencedMap":[[75,1],[179,2],[178,3],[177,4],[175,1],[176,1],[76,1],[121,5],[122,5],[123,6],[82,7],[124,8],[125,9],[126,10],[77,1],[80,11],[78,1],[79,1],[127,12],[128,13],[129,14],[130,15],[131,16],[132,17],[133,17],[135,18],[134,19],[136,20],[137,21],[138,22],[120,23],[81,1],[139,24],[140,25],[141,26],[174,27],[142,28],[143,29],[144,30],[145,31],[146,32],[147,33],[148,34],[149,35],[150,36],[151,37],[152,37],[153,38],[154,1],[155,1],[156,39],[158,40],[157,41],[159,42],[160,43],[161,44],[162,45],[163,46],[164,47],[165,48],[166,49],[167,50],[168,51],[169,52],[170,53],[171,54],[172,55],[173,56],[180,1],[55,1],[56,57],[58,58],[60,59],[59,58],[57,60],[54,1],[44,1],[45,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[18,1],[19,1],[4,1],[20,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[1,1],[98,61],[108,62],[97,61],[118,63],[89,64],[88,65],[117,66],[111,67],[116,68],[91,69],[105,70],[90,71],[114,72],[86,73],[85,66],[115,74],[87,75],[92,76],[93,1],[96,76],[83,1],[119,77],[109,78],[100,79],[101,80],[103,81],[99,82],[102,83],[112,66],[94,84],[95,85],[104,86],[84,87],[107,78],[106,76],[110,1],[113,88],[52,1],[49,89],[50,1],[53,89],[61,90],[51,89],[48,89],[47,1],[46,1],[64,91],[71,92],[72,93],[70,1],[68,94],[74,95],[66,96],[69,97],[65,98],[62,91],[67,99],[63,100],[73,98]],"latestChangedDtsFile":"./ts/index.d.ts","version":"5.8.3"}
|
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@maci-protocol/domainobjs",
|
|
3
|
+
"version": "0.0.0-ci.1e276ed",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Classes representing domain objects for MACI",
|
|
6
|
+
"main": "build/ts/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"build",
|
|
9
|
+
"README.md",
|
|
10
|
+
"CHANGELOG.md"
|
|
11
|
+
],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"watch": "tsc --watch",
|
|
17
|
+
"build": "tsc -p tsconfig.build.json",
|
|
18
|
+
"types": "tsc -p tsconfig.json --noEmit",
|
|
19
|
+
"test": "nyc ts-mocha --exit ts/__tests__/**.test.ts",
|
|
20
|
+
"docs": "typedoc --plugin typedoc-plugin-markdown --options ./typedoc.json"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/chai": "^4.3.11",
|
|
24
|
+
"@types/mocha": "^10.0.10",
|
|
25
|
+
"@types/node": "^22.14.0",
|
|
26
|
+
"chai": "^4.3.10",
|
|
27
|
+
"mocha": "^11.1.0",
|
|
28
|
+
"nyc": "^17.1.0",
|
|
29
|
+
"ts-mocha": "^11.1.0"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@maci-protocol/crypto": "0.0.0-ci.1e276ed"
|
|
33
|
+
},
|
|
34
|
+
"nyc": {
|
|
35
|
+
"reporter": [
|
|
36
|
+
"text",
|
|
37
|
+
"lcov"
|
|
38
|
+
],
|
|
39
|
+
"extensions": [
|
|
40
|
+
".ts"
|
|
41
|
+
],
|
|
42
|
+
"all": true,
|
|
43
|
+
"exclude": [
|
|
44
|
+
"**/__tests__/*.ts",
|
|
45
|
+
"**/*.js",
|
|
46
|
+
"**/*.d.ts",
|
|
47
|
+
"ts/index.ts"
|
|
48
|
+
],
|
|
49
|
+
"branches": ">50%",
|
|
50
|
+
"lines": ">50%",
|
|
51
|
+
"functions": ">50%",
|
|
52
|
+
"statements": ">50%"
|
|
53
|
+
},
|
|
54
|
+
"gitHead": "4d521a0ec67d0ab5be062cb0354cd3145cc883fe"
|
|
55
|
+
}
|