coreum-js 2.6.9 → 2.7.0
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 +345 -0
- package/dist/main/coreum/index.d.ts +17 -235
- package/dist/main/coreum/index.js +1 -1
- package/dist/main/cosmos/index.d.ts +31 -766
- package/dist/main/cosmos/index.js +1 -1
- package/dist/main/types/msgs.d.ts +672 -0
- package/dist/main/types/msgs.js +3 -0
- package/dist/main/wasm/v1/index.d.ts +13 -266
- package/dist/main/wasm/v1/index.js +1 -1
- package/dist/module/coreum/index.d.ts +17 -235
- package/dist/module/coreum/index.js +1 -1
- package/dist/module/cosmos/index.d.ts +31 -766
- package/dist/module/cosmos/index.js +1 -1
- package/dist/module/types/msgs.d.ts +672 -0
- package/dist/module/types/msgs.js +2 -0
- package/dist/module/wasm/v1/index.d.ts +13 -266
- package/dist/module/wasm/v1/index.js +1 -1
- package/package.json +1 -1
|
@@ -10,58 +10,7 @@ export declare namespace CosmWasm {
|
|
|
10
10
|
* @param object Represents the properties available for this MsgStoreAndInstantiateContract message.
|
|
11
11
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
12
12
|
*/
|
|
13
|
-
const StoreAndInstantiateContract:
|
|
14
|
-
authority?: string;
|
|
15
|
-
wasmByteCode?: Uint8Array;
|
|
16
|
-
instantiatePermission?: {
|
|
17
|
-
permission?: import("./types").AccessType;
|
|
18
|
-
address?: string;
|
|
19
|
-
addresses?: string[];
|
|
20
|
-
};
|
|
21
|
-
unpinCode?: boolean;
|
|
22
|
-
admin?: string;
|
|
23
|
-
label?: string;
|
|
24
|
-
msg?: Uint8Array;
|
|
25
|
-
funds?: {
|
|
26
|
-
denom?: string;
|
|
27
|
-
amount?: string;
|
|
28
|
-
}[];
|
|
29
|
-
source?: string;
|
|
30
|
-
builder?: string;
|
|
31
|
-
codeHash?: Uint8Array;
|
|
32
|
-
} & {
|
|
33
|
-
authority?: string;
|
|
34
|
-
wasmByteCode?: Uint8Array;
|
|
35
|
-
instantiatePermission?: {
|
|
36
|
-
permission?: import("./types").AccessType;
|
|
37
|
-
address?: string;
|
|
38
|
-
addresses?: string[];
|
|
39
|
-
} & {
|
|
40
|
-
permission?: import("./types").AccessType;
|
|
41
|
-
address?: string;
|
|
42
|
-
addresses?: string[] & string[] & { [K in Exclude<keyof I["instantiatePermission"]["addresses"], keyof string[]>]: never; };
|
|
43
|
-
} & { [K_1 in Exclude<keyof I["instantiatePermission"], keyof import("./types").AccessConfig>]: never; };
|
|
44
|
-
unpinCode?: boolean;
|
|
45
|
-
admin?: string;
|
|
46
|
-
label?: string;
|
|
47
|
-
msg?: Uint8Array;
|
|
48
|
-
funds?: {
|
|
49
|
-
denom?: string;
|
|
50
|
-
amount?: string;
|
|
51
|
-
}[] & ({
|
|
52
|
-
denom?: string;
|
|
53
|
-
amount?: string;
|
|
54
|
-
} & {
|
|
55
|
-
denom?: string;
|
|
56
|
-
amount?: string;
|
|
57
|
-
} & { [K_2 in Exclude<keyof I["funds"][number], keyof import("../../cosmos/base/v1beta1/coin").Coin>]: never; })[] & { [K_3 in Exclude<keyof I["funds"], keyof {
|
|
58
|
-
denom?: string;
|
|
59
|
-
amount?: string;
|
|
60
|
-
}[]>]: never; };
|
|
61
|
-
source?: string;
|
|
62
|
-
builder?: string;
|
|
63
|
-
codeHash?: Uint8Array;
|
|
64
|
-
} & { [K_4 in Exclude<keyof I, keyof MsgStoreAndInstantiateContract>]: never; }>(object: I) => {
|
|
13
|
+
const StoreAndInstantiateContract: (object: MsgStoreAndInstantiateContract) => {
|
|
65
14
|
typeUrl: string;
|
|
66
15
|
value: MsgStoreAndInstantiateContract;
|
|
67
16
|
};
|
|
@@ -70,13 +19,7 @@ export declare namespace CosmWasm {
|
|
|
70
19
|
* @param object Represents the properties available for this MsgUnpinCodes message.
|
|
71
20
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
72
21
|
*/
|
|
73
|
-
const UnpinCodes:
|
|
74
|
-
authority?: string;
|
|
75
|
-
codeIds?: number[];
|
|
76
|
-
} & {
|
|
77
|
-
authority?: string;
|
|
78
|
-
codeIds?: number[] & number[] & { [K in Exclude<keyof I["codeIds"], keyof number[]>]: never; };
|
|
79
|
-
} & { [K_1 in Exclude<keyof I, keyof MsgUnpinCodes>]: never; }>(object: I) => {
|
|
22
|
+
const UnpinCodes: (object: MsgUnpinCodes) => {
|
|
80
23
|
typeUrl: string;
|
|
81
24
|
value: MsgUnpinCodes;
|
|
82
25
|
};
|
|
@@ -85,13 +28,7 @@ export declare namespace CosmWasm {
|
|
|
85
28
|
* @param object Represents the properties available for this MsgPinCodes message.
|
|
86
29
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
87
30
|
*/
|
|
88
|
-
const PinCodes:
|
|
89
|
-
authority?: string;
|
|
90
|
-
codeIds?: number[];
|
|
91
|
-
} & {
|
|
92
|
-
authority?: string;
|
|
93
|
-
codeIds?: number[] & number[] & { [K in Exclude<keyof I["codeIds"], keyof number[]>]: never; };
|
|
94
|
-
} & { [K_1 in Exclude<keyof I, keyof MsgPinCodes>]: never; }>(object: I) => {
|
|
31
|
+
const PinCodes: (object: MsgPinCodes) => {
|
|
95
32
|
typeUrl: string;
|
|
96
33
|
value: MsgPinCodes;
|
|
97
34
|
};
|
|
@@ -100,15 +37,7 @@ export declare namespace CosmWasm {
|
|
|
100
37
|
* @param object Represents the properties available for this MsgSudoContract message.
|
|
101
38
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
102
39
|
*/
|
|
103
|
-
const SudoContract:
|
|
104
|
-
authority?: string;
|
|
105
|
-
contract?: string;
|
|
106
|
-
msg?: Uint8Array;
|
|
107
|
-
} & {
|
|
108
|
-
authority?: string;
|
|
109
|
-
contract?: string;
|
|
110
|
-
msg?: Uint8Array;
|
|
111
|
-
} & { [K in Exclude<keyof I, keyof MsgSudoContract>]: never; }>(object: I) => {
|
|
40
|
+
const SudoContract: (object: MsgSudoContract) => {
|
|
112
41
|
typeUrl: string;
|
|
113
42
|
value: MsgSudoContract;
|
|
114
43
|
};
|
|
@@ -117,38 +46,7 @@ export declare namespace CosmWasm {
|
|
|
117
46
|
* @param object Represents the properties available for this MsgUpdateParams message.
|
|
118
47
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
119
48
|
*/
|
|
120
|
-
const UpdateParams:
|
|
121
|
-
authority?: string;
|
|
122
|
-
params?: {
|
|
123
|
-
codeUploadAccess?: {
|
|
124
|
-
permission?: import("./types").AccessType;
|
|
125
|
-
address?: string;
|
|
126
|
-
addresses?: string[];
|
|
127
|
-
};
|
|
128
|
-
instantiateDefaultPermission?: import("./types").AccessType;
|
|
129
|
-
};
|
|
130
|
-
} & {
|
|
131
|
-
authority?: string;
|
|
132
|
-
params?: {
|
|
133
|
-
codeUploadAccess?: {
|
|
134
|
-
permission?: import("./types").AccessType;
|
|
135
|
-
address?: string;
|
|
136
|
-
addresses?: string[];
|
|
137
|
-
};
|
|
138
|
-
instantiateDefaultPermission?: import("./types").AccessType;
|
|
139
|
-
} & {
|
|
140
|
-
codeUploadAccess?: {
|
|
141
|
-
permission?: import("./types").AccessType;
|
|
142
|
-
address?: string;
|
|
143
|
-
addresses?: string[];
|
|
144
|
-
} & {
|
|
145
|
-
permission?: import("./types").AccessType;
|
|
146
|
-
address?: string;
|
|
147
|
-
addresses?: string[] & string[] & { [K in Exclude<keyof I["params"]["codeUploadAccess"]["addresses"], keyof string[]>]: never; };
|
|
148
|
-
} & { [K_1 in Exclude<keyof I["params"]["codeUploadAccess"], keyof import("./types").AccessConfig>]: never; };
|
|
149
|
-
instantiateDefaultPermission?: import("./types").AccessType;
|
|
150
|
-
} & { [K_2 in Exclude<keyof I["params"], keyof import("./types").Params>]: never; };
|
|
151
|
-
} & { [K_3 in Exclude<keyof I, keyof MsgUpdateParams>]: never; }>(object: I) => {
|
|
49
|
+
const UpdateParams: (object: MsgUpdateParams) => {
|
|
152
50
|
typeUrl: string;
|
|
153
51
|
value: MsgUpdateParams;
|
|
154
52
|
};
|
|
@@ -157,27 +55,7 @@ export declare namespace CosmWasm {
|
|
|
157
55
|
* @param object Represents the properties available for this MsgUpdateInstantiateConfig message.
|
|
158
56
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
159
57
|
*/
|
|
160
|
-
const UpdateInstantiateConfig:
|
|
161
|
-
sender?: string;
|
|
162
|
-
codeId?: number;
|
|
163
|
-
newInstantiatePermission?: {
|
|
164
|
-
permission?: import("./types").AccessType;
|
|
165
|
-
address?: string;
|
|
166
|
-
addresses?: string[];
|
|
167
|
-
};
|
|
168
|
-
} & {
|
|
169
|
-
sender?: string;
|
|
170
|
-
codeId?: number;
|
|
171
|
-
newInstantiatePermission?: {
|
|
172
|
-
permission?: import("./types").AccessType;
|
|
173
|
-
address?: string;
|
|
174
|
-
addresses?: string[];
|
|
175
|
-
} & {
|
|
176
|
-
permission?: import("./types").AccessType;
|
|
177
|
-
address?: string;
|
|
178
|
-
addresses?: string[] & string[] & { [K in Exclude<keyof I["newInstantiatePermission"]["addresses"], keyof string[]>]: never; };
|
|
179
|
-
} & { [K_1 in Exclude<keyof I["newInstantiatePermission"], keyof import("./types").AccessConfig>]: never; };
|
|
180
|
-
} & { [K_2 in Exclude<keyof I, keyof MsgUpdateInstantiateConfig>]: never; }>(object: I) => {
|
|
58
|
+
const UpdateInstantiateConfig: (object: MsgUpdateInstantiateConfig) => {
|
|
181
59
|
typeUrl: string;
|
|
182
60
|
value: MsgUpdateInstantiateConfig;
|
|
183
61
|
};
|
|
@@ -188,27 +66,7 @@ export declare namespace CosmWasm {
|
|
|
188
66
|
* @param object Represents the properties available for this MsgStoreCode message.
|
|
189
67
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
190
68
|
*/
|
|
191
|
-
const StoreCode:
|
|
192
|
-
sender?: string;
|
|
193
|
-
wasmByteCode?: Uint8Array;
|
|
194
|
-
instantiatePermission?: {
|
|
195
|
-
permission?: import("./types").AccessType;
|
|
196
|
-
address?: string;
|
|
197
|
-
addresses?: string[];
|
|
198
|
-
};
|
|
199
|
-
} & {
|
|
200
|
-
sender?: string;
|
|
201
|
-
wasmByteCode?: Uint8Array;
|
|
202
|
-
instantiatePermission?: {
|
|
203
|
-
permission?: import("./types").AccessType;
|
|
204
|
-
address?: string;
|
|
205
|
-
addresses?: string[];
|
|
206
|
-
} & {
|
|
207
|
-
permission?: import("./types").AccessType;
|
|
208
|
-
address?: string;
|
|
209
|
-
addresses?: string[] & string[] & { [K in Exclude<keyof I["instantiatePermission"]["addresses"], keyof string[]>]: never; };
|
|
210
|
-
} & { [K_1 in Exclude<keyof I["instantiatePermission"], keyof import("./types").AccessConfig>]: never; };
|
|
211
|
-
} & { [K_2 in Exclude<keyof I, keyof MsgStoreCode>]: never; }>(object: I) => {
|
|
69
|
+
const StoreCode: (object: MsgStoreCode) => {
|
|
212
70
|
typeUrl: string;
|
|
213
71
|
value: MsgStoreCode;
|
|
214
72
|
};
|
|
@@ -219,36 +77,7 @@ export declare namespace CosmWasm {
|
|
|
219
77
|
* @param object Represents the properties available for this MsgInstantiateContract message.
|
|
220
78
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
221
79
|
*/
|
|
222
|
-
const InstantiateContract:
|
|
223
|
-
sender?: string;
|
|
224
|
-
admin?: string;
|
|
225
|
-
codeId?: number;
|
|
226
|
-
label?: string;
|
|
227
|
-
msg?: Uint8Array;
|
|
228
|
-
funds?: {
|
|
229
|
-
denom?: string;
|
|
230
|
-
amount?: string;
|
|
231
|
-
}[];
|
|
232
|
-
} & {
|
|
233
|
-
sender?: string;
|
|
234
|
-
admin?: string;
|
|
235
|
-
codeId?: number;
|
|
236
|
-
label?: string;
|
|
237
|
-
msg?: Uint8Array;
|
|
238
|
-
funds?: {
|
|
239
|
-
denom?: string;
|
|
240
|
-
amount?: string;
|
|
241
|
-
}[] & ({
|
|
242
|
-
denom?: string;
|
|
243
|
-
amount?: string;
|
|
244
|
-
} & {
|
|
245
|
-
denom?: string;
|
|
246
|
-
amount?: string;
|
|
247
|
-
} & { [K in Exclude<keyof I["funds"][number], keyof import("../../cosmos/base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["funds"], keyof {
|
|
248
|
-
denom?: string;
|
|
249
|
-
amount?: string;
|
|
250
|
-
}[]>]: never; };
|
|
251
|
-
} & { [K_2 in Exclude<keyof I, keyof MsgInstantiateContract>]: never; }>(object: I) => {
|
|
80
|
+
const InstantiateContract: (object: MsgInstantiateContract) => {
|
|
252
81
|
typeUrl: string;
|
|
253
82
|
value: MsgInstantiateContract;
|
|
254
83
|
};
|
|
@@ -258,40 +87,7 @@ export declare namespace CosmWasm {
|
|
|
258
87
|
* @param object Represents the properties available for this MsgInstantiateContract2 message.
|
|
259
88
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
260
89
|
*/
|
|
261
|
-
const InstantiateContract2:
|
|
262
|
-
sender?: string;
|
|
263
|
-
admin?: string;
|
|
264
|
-
codeId?: number;
|
|
265
|
-
label?: string;
|
|
266
|
-
msg?: Uint8Array;
|
|
267
|
-
funds?: {
|
|
268
|
-
denom?: string;
|
|
269
|
-
amount?: string;
|
|
270
|
-
}[];
|
|
271
|
-
salt?: Uint8Array;
|
|
272
|
-
fixMsg?: boolean;
|
|
273
|
-
} & {
|
|
274
|
-
sender?: string;
|
|
275
|
-
admin?: string;
|
|
276
|
-
codeId?: number;
|
|
277
|
-
label?: string;
|
|
278
|
-
msg?: Uint8Array;
|
|
279
|
-
funds?: {
|
|
280
|
-
denom?: string;
|
|
281
|
-
amount?: string;
|
|
282
|
-
}[] & ({
|
|
283
|
-
denom?: string;
|
|
284
|
-
amount?: string;
|
|
285
|
-
} & {
|
|
286
|
-
denom?: string;
|
|
287
|
-
amount?: string;
|
|
288
|
-
} & { [K in Exclude<keyof I["funds"][number], keyof import("../../cosmos/base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["funds"], keyof {
|
|
289
|
-
denom?: string;
|
|
290
|
-
amount?: string;
|
|
291
|
-
}[]>]: never; };
|
|
292
|
-
salt?: Uint8Array;
|
|
293
|
-
fixMsg?: boolean;
|
|
294
|
-
} & { [K_2 in Exclude<keyof I, keyof MsgInstantiateContract2>]: never; }>(object: I) => {
|
|
90
|
+
const InstantiateContract2: (object: MsgInstantiateContract2) => {
|
|
295
91
|
typeUrl: string;
|
|
296
92
|
value: MsgInstantiateContract2;
|
|
297
93
|
};
|
|
@@ -301,13 +97,7 @@ export declare namespace CosmWasm {
|
|
|
301
97
|
* @param object Represents the properties available for this MsgClearAdmin message.
|
|
302
98
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
303
99
|
*/
|
|
304
|
-
const ClearAdmin:
|
|
305
|
-
sender?: string;
|
|
306
|
-
contract?: string;
|
|
307
|
-
} & {
|
|
308
|
-
sender?: string;
|
|
309
|
-
contract?: string;
|
|
310
|
-
} & { [K in Exclude<keyof I, keyof MsgClearAdmin>]: never; }>(object: I) => {
|
|
100
|
+
const ClearAdmin: (object: MsgClearAdmin) => {
|
|
311
101
|
typeUrl: string;
|
|
312
102
|
value: MsgClearAdmin;
|
|
313
103
|
};
|
|
@@ -317,15 +107,7 @@ export declare namespace CosmWasm {
|
|
|
317
107
|
* @param object Represents the properties available for this MsgUpdateAdmin message.
|
|
318
108
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
319
109
|
*/
|
|
320
|
-
const UpdateAdmin:
|
|
321
|
-
sender?: string;
|
|
322
|
-
newAdmin?: string;
|
|
323
|
-
contract?: string;
|
|
324
|
-
} & {
|
|
325
|
-
sender?: string;
|
|
326
|
-
newAdmin?: string;
|
|
327
|
-
contract?: string;
|
|
328
|
-
} & { [K in Exclude<keyof I, keyof MsgUpdateAdmin>]: never; }>(object: I) => {
|
|
110
|
+
const UpdateAdmin: (object: MsgUpdateAdmin) => {
|
|
329
111
|
typeUrl: string;
|
|
330
112
|
value: MsgUpdateAdmin;
|
|
331
113
|
};
|
|
@@ -335,32 +117,7 @@ export declare namespace CosmWasm {
|
|
|
335
117
|
* @param object Represents the properties available for this MsgExecuteContract message.
|
|
336
118
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
337
119
|
*/
|
|
338
|
-
const ExecuteContract:
|
|
339
|
-
sender?: string;
|
|
340
|
-
contract?: string;
|
|
341
|
-
msg?: Uint8Array;
|
|
342
|
-
funds?: {
|
|
343
|
-
denom?: string;
|
|
344
|
-
amount?: string;
|
|
345
|
-
}[];
|
|
346
|
-
} & {
|
|
347
|
-
sender?: string;
|
|
348
|
-
contract?: string;
|
|
349
|
-
msg?: Uint8Array;
|
|
350
|
-
funds?: {
|
|
351
|
-
denom?: string;
|
|
352
|
-
amount?: string;
|
|
353
|
-
}[] & ({
|
|
354
|
-
denom?: string;
|
|
355
|
-
amount?: string;
|
|
356
|
-
} & {
|
|
357
|
-
denom?: string;
|
|
358
|
-
amount?: string;
|
|
359
|
-
} & { [K in Exclude<keyof I["funds"][number], keyof import("../../cosmos/base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["funds"], keyof {
|
|
360
|
-
denom?: string;
|
|
361
|
-
amount?: string;
|
|
362
|
-
}[]>]: never; };
|
|
363
|
-
} & { [K_2 in Exclude<keyof I, keyof MsgExecuteContract>]: never; }>(object: I) => {
|
|
120
|
+
const ExecuteContract: (object: MsgExecuteContract) => {
|
|
364
121
|
typeUrl: string;
|
|
365
122
|
value: MsgExecuteContract;
|
|
366
123
|
};
|
|
@@ -370,17 +127,7 @@ export declare namespace CosmWasm {
|
|
|
370
127
|
* @param object Represents the properties available for this MsgMigrateContract message.
|
|
371
128
|
* @returns A Msg object with the typeUrl and value object for the proper message
|
|
372
129
|
*/
|
|
373
|
-
const MigrateContract:
|
|
374
|
-
sender?: string;
|
|
375
|
-
contract?: string;
|
|
376
|
-
codeId?: number;
|
|
377
|
-
msg?: Uint8Array;
|
|
378
|
-
} & {
|
|
379
|
-
sender?: string;
|
|
380
|
-
contract?: string;
|
|
381
|
-
codeId?: number;
|
|
382
|
-
msg?: Uint8Array;
|
|
383
|
-
} & { [K in Exclude<keyof I, keyof MsgMigrateContract>]: never; }>(object: I) => {
|
|
130
|
+
const MigrateContract: (object: MsgMigrateContract) => {
|
|
384
131
|
typeUrl: string;
|
|
385
132
|
value: MsgMigrateContract;
|
|
386
133
|
};
|
|
@@ -176,4 +176,4 @@ var CosmWasm;
|
|
|
176
176
|
};
|
|
177
177
|
};
|
|
178
178
|
})(CosmWasm = exports.CosmWasm || (exports.CosmWasm = {}));
|
|
179
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
179
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvd2FzbS92MS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFDQSw2QkFnQmM7QUFFZCxNQUFNLE9BQU8sR0FBRyxvQkFBb0IsQ0FBQztBQUV4QixRQUFBLGdCQUFnQixHQUEyQztJQUN0RSxDQUFDLE9BQU8sR0FBRyxnQ0FBZ0MsRUFBRSxtQ0FBOEIsQ0FBQztJQUM1RSxDQUFDLE9BQU8sR0FBRyxpQkFBaUIsRUFBRSxvQkFBZSxDQUFDO0lBQzlDLENBQUMsT0FBTyxHQUFHLGlCQUFpQixFQUFFLG9CQUFlLENBQUM7SUFDOUMsQ0FBQyxPQUFPLEdBQUcsZUFBZSxFQUFFLGtCQUFhLENBQUM7SUFDMUMsQ0FBQyxPQUFPLEdBQUcsYUFBYSxFQUFFLGdCQUFXLENBQUM7SUFDdEMsQ0FBQyxPQUFPLEdBQUcsY0FBYyxFQUFFLGlCQUFZLENBQUM7SUFDeEMsQ0FBQyxPQUFPLEdBQUcsd0JBQXdCLEVBQUUsMkJBQXNCLENBQUM7SUFDNUQsQ0FBQyxPQUFPLEdBQUcseUJBQXlCLEVBQUUsNEJBQXVCLENBQUM7SUFDOUQsQ0FBQyxPQUFPLEdBQUcsb0JBQW9CLEVBQUUsdUJBQWtCLENBQUM7SUFDcEQsQ0FBQyxPQUFPLEdBQUcsb0JBQW9CLEVBQUUsdUJBQWtCLENBQUM7SUFDcEQsQ0FBQyxPQUFPLEdBQUcsZ0JBQWdCLEVBQUUsbUJBQWMsQ0FBQztJQUM1QyxDQUFDLE9BQU8sR0FBRyxlQUFlLEVBQUUsa0JBQWEsQ0FBQztJQUMxQyxDQUFDLE9BQU8sR0FBRyw0QkFBNEIsRUFBRSwrQkFBMEIsQ0FBQztDQUNyRSxDQUFDO0FBRUY7O0dBRUc7QUFDSCxJQUFpQixRQUFRLENBMkt4QjtBQTNLRCxXQUFpQixRQUFRO0lBQ3ZCOzs7O09BSUc7SUFDVSxvQ0FBMkIsR0FBRyxVQUN6QyxNQUFzQztRQUV0QyxPQUFPO1lBQ0wsT0FBTyxFQUFFLE9BQU8sR0FBRyxn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
|