coreum-js 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/dist/main/client/index.d.ts +48 -0
- package/dist/main/client/index.js +242 -0
- package/dist/main/coreum/asset/ft/v1/event.d.ts +148 -0
- package/dist/main/coreum/asset/ft/v1/event.js +377 -0
- package/dist/main/coreum/asset/ft/v1/genesis.d.ts +415 -0
- package/dist/main/coreum/asset/ft/v1/genesis.js +197 -0
- package/dist/main/coreum/asset/ft/v1/params.d.ts +54 -0
- package/dist/main/coreum/asset/ft/v1/params.js +69 -0
- package/dist/main/coreum/asset/ft/v1/query.d.ts +1863 -0
- package/dist/main/coreum/asset/ft/v1/query.js +892 -0
- package/dist/main/coreum/asset/ft/v1/token.d.ts +145 -0
- package/dist/main/coreum/asset/ft/v1/token.js +361 -0
- package/dist/main/coreum/asset/ft/v1/tx.d.ts +416 -0
- package/dist/main/coreum/asset/ft/v1/tx.js +760 -0
- package/dist/main/coreum/asset/index.d.ts +3 -0
- package/dist/main/coreum/asset/index.js +26 -0
- package/dist/main/coreum/asset/nft/v1/event.d.ts +191 -0
- package/dist/main/coreum/asset/nft/v1/event.js +490 -0
- package/dist/main/coreum/asset/nft/v1/genesis.d.ts +321 -0
- package/dist/main/coreum/asset/nft/v1/genesis.js +362 -0
- package/dist/main/coreum/asset/nft/v1/nft.d.ts +153 -0
- package/dist/main/coreum/asset/nft/v1/nft.js +361 -0
- package/dist/main/coreum/asset/nft/v1/params.d.ts +54 -0
- package/dist/main/coreum/asset/nft/v1/params.js +69 -0
- package/dist/main/coreum/asset/nft/v1/query.d.ts +785 -0
- package/dist/main/coreum/asset/nft/v1/query.js +627 -0
- package/dist/main/coreum/asset/nft/v1/tx.d.ts +357 -0
- package/dist/main/coreum/asset/nft/v1/tx.js +806 -0
- package/dist/main/coreum/asset/nft/v1/types.d.ts +33 -0
- package/dist/main/coreum/asset/nft/v1/types.js +108 -0
- package/dist/main/coreum/customparams/v1/genesis.d.ts +48 -0
- package/dist/main/coreum/customparams/v1/genesis.js +70 -0
- package/dist/main/coreum/customparams/v1/params.d.ts +35 -0
- package/dist/main/coreum/customparams/v1/params.js +67 -0
- package/dist/main/coreum/customparams/v1/query.d.ts +74 -0
- package/dist/main/coreum/customparams/v1/query.js +119 -0
- package/dist/main/coreum/extensions/ft.d.ts +13 -0
- package/dist/main/coreum/extensions/ft.js +36 -0
- package/dist/main/coreum/extensions/nft.d.ts +11 -0
- package/dist/main/coreum/extensions/nft.js +30 -0
- package/dist/main/coreum/extensions/nftbeta.d.ts +13 -0
- package/dist/main/coreum/extensions/nftbeta.js +36 -0
- package/dist/main/coreum/feemodel/v1/genesis.d.ts +251 -0
- package/dist/main/coreum/feemodel/v1/genesis.js +87 -0
- package/dist/main/coreum/feemodel/v1/params.d.ts +384 -0
- package/dist/main/coreum/feemodel/v1/params.js +201 -0
- package/dist/main/coreum/feemodel/v1/query.d.ts +306 -0
- package/dist/main/coreum/feemodel/v1/query.js +214 -0
- package/dist/main/coreum/google/api/annotations.d.ts +1 -0
- package/dist/main/coreum/google/api/annotations.js +6 -0
- package/dist/main/coreum/google/api/http.d.ts +2953 -0
- package/dist/main/coreum/google/api/http.js +329 -0
- package/dist/main/coreum/google/protobuf/any.d.ts +148 -0
- package/dist/main/coreum/google/protobuf/any.js +122 -0
- package/dist/main/coreum/index.d.ts +291 -0
- package/dist/main/coreum/index.js +116 -0
- package/dist/main/coreum/nft/index.d.ts +2 -0
- package/dist/main/coreum/nft/index.js +9 -0
- package/dist/main/coreum/nft/v1beta1/event.d.ts +109 -0
- package/dist/main/coreum/nft/v1beta1/event.js +255 -0
- package/dist/main/coreum/nft/v1beta1/genesis.d.ts +460 -0
- package/dist/main/coreum/nft/v1beta1/genesis.js +160 -0
- package/dist/main/coreum/nft/v1beta1/nft.d.ts +153 -0
- package/dist/main/coreum/nft/v1beta1/nft.js +258 -0
- package/dist/main/coreum/nft/v1beta1/query.d.ts +1733 -0
- package/dist/main/coreum/nft/v1beta1/query.js +872 -0
- package/dist/main/coreum/nft/v1beta1/tx.d.ts +80 -0
- package/dist/main/coreum/nft/v1beta1/tx.js +155 -0
- package/dist/main/cosmos/base/query/v1beta1/pagination.d.ts +470 -0
- package/dist/main/cosmos/base/query/v1beta1/pagination.js +224 -0
- package/dist/main/cosmos/base/v1beta1/coin.d.ts +114 -0
- package/dist/main/cosmos/base/v1beta1/coin.js +242 -0
- package/dist/main/cosmos/msg/v1/msg.d.ts +1 -0
- package/dist/main/cosmos/msg/v1/msg.js +6 -0
- package/dist/main/index.d.ts +5 -0
- package/dist/main/index.js +22 -0
- package/dist/main/services/cosmostation.d.ts +4 -0
- package/dist/main/services/cosmostation.js +47 -0
- package/dist/main/services/index.d.ts +2 -0
- package/dist/main/services/index.js +19 -0
- package/dist/main/services/keplr.d.ts +2 -0
- package/dist/main/services/keplr.js +119 -0
- package/dist/main/signers/dcent.d.ts +1 -0
- package/dist/main/signers/dcent.js +41 -0
- package/dist/main/signers/index.d.ts +3 -0
- package/dist/main/signers/index.js +20 -0
- package/dist/main/signers/offline.d.ts +4 -0
- package/dist/main/signers/offline.js +11 -0
- package/dist/main/signers/signer.d.ts +6 -0
- package/dist/main/signers/signer.js +17 -0
- package/dist/main/types/core.d.ts +24 -0
- package/dist/main/types/core.js +18 -0
- package/dist/main/types/coreum.d.ts +74 -0
- package/dist/main/types/coreum.js +80 -0
- package/dist/main/types/index.d.ts +3 -0
- package/dist/main/types/index.js +20 -0
- package/dist/main/types/signing.d.ts +20 -0
- package/dist/main/types/signing.js +17 -0
- package/dist/main/utils/calculations.d.ts +6 -0
- package/dist/main/utils/calculations.js +41 -0
- package/dist/main/utils/event.d.ts +5 -0
- package/dist/main/utils/event.js +22 -0
- package/dist/main/utils/index.d.ts +3 -0
- package/dist/main/utils/index.js +20 -0
- package/dist/main/utils/nft.d.ts +2 -0
- package/dist/main/utils/nft.js +9 -0
- package/dist/main/utils/wallet.d.ts +5 -0
- package/dist/main/utils/wallet.js +37 -0
- package/dist/module/client/index.d.ts +48 -0
- package/dist/module/client/index.js +241 -0
- package/dist/module/coreum/asset/ft/v1/event.d.ts +148 -0
- package/dist/module/coreum/asset/ft/v1/event.js +368 -0
- package/dist/module/coreum/asset/ft/v1/genesis.d.ts +415 -0
- package/dist/module/coreum/asset/ft/v1/genesis.js +189 -0
- package/dist/module/coreum/asset/ft/v1/params.d.ts +54 -0
- package/dist/module/coreum/asset/ft/v1/params.js +63 -0
- package/dist/module/coreum/asset/ft/v1/query.d.ts +1863 -0
- package/dist/module/coreum/asset/ft/v1/query.js +878 -0
- package/dist/module/coreum/asset/ft/v1/token.d.ts +145 -0
- package/dist/module/coreum/asset/ft/v1/token.js +351 -0
- package/dist/module/coreum/asset/ft/v1/tx.d.ts +416 -0
- package/dist/module/coreum/asset/ft/v1/tx.js +747 -0
- package/dist/module/coreum/asset/index.d.ts +3 -0
- package/dist/module/coreum/asset/index.js +23 -0
- package/dist/module/coreum/asset/nft/v1/event.d.ts +191 -0
- package/dist/module/coreum/asset/nft/v1/event.js +479 -0
- package/dist/module/coreum/asset/nft/v1/genesis.d.ts +321 -0
- package/dist/module/coreum/asset/nft/v1/genesis.js +352 -0
- package/dist/module/coreum/asset/nft/v1/nft.d.ts +153 -0
- package/dist/module/coreum/asset/nft/v1/nft.js +351 -0
- package/dist/module/coreum/asset/nft/v1/params.d.ts +54 -0
- package/dist/module/coreum/asset/nft/v1/params.js +63 -0
- package/dist/module/coreum/asset/nft/v1/query.d.ts +785 -0
- package/dist/module/coreum/asset/nft/v1/query.js +615 -0
- package/dist/module/coreum/asset/nft/v1/tx.d.ts +357 -0
- package/dist/module/coreum/asset/nft/v1/tx.js +794 -0
- package/dist/module/coreum/asset/nft/v1/types.d.ts +33 -0
- package/dist/module/coreum/asset/nft/v1/types.js +101 -0
- package/dist/module/coreum/customparams/v1/genesis.d.ts +48 -0
- package/dist/module/coreum/customparams/v1/genesis.js +64 -0
- package/dist/module/coreum/customparams/v1/params.d.ts +35 -0
- package/dist/module/coreum/customparams/v1/params.js +60 -0
- package/dist/module/coreum/customparams/v1/query.d.ts +74 -0
- package/dist/module/coreum/customparams/v1/query.js +114 -0
- package/dist/module/coreum/extensions/ft.d.ts +13 -0
- package/dist/module/coreum/extensions/ft.js +32 -0
- package/dist/module/coreum/extensions/nft.d.ts +11 -0
- package/dist/module/coreum/extensions/nft.js +26 -0
- package/dist/module/coreum/extensions/nftbeta.d.ts +13 -0
- package/dist/module/coreum/extensions/nftbeta.js +32 -0
- package/dist/module/coreum/feemodel/v1/genesis.d.ts +251 -0
- package/dist/module/coreum/feemodel/v1/genesis.js +81 -0
- package/dist/module/coreum/feemodel/v1/params.d.ts +384 -0
- package/dist/module/coreum/feemodel/v1/params.js +194 -0
- package/dist/module/coreum/feemodel/v1/query.d.ts +306 -0
- package/dist/module/coreum/feemodel/v1/query.js +209 -0
- package/dist/module/coreum/google/api/annotations.d.ts +1 -0
- package/dist/module/coreum/google/api/annotations.js +3 -0
- package/dist/module/coreum/google/api/http.d.ts +2953 -0
- package/dist/module/coreum/google/api/http.js +320 -0
- package/dist/module/coreum/google/protobuf/any.d.ts +148 -0
- package/dist/module/coreum/google/protobuf/any.js +115 -0
- package/dist/module/coreum/index.d.ts +291 -0
- package/dist/module/coreum/index.js +113 -0
- package/dist/module/coreum/nft/index.d.ts +2 -0
- package/dist/module/coreum/nft/index.js +6 -0
- package/dist/module/coreum/nft/v1beta1/event.d.ts +109 -0
- package/dist/module/coreum/nft/v1beta1/event.js +246 -0
- package/dist/module/coreum/nft/v1beta1/genesis.d.ts +460 -0
- package/dist/module/coreum/nft/v1beta1/genesis.js +152 -0
- package/dist/module/coreum/nft/v1beta1/nft.d.ts +153 -0
- package/dist/module/coreum/nft/v1beta1/nft.js +250 -0
- package/dist/module/coreum/nft/v1beta1/query.d.ts +1733 -0
- package/dist/module/coreum/nft/v1beta1/query.js +858 -0
- package/dist/module/coreum/nft/v1beta1/tx.d.ts +80 -0
- package/dist/module/coreum/nft/v1beta1/tx.js +149 -0
- package/dist/module/cosmos/base/query/v1beta1/pagination.d.ts +470 -0
- package/dist/module/cosmos/base/query/v1beta1/pagination.js +216 -0
- package/dist/module/cosmos/base/v1beta1/coin.d.ts +114 -0
- package/dist/module/cosmos/base/v1beta1/coin.js +232 -0
- package/dist/module/cosmos/msg/v1/msg.d.ts +1 -0
- package/dist/module/cosmos/msg/v1/msg.js +3 -0
- package/dist/module/index.d.ts +5 -0
- package/dist/module/index.js +6 -0
- package/dist/module/services/cosmostation.d.ts +4 -0
- package/dist/module/services/cosmostation.js +42 -0
- package/dist/module/services/index.d.ts +2 -0
- package/dist/module/services/index.js +3 -0
- package/dist/module/services/keplr.d.ts +2 -0
- package/dist/module/services/keplr.js +115 -0
- package/dist/module/signers/dcent.d.ts +1 -0
- package/dist/module/signers/dcent.js +31 -0
- package/dist/module/signers/index.d.ts +3 -0
- package/dist/module/signers/index.js +4 -0
- package/dist/module/signers/offline.d.ts +4 -0
- package/dist/module/signers/offline.js +7 -0
- package/dist/module/signers/signer.d.ts +6 -0
- package/dist/module/signers/signer.js +11 -0
- package/dist/module/types/core.d.ts +24 -0
- package/dist/module/types/core.js +15 -0
- package/dist/module/types/coreum.d.ts +74 -0
- package/dist/module/types/coreum.js +77 -0
- package/dist/module/types/index.d.ts +3 -0
- package/dist/module/types/index.js +4 -0
- package/dist/module/types/signing.d.ts +20 -0
- package/dist/module/types/signing.js +14 -0
- package/dist/module/utils/calculations.d.ts +6 -0
- package/dist/module/utils/calculations.js +29 -0
- package/dist/module/utils/event.d.ts +5 -0
- package/dist/module/utils/event.js +18 -0
- package/dist/module/utils/index.d.ts +3 -0
- package/dist/module/utils/index.js +4 -0
- package/dist/module/utils/nft.d.ts +2 -0
- package/dist/module/utils/nft.js +5 -0
- package/dist/module/utils/wallet.d.ts +5 -0
- package/dist/module/utils/wallet.js +31 -0
- package/package.json +55 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.setupNFTExtension = void 0;
|
|
4
|
+
const query_1 = require("../asset/nft/v1/query");
|
|
5
|
+
const stargate_1 = require("@cosmjs/stargate");
|
|
6
|
+
function setupNFTExtension(base) {
|
|
7
|
+
const rpc = (0, stargate_1.createProtobufRpcClient)(base);
|
|
8
|
+
const queryService = new query_1.QueryClientImpl(rpc);
|
|
9
|
+
return {
|
|
10
|
+
nft: {
|
|
11
|
+
params: async (request) => {
|
|
12
|
+
return await queryService.Params(request);
|
|
13
|
+
},
|
|
14
|
+
class: async (request) => {
|
|
15
|
+
return await queryService.Class(request);
|
|
16
|
+
},
|
|
17
|
+
frozen: async (request) => {
|
|
18
|
+
return await queryService.Frozen(request);
|
|
19
|
+
},
|
|
20
|
+
whitelisted: async (request) => {
|
|
21
|
+
return await queryService.Whitelisted(request);
|
|
22
|
+
},
|
|
23
|
+
whitelistedAccountsForNFT: async (request) => {
|
|
24
|
+
return await queryService.WhitelistedAccountsForNFT(request);
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
exports.setupNFTExtension = setupNFTExtension;
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmZ0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2NvcmV1bS9leHRlbnNpb25zL25mdC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxpREFZK0I7QUFDL0IsK0NBQXdFO0FBRXhFLFNBQWdCLGlCQUFpQixDQUFDLElBQWlCO0lBQ2pELE1BQU0sR0FBRyxHQUFHLElBQUEsa0NBQXVCLEVBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsTUFBTSxZQUFZLEdBQUcsSUFBSSx1QkFBZSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBRTlDLE9BQU87UUFDTCxHQUFHLEVBQUU7WUFDSCxNQUFNLEVBQUUsS0FBSyxFQUNYLE9BQTJCLEVBQ0csRUFBRTtnQkFDaEMsT0FBTyxNQUFNLFlBQVksQ0FBQyxNQUFNLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDNUMsQ0FBQztZQUNELEtBQUssRUFBRSxLQUFLLEVBQ1YsT0FBMEIsRUFDRyxFQUFFO2dCQUMvQixPQUFPLE1BQU0sWUFBWSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUMzQyxDQUFDO1lBQ0QsTUFBTSxFQUFFLEtBQUssRUFDWCxPQUEyQixFQUNHLEVBQUU7Z0JBQ2hDLE9BQU8sTUFBTSxZQUFZLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzVDLENBQUM7WUFDRCxXQUFXLEVBQUUsS0FBSyxFQUNoQixPQUFnQyxFQUNHLEVBQUU7Z0JBQ3JDLE9BQU8sTUFBTSxZQUFZLENBQUMsV0FBVyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQ2pELENBQUM7WUFDRCx5QkFBeUIsRUFBRSxLQUFLLEVBQzlCLE9BQThDLEVBQ0csRUFBRTtnQkFDbkQsT0FBTyxNQUFNLFlBQVksQ0FBQyx5QkFBeUIsQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUMvRCxDQUFDO1NBQ0Y7S0FDRixDQUFDO0FBQ0osQ0FBQztBQWpDRCw4Q0FpQ0MifQ==
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { QueryBalanceRequest, QueryBalanceResponse, QueryClassRequest, QueryClassResponse, QueryClassesRequest, QueryClassesResponse, QueryNFTRequest, QueryNFTResponse, QueryNFTsRequest, QueryNFTsResponse, QueryOwnerRequest, QueryOwnerResponse, QuerySupplyRequest, QuerySupplyResponse } from "../nft/v1beta1/query";
|
|
2
|
+
import { QueryClient } from "@cosmjs/stargate";
|
|
3
|
+
export declare function setupNFTBetaExtension(base: QueryClient): {
|
|
4
|
+
nftbeta: {
|
|
5
|
+
balance: (request: QueryBalanceRequest) => Promise<QueryBalanceResponse>;
|
|
6
|
+
owner: (request: QueryOwnerRequest) => Promise<QueryOwnerResponse>;
|
|
7
|
+
supply: (request: QuerySupplyRequest) => Promise<QuerySupplyResponse>;
|
|
8
|
+
nfts: (request: QueryNFTsRequest) => Promise<QueryNFTsResponse>;
|
|
9
|
+
nft: (request: QueryNFTRequest) => Promise<QueryNFTResponse>;
|
|
10
|
+
class: (request: QueryClassRequest) => Promise<QueryClassResponse>;
|
|
11
|
+
classes: (request: QueryClassesRequest) => Promise<QueryClassesResponse>;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.setupNFTBetaExtension = void 0;
|
|
4
|
+
const query_1 = require("../nft/v1beta1/query");
|
|
5
|
+
const stargate_1 = require("@cosmjs/stargate");
|
|
6
|
+
function setupNFTBetaExtension(base) {
|
|
7
|
+
const rpc = (0, stargate_1.createProtobufRpcClient)(base);
|
|
8
|
+
const queryService = new query_1.QueryClientImpl(rpc);
|
|
9
|
+
return {
|
|
10
|
+
nftbeta: {
|
|
11
|
+
balance: async (request) => {
|
|
12
|
+
return await queryService.Balance(request);
|
|
13
|
+
},
|
|
14
|
+
owner: async (request) => {
|
|
15
|
+
return await queryService.Owner(request);
|
|
16
|
+
},
|
|
17
|
+
supply: async (request) => {
|
|
18
|
+
return await queryService.Supply(request);
|
|
19
|
+
},
|
|
20
|
+
nfts: async (request) => {
|
|
21
|
+
return await queryService.NFTs(request);
|
|
22
|
+
},
|
|
23
|
+
nft: async (request) => {
|
|
24
|
+
return await queryService.NFT(request);
|
|
25
|
+
},
|
|
26
|
+
class: async (request) => {
|
|
27
|
+
return await queryService.Class(request);
|
|
28
|
+
},
|
|
29
|
+
classes: async (request) => {
|
|
30
|
+
return await queryService.Classes(request);
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
exports.setupNFTBetaExtension = setupNFTBetaExtension;
|
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmZ0YmV0YS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jb3JldW0vZXh0ZW5zaW9ucy9uZnRiZXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLGdEQWdCOEI7QUFDOUIsK0NBQXdFO0FBRXhFLFNBQWdCLHFCQUFxQixDQUFDLElBQWlCO0lBQ3JELE1BQU0sR0FBRyxHQUFHLElBQUEsa0NBQXVCLEVBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsTUFBTSxZQUFZLEdBQUcsSUFBSSx1QkFBZSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBRTlDLE9BQU87UUFDTCxPQUFPLEVBQUU7WUFDUCxPQUFPLEVBQUUsS0FBSyxFQUNaLE9BQTRCLEVBQ0csRUFBRTtnQkFDakMsT0FBTyxNQUFNLFlBQVksQ0FBQyxPQUFPLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDN0MsQ0FBQztZQUNELEtBQUssRUFBRSxLQUFLLEVBQ1YsT0FBMEIsRUFDRyxFQUFFO2dCQUMvQixPQUFPLE1BQU0sWUFBWSxDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUMzQyxDQUFDO1lBQ0QsTUFBTSxFQUFFLEtBQUssRUFDWCxPQUEyQixFQUNHLEVBQUU7Z0JBQ2hDLE9BQU8sTUFBTSxZQUFZLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzVDLENBQUM7WUFDRCxJQUFJLEVBQUUsS0FBSyxFQUFFLE9BQXlCLEVBQThCLEVBQUU7Z0JBQ3BFLE9BQU8sTUFBTSxZQUFZLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzFDLENBQUM7WUFDRCxHQUFHLEVBQUUsS0FBSyxFQUFFLE9BQXdCLEVBQTZCLEVBQUU7Z0JBQ2pFLE9BQU8sTUFBTSxZQUFZLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQ3pDLENBQUM7WUFDRCxLQUFLLEVBQUUsS0FBSyxFQUNWLE9BQTBCLEVBQ0csRUFBRTtnQkFDL0IsT0FBTyxNQUFNLFlBQVksQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDM0MsQ0FBQztZQUNELE9BQU8sRUFBRSxLQUFLLEVBQ1osT0FBNEIsRUFDRyxFQUFFO2dCQUNqQyxPQUFPLE1BQU0sWUFBWSxDQUFDLE9BQU8sQ0FBQyxPQUFPLENBQUMsQ0FBQztZQUM3QyxDQUFDO1NBQ0Y7S0FDRixDQUFDO0FBQ0osQ0FBQztBQXZDRCxzREF1Q0MifQ==
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
import Long from "long";
|
|
2
|
+
import _m0 from "protobufjs/minimal";
|
|
3
|
+
import { DecCoin } from "../../../cosmos/base/v1beta1/coin";
|
|
4
|
+
import { Params } from "./params";
|
|
5
|
+
export declare const protobufPackage = "coreum.feemodel.v1";
|
|
6
|
+
/** GenesisState defines the module's genesis state. */
|
|
7
|
+
export interface GenesisState {
|
|
8
|
+
/** params defines all the parameters of the module. */
|
|
9
|
+
params?: Params;
|
|
10
|
+
/** min_gas_price is the current minimum gas price required by the chain. */
|
|
11
|
+
minGasPrice?: DecCoin;
|
|
12
|
+
}
|
|
13
|
+
export declare const GenesisState: {
|
|
14
|
+
encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer;
|
|
15
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState;
|
|
16
|
+
fromJSON(object: any): GenesisState;
|
|
17
|
+
toJSON(message: GenesisState): unknown;
|
|
18
|
+
create<I extends {
|
|
19
|
+
params?: {
|
|
20
|
+
model?: {
|
|
21
|
+
initialGasPrice?: string;
|
|
22
|
+
maxGasPriceMultiplier?: string;
|
|
23
|
+
maxDiscount?: string;
|
|
24
|
+
escalationStartFraction?: string;
|
|
25
|
+
maxBlockGas?: string | number | Long.Long;
|
|
26
|
+
shortEmaBlockLength?: number;
|
|
27
|
+
longEmaBlockLength?: number;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
minGasPrice?: {
|
|
31
|
+
denom?: string;
|
|
32
|
+
amount?: string;
|
|
33
|
+
};
|
|
34
|
+
} & {
|
|
35
|
+
params?: {
|
|
36
|
+
model?: {
|
|
37
|
+
initialGasPrice?: string;
|
|
38
|
+
maxGasPriceMultiplier?: string;
|
|
39
|
+
maxDiscount?: string;
|
|
40
|
+
escalationStartFraction?: string;
|
|
41
|
+
maxBlockGas?: string | number | Long.Long;
|
|
42
|
+
shortEmaBlockLength?: number;
|
|
43
|
+
longEmaBlockLength?: number;
|
|
44
|
+
};
|
|
45
|
+
} & {
|
|
46
|
+
model?: {
|
|
47
|
+
initialGasPrice?: string;
|
|
48
|
+
maxGasPriceMultiplier?: string;
|
|
49
|
+
maxDiscount?: string;
|
|
50
|
+
escalationStartFraction?: string;
|
|
51
|
+
maxBlockGas?: string | number | Long.Long;
|
|
52
|
+
shortEmaBlockLength?: number;
|
|
53
|
+
longEmaBlockLength?: number;
|
|
54
|
+
} & {
|
|
55
|
+
initialGasPrice?: string;
|
|
56
|
+
maxGasPriceMultiplier?: string;
|
|
57
|
+
maxDiscount?: string;
|
|
58
|
+
escalationStartFraction?: string;
|
|
59
|
+
maxBlockGas?: string | number | (Long.Long & {
|
|
60
|
+
high: number;
|
|
61
|
+
low: number;
|
|
62
|
+
unsigned: boolean;
|
|
63
|
+
add: (addend: string | number | Long.Long) => Long.Long;
|
|
64
|
+
and: (other: string | number | Long.Long) => Long.Long;
|
|
65
|
+
compare: (other: string | number | Long.Long) => number;
|
|
66
|
+
comp: (other: string | number | Long.Long) => number;
|
|
67
|
+
divide: (divisor: string | number | Long.Long) => Long.Long;
|
|
68
|
+
div: (divisor: string | number | Long.Long) => Long.Long;
|
|
69
|
+
equals: (other: string | number | Long.Long) => boolean;
|
|
70
|
+
eq: (other: string | number | Long.Long) => boolean;
|
|
71
|
+
getHighBits: () => number;
|
|
72
|
+
getHighBitsUnsigned: () => number;
|
|
73
|
+
getLowBits: () => number;
|
|
74
|
+
getLowBitsUnsigned: () => number;
|
|
75
|
+
getNumBitsAbs: () => number;
|
|
76
|
+
greaterThan: (other: string | number | Long.Long) => boolean;
|
|
77
|
+
gt: (other: string | number | Long.Long) => boolean;
|
|
78
|
+
greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
|
|
79
|
+
gte: (other: string | number | Long.Long) => boolean;
|
|
80
|
+
isEven: () => boolean;
|
|
81
|
+
isNegative: () => boolean;
|
|
82
|
+
isOdd: () => boolean;
|
|
83
|
+
isPositive: () => boolean;
|
|
84
|
+
isZero: () => boolean;
|
|
85
|
+
lessThan: (other: string | number | Long.Long) => boolean;
|
|
86
|
+
lt: (other: string | number | Long.Long) => boolean;
|
|
87
|
+
lessThanOrEqual: (other: string | number | Long.Long) => boolean;
|
|
88
|
+
lte: (other: string | number | Long.Long) => boolean;
|
|
89
|
+
modulo: (other: string | number | Long.Long) => Long.Long;
|
|
90
|
+
mod: (other: string | number | Long.Long) => Long.Long;
|
|
91
|
+
multiply: (multiplier: string | number | Long.Long) => Long.Long;
|
|
92
|
+
mul: (multiplier: string | number | Long.Long) => Long.Long;
|
|
93
|
+
negate: () => Long.Long;
|
|
94
|
+
neg: () => Long.Long;
|
|
95
|
+
not: () => Long.Long;
|
|
96
|
+
notEquals: (other: string | number | Long.Long) => boolean;
|
|
97
|
+
neq: (other: string | number | Long.Long) => boolean;
|
|
98
|
+
or: (other: string | number | Long.Long) => Long.Long;
|
|
99
|
+
shiftLeft: (numBits: number | Long.Long) => Long.Long;
|
|
100
|
+
shl: (numBits: number | Long.Long) => Long.Long;
|
|
101
|
+
shiftRight: (numBits: number | Long.Long) => Long.Long;
|
|
102
|
+
shr: (numBits: number | Long.Long) => Long.Long;
|
|
103
|
+
shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
|
|
104
|
+
shru: (numBits: number | Long.Long) => Long.Long;
|
|
105
|
+
subtract: (subtrahend: string | number | Long.Long) => Long.Long;
|
|
106
|
+
sub: (subtrahend: string | number | Long.Long) => Long.Long;
|
|
107
|
+
toInt: () => number;
|
|
108
|
+
toNumber: () => number;
|
|
109
|
+
toBytes: (le?: boolean) => number[];
|
|
110
|
+
toBytesLE: () => number[];
|
|
111
|
+
toBytesBE: () => number[];
|
|
112
|
+
toSigned: () => Long.Long;
|
|
113
|
+
toString: (radix?: number) => string;
|
|
114
|
+
toUnsigned: () => Long.Long;
|
|
115
|
+
xor: (other: string | number | Long.Long) => Long.Long;
|
|
116
|
+
} & { [K in Exclude<keyof I["params"]["model"]["maxBlockGas"], keyof Long.Long>]: never; });
|
|
117
|
+
shortEmaBlockLength?: number;
|
|
118
|
+
longEmaBlockLength?: number;
|
|
119
|
+
} & { [K_1 in Exclude<keyof I["params"]["model"], keyof import("./params").ModelParams>]: never; };
|
|
120
|
+
} & { [K_2 in Exclude<keyof I["params"], "model">]: never; };
|
|
121
|
+
minGasPrice?: {
|
|
122
|
+
denom?: string;
|
|
123
|
+
amount?: string;
|
|
124
|
+
} & {
|
|
125
|
+
denom?: string;
|
|
126
|
+
amount?: string;
|
|
127
|
+
} & { [K_3 in Exclude<keyof I["minGasPrice"], keyof DecCoin>]: never; };
|
|
128
|
+
} & { [K_4 in Exclude<keyof I, keyof GenesisState>]: never; }>(base?: I): GenesisState;
|
|
129
|
+
fromPartial<I_1 extends {
|
|
130
|
+
params?: {
|
|
131
|
+
model?: {
|
|
132
|
+
initialGasPrice?: string;
|
|
133
|
+
maxGasPriceMultiplier?: string;
|
|
134
|
+
maxDiscount?: string;
|
|
135
|
+
escalationStartFraction?: string;
|
|
136
|
+
maxBlockGas?: string | number | Long.Long;
|
|
137
|
+
shortEmaBlockLength?: number;
|
|
138
|
+
longEmaBlockLength?: number;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
minGasPrice?: {
|
|
142
|
+
denom?: string;
|
|
143
|
+
amount?: string;
|
|
144
|
+
};
|
|
145
|
+
} & {
|
|
146
|
+
params?: {
|
|
147
|
+
model?: {
|
|
148
|
+
initialGasPrice?: string;
|
|
149
|
+
maxGasPriceMultiplier?: string;
|
|
150
|
+
maxDiscount?: string;
|
|
151
|
+
escalationStartFraction?: string;
|
|
152
|
+
maxBlockGas?: string | number | Long.Long;
|
|
153
|
+
shortEmaBlockLength?: number;
|
|
154
|
+
longEmaBlockLength?: number;
|
|
155
|
+
};
|
|
156
|
+
} & {
|
|
157
|
+
model?: {
|
|
158
|
+
initialGasPrice?: string;
|
|
159
|
+
maxGasPriceMultiplier?: string;
|
|
160
|
+
maxDiscount?: string;
|
|
161
|
+
escalationStartFraction?: string;
|
|
162
|
+
maxBlockGas?: string | number | Long.Long;
|
|
163
|
+
shortEmaBlockLength?: number;
|
|
164
|
+
longEmaBlockLength?: number;
|
|
165
|
+
} & {
|
|
166
|
+
initialGasPrice?: string;
|
|
167
|
+
maxGasPriceMultiplier?: string;
|
|
168
|
+
maxDiscount?: string;
|
|
169
|
+
escalationStartFraction?: string;
|
|
170
|
+
maxBlockGas?: string | number | (Long.Long & {
|
|
171
|
+
high: number;
|
|
172
|
+
low: number;
|
|
173
|
+
unsigned: boolean;
|
|
174
|
+
add: (addend: string | number | Long.Long) => Long.Long;
|
|
175
|
+
and: (other: string | number | Long.Long) => Long.Long;
|
|
176
|
+
compare: (other: string | number | Long.Long) => number;
|
|
177
|
+
comp: (other: string | number | Long.Long) => number;
|
|
178
|
+
divide: (divisor: string | number | Long.Long) => Long.Long;
|
|
179
|
+
div: (divisor: string | number | Long.Long) => Long.Long;
|
|
180
|
+
equals: (other: string | number | Long.Long) => boolean;
|
|
181
|
+
eq: (other: string | number | Long.Long) => boolean;
|
|
182
|
+
getHighBits: () => number;
|
|
183
|
+
getHighBitsUnsigned: () => number;
|
|
184
|
+
getLowBits: () => number;
|
|
185
|
+
getLowBitsUnsigned: () => number;
|
|
186
|
+
getNumBitsAbs: () => number;
|
|
187
|
+
greaterThan: (other: string | number | Long.Long) => boolean;
|
|
188
|
+
gt: (other: string | number | Long.Long) => boolean;
|
|
189
|
+
greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
|
|
190
|
+
gte: (other: string | number | Long.Long) => boolean;
|
|
191
|
+
isEven: () => boolean;
|
|
192
|
+
isNegative: () => boolean;
|
|
193
|
+
isOdd: () => boolean;
|
|
194
|
+
isPositive: () => boolean;
|
|
195
|
+
isZero: () => boolean;
|
|
196
|
+
lessThan: (other: string | number | Long.Long) => boolean;
|
|
197
|
+
lt: (other: string | number | Long.Long) => boolean;
|
|
198
|
+
lessThanOrEqual: (other: string | number | Long.Long) => boolean;
|
|
199
|
+
lte: (other: string | number | Long.Long) => boolean;
|
|
200
|
+
modulo: (other: string | number | Long.Long) => Long.Long;
|
|
201
|
+
mod: (other: string | number | Long.Long) => Long.Long;
|
|
202
|
+
multiply: (multiplier: string | number | Long.Long) => Long.Long;
|
|
203
|
+
mul: (multiplier: string | number | Long.Long) => Long.Long;
|
|
204
|
+
negate: () => Long.Long;
|
|
205
|
+
neg: () => Long.Long;
|
|
206
|
+
not: () => Long.Long;
|
|
207
|
+
notEquals: (other: string | number | Long.Long) => boolean;
|
|
208
|
+
neq: (other: string | number | Long.Long) => boolean;
|
|
209
|
+
or: (other: string | number | Long.Long) => Long.Long;
|
|
210
|
+
shiftLeft: (numBits: number | Long.Long) => Long.Long;
|
|
211
|
+
shl: (numBits: number | Long.Long) => Long.Long;
|
|
212
|
+
shiftRight: (numBits: number | Long.Long) => Long.Long;
|
|
213
|
+
shr: (numBits: number | Long.Long) => Long.Long;
|
|
214
|
+
shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
|
|
215
|
+
shru: (numBits: number | Long.Long) => Long.Long;
|
|
216
|
+
subtract: (subtrahend: string | number | Long.Long) => Long.Long;
|
|
217
|
+
sub: (subtrahend: string | number | Long.Long) => Long.Long;
|
|
218
|
+
toInt: () => number;
|
|
219
|
+
toNumber: () => number;
|
|
220
|
+
toBytes: (le?: boolean) => number[];
|
|
221
|
+
toBytesLE: () => number[];
|
|
222
|
+
toBytesBE: () => number[];
|
|
223
|
+
toSigned: () => Long.Long;
|
|
224
|
+
toString: (radix?: number) => string;
|
|
225
|
+
toUnsigned: () => Long.Long;
|
|
226
|
+
xor: (other: string | number | Long.Long) => Long.Long;
|
|
227
|
+
} & { [K_5 in Exclude<keyof I_1["params"]["model"]["maxBlockGas"], keyof Long.Long>]: never; });
|
|
228
|
+
shortEmaBlockLength?: number;
|
|
229
|
+
longEmaBlockLength?: number;
|
|
230
|
+
} & { [K_6 in Exclude<keyof I_1["params"]["model"], keyof import("./params").ModelParams>]: never; };
|
|
231
|
+
} & { [K_7 in Exclude<keyof I_1["params"], "model">]: never; };
|
|
232
|
+
minGasPrice?: {
|
|
233
|
+
denom?: string;
|
|
234
|
+
amount?: string;
|
|
235
|
+
} & {
|
|
236
|
+
denom?: string;
|
|
237
|
+
amount?: string;
|
|
238
|
+
} & { [K_8 in Exclude<keyof I_1["minGasPrice"], keyof DecCoin>]: never; };
|
|
239
|
+
} & { [K_9 in Exclude<keyof I_1, keyof GenesisState>]: never; }>(object: I_1): GenesisState;
|
|
240
|
+
};
|
|
241
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
242
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
243
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
244
|
+
} : Partial<T>;
|
|
245
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
246
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
247
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
248
|
+
} & {
|
|
249
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
250
|
+
};
|
|
251
|
+
export {};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.GenesisState = exports.protobufPackage = void 0;
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
const long_1 = __importDefault(require("long"));
|
|
9
|
+
const minimal_1 = __importDefault(require("protobufjs/minimal"));
|
|
10
|
+
const coin_1 = require("../../../cosmos/base/v1beta1/coin");
|
|
11
|
+
const params_1 = require("./params");
|
|
12
|
+
exports.protobufPackage = "coreum.feemodel.v1";
|
|
13
|
+
function createBaseGenesisState() {
|
|
14
|
+
return { params: undefined, minGasPrice: undefined };
|
|
15
|
+
}
|
|
16
|
+
exports.GenesisState = {
|
|
17
|
+
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
18
|
+
if (message.params !== undefined) {
|
|
19
|
+
params_1.Params.encode(message.params, writer.uint32(10).fork()).ldelim();
|
|
20
|
+
}
|
|
21
|
+
if (message.minGasPrice !== undefined) {
|
|
22
|
+
coin_1.DecCoin.encode(message.minGasPrice, writer.uint32(18).fork()).ldelim();
|
|
23
|
+
}
|
|
24
|
+
return writer;
|
|
25
|
+
},
|
|
26
|
+
decode(input, length) {
|
|
27
|
+
const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
|
|
28
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
29
|
+
const message = createBaseGenesisState();
|
|
30
|
+
while (reader.pos < end) {
|
|
31
|
+
const tag = reader.uint32();
|
|
32
|
+
switch (tag >>> 3) {
|
|
33
|
+
case 1:
|
|
34
|
+
if (tag != 10) {
|
|
35
|
+
break;
|
|
36
|
+
}
|
|
37
|
+
message.params = params_1.Params.decode(reader, reader.uint32());
|
|
38
|
+
continue;
|
|
39
|
+
case 2:
|
|
40
|
+
if (tag != 18) {
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
message.minGasPrice = coin_1.DecCoin.decode(reader, reader.uint32());
|
|
44
|
+
continue;
|
|
45
|
+
}
|
|
46
|
+
if ((tag & 7) == 4 || tag == 0) {
|
|
47
|
+
break;
|
|
48
|
+
}
|
|
49
|
+
reader.skipType(tag & 7);
|
|
50
|
+
}
|
|
51
|
+
return message;
|
|
52
|
+
},
|
|
53
|
+
fromJSON(object) {
|
|
54
|
+
return {
|
|
55
|
+
params: isSet(object.params) ? params_1.Params.fromJSON(object.params) : undefined,
|
|
56
|
+
minGasPrice: isSet(object.minGasPrice) ? coin_1.DecCoin.fromJSON(object.minGasPrice) : undefined,
|
|
57
|
+
};
|
|
58
|
+
},
|
|
59
|
+
toJSON(message) {
|
|
60
|
+
const obj = {};
|
|
61
|
+
message.params !== undefined && (obj.params = message.params ? params_1.Params.toJSON(message.params) : undefined);
|
|
62
|
+
message.minGasPrice !== undefined &&
|
|
63
|
+
(obj.minGasPrice = message.minGasPrice ? coin_1.DecCoin.toJSON(message.minGasPrice) : undefined);
|
|
64
|
+
return obj;
|
|
65
|
+
},
|
|
66
|
+
create(base) {
|
|
67
|
+
return exports.GenesisState.fromPartial(base !== null && base !== void 0 ? base : {});
|
|
68
|
+
},
|
|
69
|
+
fromPartial(object) {
|
|
70
|
+
const message = createBaseGenesisState();
|
|
71
|
+
message.params = (object.params !== undefined && object.params !== null)
|
|
72
|
+
? params_1.Params.fromPartial(object.params)
|
|
73
|
+
: undefined;
|
|
74
|
+
message.minGasPrice = (object.minGasPrice !== undefined && object.minGasPrice !== null)
|
|
75
|
+
? coin_1.DecCoin.fromPartial(object.minGasPrice)
|
|
76
|
+
: undefined;
|
|
77
|
+
return message;
|
|
78
|
+
},
|
|
79
|
+
};
|
|
80
|
+
if (minimal_1.default.util.Long !== long_1.default) {
|
|
81
|
+
minimal_1.default.util.Long = long_1.default;
|
|
82
|
+
minimal_1.default.configure();
|
|
83
|
+
}
|
|
84
|
+
function isSet(value) {
|
|
85
|
+
return value !== null && value !== undefined;
|
|
86
|
+
}
|
|
87
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2VuZXNpcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb3JldW0vZmVlbW9kZWwvdjEvZ2VuZXNpcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7QUFBQSxvQkFBb0I7QUFDcEIsZ0RBQXdCO0FBQ3hCLGlFQUFxQztBQUNyQyw0REFBNEQ7QUFDNUQscUNBQWtDO0FBRXJCLFFBQUEsZUFBZSxHQUFHLG9CQUFvQixDQUFDO0FBVXBELFNBQVMsc0JBQXNCO0lBQzdCLE9BQU8sRUFBRSxNQUFNLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxTQUFTLEVBQUUsQ0FBQztBQUN2RCxDQUFDO0FBRVksUUFBQSxZQUFZLEdBQUc7SUFDMUIsTUFBTSxDQUFDLE9BQXFCLEVBQUUsU0FBcUIsaUJBQUcsQ0FBQyxNQUFNLENBQUMsTUFBTSxFQUFFO1FBQ3BFLElBQUksT0FBTyxDQUFDLE1BQU0sS0FBSyxTQUFTLEVBQUU7WUFDaEMsZUFBTSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxFQUFFLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxNQUFNLEVBQUUsQ0FBQztTQUNsRTtRQUNELElBQUksT0FBTyxDQUFDLFdBQVcsS0FBSyxTQUFTLEVBQUU7WUFDckMsY0FBTyxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsV0FBVyxFQUFFLE1BQU0sQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxNQUFNLEVBQUUsQ0FBQztTQUN4RTtRQUNELE9BQU8sTUFBTSxDQUFDO0lBQ2hCLENBQUM7SUFFRCxNQUFNLENBQUMsS0FBOEIsRUFBRSxNQUFlO1FBQ3BELE1BQU0sTUFBTSxHQUFHLEtBQUssWUFBWSxpQkFBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxpQkFBRyxDQUFDLE1BQU0sQ0FB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
|