coreum-js 2.5.9 → 2.5.11
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/dist/main/cosmos/auth/v1beta1/auth.d.ts +229 -0
- package/dist/main/cosmos/auth/v1beta1/auth.js +438 -0
- package/dist/main/cosmos/distribution/v1beta1/distribution.d.ts +638 -0
- package/dist/main/cosmos/distribution/v1beta1/distribution.js +888 -0
- package/dist/main/cosmos/distribution/v1beta1/genesis.d.ts +1259 -0
- package/dist/main/cosmos/distribution/v1beta1/genesis.js +785 -0
- package/dist/main/cosmos/distribution/v1beta1/pagination.d.ts +128 -0
- package/dist/main/cosmos/distribution/v1beta1/pagination.js +228 -0
- package/dist/main/cosmos/distribution/v1beta1/query.d.ts +995 -0
- package/dist/main/cosmos/distribution/v1beta1/query.js +1336 -0
- package/dist/main/cosmos/distribution/v1beta1/tx.d.ts +593 -0
- package/dist/main/cosmos/distribution/v1beta1/tx.js +825 -0
- package/dist/main/cosmos/index.d.ts +249 -0
- package/dist/main/cosmos/index.js +72 -2
- package/dist/main/cosmos/vesting/v1beta1/tx.d.ts +350 -0
- package/dist/main/cosmos/vesting/v1beta1/tx.js +455 -0
- package/dist/main/cosmos/vesting/v1beta1/vesting.d.ts +1305 -0
- package/dist/main/cosmos/vesting/v1beta1/vesting.js +499 -0
- package/dist/module/cosmos/auth/v1beta1/auth.d.ts +229 -0
- package/dist/module/cosmos/auth/v1beta1/auth.js +428 -0
- package/dist/module/cosmos/distribution/v1beta1/distribution.d.ts +638 -0
- package/dist/module/cosmos/distribution/v1beta1/distribution.js +870 -0
- package/dist/module/cosmos/distribution/v1beta1/genesis.d.ts +1259 -0
- package/dist/module/cosmos/distribution/v1beta1/genesis.js +771 -0
- package/dist/module/cosmos/distribution/v1beta1/pagination.d.ts +128 -0
- package/dist/module/cosmos/distribution/v1beta1/pagination.js +220 -0
- package/dist/module/cosmos/distribution/v1beta1/query.d.ts +995 -0
- package/dist/module/cosmos/distribution/v1beta1/query.js +1316 -0
- package/dist/module/cosmos/distribution/v1beta1/tx.d.ts +593 -0
- package/dist/module/cosmos/distribution/v1beta1/tx.js +811 -0
- package/dist/module/cosmos/index.d.ts +249 -0
- package/dist/module/cosmos/index.js +71 -1
- package/dist/module/cosmos/vesting/v1beta1/tx.d.ts +350 -0
- package/dist/module/cosmos/vesting/v1beta1/tx.js +447 -0
- package/dist/module/cosmos/vesting/v1beta1/vesting.d.ts +1305 -0
- package/dist/module/cosmos/vesting/v1beta1/vesting.js +489 -0
- package/package.json +1 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { MsgDeposit, MsgSubmitProposal, MsgVote, MsgVoteWeighted } from "./gov/v1beta1/tx";
|
|
2
2
|
import { MsgGrantAllowance, MsgRevokeAllowance } from "./feegrant/v1beta1/tx";
|
|
3
3
|
import { MsgMultiSend, MsgSend, MsgSetSendEnabled, MsgUpdateParams } from "./bank/v1beta1/tx";
|
|
4
|
+
import { MsgCommunityPoolSpend, MsgDepositValidatorRewardsPool, MsgFundCommunityPool, MsgSetWithdrawAddress, MsgUpdateParams as DMsgUpdateParams, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission } from "./distribution/v1beta1/tx";
|
|
5
|
+
import { MsgCreatePeriodicVestingAccount, MsgCreatePermanentLockedAccount, MsgCreateVestingAccount } from "./vesting/v1beta1/tx";
|
|
4
6
|
export declare namespace Governance {
|
|
5
7
|
const Deposit: <I extends {
|
|
6
8
|
proposalId?: number;
|
|
@@ -319,3 +321,250 @@ export declare namespace Bank {
|
|
|
319
321
|
value: MsgUpdateParams;
|
|
320
322
|
};
|
|
321
323
|
}
|
|
324
|
+
export declare namespace Distribution {
|
|
325
|
+
const WithdrawDelegatorReward: <I extends {
|
|
326
|
+
delegatorAddress?: string;
|
|
327
|
+
validatorAddress?: string;
|
|
328
|
+
} & {
|
|
329
|
+
delegatorAddress?: string;
|
|
330
|
+
validatorAddress?: string;
|
|
331
|
+
} & { [K in Exclude<keyof I, keyof MsgWithdrawDelegatorReward>]: never; }>(object: I) => {
|
|
332
|
+
typeUrl: string;
|
|
333
|
+
value: MsgWithdrawDelegatorReward;
|
|
334
|
+
};
|
|
335
|
+
const UpdateParams: <I extends {
|
|
336
|
+
authority?: string;
|
|
337
|
+
params?: {
|
|
338
|
+
communityTax?: string;
|
|
339
|
+
baseProposerReward?: string;
|
|
340
|
+
bonusProposerReward?: string;
|
|
341
|
+
withdrawAddrEnabled?: boolean;
|
|
342
|
+
};
|
|
343
|
+
} & {
|
|
344
|
+
authority?: string;
|
|
345
|
+
params?: {
|
|
346
|
+
communityTax?: string;
|
|
347
|
+
baseProposerReward?: string;
|
|
348
|
+
bonusProposerReward?: string;
|
|
349
|
+
withdrawAddrEnabled?: boolean;
|
|
350
|
+
} & {
|
|
351
|
+
communityTax?: string;
|
|
352
|
+
baseProposerReward?: string;
|
|
353
|
+
bonusProposerReward?: string;
|
|
354
|
+
withdrawAddrEnabled?: boolean;
|
|
355
|
+
} & { [K in Exclude<keyof I["params"], keyof import("./distribution/v1beta1/distribution").Params>]: never; };
|
|
356
|
+
} & { [K_1 in Exclude<keyof I, keyof DMsgUpdateParams>]: never; }>(object: I) => {
|
|
357
|
+
typeUrl: string;
|
|
358
|
+
value: DMsgUpdateParams;
|
|
359
|
+
};
|
|
360
|
+
const WithdrawValidatorCommission: <I extends {
|
|
361
|
+
validatorAddress?: string;
|
|
362
|
+
} & {
|
|
363
|
+
validatorAddress?: string;
|
|
364
|
+
} & { [K in Exclude<keyof I, "validatorAddress">]: never; }>(object: I) => {
|
|
365
|
+
typeUrl: string;
|
|
366
|
+
value: MsgWithdrawValidatorCommission;
|
|
367
|
+
};
|
|
368
|
+
const CommunityPoolSpend: <I extends {
|
|
369
|
+
authority?: string;
|
|
370
|
+
recipient?: string;
|
|
371
|
+
amount?: {
|
|
372
|
+
denom?: string;
|
|
373
|
+
amount?: string;
|
|
374
|
+
}[];
|
|
375
|
+
} & {
|
|
376
|
+
authority?: string;
|
|
377
|
+
recipient?: string;
|
|
378
|
+
amount?: {
|
|
379
|
+
denom?: string;
|
|
380
|
+
amount?: string;
|
|
381
|
+
}[] & ({
|
|
382
|
+
denom?: string;
|
|
383
|
+
amount?: string;
|
|
384
|
+
} & {
|
|
385
|
+
denom?: string;
|
|
386
|
+
amount?: string;
|
|
387
|
+
} & { [K in Exclude<keyof I["amount"][number], keyof import("./base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["amount"], keyof {
|
|
388
|
+
denom?: string;
|
|
389
|
+
amount?: string;
|
|
390
|
+
}[]>]: never; };
|
|
391
|
+
} & { [K_2 in Exclude<keyof I, keyof MsgCommunityPoolSpend>]: never; }>(object: I) => {
|
|
392
|
+
typeUrl: string;
|
|
393
|
+
value: MsgCommunityPoolSpend;
|
|
394
|
+
};
|
|
395
|
+
const DepositValidatorRewardsPool: <I extends {
|
|
396
|
+
depositor?: string;
|
|
397
|
+
validatorAddress?: string;
|
|
398
|
+
amount?: {
|
|
399
|
+
denom?: string;
|
|
400
|
+
amount?: string;
|
|
401
|
+
}[];
|
|
402
|
+
} & {
|
|
403
|
+
depositor?: string;
|
|
404
|
+
validatorAddress?: string;
|
|
405
|
+
amount?: {
|
|
406
|
+
denom?: string;
|
|
407
|
+
amount?: string;
|
|
408
|
+
}[] & ({
|
|
409
|
+
denom?: string;
|
|
410
|
+
amount?: string;
|
|
411
|
+
} & {
|
|
412
|
+
denom?: string;
|
|
413
|
+
amount?: string;
|
|
414
|
+
} & { [K in Exclude<keyof I["amount"][number], keyof import("./base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["amount"], keyof {
|
|
415
|
+
denom?: string;
|
|
416
|
+
amount?: string;
|
|
417
|
+
}[]>]: never; };
|
|
418
|
+
} & { [K_2 in Exclude<keyof I, keyof MsgDepositValidatorRewardsPool>]: never; }>(object: I) => {
|
|
419
|
+
typeUrl: string;
|
|
420
|
+
value: MsgDepositValidatorRewardsPool;
|
|
421
|
+
};
|
|
422
|
+
const FundCommunityPool: <I extends {
|
|
423
|
+
amount?: {
|
|
424
|
+
denom?: string;
|
|
425
|
+
amount?: string;
|
|
426
|
+
}[];
|
|
427
|
+
depositor?: string;
|
|
428
|
+
} & {
|
|
429
|
+
amount?: {
|
|
430
|
+
denom?: string;
|
|
431
|
+
amount?: string;
|
|
432
|
+
}[] & ({
|
|
433
|
+
denom?: string;
|
|
434
|
+
amount?: string;
|
|
435
|
+
} & {
|
|
436
|
+
denom?: string;
|
|
437
|
+
amount?: string;
|
|
438
|
+
} & { [K in Exclude<keyof I["amount"][number], keyof import("./base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["amount"], keyof {
|
|
439
|
+
denom?: string;
|
|
440
|
+
amount?: string;
|
|
441
|
+
}[]>]: never; };
|
|
442
|
+
depositor?: string;
|
|
443
|
+
} & { [K_2 in Exclude<keyof I, keyof MsgFundCommunityPool>]: never; }>(object: I) => {
|
|
444
|
+
typeUrl: string;
|
|
445
|
+
value: MsgFundCommunityPool;
|
|
446
|
+
};
|
|
447
|
+
const SetWithdrawAddress: <I extends {
|
|
448
|
+
delegatorAddress?: string;
|
|
449
|
+
withdrawAddress?: string;
|
|
450
|
+
} & {
|
|
451
|
+
delegatorAddress?: string;
|
|
452
|
+
withdrawAddress?: string;
|
|
453
|
+
} & { [K in Exclude<keyof I, keyof MsgSetWithdrawAddress>]: never; }>(object: I) => {
|
|
454
|
+
typeUrl: string;
|
|
455
|
+
value: MsgSetWithdrawAddress;
|
|
456
|
+
};
|
|
457
|
+
}
|
|
458
|
+
export declare namespace Vesting {
|
|
459
|
+
const CreateVestingAccount: <I extends {
|
|
460
|
+
fromAddress?: string;
|
|
461
|
+
toAddress?: string;
|
|
462
|
+
amount?: {
|
|
463
|
+
denom?: string;
|
|
464
|
+
amount?: string;
|
|
465
|
+
}[];
|
|
466
|
+
endTime?: number;
|
|
467
|
+
delayed?: boolean;
|
|
468
|
+
} & {
|
|
469
|
+
fromAddress?: string;
|
|
470
|
+
toAddress?: string;
|
|
471
|
+
amount?: {
|
|
472
|
+
denom?: string;
|
|
473
|
+
amount?: string;
|
|
474
|
+
}[] & ({
|
|
475
|
+
denom?: string;
|
|
476
|
+
amount?: string;
|
|
477
|
+
} & {
|
|
478
|
+
denom?: string;
|
|
479
|
+
amount?: string;
|
|
480
|
+
} & { [K in Exclude<keyof I["amount"][number], keyof import("./base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["amount"], keyof {
|
|
481
|
+
denom?: string;
|
|
482
|
+
amount?: string;
|
|
483
|
+
}[]>]: never; };
|
|
484
|
+
endTime?: number;
|
|
485
|
+
delayed?: boolean;
|
|
486
|
+
} & { [K_2 in Exclude<keyof I, keyof MsgCreateVestingAccount>]: never; }>(object: I) => {
|
|
487
|
+
typeUrl: string;
|
|
488
|
+
value: MsgCreateVestingAccount;
|
|
489
|
+
};
|
|
490
|
+
const CreatePeriodicVestingAccount: <I extends {
|
|
491
|
+
fromAddress?: string;
|
|
492
|
+
toAddress?: string;
|
|
493
|
+
startTime?: number;
|
|
494
|
+
vestingPeriods?: {
|
|
495
|
+
length?: number;
|
|
496
|
+
amount?: {
|
|
497
|
+
denom?: string;
|
|
498
|
+
amount?: string;
|
|
499
|
+
}[];
|
|
500
|
+
}[];
|
|
501
|
+
} & {
|
|
502
|
+
fromAddress?: string;
|
|
503
|
+
toAddress?: string;
|
|
504
|
+
startTime?: number;
|
|
505
|
+
vestingPeriods?: {
|
|
506
|
+
length?: number;
|
|
507
|
+
amount?: {
|
|
508
|
+
denom?: string;
|
|
509
|
+
amount?: string;
|
|
510
|
+
}[];
|
|
511
|
+
}[] & ({
|
|
512
|
+
length?: number;
|
|
513
|
+
amount?: {
|
|
514
|
+
denom?: string;
|
|
515
|
+
amount?: string;
|
|
516
|
+
}[];
|
|
517
|
+
} & {
|
|
518
|
+
length?: number;
|
|
519
|
+
amount?: {
|
|
520
|
+
denom?: string;
|
|
521
|
+
amount?: string;
|
|
522
|
+
}[] & ({
|
|
523
|
+
denom?: string;
|
|
524
|
+
amount?: string;
|
|
525
|
+
} & {
|
|
526
|
+
denom?: string;
|
|
527
|
+
amount?: string;
|
|
528
|
+
} & { [K in Exclude<keyof I["vestingPeriods"][number]["amount"][number], keyof import("./base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["vestingPeriods"][number]["amount"], keyof {
|
|
529
|
+
denom?: string;
|
|
530
|
+
amount?: string;
|
|
531
|
+
}[]>]: never; };
|
|
532
|
+
} & { [K_2 in Exclude<keyof I["vestingPeriods"][number], keyof import("./vesting/v1beta1/vesting").Period>]: never; })[] & { [K_3 in Exclude<keyof I["vestingPeriods"], keyof {
|
|
533
|
+
length?: number;
|
|
534
|
+
amount?: {
|
|
535
|
+
denom?: string;
|
|
536
|
+
amount?: string;
|
|
537
|
+
}[];
|
|
538
|
+
}[]>]: never; };
|
|
539
|
+
} & { [K_4 in Exclude<keyof I, keyof MsgCreatePeriodicVestingAccount>]: never; }>(object: I) => {
|
|
540
|
+
typeUrl: string;
|
|
541
|
+
value: MsgCreatePeriodicVestingAccount;
|
|
542
|
+
};
|
|
543
|
+
const CreatePermanentLockedAccount: <I extends {
|
|
544
|
+
fromAddress?: string;
|
|
545
|
+
toAddress?: string;
|
|
546
|
+
amount?: {
|
|
547
|
+
denom?: string;
|
|
548
|
+
amount?: string;
|
|
549
|
+
}[];
|
|
550
|
+
} & {
|
|
551
|
+
fromAddress?: string;
|
|
552
|
+
toAddress?: string;
|
|
553
|
+
amount?: {
|
|
554
|
+
denom?: string;
|
|
555
|
+
amount?: string;
|
|
556
|
+
}[] & ({
|
|
557
|
+
denom?: string;
|
|
558
|
+
amount?: string;
|
|
559
|
+
} & {
|
|
560
|
+
denom?: string;
|
|
561
|
+
amount?: string;
|
|
562
|
+
} & { [K in Exclude<keyof I["amount"][number], keyof import("./base/v1beta1/coin").Coin>]: never; })[] & { [K_1 in Exclude<keyof I["amount"], keyof {
|
|
563
|
+
denom?: string;
|
|
564
|
+
amount?: string;
|
|
565
|
+
}[]>]: never; };
|
|
566
|
+
} & { [K_2 in Exclude<keyof I, keyof MsgCreatePermanentLockedAccount>]: never; }>(object: I) => {
|
|
567
|
+
typeUrl: string;
|
|
568
|
+
value: MsgCreatePermanentLockedAccount;
|
|
569
|
+
};
|
|
570
|
+
}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Bank = exports.Feegrant = exports.Governance = void 0;
|
|
3
|
+
exports.Vesting = exports.Distribution = exports.Bank = exports.Feegrant = exports.Governance = void 0;
|
|
4
4
|
const tx_1 = require("./gov/v1beta1/tx");
|
|
5
5
|
const tx_2 = require("./feegrant/v1beta1/tx");
|
|
6
6
|
const tx_3 = require("./bank/v1beta1/tx");
|
|
7
|
+
const tx_4 = require("./distribution/v1beta1/tx");
|
|
8
|
+
const tx_5 = require("./vesting/v1beta1/tx");
|
|
7
9
|
const govBaseUrl = "/cosmos.gov.v1beta1.";
|
|
8
10
|
const fgBaseUrl = "/cosmos.feegrant.v1beta1.";
|
|
9
11
|
const bankBaseUrl = "/cosmos.bank.v1beta1.";
|
|
12
|
+
const distBaseUrl = "/cosmos.distribution.v1beta1.";
|
|
13
|
+
const vestBaseUrl = "/cosmos.vesting.v1beta1.";
|
|
10
14
|
var Governance;
|
|
11
15
|
(function (Governance) {
|
|
12
16
|
Governance.Deposit = function (object) {
|
|
@@ -76,4 +80,70 @@ var Bank;
|
|
|
76
80
|
};
|
|
77
81
|
};
|
|
78
82
|
})(Bank = exports.Bank || (exports.Bank = {}));
|
|
79
|
-
|
|
83
|
+
var Distribution;
|
|
84
|
+
(function (Distribution) {
|
|
85
|
+
Distribution.WithdrawDelegatorReward = function (object) {
|
|
86
|
+
return {
|
|
87
|
+
typeUrl: distBaseUrl + "MsgWithdrawDelegatorReward",
|
|
88
|
+
value: tx_4.MsgWithdrawDelegatorReward.fromPartial(object),
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
Distribution.UpdateParams = function (object) {
|
|
92
|
+
return {
|
|
93
|
+
typeUrl: distBaseUrl + "MsgUpdateParams",
|
|
94
|
+
value: tx_4.MsgUpdateParams.fromPartial(object),
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
Distribution.WithdrawValidatorCommission = function (object) {
|
|
98
|
+
return {
|
|
99
|
+
typeUrl: distBaseUrl + "MsgWithdrawValidatorCommission",
|
|
100
|
+
value: tx_4.MsgWithdrawValidatorCommission.fromPartial(object),
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
Distribution.CommunityPoolSpend = function (object) {
|
|
104
|
+
return {
|
|
105
|
+
typeUrl: distBaseUrl + "MsgCommunityPoolSpend",
|
|
106
|
+
value: tx_4.MsgCommunityPoolSpend.fromPartial(object),
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
Distribution.DepositValidatorRewardsPool = function (object) {
|
|
110
|
+
return {
|
|
111
|
+
typeUrl: distBaseUrl + "MsgDepositValidatorRewardsPool",
|
|
112
|
+
value: tx_4.MsgDepositValidatorRewardsPool.fromPartial(object),
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
Distribution.FundCommunityPool = function (object) {
|
|
116
|
+
return {
|
|
117
|
+
typeUrl: distBaseUrl + "MsgFundCommunityPool",
|
|
118
|
+
value: tx_4.MsgFundCommunityPool.fromPartial(object),
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
Distribution.SetWithdrawAddress = function (object) {
|
|
122
|
+
return {
|
|
123
|
+
typeUrl: distBaseUrl + "MsgSetWithdrawAddress",
|
|
124
|
+
value: tx_4.MsgSetWithdrawAddress.fromPartial(object),
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
})(Distribution = exports.Distribution || (exports.Distribution = {}));
|
|
128
|
+
var Vesting;
|
|
129
|
+
(function (Vesting) {
|
|
130
|
+
Vesting.CreateVestingAccount = function (object) {
|
|
131
|
+
return {
|
|
132
|
+
typeUrl: vestBaseUrl + "MsgCreateVestingAccount",
|
|
133
|
+
value: tx_5.MsgCreateVestingAccount.fromPartial(object),
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
Vesting.CreatePeriodicVestingAccount = function (object) {
|
|
137
|
+
return {
|
|
138
|
+
typeUrl: vestBaseUrl + "MsgCreatePeriodicVestingAccount",
|
|
139
|
+
value: tx_5.MsgCreatePeriodicVestingAccount.fromPartial(object),
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
Vesting.CreatePermanentLockedAccount = function (object) {
|
|
143
|
+
return {
|
|
144
|
+
typeUrl: vestBaseUrl + "MsgCreatePermanentLockedAccount",
|
|
145
|
+
value: tx_5.MsgCreatePermanentLockedAccount.fromPartial(object),
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
})(Vesting = exports.Vesting || (exports.Vesting = {}));
|
|
149
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29zbW9zL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHlDQU8wQjtBQUUxQiw4Q0FBOEU7QUFFOUUsMENBSzJCO0FBRTNCLGtEQVFtQztBQUVuQyw2Q0FJOEI7QUFFOUIsTUFBTSxVQUFVLEdBQUcsc0JBQXNCLENBQUM7QUFDMUMsTUFBTSxTQUFTLEdBQUcsMkJBQTJCLENBQUM7QUFDOUMsTUFBTSxXQUFXLEdBQUcsdUJBQXVCLENBQUM7QUFDNUMsTUFBTSxXQUFXLEdBQUcsK0JBQStCLENBQUM7QUFDcEQsTUFBTSxXQUFXLEdBQUcsMEJBQTBCLENBQUM7QUFFL0MsSUFBaUIsVUFBVSxDQW9DMUI7QUFwQ0QsV0FBaUIsVUFBVTtJQUNaLGtCQUFPLEdBQUcsVUFDckIsTUFBUztRQUVULE9BQU87WUFDTCxPQUFPLEVBQUUsVUFBVSxHQUFHLFlBQVk7WUFDbEMsS0FBSyxFQUFFLGVBQVUsQ0FBQyxXQUFXLENBQUMsTUFBTSxDQUFDO1NBQ3RDLENBQUM7SUFDSixDQUFDLENBQUM7SUFFVyx5QkFBYyxHQUFHLFVBRTVCLE1BQVM7UUFDVCxPQUFPO1lBQ0wsT0FBTyxFQUFFLFVBQVUsR0FBRyxtQkFBbUI7WUFDekMsS0FBSyxFQUFFLHNCQUFpQixDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUM7U0FDN0MsQ0FBQztJQUNKLENBQUMsQ0FBQztJQUVXLGVBQUksR0FBRyxVQUNsQixNQUFTO1FBRVQsT0FBTztZQUNMLE9BQU8sRUFBRSxVQUFVLEdBQUcsU0FBUztZQUMvQixLQUFLLEVBQUUsWUFBTyxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUM7U0FDbkMsQ0FBQztJQUNKLENBQUMsQ0FBQztJQUVXLHVCQUFZLEdBQUcsVUFFMUIsTUFBUztRQUNULE9BQU87WUFDTCxPQUFPLEVBQUUsVUFBVSxHQUFHLGlCQUFpQjtZQUN2QyxLQUFLLEVBQUUsb0JBQWUsQ0FB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
|