diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b08ae774667..3de876afd329 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## master +Contributed: + +- Add additional namespaced contract tests (Thanks to https://github.com/VargSupercolony) + Changes: - Adjust `Registry` to augment based on used packages diff --git a/packages/api-contract/src/Abi/Abi.spec.ts b/packages/api-contract/src/Abi/Abi.spec.ts index d9a9d0840a02..2c9c6c8d7af1 100644 --- a/packages/api-contract/src/Abi/Abi.spec.ts +++ b/packages/api-contract/src/Abi/Abi.spec.ts @@ -62,7 +62,7 @@ describe('Abi', (): void => { const messageIds = (abi.V3 || abi.V2 || abi.V1 || abi).spec.messages.map(({ label, name }) => label || ( Array.isArray(name) - ? name[0] + ? name.join('::') : name ) ); diff --git a/packages/api-contract/src/Abi/toLatest.spec.ts b/packages/api-contract/src/Abi/toLatest.spec.ts index 7e86438b9519..cd311879becd 100644 --- a/packages/api-contract/src/Abi/toLatest.spec.ts +++ b/packages/api-contract/src/Abi/toLatest.spec.ts @@ -71,9 +71,9 @@ describe('v1ToLatest', (): void => { expect( latest.spec.messages.map(({ label }) => label.toString()) - ).toEqual(['PSP22Metadata,token_name', 'PSP22Metadata,token_symbol', 'PSP22Metadata,token_decimals', 'PSP22Mintable,mint', - 'PSP22,decrease_allowance', 'PSP22,transfer', 'PSP22,approve', 'PSP22,allowance', 'PSP22,transfer_from', 'PSP22,balance_of', 'PSP22,increase_allowance', - 'PSP22,total_supply', 'pause', 'unpause']); + ).toEqual([ + 'PSP22Metadata::token_name', 'PSP22Metadata::token_symbol', 'PSP22Metadata::token_decimals', 'PSP22Mintable::mint', 'PSP22::decrease_allowance', 'PSP22::transfer', 'PSP22::approve', 'PSP22::allowance', 'PSP22::transfer_from', 'PSP22::balance_of', 'PSP22::increase_allowance', 'PSP22::total_supply', 'pause', 'unpause' + ]); }); it('has the correct constructor arguments', (): void => { @@ -110,11 +110,13 @@ describe('v3ToLatest', (): void => { }); it('has the correct messages', (): void => { - const contract = registry.createType('ContractMetadata', { V3: abis.ink_v3_trait_erc20.V3 }); + const contract = registry.createType('ContractMetadata', { V3: abis.ink_v3_traitErc20.V3 }); const latest = v3ToLatest(registry, contract.asV3); expect( latest.spec.messages.map(({ label }) => label.toString()) - ).toEqual(['BaseErc20::total_supply', 'BaseErc20::balance_of', 'BaseErc20::allowance', 'BaseErc20::transfer', 'BaseErc20::approve', 'BaseErc20::transfer_from']); + ).toEqual([ + 'BaseErc20::total_supply', 'BaseErc20::balance_of', 'BaseErc20::allowance', 'BaseErc20::transfer', 'BaseErc20::approve', 'BaseErc20::transfer_from' + ]); }); }); diff --git a/packages/api-contract/src/Abi/toV1.ts b/packages/api-contract/src/Abi/toV1.ts index 798b5cb4c00d..64c80f734619 100644 --- a/packages/api-contract/src/Abi/toV1.ts +++ b/packages/api-contract/src/Abi/toV1.ts @@ -7,8 +7,25 @@ import type { Registry } from '@polkadot/types/types'; import { convertSiV0toV1 } from '@polkadot/types'; import { objectSpread } from '@polkadot/util'; +interface Named { + name: unknown; +} + +function v0ToV1Names (all: Named[]): unknown[] { + return all.map((e) => + objectSpread({}, e, { + name: Array.isArray(e.name) + ? e.name + : [e.name] + })); +} + export function v0ToV1 (registry: Registry, v0: ContractMetadataV0): ContractMetadataV1 { return registry.createType('ContractMetadataV1', objectSpread({}, v0, { + spec: objectSpread({}, v0.spec, { + constructors: v0ToV1Names(v0.spec.constructors), + messages: v0ToV1Names(v0.spec.messages) + }), types: convertSiV0toV1(registry, v0.types) })); } diff --git a/packages/api-contract/src/test/compare/ink_v1_psp22.test.json b/packages/api-contract/src/test/compare/ink_v1_psp22.test.json new file mode 100644 index 000000000000..f7da9c9179c9 --- /dev/null +++ b/packages/api-contract/src/test/compare/ink_v1_psp22.test.json @@ -0,0 +1,529 @@ +[ + { + "info": "Plain", + "lookupIndex": 0, + "type": "u128", + "docs": [], + "namespace": "" + }, + { + "info": "Struct", + "lookupIndex": 1, + "lookupName": "InkStorageCollectionsStashHeader", + "type": "{\"lastVacant\":\"u32\",\"len\":\"u32\",\"lenEntries\":\"u32\"}", + "docs": [], + "namespace": "ink_storage::collections::stash::Header", + "sub": [ + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "lastVacant", + "typeName": "Index" + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "len", + "typeName": "u32" + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "lenEntries", + "typeName": "u32" + } + ] + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "" + }, + { + "info": "Enum", + "lookupIndex": 3, + "type": "{\"_enum\":{\"Vacant\":\"InkStorageCollectionsStashVacantEntry\",\"Occupied\":\"AccountId\"}}", + "docs": [], + "namespace": "ink_storage::collections::stash::Entry", + "sub": [ + { + "docs": [], + "info": "Si", + "lookupIndex": 7, + "lookupName": "InkStorageCollectionsStashVacantEntry", + "type": "Lookup7", + "typeName": "VacantEntry", + "index": 0, + "name": "Vacant" + }, + { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId", + "typeName": "T", + "index": 1, + "name": "Occupied" + } + ] + }, + { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + }, + { + "info": "VecFixed", + "lookupIndex": 5, + "type": "[u8;32]", + "docs": [], + "namespace": "", + "length": 32, + "sub": { + "info": "Plain", + "lookupIndex": 6, + "type": "u8", + "docs": [], + "namespace": "" + } + }, + { + "info": "Plain", + "lookupIndex": 6, + "type": "u8", + "docs": [], + "namespace": "" + }, + { + "info": "Struct", + "lookupIndex": 7, + "lookupName": "InkStorageCollectionsStashVacantEntry", + "type": "{\"next\":\"u32\",\"prev\":\"u32\"}", + "docs": [], + "namespace": "ink_storage::collections::stash::VacantEntry", + "sub": [ + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "next", + "typeName": "Index" + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "prev", + "typeName": "Index" + } + ] + }, + { + "info": "Struct", + "lookupIndex": 8, + "type": "{\"value\":\"u128\",\"keyIndex\":\"u32\"}", + "docs": [], + "namespace": "ink_storage::collections::hashmap::ValueEntry", + "sub": [ + { + "info": "Plain", + "lookupIndex": 0, + "type": "u128", + "docs": [], + "namespace": "", + "name": "value", + "typeName": "V" + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "keyIndex", + "typeName": "KeyIndex" + } + ] + }, + { + "info": "Enum", + "lookupIndex": 9, + "type": "{\"_enum\":{\"Vacant\":\"InkStorageCollectionsStashVacantEntry\",\"Occupied\":\"(AccountId,AccountId)\"}}", + "docs": [], + "namespace": "ink_storage::collections::stash::Entry", + "sub": [ + { + "docs": [], + "info": "Si", + "lookupIndex": 7, + "lookupName": "InkStorageCollectionsStashVacantEntry", + "type": "Lookup7", + "typeName": "VacantEntry", + "index": 0, + "name": "Vacant" + }, + { + "info": "Tuple", + "lookupIndex": 10, + "type": "(AccountId,AccountId)", + "docs": [], + "namespace": "", + "sub": [ + { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + }, + { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + } + ], + "typeName": "T", + "index": 1, + "name": "Occupied" + } + ] + }, + { + "info": "Tuple", + "lookupIndex": 10, + "type": "(AccountId,AccountId)", + "docs": [], + "namespace": "", + "sub": [ + { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + }, + { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + } + ] + }, + { + "info": "Plain", + "lookupIndex": 11, + "type": "Text", + "docs": [], + "namespace": "" + }, + { + "info": "Plain", + "lookupIndex": 12, + "type": "bool", + "docs": [], + "namespace": "" + }, + { + "info": "Enum", + "lookupIndex": 13, + "type": "{\"_enum\":{\"Vacant\":\"InkStorageCollectionsStashVacantEntry\",\"Occupied\":\"u32\"}}", + "docs": [], + "namespace": "ink_storage::collections::stash::Entry", + "sub": [ + { + "docs": [], + "info": "Si", + "lookupIndex": 7, + "lookupName": "InkStorageCollectionsStashVacantEntry", + "type": "Lookup7", + "typeName": "VacantEntry", + "index": 0, + "name": "Vacant" + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "typeName": "T", + "index": 1, + "name": "Occupied" + } + ] + }, + { + "info": "Struct", + "lookupIndex": 14, + "type": "{\"value\":\"u32\",\"keyIndex\":\"u32\"}", + "docs": [], + "namespace": "ink_storage::collections::hashmap::ValueEntry", + "sub": [ + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "value", + "typeName": "V" + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "keyIndex", + "typeName": "KeyIndex" + } + ] + }, + { + "info": "Enum", + "lookupIndex": 15, + "type": "{\"_enum\":{\"Vacant\":\"InkStorageCollectionsStashVacantEntry\",\"Occupied\":\"(u32,AccountId)\"}}", + "docs": [], + "namespace": "ink_storage::collections::stash::Entry", + "sub": [ + { + "docs": [], + "info": "Si", + "lookupIndex": 7, + "lookupName": "InkStorageCollectionsStashVacantEntry", + "type": "Lookup7", + "typeName": "VacantEntry", + "index": 0, + "name": "Vacant" + }, + { + "info": "Tuple", + "lookupIndex": 16, + "type": "(u32,AccountId)", + "docs": [], + "namespace": "", + "sub": [ + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "" + }, + { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + } + ], + "typeName": "T", + "index": 1, + "name": "Occupied" + } + ] + }, + { + "info": "Tuple", + "lookupIndex": 16, + "type": "(u32,AccountId)", + "docs": [], + "namespace": "", + "sub": [ + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "" + }, + { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + } + ] + }, + { + "info": "Struct", + "lookupIndex": 17, + "type": "{\"value\":\"Null\",\"keyIndex\":\"u32\"}", + "docs": [], + "namespace": "ink_storage::collections::hashmap::ValueEntry", + "sub": [ + { + "info": "Null", + "lookupIndex": 18, + "type": "Null", + "docs": [], + "namespace": "", + "name": "value", + "typeName": "V" + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "u32", + "docs": [], + "namespace": "", + "name": "keyIndex", + "typeName": "KeyIndex" + } + ] + }, + { + "info": "Null", + "lookupIndex": 18, + "type": "Null", + "docs": [], + "namespace": "" + }, + { + "info": "Option", + "lookupIndex": 19, + "type": "Option", + "docs": [], + "namespace": "Option", + "sub": { + "info": "Plain", + "lookupIndex": 11, + "type": "Text", + "docs": [], + "namespace": "" + } + }, + { + "info": "Result", + "lookupIndex": 20, + "type": "Result", + "docs": [], + "namespace": "Result", + "sub": [ + { + "name": "Ok", + "info": "Null", + "lookupIndex": 18, + "type": "Null", + "docs": [], + "namespace": "" + }, + { + "name": "Error", + "docs": [], + "info": "Si", + "lookupIndex": 21, + "lookupName": "ContractsErrorsPsp22Psp22Error", + "type": "Lookup21" + } + ] + }, + { + "info": "Enum", + "lookupIndex": 21, + "lookupName": "ContractsErrorsPsp22Psp22Error", + "type": "{\"_enum\":{\"Custom\":\"Text\",\"InsufficientBalance\":\"Null\",\"InsufficientAllowance\":\"Null\",\"ZeroRecipientAddress\":\"Null\",\"ZeroSenderAddress\":\"Null\",\"SafeTransferCheckFailed\":\"Text\"}}", + "docs": [], + "namespace": "contracts::traits::errors::psp22::PSP22Error", + "sub": [ + { + "info": "Plain", + "lookupIndex": 11, + "type": "Text", + "docs": [], + "namespace": "", + "typeName": "Text", + "index": 0, + "name": "Custom" + }, + { + "info": "Null", + "type": "Null", + "index": 1, + "name": "InsufficientBalance" + }, + { + "info": "Null", + "type": "Null", + "index": 2, + "name": "InsufficientAllowance" + }, + { + "info": "Null", + "type": "Null", + "index": 3, + "name": "ZeroRecipientAddress" + }, + { + "info": "Null", + "type": "Null", + "index": 4, + "name": "ZeroSenderAddress" + }, + { + "info": "Plain", + "lookupIndex": 11, + "type": "Text", + "docs": [], + "namespace": "", + "typeName": "Text", + "index": 5, + "name": "SafeTransferCheckFailed" + } + ] + }, + { + "info": "Plain", + "lookupIndex": 22, + "type": "Bytes", + "docs": [], + "namespace": "" + }, + { + "info": "Option", + "lookupIndex": 23, + "type": "Option", + "docs": [], + "namespace": "Option", + "sub": { + "info": "Plain", + "lookupIndex": 4, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + } + } +] \ No newline at end of file diff --git a/packages/api-contract/src/test/compare/ink_v3_traitErc20.test.json b/packages/api-contract/src/test/compare/ink_v3_traitErc20.test.json new file mode 100644 index 000000000000..6c566e0ba417 --- /dev/null +++ b/packages/api-contract/src/test/compare/ink_v3_traitErc20.test.json @@ -0,0 +1,204 @@ +[ + { + "info": "Plain", + "lookupIndex": 0, + "type": "u128", + "docs": [], + "namespace": "" + }, + { + "info": "Struct", + "lookupIndex": 1, + "type": "{\"offsetKey\":\"InkPrimitivesKey\"}", + "docs": [], + "namespace": "ink_storage::lazy::mapping::Mapping", + "sub": [ + { + "info": "VecFixed", + "lookupIndex": 5, + "lookupName": "InkPrimitivesKey", + "type": "[u8;32]", + "docs": [], + "namespace": "", + "length": 32, + "sub": { + "info": "Plain", + "lookupIndex": 4, + "type": "u8", + "docs": [], + "namespace": "" + }, + "typeName": "Key", + "name": "offsetKey" + } + ] + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + }, + { + "info": "VecFixed", + "lookupIndex": 3, + "type": "[u8;32]", + "docs": [], + "namespace": "", + "length": 32, + "sub": { + "info": "Plain", + "lookupIndex": 4, + "type": "u8", + "docs": [], + "namespace": "" + } + }, + { + "info": "Plain", + "lookupIndex": 4, + "type": "u8", + "docs": [], + "namespace": "" + }, + { + "info": "VecFixed", + "lookupIndex": 5, + "lookupName": "InkPrimitivesKey", + "type": "[u8;32]", + "docs": [], + "namespace": "", + "length": 32, + "sub": { + "info": "Plain", + "lookupIndex": 4, + "type": "u8", + "docs": [], + "namespace": "" + }, + "typeName": "[u8;32]" + }, + { + "info": "Struct", + "lookupIndex": 6, + "type": "{\"offsetKey\":\"InkPrimitivesKey\"}", + "docs": [], + "namespace": "ink_storage::lazy::mapping::Mapping", + "sub": [ + { + "info": "VecFixed", + "lookupIndex": 5, + "lookupName": "InkPrimitivesKey", + "type": "[u8;32]", + "docs": [], + "namespace": "", + "length": 32, + "sub": { + "info": "Plain", + "lookupIndex": 4, + "type": "u8", + "docs": [], + "namespace": "" + }, + "typeName": "Key", + "name": "offsetKey" + } + ] + }, + { + "info": "Tuple", + "lookupIndex": 7, + "type": "(AccountId,AccountId)", + "docs": [], + "namespace": "", + "sub": [ + { + "info": "Plain", + "lookupIndex": 2, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + }, + { + "info": "Plain", + "lookupIndex": 2, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + } + ] + }, + { + "info": "Result", + "lookupIndex": 8, + "type": "Result", + "docs": [], + "namespace": "Result", + "sub": [ + { + "name": "Ok", + "info": "Null", + "lookupIndex": 9, + "type": "Null", + "docs": [], + "namespace": "" + }, + { + "name": "Error", + "docs": [], + "info": "Si", + "lookupIndex": 10, + "lookupName": "TraitErc20Erc20Error", + "type": "Lookup10" + } + ] + }, + { + "info": "Null", + "lookupIndex": 9, + "type": "Null", + "docs": [], + "namespace": "" + }, + { + "info": "Enum", + "lookupIndex": 10, + "lookupName": "TraitErc20Erc20Error", + "type": "{\"_enum\":[\"InsufficientBalance\",\"InsufficientAllowance\"]}", + "docs": [], + "namespace": "trait_erc20::erc20::Error", + "sub": [ + { + "info": "Null", + "type": "Null", + "index": 0, + "name": "InsufficientBalance" + }, + { + "info": "Null", + "type": "Null", + "index": 1, + "name": "InsufficientAllowance" + } + ] + }, + { + "info": "Option", + "lookupIndex": 11, + "type": "Option", + "docs": [], + "namespace": "Option", + "sub": { + "info": "Plain", + "lookupIndex": 2, + "type": "AccountId", + "docs": [], + "namespace": "ink_env::types::AccountId", + "lookupNameRoot": "InkEnvAccountId" + } + } +] \ No newline at end of file diff --git a/packages/api-contract/src/test/contracts/ink/v1/psp22_minter_pauser.contract.json b/packages/api-contract/src/test/contracts/ink/v1/psp22_minter_pauser.contract.json index 190893fbef38..111c1993cc7a 100644 --- a/packages/api-contract/src/test/contracts/ink/v1/psp22_minter_pauser.contract.json +++ b/packages/api-contract/src/test/contracts/ink/v1/psp22_minter_pauser.contract.json @@ -1 +1,1722 @@ -{"source":{"hash":"0xf04668140e45f551ef324d9fea09e5adb7e8f70482ff1d216c6c4c5227a3d0ca","language":"ink! 3.0.0-rc6","compiler":"rustc 1.59.0-nightly","wasm":"0x0061736d01000000017e1360027f7f0060037f7f7f0060027f7f017f60047f7f7f7f0060037f7f7f017f60017f006000017f60017f017f60000060047f7f7e7e0060057f7f7f7f7f0060067f7f7f7f7e7e0060077f7f7f7f7e7e7f0060057f7f7f7e7e0060037f7f7e0060037e7e7f0060097f7f7e7f7f7f7f7f7f017f60027f7e017f60017f017e0281020b057365616c30127365616c5f6465706f7369745f6576656e740003057365616c30167365616c5f76616c75655f7472616e736665727265640000057365616c30097365616c5f63616c6c0010057365616c300b7365616c5f63616c6c65720000057365616c30147365616c5f686173685f626c616b65325f3235360001057365616c30107365616c5f7365745f73746f726167650001057365616c30127365616c5f636c6561725f73746f726167650005057365616c30107365616c5f6765745f73746f726167650004057365616c300a7365616c5f696e7075740000057365616c300b7365616c5f72657475726e000103656e76066d656d6f727902010210038c018a01040402050501030300000f01080708000005120000000000000505000d000005030b0c05010004020202020701010107000001090902010201020102000601020002000406010300000002010201020201020102000001070007000700000001000e0100010000010102000400001107000306040601030306040601030306040601030302000a0401020608017f01418080040b071102066465706c6f7900160463616c6c00180ad1f1028a010f0041034101200020012002100b1b0b6801017f230041306b22032400200341246a200241186a2900003702002003411c6a200241106a290000370200200341146a200241086a290000370200200320013602082003200229000037020c200041f8046a200341086a100c280200200341306a24004101460b960301047f230041b0016b22022400200241c8006a200141241091011a200241106a200041286a200241c8006a1057027f027f024020022802104101470440024020002903004201520d0020024198016a2203200041206a29030037030020024190016a2204200041186a29030037030020024188016a2205200041106a2903003703002002200029030837038001200241d0006a20024180016a200110692003200241e8006a2903003703002004200241e0006a2903003703002005200241d8006a29030037030020022002290350370380012002418080013602a401200241d484043602a0010240024020024180016a200241a0016a10490e0400010102010b200220022903a0013703a801200241086a200241a8016a104a2002280208450d030b000b41000c020b200241186a2802002002411c6a2802004102746a4190036a0c020b200228020c210141010b2103200241c8006a200241106a41047241341091011a410c4104104b220041013a00082000200136020420002003360200200241c8006a200010580b280200200241b0016a24000bdc0502057f027e230041a0016b22012400200141086a200041e0001091011a200141106a21030240200129030822074201520440200141f0006a220241808001360200200141d4840436026c20014100360268200141e8006a100e20014198016a220020022802003602002001200129036837039001200141e8006a20014190016a41988004100f200141e8006a41a48004411b2003101020002002280200360200200120012903683703900120014190016a41bf80044119200341216a10100c010b200141f0006a220241808001360200200141d4840436026c20014100360268200141e8006a100e20014198016a220020022802003602002001200129036837039001200141e8006a20014190016a41f08004100f200141e8006a41fc8004411c2003101120002002280200360200200120012903683703900120014190016a41988104411e200141306a10110b20014188016a2000280200360200200120012903900137038001230041206b22002400200041186a220420014180016a220241086a28020036020020002002290200220637031020004100360210200041086a200041106a2006a7101520002903082106200141e8006a220241086a2004280200360200200220002903103702002002200637020c200041206a240020014198016a200141f0006a28020022003602002001200129036837039001200141f8006a28020021042001280274210520012802940121022001200036026c200120023602680240027f20075004402000450d02200241003a0000200141013602702003200141e8006a1012200341216a200141e8006a1012200141d8006a0c010b2000450d01200241013a0000200141013602702003200141e8006a1013200141306a200141e8006a1013200141d0006a0b2200290300200041086a290300200141e8006a10142001200129036837029401200120014190016a2001280270101520052004200128020020012802041000200141a0016a24000f0b000b9a0101047f230041206b22012400200028020421042000419c8404360204200041086a22022802002103200241003602002001410336020c0240200320002802002202490d00200141003602182001200320026b3602142001200220046a3602102001410c6a200141106a105e2002200220012802186a22024b0d00200020033602082000200436020420002002360200200141206a24000f0b000be80201077f230041e0006b22032400200141086a2802002205200128020022044f04402003410036021020012802042106200341003602482003200520046b3602442003200420066a36024020022802002002280204200341406b1038200341406b20022802084115103720032003290340370214200341086a200341106a2003280248101520032802082104200328020c2102200341386a22054200370300200341306a22064200370300200341286a4200370300200342003703200240200241214f0440200341d8006a22074200370300200341d0006a22084200370300200341c8006a220942003703002003420037034020042002200341406b10042005200729030037030020062008290300370300200341286a2009290300370300200320032903403703200c010b200341206a200420021091011a0b2001200341206a1051200041086a200141086a28020036020020002001290200370200200341e0006a24000f0b000bc30201057f230041e0006b22042400200041086a2802002206200028020022054f04402004410036021020002802042107200441003602482004200620056b3602442004200520076a36024020012002200441406b10382003200441406b101220042004290340370214200441086a200441106a2004280248101520042802082102200428020c2101200441386a22034200370300200441306a22054200370300200441286a4200370300200442003703200240200141214f0440200441d8006a22064200370300200441d0006a22074200370300200441c8006a220842003703002004420037034020022001200441406b10042003200629030037030020052007290300370300200441286a2008290300370300200420042903403703200c010b200441206a200220011091011a0b2000200441206a1051200441e0006a24000f0b000bc30201057f230041e0006b22042400200041086a2802002206200028020022054f04402004410036021020002802042107200441003602482004200620056b3602442004200520076a36024020012002200441406b10382003200441406b101320042004290340370214200441086a200441106a2004280248101520042802082102200428020c2101200441386a22034200370300200441306a22054200370300200441286a4200370300200442003703200240200141214f0440200441d8006a22064200370300200441d0006a22074200370300200441c8006a220842003703002004420037034020022001200441406b10042003200629030037030020052007290300370300200441286a2008290300370300200420042903403703200c010b200441206a200220011091011a0b2000200441206a1051200441e0006a24000f0b000b230020002d000041014704402001410010460f0b200141011046200041016a200110130b08002000200110530b2a01017f230041106b2203240020032001370308200320003703002002200341101037200341106a24000b5201027f200141086a2203280200210420034100360200200128020421032001419c8404360204200220044b0440000b2001200420026b3602082001200220036a36020420002002360204200020033602000b11004100101741ff01714108470440000b0bf44002117f057e230041e00f6b22012400024002400240024002400240024002400240024020004504402001418080013602bc02200141d484043602b802200141b8026a101b200120012903b8023703a00441012100200141a0046a101c4281feffffff1f834280b6baede90b520d04200141e8016a200141a0046a101a20012802e8010d04200141f8016a290300211320012903f0012112200141900a6a200141a0046a101d20012802900a4101460d04200141e0036a2001419c0a6a2200280200360200200120012902940a3703d803200141900a6a200141a0046a101d20012802900a4101460d01200141c8046a2000280200360200200120012902940a3703c004200141e0016a200141a0046a101e4101210020012d00e0014101710d0420012d00e1012104200141b8036a200141e0036a280200360200200141e0026a200141c8046a280200360200200120012903d8033703b003200120012903c0043703d802410021000c040b2001418080013602bc02200141d484043602b802200141b8026a101b200120012903b802370380034101210020014180036a101c2212a722024101710d02201242ffffffffff1f832212422088a721032012421888a721052012421088a721060240024002400240024002400240200241087641ff0171220241e5006b0e03010905000b0240024002400240024002400240200241fc016b0e03010f08000b20024116460d04200241db01460d022002413d470440200241cd00460d06200241d400460d04200241f2004704402002418101460d0b2002419601460d03200241b201460d0a20024134470d1041002102200641ff0171412047200541ff017141db0047720d10200341e501460d0d0c100b41012102200641ff017141f10047200541ff017141b70147720d0f2003418201460d0c0c0f0b200641ff0171412647200541ff0171411b47720d0e41022102200341d401460d0b0c0e0b200641ff0171413c47200541ff017141f5004772200341d40147720d0d200141900a6a20014180036a101f20012d00900a4101460d0d200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a290000370300200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141d0006a20014180036a101a2001290350a70d0c200141e0006a290300211220012903582113200141f0036a2000290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903c0043703d803200120133703a004200120123703a804410321020c0a0b200641ff017141d60147200541ff017141b5014772200341fa0047720d0c200141900a6a20014180036a101f20012d00900a4101460d0c200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a290000370300200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141e8006a20014180036a101a2001290368a70d0b200141f8006a290300211220012903702113200141f0036a2000290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903c0043703d803200120133703a004200120123703a804410421020c090b200641ff0171412047200541ff017141f9014772200341f50147720d0b200141900a6a20014180036a101f20012d00900a4101460d0b200141d8046a200141a90a6a290000370300200141d0046a200141a10a6a290000370300200141c8046a200141990a6a290000370300200120012900910a3703c00420014180016a20014180036a101a2001280280010d0a20014190016a29030021122001290388012113200141900a6a20014180036a102020012802900a2204450d0a200141e0036a200141c8046a290300370300200141e8036a200141d0046a290300370300200141f0036a200141d8046a290300370300200141b0046a2012370300200120012903c0043703d803200120133703a804200120012902940a3703a004410521020c080b200641ff017141b30147200541ff017141c7014772200341ee0047720d0a200141900a6a20014180036a101f20012d00900a4101460d0a200141d8046a200141a90a6a290000370300200141d0046a200141a10a6a290000370300200141c8046a200141990a6a290000370300200120012900910a3703c004200141900a6a20014180036a101f20012d00900a4101460d092001419a026a20012d00930a3a0000200141e0026a200141a00a6a290300370300200141e8026a200141a80a6a290300370300200120012f00910a3b0198022001200141980a6a2903003703d802200141b00a6a2d0000210720012802940a210420014198016a20014180036a101a2001280298010d09200141a8016a290300211220012903a0012113200141900a6a20014180036a102020012802900a2210450d09200141e0036a200141c8046a290300370300200141e8036a200141d0046a290300370300200141f0036a200141d8046a29030037030020014182026a2001419a026a2d00003a0000200141a8046a200141e0026a290300370300200141b0046a200141e8026a290300370300200120012903c0043703d803200120012f0198023b018002200120012903d8023703a00420012902940a2116410621020c070b200641ff0171412d47200541ff017141f80147720d0941072102200341c201460d060c090b200641ff017141c70047200541ff017141d90147722003412147720d08200141900a6a20014180036a101f20012d00900a4101460d08200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a29000037030041082102200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141900a6a20014180036a101f20012d00900a4101460d0720014182026a20012d00930a3a0000200141a8046a200141a00a6a290300370300200141b0046a200141a80a6a290300370300200141e0036a2007290300370300200141e8036a2004290300370300200141f0036a2000290300370300200120012f00910a3b0180022001200141980a6a2903003703a004200120012903c0043703d803200141b00a6a2d0000210720012802940a21040c050b200641ff017141e80047200541ff0171413847722003412f47720d07200141900a6a20014180036a101f20012d00900a4101460d07200141f0036a200141a90a6a290000370300200141e8036a200141a10a6a29000037030041092102200141e0036a200141990a6a290000370300200120012900910a3703d8030c040b200641ff017141cb0147200541ff017141d7004772200341d50147720d06200141900a6a20014180036a101f20012d00900a4101460d06200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a290000370300200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141b0016a20014180036a101a20012903b001a70d05200141c0016a290300211220012903b8012113200141f0036a2000290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903c0043703d803200120133703a004200120123703a804410a21020c030b200641ff0171410f47200541ff0171411b4772200341bd0147720d05200141900a6a20014180036a101f20012d00900a4101460d05200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a290000370300200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141c8016a20014180036a101a20012903c801a70d04200141d8016a290300211220012903d0012113200141f0036a2000290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903c0043703d803200120133703a004200120123703a804410b21020c020b200641ff017141e00147200541ff017141c60147720d04410c210220034104460d010c040b200641ff017141e10047200541ff017141e60047720d03410d2102200341c900470d030b200141c8036a200141f0036a290300370300200141c0036a200141e8036a290300370300200141b8036a200141e0036a290300370300200141a2036a20014182026a2d00003a000020014188046a200141a8046a29030037030020014190046a200141b0046a290300370300200120012903d8033703b003200120012f0180023b01a003200120012903a0043703800441002100200221080c020b410121000c020b410121000b20000d01200141d0026a2200200141c8036a2205290300370300200141c8026a2202200141c0036a2206290300370300200141c0026a2203200141b8036a22092903003703004102210b200141b6026a200141a2036a2d00003a0000200141a0026a220c20014188046a220d290300370300200141a8026a220e20014190046a220f290300370300200120012903b0033703b802200120012f01a0033b01b40220012001290380043703980220014190026a2211200e29030037030020014188026a220a200c2903003703002001200129039802370380020240024002400240024002400240024002400240024002400240024002400240200841016b0e0d0102030405060708090a0b0c0d000b200141d8046a4200370300200141d0046a4200370300200141c8046a4200370300200142003703c004200141900a6a200141c0046a1021200141d8036a200141cc0f6a1022200141d8036a1023000b200141d8046a4200370300200141d0046a4200370300200141c8046a4200370300200142003703c004200141900a6a200141c0046a10212001200141d80f6a2d00003a00900a230041106b220024002000200141900a6a36020c2000410c6a2802002102230041206b22002400200041186a41808001360200200041d4840436021420004100360210200041086a200041106a200210602000280208200028020c105f000b200141d8046a4200370300200141d0046a4200370300200141c8046a4200370300200142003703c004200141900a6a200141c0046a1021200141d8036a200141c00f6a1022200141d8036a1023000b200a29030021122001290380022113200141f0036a4200370300200141e8036a4200370300200141e0036a4200370300200142003703d803200141900a6a200141d8036a1021024020012d00dc0f450440200141c0046a1024200141900a6a4196e4ea6c200141c0046a100a220041ff01714103470440200141b0036a200010250c020b200141d8046a200141d0026a290300370300200141d0046a200141c8026a290300370300200141c8046a200141c0026a290300370300200120012903b8023703c004200141b0036a200141900a6a200141c0046a2013201210260c010b200141b0036a410010270b200141900a6a200141d8036a1028200141b0036a1029000b200a290300211320012903800220014198046a4200370300200f4200370300200d42003703002001420037038004200141900a6a20014180046a1021200141a0046a1024200141f0026a200141b8046a2208290300370300200141e8026a200141b0046a2204290300370300200141e0026a200141a8046a2207290300370300200120012903a0043703d802200520002903003703002006200229030037030020092003290300370300200120012903b8023703b003200141f0036a2008290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903a0043703d803200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c0042001200141900a6a200141d8036a200141c0046a102a200129030022147c221520145422002000ad2013200141086a29030022127c7c221320125420122013511b0d0e20014180036a200141900a6a200141d8026a200141b0036a20152013102b20012802800322004106470440200141cc046a2001418c036a28020036020020012001290284033702c4040b200120003602c004200141900a6a20014180046a1028200141c0046a1029000b201129030021122001290388022113200141f0026a4200370300200141e8026a4200370300200141e0026a4200370300200142003703d802200141900a6a200141d8026a1021200141b0036a1024200141f0036a2005290300370300200141e8036a2006290300370300200141e0036a2009290300370300200120012903b0033703d803200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c0042001200436028004200120012903800237028404200141a0046a200141900a6a200141d8036a200141c0046a2013201220014180046a102c0c0e0b200141f0026a4200370300200141e8026a4200370300200141e0026a4200370300200142003703d802200141900a6a200141d8026a1021200141b0036a1024200141f0036a2000290300370300200141e8036a2002290300370300200141e0036a2003290300370300200120012903b8023703d803200141d8046a2005290300370300200141d0046a2006290300370300200141c8046a2009290300370300200120012903b0033703c004200141106a200141900a6a200141d8036a200141c0046a102a200129031022152013542200200141186a290300221420125420122014511b450440200141f0036a2202200141d0026a2208290300370300200141e8036a2203200141c8026a2205290300370300200141e0036a2206200141c0026a2209290300370300200120012903b8023703d803200141cf046a200141a0026a290300370000200141d7046a200141a8026a2903003700002001200141b6026a2d00003a00c204200120012f01b4023b01c004200120043600c30420012001290398023700c704200120073a00df0420012016370284042001201036028004200141a0046a200141900a6a200141d8036a200141c0046a2013201220014180046a102c024020012802a00422044106460440200220082903003703002003200529030037030020062009290300370300200120012903b8023703d803200141d8046a200141c8036a290300370300200141d0046a200141c0036a290300370300200141c8046a200141b8036a290300370300200120012903b0033703c004201520137d2213201556201420127d2000ad7d221220145620122014511b0d0f200141a0046a200141900a6a200141d8036a200141c0046a20132012102b20012802a00422044106470d01200141063602c0040c0b0b0c090b0c080b200141023602c0040c080b200141d8046a4200370300200141d0046a4200370300200141c8046a4200370300200142003703c004200141900a6a200141c0046a102120012903900a21122001200141980a6a2903003703980a200120123703900a200141900a6a102d000b200141f0026a2000290300370300200141e8026a2002290300370300200141e0026a2003290300370300200141fa026a200141b6026a2d00003a0000200120012903b8023703d802200120012f01b4023b01f80220014198036a420037030020014190036a420037030020014188036a42003703002001420037038003200141900a6a20014180036a1021200141b0036a200141d8026a41231091011a200141f0036a2000290300370300200141e8036a2002290300370300200141e0036a2003290300370300200141fa036a200141d2036a2d00003a0000200120012903b8023703d803200120012f00d0033b01f803200141c0046a200141d8036a41231091011a20014198046a2000290300370300200f2002290300370300200d2003290300370300200120012903b80237038004200141af046a200c290300370000200141b7046a200e2903003700002001200141e2046a2d00003a00a204200120012f01e0043b01a004200120043600a30420012001290398023700a704200120073a00bf04200141206a200141900a6a20014180046a200141a0046a102a2001200141286a2903003703a803200120012903203703a003200141a0036a102d000b200141f0036a4200370300200141e8036a4200370300200141e0036a4200370300200142003703d803200141900a6a200141d8036a1021200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c004200141306a200141900a6a200141c0046a102e2001200141386a2903003703b803200120012903303703b003200141b0036a102d000b200a29030021122001290380022113200141f0026a4200370300200141e8026a4200370300200141e0026a4200370300200142003703d802200141900a6a200141d8026a1021200141b0036a1024200141f0036a2005290300370300200141e8036a2006290300370300200141e0036a2009290300370300200120012903b0033703d803200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c004200141406b200141900a6a200141d8036a200141c0046a102a0240200129034022152013542200200141c8006a290300221420125420122014511b450440200141f0036a200141c8036a290300370300200141e8036a200141c0036a290300370300200141e0036a200141b8036a290300370300200120012903b0033703d803200141d8046a200141d0026a290300370300200141d0046a200141c8026a290300370300200141c8046a200141c0026a290300370300200120012903b8023703c004200141a0046a200141900a6a200141d8036a200141c0046a201520137d201420127d2000ad7d102b20012802a004220b4106460440200141063602c0040c020b200141cc046a200141ac046a280200360200200120012902a4043702c4040b2001200b3602c0040b0c0a0b200a29030021122001290380022113200141f0026a4200370300200141e8026a4200370300200141e0026a4200370300200142003703d802200141900a6a200141d8026a1021200141b0036a1024200141f0036a2005290300370300200141e8036a2006290300370300200141e0036a2009290300370300200120012903b0033703d803200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c004200141a0046a200141900a6a200141d8036a200141c0046a20132012102b0c080b200141f0036a4200370300200141e8036a4200370300200141e0036a4200370300200142003703d803200141900a6a200141d8036a1021200141c0046a10240240200141900a6a41e6dfa6e704200141c0046a100a220041ff01714103470440200141d8026a200010250c010b02400240024020012d00dc0f450440200141013a00dc0f200141c0046a10240c010b200141b0036a4100102720012802b00322004106470d010b410621000c010b200141e4026a200141bc036a280200360200200120012902b4033702dc020b200120003602d8020b0c090b200141f0036a4200370300200141e8036a4200370300200141e0036a4200370300200142003703d803200141900a6a200141d8036a1021200141c0046a10240240200141900a6a41e6dfa6e704200141c0046a100a220041ff01714103470440200141d8026a200010250c010b02400240024020012d00dc0f0440200141003a00dc0f200141c0046a10240c010b200141b0036a4101102720012802b00322004106470d010b410621000c010b200141e4026a200141bc036a280200360200200120012902b4033702dc020b200120003602d8020b0c080b200141cc046a200141ac046a280200360200200120012902a4043702c404200120043602c0040b0c050b20000d0020014188046a200141b8036a2200280200220236020020014188036a200141e0026a22082802002203360200200120012903b003221437038004200120012903d802221537038003200141a8046a2002360200200141b40f6a4200370200200141880f6a4200370300200141fc0e6a4200370200200141d00e6a4200370300200141980a6a4200370300200141a00a6a4200370300200141e40c6a4200370200200141ac0c6a4200370200200141f00b6a4200370300200141bc0b6a4200370200200141840b6a4200370200200141c80a6a4200370300200141d80f6a41003a0000200141cc0f6a4100360200200141b80c6a4200370300200141800c6a4200370300200141f80b6a4100360200200141900b6a4200370300200141d80a6a4200370300200141d00a6a4100360200200120143703a00420082003360200200142003703900a200141003a00dc0f200141003602c00f200142003703c80b200120153703d802200141c80e6a4100360200200141c00e6a4200370300200141980e6a220242003703002001418c0e6a4200370200200141e00d6a4200370300200141d40d6a4200370200200141a80d6a4200370300200141a00d6a4100360200200141980d6a4200370300200142003703f00c200141b0036a1024200141f0036a200141c8036a2208290300370300200141e8036a200141c0036a2203290300370300200141e0036a2000290300370300200120012903b0033703d803200141900a6a4100200141d8036a100b450440200141dc046a2008290300370200200141d4046a2003290300370200200141cc046a2000290300370200200120012903b0033702c404200141003602c0042002200141c0046a102f0b200141c0046a1024200141900a6a4196e4ea6c200141c0046a103041ff01714103470d02200141c0046a1024200141900a6a41e6dfa6e704200141c0046a103041ff01714103470d02200141cc0f6a20012903d80237020041082100200141c80f6a200141a8046a280200360200200141d40f6a200141e0026a280200360200200120012903a0043703c00f200120043a00d80f200141c0046a1024200141d8036a200141900a6a200141c0046a20122013102620012802d8034106470d02200141c0046a200141900a6a41d0051091011a200141a80a6a4200370300200141a00a6a4200370300200141980a6a4200370300200142003703900a200141c0046a200141900a6a10280c010b410621000b200141e00f6a240020000f0b000b20012802a00422004106470440200141cc046a200141ac046a280200360200200120012902a4043702c4040b200120003602c0040b200141900a6a200141d8026a1028200141c0046a1029000b200141900a6a200141d8036a1028200141d8026a1029000b880101017f230041306b22002400200041808001360224200041d4840436022020004180800136022841d48404200041286a1001200041206a2000280228101920002000290320370328200041086a200041286a101a02402000290308a70d002000290310200041186a2903008450450d004101101741ff01714108470d00200041306a24000f0b000b3401017f230041106b22022400200241086a410020012000280200200028020410900120002002290308370200200241106a24000b5e02017f037e027e4201200128020422024110490d001a2001200241106b36020420012001280200220141106a360200200141086a29000021032001290000210442000b21052000200437030820002005370300200041106a20033703000b3301017f230041106b220124002001200028020436020c20002802002001410c6a10082000200128020c1019200141106a24000b900102027f017e230041106b220124002001420037030841042102027f02400340200241084604402001410436020820012903082203a741044f0d02000b20012000101e20012d0000410171450440200141086a20026a20012d00013a0000200241016a21020c010b0b4101210241000c010b410021022003422088a70b2100200141106a24002002ad2000ad420886840b7d01027f230041206b22022400200241086a2001103a41012103024020022d00084101710d000240024020022d00090e020001020b41002103200041003602040c010b200241106a2001103b20022802102201450d00200041086a200229021437020020002001360204410021030b20002003360200200241206a24000b3801017f230041106b22022400200241086a2001103a20022d00082101200020022d00093a0001200020014101713a0000200241106a24000b8a0302067f017e230041406a22022400200241186a41047221042000027f024003402003412047044020022001101e20022d00004101710d02200320046a20022d00013a00002002200341016a22033602180c010b0b200241126a2201200241256a2d00003a00002002410e6a22032002412c6a2d00003a00002002410a6a2204200241336a2d00003a0000200220022f011c3b0114200220022d001e3a00162002200241236a2f00003b011020022002412a6a2f01003b010c2002200241316a2f00003b0108200241346a29020021082002412d6a2800002105200241266a2801002106200228001f2107200041036a20022d00163a0000200020022f01143b0001200041046a2007360000200041086a20022f01103b00002000410a6a20012d00003a00002000410b6a20063600002000410f6a20022f010c3b0000200041116a20032d00003a0000200041126a2005360000200041166a20022f01083b0000200041186a20042d00003a0000200041196a200837000041000c010b41010b3a0000200241406b24000b810302067f017e230041306b22022400200241186a2001103a024020022d00184101710d00024002400240024020022d0019220341037122054103470440200541016b0e020203010b200341ff017141044f0d04200241106a2001104a20022802100d042002280214220341ffffffff034b0d030c040b200341fc017141027621030c020b200220033a0025200241013a002420022001360220200241003b012c200241206a2002412c6a41021075220545044020022f012c21030b2005200341ffff037141ff014d720d02200341fcff037141027621030c010b200220033a0025200241013a0024200220013602202002410036022c200241206a2002412c6a410410750d01200228022c220341808004490d01200341027621030b200128020422052003490d00200241086a20034101103c200235020c2108200228020822042001280200220620031091012001200520036b3602042001200320066a360200450d0020002003ad4220862008843702040b20002004360200200241306a24000bfd0802027f057e230041e0006b22022400200241406b200141186a290300370300200241386a200141106a290300370300200241306a200141086a2903003703002002420037034820022001290300370328200241286a10612101200241808001360254200241d484043602500240024002402001200241d0006a10490d0020022002290350370358200241106a200241d8006a101a2002290310a70d00200241206a290300210420022903182105200041106a200241286a1062200041d0006a200241286a10632201290300370300200041e8006a200141186a290300370300200041e0006a200141106a290300370300200041d8006a200141086a290300370300200041f4006a4200370200200041c8006a420137030020004188016a200241286a10612201290300370300200041a0016a200141186a29030037030020004198016a200141106a29030037030020004190016a200141086a290300370300200041ac016a420037020020004180016a4201370300200041b8016a200241286a1062200041f8016a200241286a1063220129030037030020004190026a200141186a29030037030020004188026a200141106a29030037030020004180026a200141086a2903003703002000419c026a4200370200200041f0016a4201370300200041b0026a200241286a10612201290300370300200141086a2903002106200141106a2903002107200141186a29030021082000200437030820002005370300200041c8026a2008370300200041c0026a2007370300200041b8026a2006370300200041d4026a4200370200200041a8026a4201370300200041b0056a200241286a1064200041bc056a200241286a1064200041c8056a200241286a10653a0000200241286a1061200241808001360254200241d48404360250200241d0006a10490d0020022002290350370358200241086a200241d8006a103a20022d00084101710d0020022d000922030e020201000b000b410121030b200041e0026a200241286a1062200041a0036a200241286a10632201290300370300200041b8036a200141186a290300370300200041b0036a200141106a290300370300200041a8036a200141086a290300370300200041c4036a420037020020004198036a4201370300200041d8036a200241286a10612201290300370300200041f0036a200141186a290300370300200041e8036a200141106a290300370300200041e0036a200141086a290300370300200041fc036a4200370200200041d0036a420137030020004188046a200241286a1062200041c8046a200241286a10632201290300370300200041e0046a200141186a290300370300200041d8046a200141106a290300370300200041d0046a200141086a290300370300200041ec046a4200370200200041c0046a420137030020004180056a200241286a1061220129030037030020004198056a200141186a29030037030020004190056a200141106a29030037030020004188056a200141086a290300370300200020033a00cc05200041a4056a4200370200200041f8046a4201370300200241e0006a24000b2501017f20012802002202450440200041003602000f0b20002002200141086a28020010720b960201067f230041106b220124002001200036020c2001410c6a2802002100230041206b22022400200241186a41808001360200200241d4840436021420024100360210200241086a2106230041206b22012400200241106a220441086a2203280200210520034100360200200428020421032004419c8404360204200120053602142001200336021002400240027f20002802004504402005450d02200341003a000041010c010b2005450d01200341013a0000200141013602182000200141106a1052200128021421052001280210210320012802180b21002004200536020820042003360204200141086a20042000101520062001290308370300200141206a24000c010b000b2002280208200228020c105f000bf90101037f230041e0006b2201240020014180800136022c200141d4840436022820014180800136023041d48404200141306a1003200141286a2001280230101920012001290328370358200141306a200141d8006a101f20012d003022034101470440200141106a2001413a6a290100370300200141186a200141c2006a2901003703002001411f6a200141c9006a2900003700002001200129013237030820012d003121020b20034101460440000b200020023a000020002001290308370001200041096a200141106a290300370000200041116a200141186a290300370000200041186a2001411f6a290000370000200141e0006a24000b4e000240024002400240200141ff017141016b0e020102000b200041046a41f38104411110720c020b200041046a41e48104410f10720c010b200041046a41d38104411110720b200041003602000b840302077f037e230041e0006b22052400410321060240200020021035047f410305200541d0006a2206200241186a2200290000370300200541c8006a2207200241106a2208290000370300200541406b2209200241086a220a2900003703002005200229000037033820052001200541386a102e2005290300220c20037c220e200c54220b200bad200541086a290300220c20047c7c220d200c54200c200d511b0d0120062000290000370300200720082900003703002009200a29000037030020052002290000370338200141106a200541386a200e200d103d2001290300220c20037c220e200c5422062006ad200141086a290300220c20047c7c220d200c54200c200d511b0d012001200e3703002001200d370308200541003a0010200541d1006a200241186a290000370000200541c9006a200241106a290000370000200541c1006a200241086a290000370000200541013a003820052002290000370039200541106a200541386a20032004103e41060b360200200541e0006a24000f0b000b3101017f200041046a210202402001450440200241908204410910720c010b200241848204410c10720b200041003602000bd41f01087f230041b0016b22022400200241e0006a200141186a290300370300200241d8006a200141106a290300370300200241d0006a200141086a2903003703002002420037036820022001290300370348200241c8006a1061200241f8006a41808001360200200241d4840436027420024100360270200241406b200241f0006a20001036200228024020022802441005200041106a200241c8006a1066200241c8006a10632109200041f8006a2802004100200041f4006a28020022031b21072003454101742108200041f0006a2802002101034002400240200704400240024020080e03000103010b034020010440200141016b2101200328026021030c010b0b4101210841002105410021010b200741016b21072005210620032104034020042f015e20064d044020042802002203450d032001200141016a22014b0d0320042f015c2106200321040c010b0b200641016a22052006492103200145044020030d02200421030c030b20030d01200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0405200541016a2105200341e0006a21030c010b000b000b200241c8006a10612109200041b0016a2802004100200041ac016a28020022041b21072004454101742108200041a8016a280200210103400240200704400240024020080e03000105010b034020010440200141016b210120042802940321040c010b0b4101210841002103410021010b200741016b2107034020042f013220034d044020042802002205450d052001200141016a22014b0d0520042f01302103200521040c010b0b200341016a22062003492105200145044020050d04200421050c020b20050d03200420064102746a4194036a21054101210603402005280200210520012006460440410021060c0305200641016a210620054194036a21050c010b000b000b200041b8016a200241c8006a1066200241c8006a10632109200041a0026a28020041002000419c026a28020022031b2107200345410174210820004198026a280200210103400240200704400240024020080e03000107010b034020010440200141016b2101200328026021030c010b0b4101210841002105410021010b200741016b21072005210620032104034020042f015e20064d044020042802002203450d072001200141016a22014b0d0720042f015c2106200321040c010b0b200641016a22052006492103200145044020030d06200421030c020b20030d05200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341e0006a21030c010b000b000b200241c8006a10612109200041d8026a2802004100200041d4026a28020022041b21072004454101742108200041d0026a280200210103400240200704400240024020080e03000109010b034020010440200141016b210120042802f40521040c010b0b4100210141012108410021030b200741016b2107034020042f013220034d044020042802002205450d092001200141016a22014b0d0920042f01302103200521040c010b0b200341016a22062003492105200145044020050d08200421050c020b20050d07200420064102746a41f4056a21054101210603402005280200210520012006460440410021060c0305200641016a2106200541f4056a21050c010b000b000b200041b0056a200241c8006a1067200041bc056a200241c8006a1067200041c8056a200241c8006a1068200241c8006a1061200241003602a001200242808001370274200241d48404360270200220002d00cc053a009001200241f0006a20024190016a41011037200220022903703702a401200241286a200241a0016a200228027810152002280228200228022c1005200041e0026a200241c8006a1066200241c8006a10632109200041c8036a2802004100200041c4036a28020022031b21072003454101742108200041c0036a280200210103400240200704400240024020080e0300010b010b034020010440200141016b2101200328026021030c010b0b4100210141012108410021050b200741016b21072005210620032104034020042f015e20064d044020042802002203450d0b2001200141016a22014b0d0b20042f015c2106200321040c010b0b200641016a22052006492103200145044020030d0a200421030c020b20030d09200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341e0006a21030c010b000b000b200241c8006a1061210920004180046a2802004100200041fc036a28020022031b21072003454101742108200041f8036a280200210103400240200704400240024020080e0300010d010b034020010440200141016b2101200328026021030c010b0b4100210141012108410021050b200741016b21072005210620032104034020042f015e20064d044020042802002203450d0d2001200141016a22014b0d0d20042f015c2106200321040c010b0b200641016a22052006492103200145044020030d0c200421030c020b20030d0b200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341e0006a21030c010b000b000b20004188046a200241c8006a1066200241c8006a10632109200041f0046a2802004100200041ec046a28020022031b21072003454101742108200041e8046a280200210103400240200704400240024020080e0300010f010b034020010440200141016b2101200328026021030c010b0b4100210141012108410021050b200741016b21072005210620032104034020042f015e20064d044020042802002203450d0f2001200141016a22014b0d0f20042f015c2106200321040c010b0b200641016a22052006492103200145044020030d0e200421030c020b20030d0d200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341e0006a21030c010b000b000b200241c8006a10612109200041a8056a2802004100200041a4056a28020022031b21072003454101742108200041a0056a280200210103400240200704400240024020080e03000111010b034020010440200141016b210120032802c00321030c010b0b4100210141012108410021050b200741016b21072005210620032104034020042f01be0320064d044020042802002200450d112001200141016a22014b0d1120042f01bc032106200021040c010b0b200641016a22052006492100200145044020000d10200421030c020b20000d0f200420054102746a41c0036a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341c0036a21030c010b000b000b200241b0016a24000f0b200241f0006a20092004200641246c6a41046a1069200420064102746a4190036a28020022002d00082101200041013a0008024020014101710d0020002802004101470440200241f0006a10060c010b20024100360290012002428080013702a401200241d484043602a0012000280204200241a0016a106a200220022903a00137029401200241086a20024190016a20022802a8011015200241f0006a2002280208200228020c10050b410021010c000b000b200241f0006a2009200420064102746a220141046a350200106b200141306a28020022012d00282104200141013a0028024020044101710d00200128020022064102460440200241f0006a10060c010b200241d484043602940120024100360290012002418080013602a401200241d484043602a001200141046a210402402006410147044041d4840441003a0000200241013602a8012004280200200141086a280200200241a0016a106c0c010b41d4840441013a0000200241013602a8012004200241a0016a106d0b200220022903a00137029401200241106a20024190016a20022802a8011015200241f0006a2002280210200228021410050b410021010c000b000b200241f0006a2009200420064102746a220141046a1048200141306a28020022012d000c2104200141013a000c024020044101710d0020012802004101470440200241f0006a10060c010b20024100360290012002428080013702a401200241d484043602a0012001280204200241a0016a106a200141086a280200200241a0016a106a200220022903a00137029401200241186a20024190016a20022802a8011015200241f0006a2002280218200228021c10050b410021010c000b000b200241f0006a2009200420064102746a220141046a350200106b200141306a28020022012d000c2104200141013a000c024020044101710d00200128020022044102460440200241f0006a10060c010b200241d484043602940120024100360290012002418080013602a401200241d484043602a00102402004410147044041d4840441003a0000200241013602a801200141046a280200200141086a280200200241a0016a106c0c010b41d4840441013a0000200241013602a8012001280204200241a0016a106a0b200220022903a00137029401200241206a20024190016a20022802a8011015200241f0006a2002280220200228022410050b410021010c000b000b200241f0006a2009200420034106746a41346a106e200420034102746a41046a280200200241f0006a106f4100210120062103200521040c000b000b200241f0006a2009200420064102746a220141046a350200106b200141306a28020022012d00442104200141013a0044024020044101710d0020012d000022044102460440200241f0006a10060c010b200241d484043602940120024100360290012002418080013602a401200241d484043602a00102402004410147044041d4840441003a0000200241013602a801200141046a280200200141086a280200200241a0016a106c0c010b41d4840441013a0000200241013602a801200141016a200241a0016a10700b200220022903a00137029401200241306a20024190016a20022802a8011015200241f0006a2002280230200228023410050b410021010c000b000b200241f0006a2009200420034105746a41346a1071200420034102746a41046a280200200241f0006a106f4100210120052104200621030c000b000b000b200241f0006a2009200420064102746a220141046a350200106b200141306a28020022012d00242104200141013a0024024020044101710d0020012d000022044102460440200241f0006a10060c010b200241d484043602940120024100360290012002418080013602a401200241d484043602a00102402004410147044041d4840441003a0000200241013602a801200141046a280200200141086a280200200241a0016a106c0c010b41d4840441013a0000200241013602a801200141016a200241a0016a10130b200220022903a00137029401200241386a20024190016a20022802a8011015200241f0006a2002280238200228023c10050b410021010c000b000bbd0301077f230041106b220124002001200036020c2001410c6a2802002100230041206b22042400200441186a41808001360200200441d4840436021420044100360210200441086a2106230041206b22012400200441106a220541086a2202280200210320024100360200200528020421022005419c840436020420012003360214200120023602100240024002402000280200220741064604402003450d02200241003a0000200141013602180c010b2003450d01200241013a00002001410136021802400240024002400240024020070e06000102030405060b200341014d0d06200241003a000120014102360218200041046a200141106a10520c050b200341014d0d05200241013a0001200141023602180c040b200341014d0d04200241023a0001200141023602180c030b200341014d0d03200241033a0001200141023602180c020b200341014d0d02200241043a0001200141023602180c010b200341014d0d01200241053a000120014102360218200041046a200141106a10520b20052001290310370204200141086a20052001280218101520062001290308370300200141206a24000c010b000b2004280208200428020c105f000bbd0102017f027e230041406a22042400200441186a200241186a290000370300200441106a200241106a290000370300200441086a200241086a290000370300200441286a200341086a290000370300200441306a200341106a290000370300200441386a200341186a29000037030020042002290000370300200420032900003703202000200141a8026a200410322201290300420151047e200141106a290300210520012903080542000b37030020002005370308200441406b24000b930901067f230041d0026b220624002000027f4104200210350d001a4103200310350d001a200641206a200241186a290000370300200641186a200241106a290000370300200641106a200241086a290000370300200641306a200341086a290000370300200641386a200341106a290000370300200641406b200341186a29000037030020062002290000370308200620032900003703280240200141a8026a200641086a10322200290300420151044020002004370308200041003a0020200041106a20053703000c010b200641c8006a200641086a41c0001091011a0240024002402001027f024002400240200141e4016a2802002208200141e8016a280200470440200141f0016a220b200141e0016a2802002208103f2100200641013a00f001200641f0016a410172200641c8006a41c0001091011a200641a0016a2000200641f0016a104020062d00a00122004102462000410146720d062008200641a8016a280200220746410020062802a40122002008461b0d01200b200710412209450d0620092d00004101460d06200941046a210a20002007460d02200a2000360200200b200010412209450d0620092d00004101460d06200941086a210a0c030b20064188016a20014198026a200810420240200628028801410147044020064180026a2006419c016a280200360200200641f8016a20064194016a2902003703002006200629028c013703f00141c80041041033220041013a0000200041016a200641c8006a41c0001091011a200041003a0044200641f0016a200010431a0c010b20064190016a28020020064194016a2802004102746a41306a2802002100200641013a00f001200641f0016a410172200641c8006a41c0001091011a200641a0016a2000200641f0016a10400b200141e0016a280200220041016a22072000490d05200120073602e00120012802e801220041016a22072000490d05200120073602e8010c040b20012802e4010c020b200920003602080b200a200736020020012802e0012008470d012000200720002007491b0b3602e0010b20012802e401220041016a220720004f0d010b000b200120073602e401200641c8006a200641086a41c0001091011a41284108103322002004370308200041003a00202000200836021820004201370300200041106a2005370300200641a0016a200641c8006a41c0001091011a200641f0016a200141d0026a200641a0016a104420062802f0014101470440200641a0016a200641f0016a41047241d0001091011a200641a0016a200010451a0c010b200641f8016a280200200641fc016a2802004102746a41046a20003602000b200641b8016a200241186a290000370300200641b0016a200241106a290000370300200641a8016a200241086a290000370300200641c8016a200341086a290000370300200641d0016a200341106a290000370300200641d8016a200341186a290000370300200620022900003703a001200620032900003703c001200641f8016a200641a0016a41c0001091011a200641c0026a2005370300200641b8026a2004370300200642013703f001200641f0016a100d41060b360200200641d0026a24000bbd10020b7f057e230041d0076b22072400410421080240200210350d0041032108200310350d0020074198026a2209200241186a220c29000037030020074190026a220b200241106a220d29000037030020074188026a220a200241086a220e2900003703002007200229000037038002200741406b200120074180026a102e41012108200729034022142004542211200741c8006a290300221320055420052013511b0d0020094200370300200b4200370300200a42003703002007420037038002200120074180026a1028200741b8016a1024200741f0006a200341186a290000370200200741e8006a200341106a290000370200200741e0006a200341086a29000037020020072003290000370258200741b8026a200741d0016a290300370300200741b0026a200741c8016a290300370300200741a8026a2208200741c0016a290300370300200a200e290000370300200b200d2900003703002009200c290000370300200720072903b8013703a0022007200229000037038002200741f8006a20074180026a41c0001091011a200741b8016a200741d4006a41241091011a200741a0026a200537030020074198036a200741d4016a29020037030020074190036a200741cc016a29020037030020074188036a200741c4016a2902003703002007200437039802200720072902bc01370380032008200741f8006a41c000109101200741f8026a220941fdcdc6cf7a360200200a4200370300200b4200370300200741f0026a220b200641086a280200360200200741e8026a220c20062902003703002007420037038002200741003602e0012007428080013702bc01200741d484043602b80120074180036a200741b8016a1013200720072903b8013702e401200741386a200741e0016a20072802c0011015200728023c21062007280238210d200741306a200741e0016a200a10362007280234210e2007280230210a20072902e4012112200741003602c001200720123703b801200741b8016a200941041037200741c8026a200741b8016a1013200741b8016a101320042005200741b8016a1014200c280200200b280200200741b8016a1038200720072903b8013702e401200741286a200741e0016a20072802c0011015200728022c21082007280228210b2007200741e8016a28020022093602f401200720072802e401220c3602f001200720093602b801200d20064200200a200e200b2008200c200741b8016a1002210b200741f0016a20072802b8011019410121084101210602400240024002400240024002400240024002400240024002400240200b103941016b0e0c0d0203040506070809010a0b000b200720072903f0013703f801200741206a200741f8016a103a20072d00204101710d0b4100210a0240024020072d00210e0201000d0b200741186a200741f8016a103a20072d001920072d0018410171720d0c200741b8016a200741f8016a103b20072802b801220a450d0c20072902bc0121120b410021080c0c0b000b410221060c0a0b410321060c090b410421060c080b410521060c070b410621060c060b410721060c050b410821060c040b410a21060c030b410b21060c020b410921060c010b410021060b027f02402008450440200a0d014101210b41060c020b4101210b4106200641ff017122064101462006410846720d011a4100210b411d210f200741106a411d4100103c200728021421102007280210220a41b68104290000370000200a41156a41cb8104290000370000200a41106a41c68104290000370000200a41086a41be810429000037000041050c010b2012422088a7210f2012a721104100210b41050b210820074190016a420037030020074188016a420037030020074180016a42003703002007420037037820074180026a200741f8006a1021410021060340200641b0054b450440200120066a22092903002112200920074180026a20066a220c290300370300200c2012370300200941086a220d2903002112200d200c41086a220d290300370300200941106a220e2903002115200e200c41106a220e290300370300200941186a220929030021162009200c41186a220929030037030020092016370300200e2015370300200d2012370300200641206a21060c010b0b200141c8056a200741c8076a290300370300200141c0056a200741c0076a290300370300200b4504402000200a3602042000410c6a200f360200200041086a20103602000c010b20074198026a2206200241186a29000037030020074190026a220a200241106a29000037030020074188026a2208200241086a290000370300200720022900003703800202402014201420047d221454201320057d2011ad7d221220135620122013511b0d00200141106a220b20074180026a20142012103d2006200341186a2209290000370300200a200341106a220c2900003703002008200341086a220f29000037030020072003290000370380022007200120074180026a102e200741086a29030021132007290300211220062009290000370300200a200c2900003703002008200f2900003703002007200329000037038002200420127c221420125422012001ad200520137c7c221220135420122013511b0d00200b20074180026a20142012103d20074191016a200241186a29000037000020074189016a200241106a29000037000020074181016a200241086a290000370000200741013a00782007200229000037007920074199026a200341186a29000037000020074191026a200341106a29000037000020074189026a200341086a290000370000200741013a0080022007200329000037008102200741f8006a20074180026a20042005103e410621080c010b000b20002008360200200741d0076a24000b5e01017f230041106b220124002001200036020c2001410c6a2802002101230041206b22002400200041186a41808001360200200041d4840436021420004100360210200041086a200041106a200110362000280208200028020c105f000b3701027e200020014180016a200210312201290300420151047e200141106a290300210320012903080542000b370300200020033703080bdf0501087f230041b0016b220824000240200041f0006a2001100c22022802004101460440200241003a00080c010b20082001412410910121020240024002402000027f0240024002402000412c6a2802002205200041306a280200470440200041386a2209200028022822051054210320024101360240200241406b410472200241241091011a200241f8006a2003200241406b1055200228027822034102462003410146720d06200520024180016a2802002204464100200228027c22032005461b0d012009200410562206450d0620062802004101460d06200641046a210720032004460d02200720033602002009200310562206450d0620062802004101460d06200641086a21070c030b200241286a200041e0006a20051042024020022802284101470440200241d0006a2002413c6a280200360200200241c8006a200241346a2902003703002002200229022c370340412c4104103322034101360200200341046a200241241091011a200341003a0028200241406b200310431a0c010b200241306a280200200241346a2802004102746a41306a280200210320024101360240200241406b410472200241241091011a200241f8006a2003200241406b10550b2000280228220341016a22042003490d05200020043602282000280230220341016a22042003490d05200020043602300c040b200028022c0c020b200620033602080b2007200436020020002802282005470d012003200420032004491b0b3602280b200028022c220341016a220420034f0d010b000b2000200436022c2002200141241091012101410c41041033220241003a00082002200536020420024101360200200141f8006a200141241091011a200141406b20004198016a200141f8006a105720012802404101470440200141f8006a200141406b41047241341091011a200141f8006a200210581a0c010b200141c8006a280200200141cc006a2802004102746a4190036a20023602000b200841b0016a24000b910d02117f017e23004180016b2203240020032001360224200041f8036a210b027f200041fc036a28020022060440200b2802000c010b200b10472206360204200b410036020041000b21080240024003402006412c6a210920062f015e22044102742107417f2105034002402007450440200421050c010b200941286b210a200541016a2105200941046a2109200741046b2107417f200a280200220a2001472001200a491b41ff01710e020301000b0b20080440200841016b2108200620054102746a41e0006a28020021060c010b0b4102210720002903d0034201510440200341e8006a2209200041f0036a290300370300200341e0006a2207200041e8036a290300370300200341d8006a2204200041e0036a2903003703002003200041d8036a290300370350200341306a200341d0006a200341246a10482009200341c8006a2903003703002007200341406b2903003703002004200341386a29030037030020032003290330370350200341808001360274200341d48404360270027f02400240200341d0006a200341f0006a10490e0400050501050b20032003290370370378200341186a200341f8006a104a20032802180d04200328021c2109200341106a200341f8006a104a20032802100d042003280214210441010c010b41000b21072009ad2004ad4220868421140b41104104104b220841013a000c2008201437020420084100200720074102461b360200200320053602582003410036025020032006360254027f02400240024020062f015e410b4f0440200341286a2005104c200341306a280200210f200328022c2109200328022821041047210a20062f015e220720046b220520074b0d062005200541016b2205490d06200a20053b015e200441016a220c2004490d0620072007200c6b2207492005410c4f722005200747720d06200620044102746a220741306a280200210d200741046a280200210e200a41046a2006200c4102746a41046a200541027422051091011a200a41306a2006200c4102746a41306a20051091011a200620043b015e2003200f3602302003200a200620091b36022c4100210420034100360228200341286a20012008104d210941002101034020062802002205450d02200441016a22072004490d07200320062f015c22043602582003200536025420032007360250200741016b220620074b2001200647720d0720052f015e410b490d03200341286a2004104c20032802302111200328022c2003280228210420052f015e104e210120052f015e220820046b220620084b0d072006200641016b2206490d07200120063b015e200441016a22102004490d072008200820106b2208492006410c4f722006200847720d07200520044102746a220841306a280200210c200841046a280200210f200141046a200520104102746a220841046a200641027422061091011a200141306a200841306a20061091011a200520043b015e41016a220620106b220420064b0d0720012f015e2206410c4f2004200641016a47720d07200141e0006a200841e0006a20044102741091011a200341086a20012007104f200328020c2106200328020821012007210420052108044020062108200121040b200320113602302003200836022c20032004360228200341286a200e200d200a1050200721042006210a200c210d200f210e200521060c000b000b200341d0006a20012008104d21090c020b200b2802042205450d04200b2802002104104e220720053602602004200441016a22044b0d04200320072004104f20032802002105200b20032802042204360204200b20053602002005200541016b2205492001200547720d0420042f015e2201410a4b0d042004200141016a22053b015e200420014102746a220141306a200d360200200141046a200e360200200420054102746a41e0006a200a360200200a20053b015c200a2004360200200b280208220141016a22072001490d04200b41086a0c020b200341d0006a200e200d200a10500b200b280208220141016a22072001490d02200b41086a0b20073602000b41002107200928020022012802004101460440200128020421070b200341286a1024024020002007200341286a100a220941ff01714103470d0041022109200020032802242002100b0d00200341346a200241086a2900003702002003413c6a200241106a290000370200200341c4006a200241186a290000370200200320032802243602282003200229000037022c20004188046a200341286a102f200341286a1024410321090b20034180016a240020090f0b000bdb0302047f027e230041b0016b22022400200241f8006a200141186a290000370300200241f0006a200141106a290000370300200241e8006a200141086a29000037030020022001290000370360200241086a200041286a200241e0006a105c027f200228020841014704404202210620002903004201510440200241a8016a2203200041206a290300370300200241a0016a2204200041186a29030037030020024198016a2205200041106a2903003703002002200029030837039001200241e8006a20024190016a20011071200320024180016a2903003703002004200241f8006a2903003703002005200241f0006a2903003703002002200229036837039001200241406b20024190016a108f01200229034021060b20064202520440200241a0016a200241d8006a29030037030020024198016a200241d0006a2903003703002002200229034837039001200621070b200241e0006a200241086a41047241301091011a41284108104b22002007370300200041013a00202000200229039001370308200041106a20024198016a290300370300200041186a200241a0016a290300370300200241e0006a2000105d2802000c010b200241106a280200200241146a2802004102746a41046a2802000b200241b0016a24000bb00302047f027e230041f0016b2202240020024180016a200141c0001091011a200241086a200041286a20024180016a1044027f200228020841014704404202210620002903004201510440200241e8016a2203200041206a290300370300200241e0016a2204200041186a290300370300200241d8016a2205200041106a290300370300200220002903083703d00120024188016a200241d0016a2001106e2003200241a0016a290300370300200420024198016a290300370300200520024190016a29030037030020022002290388013703d001200241e0006a200241d0016a108f01200229036021060b20064202520440200241e0016a200241f8006a290300370300200241d8016a200241f0006a290300370300200220022903683703d001200621070b20024180016a200241086a41047241d0001091011a41284108104b22002007370300200041013a0020200020022903d001370308200041106a200241d8016a290300370300200041186a200241e0016a29030037030020024180016a200010452802000c010b200241106a280200200241146a2802004102746a41046a2802000b200241f0016a24000b11002000200110342200450440000b20000bb50101027f2000200020016a41016b410020016b7122014d0440024041cc8404280200220020016a22032000490d0041d0840428020020034904402001200141ffff036a22004b044041000f0b2000411076220240002200417f46044041000f0b2000200041ffff037147044041000f0b2000411074220020024110746a2203200049044041000f0b4100210241d084042003360200200020016a22032000490d010b41cc84042003360200200021020b20020f0b000b4101017f230041206b22012400200141186a4200370300200141106a4200370300200141086a42003703002001420037030020002001109301200141206a2400450b6102017f017e230041206b220324002001290204210420034100360218200320043703102002290300200241086a290300200341106a101420012003290310370204200341086a20012003280218101520002003290308370300200341206a24000b6001037f230041106b2203240002402000280208220420026a220520044f0440200341086a2004200520002802002000280204109001200328020c2002470d012003280208200120021091011a20002005360208200341106a24000f0b000b000b2c01017f230041106b220324002003200136020c2003410c6a2002105e2002200020011037200341106a24000b2001017f410c21012000410b4d047f2000410274419c84046a28020005410c0b0b3c01017f200020012802042202047f2001200241016b36020420012001280200220141016a36020020012d00000520010b3a000120002002453a00000bc00502097f017e230041106b22062400200620011020024020062802002203044041002006290204220b422088a7220441076b2201200120044b1b210a200341036a417c7120036b210941002101034020012004490440024002400240200120036a2d00002207411874411875220841004e0440200920016b4103712009417f46720d0303402001200a4f0d03200120036a2205280200200541046a28020072418081828478710d032001200141086a22014d0d000b0c010b4100210502400240024002402007419982046a2d000041026b0e030002010a0b200141016a220120044f0d09200120036a2c000041bf7f4c0d020c090b200141016a220220044f0d08200220036a2d000021020240024002400240200741f0016b0e050100000002000b2002411874411875417f4a2008410f6a41ff017141024b720d0b200241c001490d020c0b0b200241f0006a41ff01714130490d010c0a0b2002411874411875417f4a2002418f014b720d090b200141026a220220044f0d08200220036a2c000041bf7f4a0d08200141036a220120044f0d08200120036a2c000041bf7f4c0d010c080b200141016a220220044f0d07200220036a2d00002102024002400240200741e001470440200741ed01460d012008411f6a41ff0171410c490d022008417e71416e472002411874411875417f4a720d0b200241c001490d030c0b0b200241e0017141a001460d020c0a0b2002411874411875417f4a0d09200241a001490d010c090b2002411874411875417f4a200241bf014b720d080b200141026a220120044f0d07200120036a2c000041bf7f4a0d070b200141016a21010c040b000b20012004200120044b1b2105034020012005460440200521010c040b200120036a2c00004100480d03200141016a21010c000b000b200141016a21010c010b0b2000200b370204200321050c010b0b20002005360200200641106a24000bf10101037f230041106b220424000240200141004e0440200441086a2105027f41012001450d001a20024504402001410110340c010b410041cc8404280200220220016a22032002490d001a024041d084042802002003490440200141ffff036a22032001490d01200341107640002202417f46200241ffff0371200247720d012002411074220220034180807c716a22032002490d0141d0840420033602004100200120026a22032002490d021a0b41cc8404200336020020020c010b41000b21022005200136020420052002360200200428020822020d010b000b2000200136020420002002360200200441106a24000b8c0801077f230041a0016b220424000240200041f0006a200110312205290300420151044020052002370308200541003a0020200541106a20033703000c010b200441186a2205200141186a290000370300200441106a2206200141106a290000370300200441086a2207200141086a290000370300200420012900003703000240024002402000027f0240024002402000412c6a2802002208200041306a280200470440200041386a220a2000280228220810592109200441c1006a2007290300370000200441c9006a2006290300370000200441d1006a2005290300370000200441013a003820042004290300370039200441f0006a2009200441386a105a20042d007022054102462005410146720d062008200441f8006a2802002206464100200428027422052008461b0d01200a2006105b2207450d0620072d00004101460d06200741046a210920052006460d0220092005360200200a2005105b2207450d0620072d00004101460d06200741086a21090c030b200441206a200041e0006a20081042024020042802204101470440200441c8006a200441346a280200360200200441406b2004412c6a29020037030020042004290224370338412841041033220541013a0000200541003a002420052004290300370001200541096a200441086a290300370000200541116a200441106a290300370000200541196a200441186a290300370000200441386a200510431a0c010b200441286a2802002004412c6a2802004102746a41306a2802002105200441c1006a200441086a290300370000200441c9006a200441106a290300370000200441d1006a200441186a290300370000200441013a003820042004290300370039200441f0006a2005200441386a105a0b2000280228220541016a22062005490d05200020063602282000280230220541016a22062005490d05200020063602300c040b200028022c0c020b200720053602080b2009200636020020002802282008470d012005200620052006491b0b3602280b200028022c220541016a220620054f0d010b000b2000200636022c200441186a2205200141186a290000370300200441106a2206200141106a290000370300200441086a2207200141086a2900003703002004200129000037030041284108103322012002370308200141003a00202001200836021820014201370300200141106a200337030020044188016a200529030037030020044180016a2006290300370300200441f8006a200729030037030020042004290300370370200441386a20004198016a200441f0006a105c20042802384101470440200441f0006a200441386a41047241301091011a200441f0006a2001105d1a0c010b200441406b280200200441c4006a2802004102746a41046a20013602000b200441a0016a24000b6701017f230041b0016b22042400200441086a200041211091011a200441296a200141211091011a200441d8006a200441086a41c8001091011a200441a8016a2003370300200441a0016a200237030020044200370350200441d0006a100d200441b0016a24000ba30702047f057e230041a0026b22022400200241106a200041286a200110420240027f200228021041014704404102210320002903004201510440200041206a2903002109200041186a2903002108200041106a29030021062002200029030822072001ad7c220a370328200220062007200a56ad7c2207370330200220082006200756ad7c2206370338200220092006200854ad7c37034020024180800136028401200241d484043602800141002100024002400240200241286a20024180016a10490e0400060601060b20022002290380013703c801200241086a200241c8016a103a4101210020022d00084101710d00027f0240024020022d00090e020001030b200241c8006a200241c8016a107420022802484101460d02200241d0006a2802002104200228024c210541000c010b200241d0016a200241c8016a101f20022d00d0014101460d01200241f8016a200241c8016a101f20022d00f8014101460d01200241c6016a20022d00d3013a0000200241f5006a20024191026a290000370000200241ed006a20024189026a290000370000200241e5006a20024181026a290000370000200241d0006a200241e4016a290200370300200241d5006a200241e9016a290000370000200220022900f90137005d200220022f00d1013b01c4012002200241dc016a290200370348200241d8016a280200210420022802d40121052002418c016a200241c8006a41351091011a41010b2103200241fa016a200241c6016a2d00003a0000200220022f01c4013b01f801200241c8006a2002418c016a41381091011a410021000c010b0b20000d03200241d2016a2201200241fa016a22002d00003a0000200220022f01f8013b01d0012002418c016a200241c8006a41381091011a20034102470440200020012d00003a0000200220022f01d0013b01f801200241c8006a2002418c016a41381091011a0b200241ca016a20002d00003a0000200220022f01f8013b01c8012002418c016a200241c8006a41381091011a0b200241d8006a200241106a410472220041106a280200360200200241d0006a200041086a2902003703002002200029020037034841c8004104104b220020033a00002000200436000820002005360004200020022f01c8013b0001200041036a200241ca016a2d00003a00002000410c6a2002418c016a41381091011a200041013a0044200241c8006a200010432802000c010b200241186a2802002002411c6a2802004102746a41306a2802000b200241a0026a24000f0b000b3a01017f20022d000021032000200141c4001091012001200241c40010910121012d0000410246410020034102461b450440200141003a00440b0b2101017f20002001103f22002d0000410247047f200041003a004420000541000b0b900201077f027f20012802042204044020012802000c010b2001104722043602042001410036020041000b2106027f034020042f015e2208410274210941002105417f21030240034020052009460440200821030c020b200420056a2107200341016a2103200541046a21050240417f200741046a280200220720024720022007491b41ff01710e020001020b0b2000410c6a2003360200200041086a2004360200200041106a210541010c020b20060440200641016b2106200420034102746a41e0006a28020021040c010b0b200041106a20033602002000410c6a2004360200200041086a4100360200200041146a21052002210641000b21032000200636020420052001360200200020033602000b860801117f230041306b220224002000280200210e200241186a2000410c6a280200360200200220002902043703100240027f024002400240200228021422042f015e410b4f0440200241206a2002280218104c200241286a28020021072002280224210f2002280220210a200228021021031047210820042f015e2209200a6b220520094b0d05200541016b220b20054b0d052008200b3b015e200a41016a2206200a490d05200920066b220520094b200b410c4f722005200b47720d052004200a4102746a220541306a2802002110200541046a2802002109200841046a200420064102746a41046a200b41027422051091011a200841306a200420064102746a41306a20051091011a2004200a3b015e20022007360228200220082004200f1b36022441002106200241002003200f1b360220200241206a200e2001104d2112034020042802002207450d02200341016a22052003490d06200220042f015c22033602182002200736021420022005360210200541016b220120054b2001200647720d0620072f015e410b490d03200241206a2003104c2002280228210a2002280224210b2002280220210d20072f015e104e210c20072f015e2204200d6b220120044b0d06200141016b221120014b0d06200c20113b015e200d41016a2206200d490d06200420066b220120044b2011410c4f722001201147720d062007200d4102746a220141306a280200210e200141046a280200210f200c41046a200720064102746a220441046a201141027422011091011a200c41306a200441306a20011091011a2007200d3b015e41016a220120066b220320014b0d06200c2f015e2201410c4f2003200141016a47720d06200c41e0006a200441e0006a20034102741091011a200241086a200c2005104f200228020c21042002280208210620052103200721012002200a3602282002200b047f2006210320040520010b36022420022003360220200241206a20092010200810502005210320042108200e2110200f2109200721040c000b000b200241106a200e2001104d21120c020b200028021022042802042200450d0320042802002103104e22012000360260200341016a22002003490d03200220012000104f20022802002100200420022802042203360204200420003602002000200041016b2200492000200647720d0320032f015e2200410a4b0d032003200041016a22013b015e200320004102746a220041306a2010360200200041046a2009360200200320014102746a41e0006a2008360200200820013b015c200820033602002004280208220041016a22032000490d03200441086a0c020b200241106a20092010200810500b20002802102201280208220041016a22032000490d01200141086a0b2003360200200241306a240020120f0b000b880201097f027f20012802042203044020012802000c010b2001107c22033602042001410036020041000b2105200241206a2108027f034020032f01322209410674210a41002104417f2106024003402004200a460440200921060c020b2002200320046a220b41346a108e01220741ff01714504402008200b41d4006a108e0121070b200641016a2106200441406b21040240200741ff01710e020001020b0b41010c020b20050440200541016b2105200320064102746a41f4056a28020021030c010b0b200041146a200241c0001091011a4100210541000b21042000200536020420002004360200200041106a20013602002000410c6a2006360200200041086a20033602000b800b01117f230041e0026b22022400200241206a200041086a28020036020020022000290200370318200041106a21080240027f02400240027f0240200228021c22042f0132410b4f0440200241e0016a2002280220104c200241e8016a280200210720022802e401210c20022802e001210520022802182103107c210920042f0132220a20056b2206200a4b0d062006200641016b2206490d06200920063b0132200420054106746a220b41346a280000210d200241e0016a200b41386a413c1091011a200541016a220b2005490d06200a200a200b6b220a492006410c4f722006200a47720d06200420054102746a41046a280200210a200941346a2004200b4106746a41346a20064106741091011a200941046a2004200b4102746a41046a20064102741091011a200420053b0132200241a0026a200241e0016a413c1091011a20022007360260200220092004200c1b36025c41002107200241002003200c1b360258200241e0016a200841c0001091011a200241d8006a200241e0016a2001107d210c200241a4016a200241a0026a413c1091011a200241186a200241a4016a413c1091011a200241e0016a410472210e0340200428020022050440200341016a22062003490d08200220042f013022013602a0012002200536029c012002200636029801200641016b220320064b2003200747720d0820052f0132410b490d03200241e0016a2001104c20022802e801210f20022802e401211020022802e001210120052f0132107e210320052f0132220820016b220420084b0d082004200441016b2204490d08200320043b0132200520014106746a220741346a280000210b200241e0016a200741386a413c1091011a200141016a22072001490d082008200820076b2208492004410c4f722004200847720d08200520014102746a41046a2802002108200341346a200520074106746a41346a20044106741091011a200341046a200520074102746a221241046a20044102741091011a200520013b0132200241a0026a200241e0016a413c1091011a41016a220420076b220120044b0d0820032f01322204410c4f2001200441016a47720d08200341f4056a201241f4056a20014102741091011a200241106a20032006107f2002280214210420022802102107200241a4016a200241a0026a413c1091011a20062103200521012002200f3602a80220022010047f2007210320040520010b3602a402200220033602a0022002200d3602e001200e200241186a413c1091011a200241a0026a200241e0016a200a2009108001200241d8006a200241a4016a413c1091011a200241186a200241d8006a413c1091011a20062103200b210d200421092008210a200521040c010b0b200241a0026a200241186a413c1091011a41010c020b200241e0016a200841c0001091011a200241186a200241e0016a2001107d210c200028020c21000c020b2002200d3602e001200e200241186a413c1091011a20024198016a200241e0016a200a20091080012001210d41000b200028020c21000d010b2000280208220141016a22032001490d02200041086a0c010b20002802042203450d0120002802002101107e220520033602f4052001200141016a22014b0d01200241086a20052001107f200228020821032000200228020c220136020420002003360200200241e0016a200241a0026a413c1091011a2003200341016b2203492003200747720d0120012f01322203410a4b0d012001200341016a22053b0132200120034106746a220641346a200d360000200641386a200241e0016a413c1091011a200120054102746a41f4056a2009360200200120034102746a41046a200a360200200920053b0130200920013602002000280208220141016a22032001490d01200041086a0b2003360200200241e0026a2400200c0f0b000b2d01017f2000280208220220002802044904402000200241016a360208200028020020026a20013a00000f0b000b2201017f41e000410410732200450440000b200041003b015e2000410036020020000b900201037f230041e0006b220324002003411a6a41f0003a0000200341186a41edc2013b0100200342e9dcad8382add8b9e800370310200320013602082003200236020c200341386a22014200370300200341306a22044200370300200341286a220542003703002003420037032020034100360240200342808001370254200341d48404360250200341106a200341d0006a1076200341086a200341d0006a10772002280200200341d0006a106a200320032903503702442003200341406b2003280258101520032802002003280204200341206a1004200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290320370000200341e0006a24000b3701017f230041106b220224002002200128020436020c200020012802002002410c6a10072001200228020c10191039200241106a24000b4801017f027f4101200128020422024104490d001a2001200241046b36020420012001280200220141046a3602002001280000210241000b210120002002360204200020013602000b11002000200110732200044020000f0b000b5b01027f41042102024020014105490d002001210202400240200141056b0e020200010b4100210141012103410521020c010b200141076b210141012103410621020b2000200336020420002002360200200041086a20013602000b4101027f2000280204220341046a20032f015e41016a2204200028020822002001107b200341306a2201200420002002107b200320043b015e200120004102746a0b2201017f419001410410732200450440000b200041003b015e2000410036020020000b860101037f230041206b2203240020012f015e2104200341003a00182003200436021420034100360210024003400240200341086a200341106a107a2003280208450d002002450d022001200328020c22044102746a41e0006a280200220520043b015c200520013602000c010b0b2000200136020420002002360200200341206a24000f0b000bfc0101067f2000280204220441046a20042f015e220541016a2208200028020822062001107b200441306a200820062002107b0240200641016a22022006490d00200241016a22092002490d00200441e0006a2107200541026a220120094b0440200120026b220520014b0d012005200541016b2205490d01200720094102746a200720024102746a20054102741092010b200720024102746a2003360200200420083b015e20012002200120024b1b2103200420064102746a41e4006a2101200028020021000340200220034704402000450d022001280200220620023b015c20062004360200200141046a2101200241016a21020c010b0b0f0b000b8d0101047f230041106b22022400200028020421052000419c8404360204200041086a220328020021042003410036020002402000280200220320044d0440200241003602082002200420036b3602042002200320056a360200200120021053200320022802086a220120034f0d010b000b200020043602082000200536020420002001360200200241106a24000b100020002802002000280208200110380b0a0020012000412010370b900702087f057e230041c0016b22022400200241106a200041286a200110420240027f20022802104101470440024020002903004201520440410221010c010b200041206a290300210d200041186a290300210a200041106a290300210b20022000290308220c2001ad7c220e3703282002200b200c200e56ad7c220c3703302002200a200b200c56ad7c220b3703382002200d200a200b56ad7c37034020024180800136024c200241d4840436024841002100024002400240200241286a200241c8006a10490e0400060601060b20022002290348370370200241086a200241f0006a103a4101210020022d00084101710d00027f0240024020022d00090e020001030b20024198016a200241f0006a10742002280298014101460d02200228029c01210341002101200241a0016a2802000c010b2002200241f0006a104a20022802000d012002280204210320024198016a200241f0006a101f4101210120022d0098014101460d0120024188016a200241ad016a290000220a370300200241d8006a200241a5016a290000370300200241e0006a200a370300200241e8006a200241b5016a2800003602002002200229009d013703502002280099010b2106200241b0016a200241e8006a280200360200200241a8016a200241e0006a290300370300200241a0016a200241d8006a2903003703002002200229035037039801410021000c010b410221010b20000d0320024190016a2207200241b0016a220028020036020020024188016a2208200241a8016a220429030037030020024180016a2209200241a0016a220529030037030020022002290398013703782001410247044020002007280200360200200420082903003703002005200929030037030020022002290378370398010b200241d8006a2005290300370300200241e0006a2004290300370300200241e8006a200028020036020020022002290398013703500b200241a8016a200241106a410472220041106a280200360200200241a0016a200041086a2902003703002002200029020037039801412c4104104b220020063602082000200336020420002001360200200041013a00282000200229035037020c200041146a200241d8006a2903003702002000411c6a200241e0006a290300370200200041246a200241e8006a28020036020020024198016a200010432802000c010b200241186a2802002002411c6a2802004102746a41306a2802000b200241c0016a24000f0b000b3801017f200228020021032000200141281091012001200241281091012101280200410246410020034102461b450440200141003a00280b0b2101017f2000200110542200280200410247047f200041003a002820000541000b0bb702010a7f027f20012802042204044020012802000c010b200110820122043602042001410036020041000b2107200241046a210920022802002108027f034020042f01be03220a41246c210b41002105417f2106024003402005200b460440200a21060c020b417f2008200420056a220c41046a280200220347200320084b1b22034504402009200c41086a108e0121030b200641016a2106200541246a21050240200341ff01710e020001020b0b200020073602042000410c6a2006360200200041086a200436020041012103200041106a0c020b20070440200741016b2107200420064102746a41c0036a28020021040c010b0b200041046a200241241091011a200041306a20063602002000412c6a200436020041002103200041286a4100360200200041346a0b2000200336020020013602000bad0f021d7f047e230041d0016b22022400200241206a2000412c6a280200360200200220002902243703180240027f02400240027f0240200228021c22042f01be03410b4f044020024188016a2002280220104c20024190016a2802002107200228028c01210c200228028801210520022802182103108201210920042f01be03220a20056b2206200a4b0d062006200641016b2206490d06200920063b01be0320024190016a2004200541246c6a220b41106a29020037030020024198016a200b41186a290200370300200241a0016a200b41206a2902003703002002200b41086a29020037038801200541016a22082005490d06200a200a20086b220a492006410c4f722006200a47720d06200420054102746a4190036a280200210a200b41046a280200210b200941046a2004200841246c6a41046a200641246c1091011a20094190036a200420084102746a4190036a20064102741091011a200420053b01be03200241b8016a220e20024190016a2211290300370300200241c0016a220f20024198016a2212290300370300200241c8016a2210200241a0016a221329030037030020022002290388013703b00120022007360240200220092004200c1b36023c41002107200241002003200c1b36023820024188016a200041241091011a200241386a20024188016a2001108301211420024180016a22152010290300221f370300200241f8006a2216200f2903002220370300200241f0006a2217200e2903002221370300200220022903b0012222370368200241306a2218201f370300200241286a22192020370300200241206a221a20213703002002202237031820024188016a410472210d0340200428020022050440200341016a22062003490d08200220042f01bc0322013602602002200536025c20022006360258200641016b220320064b2003200747720d0820052f01be03410b490d0320024188016a2001104c200228029001211b200228028c01211c200228028801210120052f01be03108401210320052f01be03220820016b220420084b0d082004200441016b2204490d08200320043b01be0320112005200141246c6a220c41106a2902003703002012200c41186a2902003703002013200c41206a2902003703002002200c41086a29020037038801200141016a22072001490d082008200820076b2208492004410c4f722004200847720d08200520014102746a4190036a2802002108200c41046a280200210c200341046a2005200741246c6a41046a200441246c1091011a20034190036a200520074102746a221e4190036a20044102741091011a200520013b01be03200e2011290300370300200f20122903003703002010201329030037030020022002290388013703b00141016a220420076b220120044b0d0820032f01be032204410c4f2001200441016a47720d08200341c0036a201e41c0036a20014102741091011a200241106a200320061085012017200e2903003703002016200f29030037030020152010290300370300200220022903b001370368200228021421042002280210210720062103200521012002201b3602b8012002201c047f2007210320040520010b3602b401200220033602b001200d2002290318370200200d41086a201a290300370200200d41106a2019290300370200200d41186a20182903003702002002200b36028801200241b0016a20024188016a200a2009108601200241d0006a2015290300221f370300200241c8006a20162903002220370300200241406b20172903002221370300201a2021370300201920203703002018201f37030020022002290368221f3703382002201f37031820062103200c210b200421092008210a200521040c010b0b200241c8016a200241306a290300370300200241c0016a200241286a290300370300200241b8016a200241206a290300370300200220022903183703b00141010c020b20024188016a200041241091011a200241186a20024188016a20011083012114200028023021000c020b200d2002290318370200200d41086a200241206a290300370200200d41106a200241286a290300370200200d41186a200241306a2903003702002002200b36028801200241d8006a20024188016a200a20091086012001210b41000b200028023021000d010b2000280208220141016a22032001490d02200041086a0c010b20002802042203450d0120002802002101108401220520033602c0032001200141016a22014b0d01200241086a20052001108501200228020821032000200228020c220136020420002003360200200241a0016a200241c8016a29030037030020024198016a200241c0016a29030037030020024190016a200241b8016a290300370300200220022903b001370388012003200341016b2203492003200747720d0120012f01be032205410a4b0d012001200541246c6a220341046a200b3602002001200541016a22063b01be03200341106a20024190016a290300370200200341186a20024198016a290300370200200341206a200241a0016a290300370200200341086a200229038801370200200120054102746a4190036a200a360200200120064102746a41c0036a2009360200200920063b01bc03200920013602002000280208220141016a22032001490d01200041086a0b2003360200200241d0016a240020140f0b000bac0702087f057e230041b0016b22022400200241086a200041286a200110420240027f200228020841014704404102210320002903004201510440200041206a290300210d200041186a290300210c200041106a290300210a20022000290308220b2001ad7c220e3703382002200a200b200e56ad7c220b3703402002200c200a200b56ad7c220a3703482002200d200a200c54ad7c370350200241808001360264200241d4840436026041002100024002400240200241386a200241e0006a10490e0400060601060b200220022903603703202002200241206a103a4101210020022d00004101710d00027f0240024020022d00010e020001030b20024188016a200241206a10742002280288014101460d02200228028c0121044100210320024190016a2802000c010b20024188016a200241206a101f4101210320022d0088014101460d0120024186016a20022d008b013a0000200241f0006a2002419c016a290200370300200241f5006a200241a1016a290000370000200220022f0089013b018401200220024194016a290200370368200228028c01210420024190016a2802000b2105200241de006a20024186016a2d00003a000020024190016a200241f0006a29030037030020024198016a200241f8006a290300370300200220022f0184013b015c2002200229036837038801410021000c010b410221030b20000d03200241e2006a2206200241de006a22072d00003a0000200241f0006a220820024190016a2200290300370300200241f8006a220920024198016a2201290300370300200220022f015c3b016020022002290388013703682003410247044020024186016a20062d00003a00002000200829030037030020012009290300370300200220022f01603b01840120022002290368370388010b200720024186016a2d00003a0000200241286a2000290300370300200241306a2001290300370300200220022f0184013b015c20022002290388013703200b20024198016a200241086a410472220041106a28020036020020024190016a200041086a290200370300200220002902003703880141284104104b220020033a00002000200536000820002004360004200041013a0024200020022f015c3b0001200041036a200241de006a2d00003a00002000200229032037000c200041146a200241286a2903003700002000411c6a200241306a29030037000020024188016a200010432802000c010b200241106a280200200241146a2802004102746a41306a2802000b200241b0016a24000f0b000b3801017f20022d0000210320002001412410910120012002412410910121012d0000410246410020034102461b450440200141003a00240b0b2101017f20002001105922002d0000410247047f200041003a002420000541000b0b9a0201077f027f20012802042203044020012802000c010b200110880122033602042001410036020041000b2105027f034020032f01322207410574210841002104417f21060240034020042008460440200721060c020b200641016a2106200320046a2109200441206a210402402002200941346a108e0141ff01710e020001020b0b41010c020b20050440200541016b2105200320064102746a4194036a28020021030c010b0b200041146a20022900003700002000412c6a200241186a290000370000200041246a200241106a2900003700002000411c6a200241086a2900003700004100210541000b21042000200536020420002004360200200041106a20013602002000410c6a2006360200200041086a20033602000bf20f021e7f037e230041c0016b22022400200241186a200041086a28020036020020022000290200370310200041106a21080240027f02400240027f0240200228021422052f0132410b4f044020024180016a2002280218104c20024188016a28020021062002280284012104200228028001210c20022802102103108801210920052f01322211200c6b220a20114b0d06200a41016b220e200a4b0d062009200e3b013220024188016a2005200c4105746a220741406b29000037030020024190016a200741c8006a29000037030020024198016a200741d0006a2800003602002002200741386a29000037038001200c41016a220b200c490d062011200b6b220a20114b200e410c4f72200a200e47720d062005200c4102746a41046a2802002113200741346a280000210a200941346a2005200b4105746a41346a200e4105741091011a200941046a2005200b4102746a41046a200e4102741091011a2005200c3b0132200241a8016a221420024188016a2215290300370300200241b0016a221620024190016a2217290300370300200241b8016a221820024198016a221928020036020020022002290380013703a0012002200636023820022009200520041b3602344100210720024100200320041b3602302019200841186a2900003703002017200841106a2900003703002015200841086a2900003703002002200829000037038001200241306a20024180016a2001108901211a200241f8006a221b20182802002201360200200241f0006a221c20162903002222370300200241e8006a221d20142903002221370300200220022903a0012220370360200241286a221e2001360200200241206a221f2022370300200241186a220820213703002002202037031020024180016a410472210d0340200528020022040440200341016a22062003490d08200220052f013022013602582002200436025420022006360250200641016b220320064b2003200747720d0820042f0132410b490d0320024180016a2001104c200228028801210c200228028401200228028001210f20042f0132108a01211020042f01322203200f6b220120034b0d08200141016b221220014b0d08201020123b013220152004200f4105746a220b41406b2900003703002017200b41c8006a2900003703002019200b41d0006a2800003602002002200b41386a29000037038001200f41016a2207200f490d08200320076b220120034b2012410c4f722001201247720d082004200f4102746a41046a2802002111200b41346a280000210b201041346a200420074105746a41346a20124105741091011a201041046a200420074102746a220341046a20124102741091011a2004200f3b013220142015290300370300201620172903003703002018201928020036020020022002290380013703a00141016a220120076b220520014b0d0820102f01322201410c4f2005200141016a47720d0820104194036a20034194036a20054102741091011a200241086a20102006108b01201d2014290300370300201c2016290300370300201b2018280200360200200220022903a001370360200228020c2101200228020821072006210320042105044020012105200721030b2002200c3602a801200220053602a401200220033602a001200d2002290310370200200d41086a2008290300370200200d41106a201f290300370200200d41186a201e2802003602002002200a36028001200241a0016a20024180016a20132009108c01200241c8006a201b2802002203360200200241406b201c2903002221370300200241386a201d290300222037030020082020370300201f2021370300201e20033602002002200229036022203703302002202037031020062103200b210a2001210920112113200421050c010b0b200241b8016a200241286a280200360200200241b0016a200241206a290300370300200241a8016a200241186a290300370300200220022903103703a00141010c020b20024198016a200841186a29000037030020024190016a200841106a29000037030020024188016a200841086a2900003703002002200829000037038001200241106a20024180016a2001108901211a200028020c21040c020b200d2002290310370200200d41086a200241186a290300370200200d41106a200241206a290300370200200d41186a200241286a2802003602002002200a36028001200241d0006a20024180016a20132009108c012001210a41000b200028020c21040d010b2004280208220041016a22032000490d02200441086a0c010b20042802042200450d0120042802002103108a012201200036029403200341016a22002003490d01200220012000108b01200228020021002004200228020422063602042004200036020020024198016a200241b8016a28020036020020024190016a200241b0016a29030037030020024188016a200241a8016a290300370300200220022903a001370380012000200041016b2200492000200747720d0120062f01322201410a4b0d01200620014105746a220341346a200a3600002006200141016a22003b0132200341386a200229038001370000200341406b20024188016a290300370000200341c8006a20024190016a290300370000200341d0006a20024198016a280200360000200620014102746a41046a2013360200200620004102746a4194036a2009360200200920003b0130200920063602002004280208220041016a22032000490d01200441086a0b2003360200200241c0016a2400201a0f0b000b7901017f230041106b22022400024020002802002200413f4d04402001200041027410460c010b200041ffff004d0440200220004102744101723b010e20012002410e6a410210370c010b200041ffffffff034d044020004102744102722001106a0c010b20014103104620002001106a0b200241106a24000b0b004100200020011009000b6502017f017e230041206b22032400200129020421042003410036021820032004370310200320022d00003a001f200341106a2003411f6a4101103720012003290310370204200341086a20012003280218101520002003290308370300200341206a24000b08002000420110780bef0101037f230041306b22022400200110792103200241808001360224200241d48404360220024002402003200241206a10490d0020022002290320370328200241186a200241286a104a20022802180d00200228021c2103200241106a200241286a104a20022802100d0020022802142104200241086a200241286a104a2002280208450d010b000b200041306a200228020c3602002000412c6a2004360200200020033602282000420137030020002001290300370308200041106a200141086a290300370300200041186a200141106a290300370300200041206a200141186a290300370300200241306a24000b0c00200042808080801010780baf0102017f017e230041206b2202240002400240024002402001106541ff01710e020001030b2001420110781a200041003602000c010b200110612101200241808001360204200241d484043602000240024002402001200210490e0400040401040b20022002290300370318200241086a200241186a103b20022802082201450d03200229020c21030c010b410021010b2001450d0120002003370204200020013602000b200241206a24000f0b000b6301017f230041206b22012400200010612100200141808001360214200141d4840436021002402000200141106a104945044020012001290310370318200141086a200141186a101e20012d0008410171450d010b000b20012d0009200141206a24000b820101017f230041306b220224002001107920024100360210200242808001370224200241d484043602202000280228200241206a106a2000412c6a280200200241206a106a200041306a280200200241206a106a20022002290320370214200241086a200241106a200228022810152002280208200228020c1005200241306a24000b8a0101027f230041306b220224002002200028020022034100473a0020200241206a200110680240200304402001106120024100360210200242808001370224200241d484043602202000200241206a105220022002290320370214200241086a200241106a200228022810152002280208200228020c10050c010b2001420110781a0b200241306a24000b4e01017f230041206b2202240020011061200241186a41808001360200200241d4840436021420024100360210200241086a200241106a200010602002280208200228020c1005200241206a24000b8d0201037f230041e0006b220324002003411a6a41f0003a0000200341186a41edc2013b0100200342e9dcad8382add8b9e8003703102003200236020c20032001360208200341386a22014200370300200341306a22044200370300200341286a220542003703002003420037032020034100360240200342808001370254200341d48404360250200341106a200341d0006a1076200341086a200341d0006a10772002200341d0006a106d200320032903503702442003200341406b2003280258101520032802002003280204200341206a1004200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290320370000200341e0006a24000b2601017f230041106b220224002002200036020c20012002410c6a41041037200241106a24000b5001027e20002002200129030022027c22033703002000200129030822042002200356ad7c22023703082000200129031022032002200454ad7c2202370310200020012903182002200354ad7c3703180b0e0020002002106a20012002106a0b140020002802002001106a200041046a200110130b8d0201037f230041e0006b220324002003411a6a41f0003a0000200341186a41edc2013b0100200342e9dcad8382add8b9e8003703102003200236020c20032001360208200341386a22014200370300200341306a22044200370300200341286a220542003703002003420037032020034100360240200342808001370254200341d48404360250200341106a200341d0006a1076200341086a200341d0006a10772002200341d0006a1070200320032903503702442003200341406b2003280258101520032802002003280204200341206a1004200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290320370000200341e0006a24000ba20101027f230041306b2202240020002d00202103200041013a0020024020034101710d0020002903004201520440200110060c010b20024100360210200242808001370224200241d484043602202000290308200041106a290300200241206a1014200041186a280200200241206a106a20022002290320370214200241086a200241106a2002280228101520012002280208200228020c10050b200241306a24000b1100200020011013200041206a200110130b8d0201037f230041e0006b220324002003411a6a41f0003a0000200341186a41edc2013b0100200342e9dcad8382add8b9e8003703102003200236020c20032001360208200341386a22014200370300200341306a22044200370300200341286a220542003703002003420037032020034100360240200342808001370254200341d48404360250200341106a200341d0006a1076200341086a200341d0006a10772002200341d0006a1013200320032903503702442003200341406b2003280258101520032802002003280204200341206a1004200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290320370000200341e0006a24000b4801027f230041106b22032400200341086a20024100103c200328020821042000200328020c360204200020043602002004200120021091011a20002002360208200341106a24000b08002000200110340b6201037f230041106b22022400200241086a2001104a41012103024020022802080d00200228020c210420022001104a20022802000d002002280204210120002004360204200041086a2001360200410021030b20002003360200200241106a24000b930101027f20002f01042103200041003a0004410121040240024020034101714504402000280200220028020422032002490d0220012000280200220120021091011a0c010b200120034108763a0000200028020022002802042203200241016b2202490d01200141016a2000280200220120021091011a0b2000200320026b3602042000200120026a360200410021040b20040b0a0020012000410b10370b0d0020012000280200412010370b6001027e200029032021022000200137032020002002200029030022017c22023703002000200029030822032001200256ad7c22013703082000200029031022022001200354ad7c2201370310200020002903182001200254ad7c37031820000b6001037e200029032021012000420137032020002001200029030022027c22013703002000200029030822032001200254ad7c22013703082000200029031022022001200354ad7c2201370310200020002903182001200254ad7c37031820000b5001037f024020012d00080d0020012802002203200128020422044b0d00200320044f044041012102200141013a00080c010b410121022001200341016a3602000b20002003360204200020023602000b5a01017f0240200241016a22042002490d00200120044b04402001200120026b2201490d012001200141016b2201490d01200020044102746a200020024102746a20014102741092010b200020024102746a20033602000f0b000b2201017f41f405410410732200450440000b200041003b01322000410036020020000b5c01037f230041406a220324002000280204220441346a20042f013241016a2205200028020822002003200141c0001091012201108101200441046a2203200520002002107b200420053b0132200141406b2400200320004102746a0b2201017f41a406410410732200450440000b200041003b01322000410036020020000b860101037f230041206b2203240020012f01322104200341003a00182003200436021420034100360210024003400240200341086a200341106a107a2003280208450d002002450d022001200328020c22044102746a41f4056a280200220520043b0130200520013602000c010b0b2000200136020420002002360200200341206a24000f0b000b970201077f230041406a220724002000280204220441346a20042f0132220541016a2208200028020822062007200141c000109101220a108101200441046a200820062002107b0240200641016a22022006490d00200241016a22092002490d00200441f4056a2107200541026a220120094b0440200120026b220520014b0d012005200541016b2205490d01200720094102746a200720024102746a20054102741092010b200720024102746a2003360200200420083b013220012002200120024b1b2103200420064102746a41f8056a2101200028020021000340200220034704402000450d022001280200220620023b013020062004360200200141046a2101200241016a21020c010b0b200a41406b24000f0b000b5e01017f0240200241016a22042002490d00200120044b04402001200120026b2201490d012001200141016b2201490d01200020044106746a200020024106746a20014106741092010b200020024106746a200341c0001091011a0f0b000b2301017f41c003410410732200450440000b200041003b01be032000410036020020000b6b01037f230041306b2203240020002802082104200028020422002f01be032105200341086a200141241091011a200041046a200541016a22012004200341086a10870120004190036a2205200120042002107b200020013b01be03200341306a2400200520044102746a0b2301017f41f003410410732200450440000b200041003b01be032000410036020020000b880101037f230041206b2203240020012f01be032104200341003a00182003200436021420034100360210024003400240200341086a200341106a107a2003280208450d002002450d022001200328020c22044102746a41c0036a280200220520043b01bc03200520013602000c010b0b2000200136020420002002360200200341206a24000f0b000ba50201077f230041306b2207240020002802082104200028020422062f01be032105200741086a200141241091011a200641046a200541016a22092004200741086a10870120064190036a200920042002107b0240200441016a22022004490d00200241016a220a2002490d00200641c0036a2108200541026a2201200a4b0440200120026b220520014b0d012005200541016b2205490d012008200a4102746a200820024102746a20054102741092010b200820024102746a2003360200200620093b01be0320012002200120024b1b2103200620044102746a41c4036a2101200028020021000340200220034704402000450d022001280200220420023b01bc0320042006360200200141046a2101200241016a21020c010b0b200741306a24000f0b000b5d01017f0240200241016a22042002490d00200120044b04402001200120026b2201490d012001200141016b2201490d012000200441246c6a2000200241246c6a200141246c1092010b2000200241246c6a200341241091011a0f0b000b2201017f419403410410732200450440000b200041003b01322000410036020020000b920101037f230041206b2203240020002802082104200028020422002f01322105200341186a200141186a290000370300200341106a200141106a290000370300200341086a200141086a29000037030020032001290000370300200041346a200541016a220120042003108d01200041046a2205200120042002107b200020013b0132200341206a2400200520044102746a0b2201017f41c403410410732200450440000b200041003b01322000410036020020000b860101037f230041206b2203240020012f01322104200341003a00182003200436021420034100360210024003400240200341086a200341106a107a2003280208450d002002450d022001200328020c22044102746a4194036a280200220520043b0130200520013602000c010b0b2000200136020420002002360200200341206a24000f0b000bcb0201077f230041206b2206240020002802082104200028020422072f01322105200641186a200141186a290000370300200641106a200141106a290000370300200641086a200141086a29000037030020062001290000370300200741346a200541016a220920042006108d01200741046a200920042002107b0240200441016a22012004490d00200141016a220a2001490d0020074194036a2108200541026a2202200a4b0440200220016b220520024b0d012005200541016b2205490d012008200a4102746a200820014102746a20054102741092010b200820014102746a2003360200200720093b01322002200120012002491b2103200720044102746a4198036a2102200028020021000340200120034704402000450d022002280200220420013b013020042007360200200241046a2102200141016a21010c010b0b200641206a24000f0b000b8f0101017f0240200241016a22042002490d00200120044b04402001200120026b2201490d012001200141016b2201490d01200020044105746a200020024105746a20014105741092010b200020024105746a22002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a2900003700000f0b000b1800417f41012000200110930122004100481b410020001b0bb40102017f027e230041306b22022400200241808001360224200241d484043602202000027e02400240024002402001200241206a10490e0400010102010b20022002290320370328200241086a200241286a101a20022802080d00200241186a2903002103200229031021042002200241286a104a2002280200450d020b000b42000c010b20022802042101200041106a200337030020002004370308200041186a200136020042010b370300200241306a24000b31000240200120024b200220044b720d002002200220016b2202490d00200020023602042000200120036a3602000f0b000be902010a7f02402002410f4d0440200021030c010b2000410020006b41037122046a210520012106200021030340200320054f450440200320062d00003a0000200641016a2106200341016a21030c010b0b0240200220046b220820024b0d002008417c7121070240200120046a22044103710440200520076a21092004417c71220241046a210141202004410374411871220a6b2203411871210b2003412071210c20022802002106200521030340200320094f0d02200c0d03200320012802002202200b742006200a7672360200200141046a2101200341046a2103200221060c000b000b200520076a210220042101200521030340200220034d0d0120032001280200360200200141046a2101200341046a21030c000b000b200820076b220220084b0d00200520076a2103200420076a21010c010b000b200220036a21020340200220034d450440200320012d00003a0000200141016a2101200341016a21030c010b0b20000be10501097f02400240024002402002200020016b4b0440200120026a2105200020026a21002002410f4d0d032000417c712106200120026a41016b21034100200041037122046b21070340200020064b0440200041016b220020032d00003a0000200341016b21030c010b0b200220046b220420024b0d012004417c7121020240200520076a22054103710440200620026b2108410020026b21072005417c71220041046b21014120200541037441187122096b2203411871210a2003412071210b20002802002103200621000340200020084d0d02200b0d04200041046b22002003200a742001280200220320097672360200200141046b21010c000b000b200620026b2103410020026b2107200120046a41046b2101200621000340200020034d0d01200041046b22002001280200360200200141046b21010c000b000b200420026b220220044b0d01200620076a2100200520076a21050c030b2002410f4d0d012000410020006b41037122046a210620012103034020002006490440200020032d00003a0000200341016a2103200041016a21000c010b0b200220046b220720024b0d002007417c7121050240200120046a22044103710440200520066a21082004417c71220041046a21014120200441037441187122096b2202411871210a2002412071210b20002802002103200621000340200020084f0d02200b0d03200020012802002202200a74200320097672360200200141046a2101200041046a2100200221030c000b000b200520066a210220042101200621000340200020024f0d0120002001280200360200200141046a2101200041046a21000c000b000b200720056b220220074b0d00200520066a2100200420056a21010c010b000b200020026a21020340200020024f0d02200020012d00003a0000200141016a2101200041016a21000c000b000b200541016b2101200020026b21020340200020024d0d01200041016b220020012d00003a0000200141016b21010c000b000b0b4301037f412021020340200245044041000f0b200241016b210220012d0000210320002d00002104200041016a2100200141016a210120032004460d000b200420036b0b0b8c040300418080040b990350535032325374727563743a3a5472616e736665720000001c020100000000000000010050535032325374727563743a3a5472616e736665723a3a66726f6d50535032325374727563743a3a5472616e736665723a3a746f50535032325374727563743a3a417070726f76616c0000001c020100000000005800010050535032325374727563743a3a417070726f76616c3a3a6f776e657250535032325374727563743a3a417070726f76616c3a3a7370656e6465724572726f7220647572696e672063616c6c20746f20726563656976657241433a3a526f6c65526564756e64616e7441433a3a4d697373696e67526f6c6541433a3a496e76616c696443616c6c6572503a3a4e6f74506175736564503a3a50617573656401010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010041db83040b330202020202020202020202020202020202020202020202020202020202020303030303030303030303030303030304040404040041a084040b290100000002000000030000000400000005000000060000000700000008000000090000000c0000000b"},"contract":{"name":"psp22_minter_pauser","version":"0.1.0","authors":["Oleksandr Mykhailenko "]},"V1":{"spec":{"constructors":[{"args":[{"name":"total_supply","type":{"displayName":["Balance"],"type":0}},{"name":"name","type":{"displayName":["Option"],"type":19}},{"name":"symbol","type":{"displayName":["Option"],"type":19}},{"name":"decimal","type":{"displayName":["u8"],"type":6}}],"docs":[],"name":["new"],"selector":"0x9bae9d5e"}],"docs":[],"events":[{"args":[{"docs":[],"indexed":true,"name":"from","type":{"displayName":["Option"],"type":23}},{"docs":[],"indexed":true,"name":"to","type":{"displayName":["Option"],"type":23}},{"docs":[],"indexed":false,"name":"value","type":{"displayName":["Balance"],"type":0}}],"docs":[" Event emitted when a token transfer occurs."],"name":"Transfer"},{"args":[{"docs":[],"indexed":true,"name":"owner","type":{"displayName":["AccountId"],"type":4}},{"docs":[],"indexed":true,"name":"spender","type":{"displayName":["AccountId"],"type":4}},{"docs":[],"indexed":false,"name":"value","type":{"displayName":["Balance"],"type":0}}],"docs":[" Event emitted when an approval occurs that `spender` is allowed to withdraw"," up to the amount of `value` tokens from `owner`."],"name":"Approval"}],"messages":[{"args":[],"docs":[" Returns the token name."],"mutates":false,"name":["PSP22Metadata","token_name"],"payable":false,"returnType":{"displayName":["psp22metadata_external","TokenNameOutput"],"type":19},"selector":"0x3d261bd4"},{"args":[],"docs":[" Returns the token symbol."],"mutates":false,"name":["PSP22Metadata","token_symbol"],"payable":false,"returnType":{"displayName":["psp22metadata_external","TokenSymbolOutput"],"type":19},"selector":"0x34205be5"},{"args":[],"docs":[" Returns the token decimals."],"mutates":false,"name":["PSP22Metadata","token_decimals"],"payable":false,"returnType":{"displayName":["psp22metadata_external","TokenDecimalsOutput"],"type":6},"selector":"0x7271b782"},{"args":[{"name":"account","type":{"displayName":["psp22mintable_external","MintInput1"],"type":4}},{"name":"amount","type":{"displayName":["psp22mintable_external","MintInput2"],"type":0}}],"docs":[],"mutates":true,"name":["PSP22Mintable","mint"],"payable":false,"returnType":{"displayName":["psp22mintable_external","MintOutput"],"type":20},"selector":"0xfc3c75d4"},{"args":[{"name":"spender","type":{"displayName":["psp22_external","DecreaseAllowanceInput1"],"type":4}},{"name":"delta_value","type":{"displayName":["psp22_external","DecreaseAllowanceInput2"],"type":0}}],"docs":[" Atomically decreases the allowance granted to `spender` by the caller.",""," An `Approval` event is emitted.",""," # Errors",""," Returns `InsufficientAllowance` error if there are not enough tokens allowed"," by owner for `spender`.",""," Returns `ZeroSenderAddress` error if sender's address is zero.",""," Returns `ZeroRecipientAddress` error if recipient's address is zero."],"mutates":true,"name":["PSP22","decrease_allowance"],"payable":false,"returnType":{"displayName":["psp22_external","DecreaseAllowanceOutput"],"type":20},"selector":"0xfecb57d5"},{"args":[{"name":"to","type":{"displayName":["psp22_external","TransferInput1"],"type":4}},{"name":"value","type":{"displayName":["psp22_external","TransferInput2"],"type":0}},{"name":"data","type":{"displayName":["psp22_external","TransferInput3"],"type":22}}],"docs":[" Transfers `value` amount of tokens from the caller's account to account `to`"," with additional `data` in unspecified format.",""," On success a `Transfer` event is emitted.",""," # Errors",""," Returns `InsufficientBalance` error if there are not enough tokens on"," the caller's account Balance.",""," Returns `ZeroSenderAddress` error if sender's address is zero.",""," Returns `ZeroRecipientAddress` error if recipient's address is zero."],"mutates":true,"name":["PSP22","transfer"],"payable":false,"returnType":{"displayName":["psp22_external","TransferOutput"],"type":20},"selector":"0xdb20f9f5"},{"args":[{"name":"spender","type":{"displayName":["psp22_external","ApproveInput1"],"type":4}},{"name":"value","type":{"displayName":["psp22_external","ApproveInput2"],"type":0}}],"docs":[" Allows `spender` to withdraw from the caller's account multiple times, up to"," the `value` amount.",""," If this function is called again it overwrites the current allowance with `value`.",""," An `Approval` event is emitted.",""," # Errors",""," Returns `ZeroSenderAddress` error if sender's address is zero.",""," Returns `ZeroRecipientAddress` error if recipient's address is zero."],"mutates":true,"name":["PSP22","approve"],"payable":false,"returnType":{"displayName":["psp22_external","ApproveOutput"],"type":20},"selector":"0xb20f1bbd"},{"args":[{"name":"owner","type":{"displayName":["psp22_external","AllowanceInput1"],"type":4}},{"name":"spender","type":{"displayName":["psp22_external","AllowanceInput2"],"type":4}}],"docs":[" Returns the amount which `spender` is still allowed to withdraw from `owner`.",""," Returns `0` if no allowance has been set `0`."],"mutates":false,"name":["PSP22","allowance"],"payable":false,"returnType":{"displayName":["psp22_external","AllowanceOutput"],"type":0},"selector":"0x4d47d921"},{"args":[{"name":"from","type":{"displayName":["psp22_external","TransferFromInput1"],"type":4}},{"name":"to","type":{"displayName":["psp22_external","TransferFromInput2"],"type":4}},{"name":"value","type":{"displayName":["psp22_external","TransferFromInput3"],"type":0}},{"name":"data","type":{"displayName":["psp22_external","TransferFromInput4"],"type":22}}],"docs":[" Transfers `value` tokens on the behalf of `from` to the account `to`"," with additional `data` in unspecified format.",""," This can be used to allow a contract to transfer tokens on ones behalf and/or"," to charge fees in sub-currencies, for example.",""," On success a `Transfer` and `Approval` events are emitted.",""," # Errors",""," Returns `InsufficientAllowance` error if there are not enough tokens allowed"," for the caller to withdraw from `from`.",""," Returns `InsufficientBalance` error if there are not enough tokens on"," the the account Balance of `from`.",""," Returns `ZeroSenderAddress` error if sender's address is zero.",""," Returns `ZeroRecipientAddress` error if recipient's address is zero."],"mutates":true,"name":["PSP22","transfer_from"],"payable":false,"returnType":{"displayName":["psp22_external","TransferFromOutput"],"type":20},"selector":"0x54b3c76e"},{"args":[{"name":"owner","type":{"displayName":["psp22_external","BalanceOfInput1"],"type":4}}],"docs":[" Returns the account Balance for the specified `owner`.",""," Returns `0` if the account is non-existent."],"mutates":false,"name":["PSP22","balance_of"],"payable":false,"returnType":{"displayName":["psp22_external","BalanceOfOutput"],"type":0},"selector":"0x6568382f"},{"args":[{"name":"spender","type":{"displayName":["psp22_external","IncreaseAllowanceInput1"],"type":4}},{"name":"delta_value","type":{"displayName":["psp22_external","IncreaseAllowanceInput2"],"type":0}}],"docs":[" Atomically increases the allowance granted to `spender` by the caller.",""," An `Approval` event is emitted.",""," # Errors",""," Returns `ZeroSenderAddress` error if sender's address is zero.",""," Returns `ZeroRecipientAddress` error if recipient's address is zero."],"mutates":true,"name":["PSP22","increase_allowance"],"payable":false,"returnType":{"displayName":["psp22_external","IncreaseAllowanceOutput"],"type":20},"selector":"0x96d6b57a"},{"args":[],"docs":[" Returns the total token supply."],"mutates":false,"name":["PSP22","total_supply"],"payable":false,"returnType":{"displayName":["psp22_external","TotalSupplyOutput"],"type":0},"selector":"0x162df8c2"},{"args":[],"docs":[],"mutates":true,"name":["pause"],"payable":false,"returnType":{"displayName":["Result"],"type":20},"selector":"0x81e0c604"},{"args":[],"docs":[],"mutates":true,"name":["unpause"],"payable":false,"returnType":{"displayName":["Result"],"type":20},"selector":"0x67616649"}]},"storage":{"struct":{"fields":[{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0000000000000000000000000000000000000000000000000000000000000000","ty":0}},"name":"supply"},{"layout":{"struct":{"fields":[{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0100000000000000000000000000000000000000000000000000000000000000","ty":1}},"name":"header"},{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0200000000000000000000000000000000000000000000000000000000000000","ty":2}},"name":"len"},{"layout":{"array":{"cellsPerElem":1,"layout":{"cell":{"key":"0x0200000001000000000000000000000000000000000000000000000000000000","ty":3}},"len":4294967295,"offset":"0x0300000000000000000000000000000000000000000000000000000000000000"}},"name":"elems"}]}},"name":"entries"}]}},"name":"keys"},{"layout":{"hash":{"layout":{"cell":{"key":"0x0300000001000000000000000000000000000000000000000000000000000000","ty":8}},"offset":"0x0200000001000000000000000000000000000000000000000000000000000000","strategy":{"hasher":"Blake2x256","postfix":"","prefix":"0x696e6b20686173686d6170"}}},"name":"values"}]}},"name":"balances"},{"layout":{"struct":{"fields":[{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0300000001000000000000000000000000000000000000000000000000000000","ty":1}},"name":"header"},{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0400000001000000000000000000000000000000000000000000000000000000","ty":2}},"name":"len"},{"layout":{"array":{"cellsPerElem":1,"layout":{"cell":{"key":"0x0400000002000000000000000000000000000000000000000000000000000000","ty":9}},"len":4294967295,"offset":"0x0500000001000000000000000000000000000000000000000000000000000000"}},"name":"elems"}]}},"name":"entries"}]}},"name":"keys"},{"layout":{"hash":{"layout":{"cell":{"key":"0x0500000002000000000000000000000000000000000000000000000000000000","ty":8}},"offset":"0x0400000002000000000000000000000000000000000000000000000000000000","strategy":{"hasher":"Blake2x256","postfix":"","prefix":"0x696e6b20686173686d6170"}}},"name":"values"}]}},"name":"allowances"}]}},"name":"psp22"},{"layout":{"struct":{"fields":[{"layout":{"enum":{"dispatchKey":"0x0500000002000000000000000000000000000000000000000000000000000000","variants":{"0":{"fields":[{"layout":{"cell":{"key":"0x0600000002000000000000000000000000000000000000000000000000000000","ty":11}},"name":null}]},"1":{"fields":[]}}}},"name":"name"},{"layout":{"enum":{"dispatchKey":"0x0600000002000000000000000000000000000000000000000000000000000000","variants":{"0":{"fields":[{"layout":{"cell":{"key":"0x0700000002000000000000000000000000000000000000000000000000000000","ty":11}},"name":null}]},"1":{"fields":[]}}}},"name":"symbol"},{"layout":{"cell":{"key":"0x0700000002000000000000000000000000000000000000000000000000000000","ty":6}},"name":"decimals"}]}},"name":"psp22_metadata"},{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0800000002000000000000000000000000000000000000000000000000000000","ty":12}},"name":"paused"}]}},"name":"pausable"},{"layout":{"struct":{"fields":[{"layout":{"struct":{"fields":[{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0900000002000000000000000000000000000000000000000000000000000000","ty":1}},"name":"header"},{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0a00000002000000000000000000000000000000000000000000000000000000","ty":2}},"name":"len"},{"layout":{"array":{"cellsPerElem":1,"layout":{"cell":{"key":"0x0a00000003000000000000000000000000000000000000000000000000000000","ty":13}},"len":4294967295,"offset":"0x0b00000002000000000000000000000000000000000000000000000000000000"}},"name":"elems"}]}},"name":"entries"}]}},"name":"keys"},{"layout":{"hash":{"layout":{"cell":{"key":"0x0b00000003000000000000000000000000000000000000000000000000000000","ty":14}},"offset":"0x0a00000003000000000000000000000000000000000000000000000000000000","strategy":{"hasher":"Blake2x256","postfix":"","prefix":"0x696e6b20686173686d6170"}}},"name":"values"}]}},"name":"admin_roles"},{"layout":{"struct":{"fields":[{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0b00000003000000000000000000000000000000000000000000000000000000","ty":1}},"name":"header"},{"layout":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0c00000003000000000000000000000000000000000000000000000000000000","ty":2}},"name":"len"},{"layout":{"array":{"cellsPerElem":1,"layout":{"cell":{"key":"0x0c00000004000000000000000000000000000000000000000000000000000000","ty":15}},"len":4294967295,"offset":"0x0d00000003000000000000000000000000000000000000000000000000000000"}},"name":"elems"}]}},"name":"entries"}]}},"name":"keys"},{"layout":{"hash":{"layout":{"cell":{"key":"0x0d00000004000000000000000000000000000000000000000000000000000000","ty":17}},"offset":"0x0c00000004000000000000000000000000000000000000000000000000000000","strategy":{"hasher":"Blake2x256","postfix":"","prefix":"0x696e6b20686173686d6170"}}},"name":"values"}]}},"name":"members"}]}},"name":"access_control"}]}},"types":[{"id":0,"type":{"def":{"primitive":"u128"}}},{"id":1,"type":{"def":{"composite":{"fields":[{"name":"last_vacant","type":2,"typeName":"Index"},{"name":"len","type":2,"typeName":"u32"},{"name":"len_entries","type":2,"typeName":"u32"}]}},"path":["ink_storage","collections","stash","Header"]}},{"id":2,"type":{"def":{"primitive":"u32"}}},{"id":3,"type":{"def":{"variant":{"variants":[{"fields":[{"type":7,"typeName":"VacantEntry"}],"index":0,"name":"Vacant"},{"fields":[{"type":4,"typeName":"T"}],"index":1,"name":"Occupied"}]}},"params":[{"name":"T","type":4}],"path":["ink_storage","collections","stash","Entry"]}},{"id":4,"type":{"def":{"composite":{"fields":[{"type":5,"typeName":"[u8; 32]"}]}},"path":["ink_env","types","AccountId"]}},{"id":5,"type":{"def":{"array":{"len":32,"type":6}}}},{"id":6,"type":{"def":{"primitive":"u8"}}},{"id":7,"type":{"def":{"composite":{"fields":[{"name":"next","type":2,"typeName":"Index"},{"name":"prev","type":2,"typeName":"Index"}]}},"path":["ink_storage","collections","stash","VacantEntry"]}},{"id":8,"type":{"def":{"composite":{"fields":[{"name":"value","type":0,"typeName":"V"},{"name":"key_index","type":2,"typeName":"KeyIndex"}]}},"params":[{"name":"V","type":0}],"path":["ink_storage","collections","hashmap","ValueEntry"]}},{"id":9,"type":{"def":{"variant":{"variants":[{"fields":[{"type":7,"typeName":"VacantEntry"}],"index":0,"name":"Vacant"},{"fields":[{"type":10,"typeName":"T"}],"index":1,"name":"Occupied"}]}},"params":[{"name":"T","type":10}],"path":["ink_storage","collections","stash","Entry"]}},{"id":10,"type":{"def":{"tuple":[4,4]}}},{"id":11,"type":{"def":{"primitive":"str"}}},{"id":12,"type":{"def":{"primitive":"bool"}}},{"id":13,"type":{"def":{"variant":{"variants":[{"fields":[{"type":7,"typeName":"VacantEntry"}],"index":0,"name":"Vacant"},{"fields":[{"type":2,"typeName":"T"}],"index":1,"name":"Occupied"}]}},"params":[{"name":"T","type":2}],"path":["ink_storage","collections","stash","Entry"]}},{"id":14,"type":{"def":{"composite":{"fields":[{"name":"value","type":2,"typeName":"V"},{"name":"key_index","type":2,"typeName":"KeyIndex"}]}},"params":[{"name":"V","type":2}],"path":["ink_storage","collections","hashmap","ValueEntry"]}},{"id":15,"type":{"def":{"variant":{"variants":[{"fields":[{"type":7,"typeName":"VacantEntry"}],"index":0,"name":"Vacant"},{"fields":[{"type":16,"typeName":"T"}],"index":1,"name":"Occupied"}]}},"params":[{"name":"T","type":16}],"path":["ink_storage","collections","stash","Entry"]}},{"id":16,"type":{"def":{"tuple":[2,4]}}},{"id":17,"type":{"def":{"composite":{"fields":[{"name":"value","type":18,"typeName":"V"},{"name":"key_index","type":2,"typeName":"KeyIndex"}]}},"params":[{"name":"V","type":18}],"path":["ink_storage","collections","hashmap","ValueEntry"]}},{"id":18,"type":{"def":{"tuple":[]}}},{"id":19,"type":{"def":{"variant":{"variants":[{"index":0,"name":"None"},{"fields":[{"type":11}],"index":1,"name":"Some"}]}},"params":[{"name":"T","type":11}],"path":["Option"]}},{"id":20,"type":{"def":{"variant":{"variants":[{"fields":[{"type":18}],"index":0,"name":"Ok"},{"fields":[{"type":21}],"index":1,"name":"Err"}]}},"params":[{"name":"T","type":18},{"name":"E","type":21}],"path":["Result"]}},{"id":21,"type":{"def":{"variant":{"variants":[{"fields":[{"type":11,"typeName":"String"}],"index":0,"name":"Custom"},{"index":1,"name":"InsufficientBalance"},{"index":2,"name":"InsufficientAllowance"},{"index":3,"name":"ZeroRecipientAddress"},{"index":4,"name":"ZeroSenderAddress"},{"fields":[{"type":11,"typeName":"String"}],"index":5,"name":"SafeTransferCheckFailed"}]}},"path":["contracts","traits","errors","psp22","PSP22Error"]}},{"id":22,"type":{"def":{"sequence":{"type":6}}}},{"id":23,"type":{"def":{"variant":{"variants":[{"index":0,"name":"None"},{"fields":[{"type":4}],"index":1,"name":"Some"}]}},"params":[{"name":"T","type":4}],"path":["Option"]}}]}} \ No newline at end of file +{ + "source": { + "hash": "0xf04668140e45f551ef324d9fea09e5adb7e8f70482ff1d216c6c4c5227a3d0ca", + "language": "ink! 3.0.0-rc6", + "compiler": "rustc 1.59.0-nightly", + "wasm": "0x0061736d01000000017e1360027f7f0060037f7f7f0060027f7f017f60047f7f7f7f0060037f7f7f017f60017f006000017f60017f017f60000060047f7f7e7e0060057f7f7f7f7f0060067f7f7f7f7e7e0060077f7f7f7f7e7e7f0060057f7f7f7e7e0060037f7f7e0060037e7e7f0060097f7f7e7f7f7f7f7f7f017f60027f7e017f60017f017e0281020b057365616c30127365616c5f6465706f7369745f6576656e740003057365616c30167365616c5f76616c75655f7472616e736665727265640000057365616c30097365616c5f63616c6c0010057365616c300b7365616c5f63616c6c65720000057365616c30147365616c5f686173685f626c616b65325f3235360001057365616c30107365616c5f7365745f73746f726167650001057365616c30127365616c5f636c6561725f73746f726167650005057365616c30107365616c5f6765745f73746f726167650004057365616c300a7365616c5f696e7075740000057365616c300b7365616c5f72657475726e000103656e76066d656d6f727902010210038c018a01040402050501030300000f01080708000005120000000000000505000d000005030b0c05010004020202020701010107000001090902010201020102000601020002000406010300000002010201020201020102000001070007000700000001000e0100010000010102000400001107000306040601030306040601030306040601030302000a0401020608017f01418080040b071102066465706c6f7900160463616c6c00180ad1f1028a010f0041034101200020012002100b1b0b6801017f230041306b22032400200341246a200241186a2900003702002003411c6a200241106a290000370200200341146a200241086a290000370200200320013602082003200229000037020c200041f8046a200341086a100c280200200341306a24004101460b960301047f230041b0016b22022400200241c8006a200141241091011a200241106a200041286a200241c8006a1057027f027f024020022802104101470440024020002903004201520d0020024198016a2203200041206a29030037030020024190016a2204200041186a29030037030020024188016a2205200041106a2903003703002002200029030837038001200241d0006a20024180016a200110692003200241e8006a2903003703002004200241e0006a2903003703002005200241d8006a29030037030020022002290350370380012002418080013602a401200241d484043602a0010240024020024180016a200241a0016a10490e0400010102010b200220022903a0013703a801200241086a200241a8016a104a2002280208450d030b000b41000c020b200241186a2802002002411c6a2802004102746a4190036a0c020b200228020c210141010b2103200241c8006a200241106a41047241341091011a410c4104104b220041013a00082000200136020420002003360200200241c8006a200010580b280200200241b0016a24000bdc0502057f027e230041a0016b22012400200141086a200041e0001091011a200141106a21030240200129030822074201520440200141f0006a220241808001360200200141d4840436026c20014100360268200141e8006a100e20014198016a220020022802003602002001200129036837039001200141e8006a20014190016a41988004100f200141e8006a41a48004411b2003101020002002280200360200200120012903683703900120014190016a41bf80044119200341216a10100c010b200141f0006a220241808001360200200141d4840436026c20014100360268200141e8006a100e20014198016a220020022802003602002001200129036837039001200141e8006a20014190016a41f08004100f200141e8006a41fc8004411c2003101120002002280200360200200120012903683703900120014190016a41988104411e200141306a10110b20014188016a2000280200360200200120012903900137038001230041206b22002400200041186a220420014180016a220241086a28020036020020002002290200220637031020004100360210200041086a200041106a2006a7101520002903082106200141e8006a220241086a2004280200360200200220002903103702002002200637020c200041206a240020014198016a200141f0006a28020022003602002001200129036837039001200141f8006a28020021042001280274210520012802940121022001200036026c200120023602680240027f20075004402000450d02200241003a0000200141013602702003200141e8006a1012200341216a200141e8006a1012200141d8006a0c010b2000450d01200241013a0000200141013602702003200141e8006a1013200141306a200141e8006a1013200141d0006a0b2200290300200041086a290300200141e8006a10142001200129036837029401200120014190016a2001280270101520052004200128020020012802041000200141a0016a24000f0b000b9a0101047f230041206b22012400200028020421042000419c8404360204200041086a22022802002103200241003602002001410336020c0240200320002802002202490d00200141003602182001200320026b3602142001200220046a3602102001410c6a200141106a105e2002200220012802186a22024b0d00200020033602082000200436020420002002360200200141206a24000f0b000be80201077f230041e0006b22032400200141086a2802002205200128020022044f04402003410036021020012802042106200341003602482003200520046b3602442003200420066a36024020022802002002280204200341406b1038200341406b20022802084115103720032003290340370214200341086a200341106a2003280248101520032802082104200328020c2102200341386a22054200370300200341306a22064200370300200341286a4200370300200342003703200240200241214f0440200341d8006a22074200370300200341d0006a22084200370300200341c8006a220942003703002003420037034020042002200341406b10042005200729030037030020062008290300370300200341286a2009290300370300200320032903403703200c010b200341206a200420021091011a0b2001200341206a1051200041086a200141086a28020036020020002001290200370200200341e0006a24000f0b000bc30201057f230041e0006b22042400200041086a2802002206200028020022054f04402004410036021020002802042107200441003602482004200620056b3602442004200520076a36024020012002200441406b10382003200441406b101220042004290340370214200441086a200441106a2004280248101520042802082102200428020c2101200441386a22034200370300200441306a22054200370300200441286a4200370300200442003703200240200141214f0440200441d8006a22064200370300200441d0006a22074200370300200441c8006a220842003703002004420037034020022001200441406b10042003200629030037030020052007290300370300200441286a2008290300370300200420042903403703200c010b200441206a200220011091011a0b2000200441206a1051200441e0006a24000f0b000bc30201057f230041e0006b22042400200041086a2802002206200028020022054f04402004410036021020002802042107200441003602482004200620056b3602442004200520076a36024020012002200441406b10382003200441406b101320042004290340370214200441086a200441106a2004280248101520042802082102200428020c2101200441386a22034200370300200441306a22054200370300200441286a4200370300200442003703200240200141214f0440200441d8006a22064200370300200441d0006a22074200370300200441c8006a220842003703002004420037034020022001200441406b10042003200629030037030020052007290300370300200441286a2008290300370300200420042903403703200c010b200441206a200220011091011a0b2000200441206a1051200441e0006a24000f0b000b230020002d000041014704402001410010460f0b200141011046200041016a200110130b08002000200110530b2a01017f230041106b2203240020032001370308200320003703002002200341101037200341106a24000b5201027f200141086a2203280200210420034100360200200128020421032001419c8404360204200220044b0440000b2001200420026b3602082001200220036a36020420002002360204200020033602000b11004100101741ff01714108470440000b0bf44002117f057e230041e00f6b22012400024002400240024002400240024002400240024020004504402001418080013602bc02200141d484043602b802200141b8026a101b200120012903b8023703a00441012100200141a0046a101c4281feffffff1f834280b6baede90b520d04200141e8016a200141a0046a101a20012802e8010d04200141f8016a290300211320012903f0012112200141900a6a200141a0046a101d20012802900a4101460d04200141e0036a2001419c0a6a2200280200360200200120012902940a3703d803200141900a6a200141a0046a101d20012802900a4101460d01200141c8046a2000280200360200200120012902940a3703c004200141e0016a200141a0046a101e4101210020012d00e0014101710d0420012d00e1012104200141b8036a200141e0036a280200360200200141e0026a200141c8046a280200360200200120012903d8033703b003200120012903c0043703d802410021000c040b2001418080013602bc02200141d484043602b802200141b8026a101b200120012903b802370380034101210020014180036a101c2212a722024101710d02201242ffffffffff1f832212422088a721032012421888a721052012421088a721060240024002400240024002400240200241087641ff0171220241e5006b0e03010905000b0240024002400240024002400240200241fc016b0e03010f08000b20024116460d04200241db01460d022002413d470440200241cd00460d06200241d400460d04200241f2004704402002418101460d0b2002419601460d03200241b201460d0a20024134470d1041002102200641ff0171412047200541ff017141db0047720d10200341e501460d0d0c100b41012102200641ff017141f10047200541ff017141b70147720d0f2003418201460d0c0c0f0b200641ff0171412647200541ff0171411b47720d0e41022102200341d401460d0b0c0e0b200641ff0171413c47200541ff017141f5004772200341d40147720d0d200141900a6a20014180036a101f20012d00900a4101460d0d200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a290000370300200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141d0006a20014180036a101a2001290350a70d0c200141e0006a290300211220012903582113200141f0036a2000290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903c0043703d803200120133703a004200120123703a804410321020c0a0b200641ff017141d60147200541ff017141b5014772200341fa0047720d0c200141900a6a20014180036a101f20012d00900a4101460d0c200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a290000370300200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141e8006a20014180036a101a2001290368a70d0b200141f8006a290300211220012903702113200141f0036a2000290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903c0043703d803200120133703a004200120123703a804410421020c090b200641ff0171412047200541ff017141f9014772200341f50147720d0b200141900a6a20014180036a101f20012d00900a4101460d0b200141d8046a200141a90a6a290000370300200141d0046a200141a10a6a290000370300200141c8046a200141990a6a290000370300200120012900910a3703c00420014180016a20014180036a101a2001280280010d0a20014190016a29030021122001290388012113200141900a6a20014180036a102020012802900a2204450d0a200141e0036a200141c8046a290300370300200141e8036a200141d0046a290300370300200141f0036a200141d8046a290300370300200141b0046a2012370300200120012903c0043703d803200120133703a804200120012902940a3703a004410521020c080b200641ff017141b30147200541ff017141c7014772200341ee0047720d0a200141900a6a20014180036a101f20012d00900a4101460d0a200141d8046a200141a90a6a290000370300200141d0046a200141a10a6a290000370300200141c8046a200141990a6a290000370300200120012900910a3703c004200141900a6a20014180036a101f20012d00900a4101460d092001419a026a20012d00930a3a0000200141e0026a200141a00a6a290300370300200141e8026a200141a80a6a290300370300200120012f00910a3b0198022001200141980a6a2903003703d802200141b00a6a2d0000210720012802940a210420014198016a20014180036a101a2001280298010d09200141a8016a290300211220012903a0012113200141900a6a20014180036a102020012802900a2210450d09200141e0036a200141c8046a290300370300200141e8036a200141d0046a290300370300200141f0036a200141d8046a29030037030020014182026a2001419a026a2d00003a0000200141a8046a200141e0026a290300370300200141b0046a200141e8026a290300370300200120012903c0043703d803200120012f0198023b018002200120012903d8023703a00420012902940a2116410621020c070b200641ff0171412d47200541ff017141f80147720d0941072102200341c201460d060c090b200641ff017141c70047200541ff017141d90147722003412147720d08200141900a6a20014180036a101f20012d00900a4101460d08200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a29000037030041082102200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141900a6a20014180036a101f20012d00900a4101460d0720014182026a20012d00930a3a0000200141a8046a200141a00a6a290300370300200141b0046a200141a80a6a290300370300200141e0036a2007290300370300200141e8036a2004290300370300200141f0036a2000290300370300200120012f00910a3b0180022001200141980a6a2903003703a004200120012903c0043703d803200141b00a6a2d0000210720012802940a21040c050b200641ff017141e80047200541ff0171413847722003412f47720d07200141900a6a20014180036a101f20012d00900a4101460d07200141f0036a200141a90a6a290000370300200141e8036a200141a10a6a29000037030041092102200141e0036a200141990a6a290000370300200120012900910a3703d8030c040b200641ff017141cb0147200541ff017141d7004772200341d50147720d06200141900a6a20014180036a101f20012d00900a4101460d06200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a290000370300200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141b0016a20014180036a101a20012903b001a70d05200141c0016a290300211220012903b8012113200141f0036a2000290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903c0043703d803200120133703a004200120123703a804410a21020c030b200641ff0171410f47200541ff0171411b4772200341bd0147720d05200141900a6a20014180036a101f20012d00900a4101460d05200141d8046a2200200141a90a6a290000370300200141d0046a2204200141a10a6a290000370300200141c8046a2207200141990a6a290000370300200120012900910a3703c004200141c8016a20014180036a101a20012903c801a70d04200141d8016a290300211220012903d0012113200141f0036a2000290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903c0043703d803200120133703a004200120123703a804410b21020c020b200641ff017141e00147200541ff017141c60147720d04410c210220034104460d010c040b200641ff017141e10047200541ff017141e60047720d03410d2102200341c900470d030b200141c8036a200141f0036a290300370300200141c0036a200141e8036a290300370300200141b8036a200141e0036a290300370300200141a2036a20014182026a2d00003a000020014188046a200141a8046a29030037030020014190046a200141b0046a290300370300200120012903d8033703b003200120012f0180023b01a003200120012903a0043703800441002100200221080c020b410121000c020b410121000b20000d01200141d0026a2200200141c8036a2205290300370300200141c8026a2202200141c0036a2206290300370300200141c0026a2203200141b8036a22092903003703004102210b200141b6026a200141a2036a2d00003a0000200141a0026a220c20014188046a220d290300370300200141a8026a220e20014190046a220f290300370300200120012903b0033703b802200120012f01a0033b01b40220012001290380043703980220014190026a2211200e29030037030020014188026a220a200c2903003703002001200129039802370380020240024002400240024002400240024002400240024002400240024002400240200841016b0e0d0102030405060708090a0b0c0d000b200141d8046a4200370300200141d0046a4200370300200141c8046a4200370300200142003703c004200141900a6a200141c0046a1021200141d8036a200141cc0f6a1022200141d8036a1023000b200141d8046a4200370300200141d0046a4200370300200141c8046a4200370300200142003703c004200141900a6a200141c0046a10212001200141d80f6a2d00003a00900a230041106b220024002000200141900a6a36020c2000410c6a2802002102230041206b22002400200041186a41808001360200200041d4840436021420004100360210200041086a200041106a200210602000280208200028020c105f000b200141d8046a4200370300200141d0046a4200370300200141c8046a4200370300200142003703c004200141900a6a200141c0046a1021200141d8036a200141c00f6a1022200141d8036a1023000b200a29030021122001290380022113200141f0036a4200370300200141e8036a4200370300200141e0036a4200370300200142003703d803200141900a6a200141d8036a1021024020012d00dc0f450440200141c0046a1024200141900a6a4196e4ea6c200141c0046a100a220041ff01714103470440200141b0036a200010250c020b200141d8046a200141d0026a290300370300200141d0046a200141c8026a290300370300200141c8046a200141c0026a290300370300200120012903b8023703c004200141b0036a200141900a6a200141c0046a2013201210260c010b200141b0036a410010270b200141900a6a200141d8036a1028200141b0036a1029000b200a290300211320012903800220014198046a4200370300200f4200370300200d42003703002001420037038004200141900a6a20014180046a1021200141a0046a1024200141f0026a200141b8046a2208290300370300200141e8026a200141b0046a2204290300370300200141e0026a200141a8046a2207290300370300200120012903a0043703d802200520002903003703002006200229030037030020092003290300370300200120012903b8023703b003200141f0036a2008290300370300200141e8036a2004290300370300200141e0036a2007290300370300200120012903a0043703d803200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c0042001200141900a6a200141d8036a200141c0046a102a200129030022147c221520145422002000ad2013200141086a29030022127c7c221320125420122013511b0d0e20014180036a200141900a6a200141d8026a200141b0036a20152013102b20012802800322004106470440200141cc046a2001418c036a28020036020020012001290284033702c4040b200120003602c004200141900a6a20014180046a1028200141c0046a1029000b201129030021122001290388022113200141f0026a4200370300200141e8026a4200370300200141e0026a4200370300200142003703d802200141900a6a200141d8026a1021200141b0036a1024200141f0036a2005290300370300200141e8036a2006290300370300200141e0036a2009290300370300200120012903b0033703d803200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c0042001200436028004200120012903800237028404200141a0046a200141900a6a200141d8036a200141c0046a2013201220014180046a102c0c0e0b200141f0026a4200370300200141e8026a4200370300200141e0026a4200370300200142003703d802200141900a6a200141d8026a1021200141b0036a1024200141f0036a2000290300370300200141e8036a2002290300370300200141e0036a2003290300370300200120012903b8023703d803200141d8046a2005290300370300200141d0046a2006290300370300200141c8046a2009290300370300200120012903b0033703c004200141106a200141900a6a200141d8036a200141c0046a102a200129031022152013542200200141186a290300221420125420122014511b450440200141f0036a2202200141d0026a2208290300370300200141e8036a2203200141c8026a2205290300370300200141e0036a2206200141c0026a2209290300370300200120012903b8023703d803200141cf046a200141a0026a290300370000200141d7046a200141a8026a2903003700002001200141b6026a2d00003a00c204200120012f01b4023b01c004200120043600c30420012001290398023700c704200120073a00df0420012016370284042001201036028004200141a0046a200141900a6a200141d8036a200141c0046a2013201220014180046a102c024020012802a00422044106460440200220082903003703002003200529030037030020062009290300370300200120012903b8023703d803200141d8046a200141c8036a290300370300200141d0046a200141c0036a290300370300200141c8046a200141b8036a290300370300200120012903b0033703c004201520137d2213201556201420127d2000ad7d221220145620122014511b0d0f200141a0046a200141900a6a200141d8036a200141c0046a20132012102b20012802a00422044106470d01200141063602c0040c0b0b0c090b0c080b200141023602c0040c080b200141d8046a4200370300200141d0046a4200370300200141c8046a4200370300200142003703c004200141900a6a200141c0046a102120012903900a21122001200141980a6a2903003703980a200120123703900a200141900a6a102d000b200141f0026a2000290300370300200141e8026a2002290300370300200141e0026a2003290300370300200141fa026a200141b6026a2d00003a0000200120012903b8023703d802200120012f01b4023b01f80220014198036a420037030020014190036a420037030020014188036a42003703002001420037038003200141900a6a20014180036a1021200141b0036a200141d8026a41231091011a200141f0036a2000290300370300200141e8036a2002290300370300200141e0036a2003290300370300200141fa036a200141d2036a2d00003a0000200120012903b8023703d803200120012f00d0033b01f803200141c0046a200141d8036a41231091011a20014198046a2000290300370300200f2002290300370300200d2003290300370300200120012903b80237038004200141af046a200c290300370000200141b7046a200e2903003700002001200141e2046a2d00003a00a204200120012f01e0043b01a004200120043600a30420012001290398023700a704200120073a00bf04200141206a200141900a6a20014180046a200141a0046a102a2001200141286a2903003703a803200120012903203703a003200141a0036a102d000b200141f0036a4200370300200141e8036a4200370300200141e0036a4200370300200142003703d803200141900a6a200141d8036a1021200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c004200141306a200141900a6a200141c0046a102e2001200141386a2903003703b803200120012903303703b003200141b0036a102d000b200a29030021122001290380022113200141f0026a4200370300200141e8026a4200370300200141e0026a4200370300200142003703d802200141900a6a200141d8026a1021200141b0036a1024200141f0036a2005290300370300200141e8036a2006290300370300200141e0036a2009290300370300200120012903b0033703d803200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c004200141406b200141900a6a200141d8036a200141c0046a102a0240200129034022152013542200200141c8006a290300221420125420122014511b450440200141f0036a200141c8036a290300370300200141e8036a200141c0036a290300370300200141e0036a200141b8036a290300370300200120012903b0033703d803200141d8046a200141d0026a290300370300200141d0046a200141c8026a290300370300200141c8046a200141c0026a290300370300200120012903b8023703c004200141a0046a200141900a6a200141d8036a200141c0046a201520137d201420127d2000ad7d102b20012802a004220b4106460440200141063602c0040c020b200141cc046a200141ac046a280200360200200120012902a4043702c4040b2001200b3602c0040b0c0a0b200a29030021122001290380022113200141f0026a4200370300200141e8026a4200370300200141e0026a4200370300200142003703d802200141900a6a200141d8026a1021200141b0036a1024200141f0036a2005290300370300200141e8036a2006290300370300200141e0036a2009290300370300200120012903b0033703d803200141d8046a2000290300370300200141d0046a2002290300370300200141c8046a2003290300370300200120012903b8023703c004200141a0046a200141900a6a200141d8036a200141c0046a20132012102b0c080b200141f0036a4200370300200141e8036a4200370300200141e0036a4200370300200142003703d803200141900a6a200141d8036a1021200141c0046a10240240200141900a6a41e6dfa6e704200141c0046a100a220041ff01714103470440200141d8026a200010250c010b02400240024020012d00dc0f450440200141013a00dc0f200141c0046a10240c010b200141b0036a4100102720012802b00322004106470d010b410621000c010b200141e4026a200141bc036a280200360200200120012902b4033702dc020b200120003602d8020b0c090b200141f0036a4200370300200141e8036a4200370300200141e0036a4200370300200142003703d803200141900a6a200141d8036a1021200141c0046a10240240200141900a6a41e6dfa6e704200141c0046a100a220041ff01714103470440200141d8026a200010250c010b02400240024020012d00dc0f0440200141003a00dc0f200141c0046a10240c010b200141b0036a4101102720012802b00322004106470d010b410621000c010b200141e4026a200141bc036a280200360200200120012902b4033702dc020b200120003602d8020b0c080b200141cc046a200141ac046a280200360200200120012902a4043702c404200120043602c0040b0c050b20000d0020014188046a200141b8036a2200280200220236020020014188036a200141e0026a22082802002203360200200120012903b003221437038004200120012903d802221537038003200141a8046a2002360200200141b40f6a4200370200200141880f6a4200370300200141fc0e6a4200370200200141d00e6a4200370300200141980a6a4200370300200141a00a6a4200370300200141e40c6a4200370200200141ac0c6a4200370200200141f00b6a4200370300200141bc0b6a4200370200200141840b6a4200370200200141c80a6a4200370300200141d80f6a41003a0000200141cc0f6a4100360200200141b80c6a4200370300200141800c6a4200370300200141f80b6a4100360200200141900b6a4200370300200141d80a6a4200370300200141d00a6a4100360200200120143703a00420082003360200200142003703900a200141003a00dc0f200141003602c00f200142003703c80b200120153703d802200141c80e6a4100360200200141c00e6a4200370300200141980e6a220242003703002001418c0e6a4200370200200141e00d6a4200370300200141d40d6a4200370200200141a80d6a4200370300200141a00d6a4100360200200141980d6a4200370300200142003703f00c200141b0036a1024200141f0036a200141c8036a2208290300370300200141e8036a200141c0036a2203290300370300200141e0036a2000290300370300200120012903b0033703d803200141900a6a4100200141d8036a100b450440200141dc046a2008290300370200200141d4046a2003290300370200200141cc046a2000290300370200200120012903b0033702c404200141003602c0042002200141c0046a102f0b200141c0046a1024200141900a6a4196e4ea6c200141c0046a103041ff01714103470d02200141c0046a1024200141900a6a41e6dfa6e704200141c0046a103041ff01714103470d02200141cc0f6a20012903d80237020041082100200141c80f6a200141a8046a280200360200200141d40f6a200141e0026a280200360200200120012903a0043703c00f200120043a00d80f200141c0046a1024200141d8036a200141900a6a200141c0046a20122013102620012802d8034106470d02200141c0046a200141900a6a41d0051091011a200141a80a6a4200370300200141a00a6a4200370300200141980a6a4200370300200142003703900a200141c0046a200141900a6a10280c010b410621000b200141e00f6a240020000f0b000b20012802a00422004106470440200141cc046a200141ac046a280200360200200120012902a4043702c4040b200120003602c0040b200141900a6a200141d8026a1028200141c0046a1029000b200141900a6a200141d8036a1028200141d8026a1029000b880101017f230041306b22002400200041808001360224200041d4840436022020004180800136022841d48404200041286a1001200041206a2000280228101920002000290320370328200041086a200041286a101a02402000290308a70d002000290310200041186a2903008450450d004101101741ff01714108470d00200041306a24000f0b000b3401017f230041106b22022400200241086a410020012000280200200028020410900120002002290308370200200241106a24000b5e02017f037e027e4201200128020422024110490d001a2001200241106b36020420012001280200220141106a360200200141086a29000021032001290000210442000b21052000200437030820002005370300200041106a20033703000b3301017f230041106b220124002001200028020436020c20002802002001410c6a10082000200128020c1019200141106a24000b900102027f017e230041106b220124002001420037030841042102027f02400340200241084604402001410436020820012903082203a741044f0d02000b20012000101e20012d0000410171450440200141086a20026a20012d00013a0000200241016a21020c010b0b4101210241000c010b410021022003422088a70b2100200141106a24002002ad2000ad420886840b7d01027f230041206b22022400200241086a2001103a41012103024020022d00084101710d000240024020022d00090e020001020b41002103200041003602040c010b200241106a2001103b20022802102201450d00200041086a200229021437020020002001360204410021030b20002003360200200241206a24000b3801017f230041106b22022400200241086a2001103a20022d00082101200020022d00093a0001200020014101713a0000200241106a24000b8a0302067f017e230041406a22022400200241186a41047221042000027f024003402003412047044020022001101e20022d00004101710d02200320046a20022d00013a00002002200341016a22033602180c010b0b200241126a2201200241256a2d00003a00002002410e6a22032002412c6a2d00003a00002002410a6a2204200241336a2d00003a0000200220022f011c3b0114200220022d001e3a00162002200241236a2f00003b011020022002412a6a2f01003b010c2002200241316a2f00003b0108200241346a29020021082002412d6a2800002105200241266a2801002106200228001f2107200041036a20022d00163a0000200020022f01143b0001200041046a2007360000200041086a20022f01103b00002000410a6a20012d00003a00002000410b6a20063600002000410f6a20022f010c3b0000200041116a20032d00003a0000200041126a2005360000200041166a20022f01083b0000200041186a20042d00003a0000200041196a200837000041000c010b41010b3a0000200241406b24000b810302067f017e230041306b22022400200241186a2001103a024020022d00184101710d00024002400240024020022d0019220341037122054103470440200541016b0e020203010b200341ff017141044f0d04200241106a2001104a20022802100d042002280214220341ffffffff034b0d030c040b200341fc017141027621030c020b200220033a0025200241013a002420022001360220200241003b012c200241206a2002412c6a41021075220545044020022f012c21030b2005200341ffff037141ff014d720d02200341fcff037141027621030c010b200220033a0025200241013a0024200220013602202002410036022c200241206a2002412c6a410410750d01200228022c220341808004490d01200341027621030b200128020422052003490d00200241086a20034101103c200235020c2108200228020822042001280200220620031091012001200520036b3602042001200320066a360200450d0020002003ad4220862008843702040b20002004360200200241306a24000bfd0802027f057e230041e0006b22022400200241406b200141186a290300370300200241386a200141106a290300370300200241306a200141086a2903003703002002420037034820022001290300370328200241286a10612101200241808001360254200241d484043602500240024002402001200241d0006a10490d0020022002290350370358200241106a200241d8006a101a2002290310a70d00200241206a290300210420022903182105200041106a200241286a1062200041d0006a200241286a10632201290300370300200041e8006a200141186a290300370300200041e0006a200141106a290300370300200041d8006a200141086a290300370300200041f4006a4200370200200041c8006a420137030020004188016a200241286a10612201290300370300200041a0016a200141186a29030037030020004198016a200141106a29030037030020004190016a200141086a290300370300200041ac016a420037020020004180016a4201370300200041b8016a200241286a1062200041f8016a200241286a1063220129030037030020004190026a200141186a29030037030020004188026a200141106a29030037030020004180026a200141086a2903003703002000419c026a4200370200200041f0016a4201370300200041b0026a200241286a10612201290300370300200141086a2903002106200141106a2903002107200141186a29030021082000200437030820002005370300200041c8026a2008370300200041c0026a2007370300200041b8026a2006370300200041d4026a4200370200200041a8026a4201370300200041b0056a200241286a1064200041bc056a200241286a1064200041c8056a200241286a10653a0000200241286a1061200241808001360254200241d48404360250200241d0006a10490d0020022002290350370358200241086a200241d8006a103a20022d00084101710d0020022d000922030e020201000b000b410121030b200041e0026a200241286a1062200041a0036a200241286a10632201290300370300200041b8036a200141186a290300370300200041b0036a200141106a290300370300200041a8036a200141086a290300370300200041c4036a420037020020004198036a4201370300200041d8036a200241286a10612201290300370300200041f0036a200141186a290300370300200041e8036a200141106a290300370300200041e0036a200141086a290300370300200041fc036a4200370200200041d0036a420137030020004188046a200241286a1062200041c8046a200241286a10632201290300370300200041e0046a200141186a290300370300200041d8046a200141106a290300370300200041d0046a200141086a290300370300200041ec046a4200370200200041c0046a420137030020004180056a200241286a1061220129030037030020004198056a200141186a29030037030020004190056a200141106a29030037030020004188056a200141086a290300370300200020033a00cc05200041a4056a4200370200200041f8046a4201370300200241e0006a24000b2501017f20012802002202450440200041003602000f0b20002002200141086a28020010720b960201067f230041106b220124002001200036020c2001410c6a2802002100230041206b22022400200241186a41808001360200200241d4840436021420024100360210200241086a2106230041206b22012400200241106a220441086a2203280200210520034100360200200428020421032004419c8404360204200120053602142001200336021002400240027f20002802004504402005450d02200341003a000041010c010b2005450d01200341013a0000200141013602182000200141106a1052200128021421052001280210210320012802180b21002004200536020820042003360204200141086a20042000101520062001290308370300200141206a24000c010b000b2002280208200228020c105f000bf90101037f230041e0006b2201240020014180800136022c200141d4840436022820014180800136023041d48404200141306a1003200141286a2001280230101920012001290328370358200141306a200141d8006a101f20012d003022034101470440200141106a2001413a6a290100370300200141186a200141c2006a2901003703002001411f6a200141c9006a2900003700002001200129013237030820012d003121020b20034101460440000b200020023a000020002001290308370001200041096a200141106a290300370000200041116a200141186a290300370000200041186a2001411f6a290000370000200141e0006a24000b4e000240024002400240200141ff017141016b0e020102000b200041046a41f38104411110720c020b200041046a41e48104410f10720c010b200041046a41d38104411110720b200041003602000b840302077f037e230041e0006b22052400410321060240200020021035047f410305200541d0006a2206200241186a2200290000370300200541c8006a2207200241106a2208290000370300200541406b2209200241086a220a2900003703002005200229000037033820052001200541386a102e2005290300220c20037c220e200c54220b200bad200541086a290300220c20047c7c220d200c54200c200d511b0d0120062000290000370300200720082900003703002009200a29000037030020052002290000370338200141106a200541386a200e200d103d2001290300220c20037c220e200c5422062006ad200141086a290300220c20047c7c220d200c54200c200d511b0d012001200e3703002001200d370308200541003a0010200541d1006a200241186a290000370000200541c9006a200241106a290000370000200541c1006a200241086a290000370000200541013a003820052002290000370039200541106a200541386a20032004103e41060b360200200541e0006a24000f0b000b3101017f200041046a210202402001450440200241908204410910720c010b200241848204410c10720b200041003602000bd41f01087f230041b0016b22022400200241e0006a200141186a290300370300200241d8006a200141106a290300370300200241d0006a200141086a2903003703002002420037036820022001290300370348200241c8006a1061200241f8006a41808001360200200241d4840436027420024100360270200241406b200241f0006a20001036200228024020022802441005200041106a200241c8006a1066200241c8006a10632109200041f8006a2802004100200041f4006a28020022031b21072003454101742108200041f0006a2802002101034002400240200704400240024020080e03000103010b034020010440200141016b2101200328026021030c010b0b4101210841002105410021010b200741016b21072005210620032104034020042f015e20064d044020042802002203450d032001200141016a22014b0d0320042f015c2106200321040c010b0b200641016a22052006492103200145044020030d02200421030c030b20030d01200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0405200541016a2105200341e0006a21030c010b000b000b200241c8006a10612109200041b0016a2802004100200041ac016a28020022041b21072004454101742108200041a8016a280200210103400240200704400240024020080e03000105010b034020010440200141016b210120042802940321040c010b0b4101210841002103410021010b200741016b2107034020042f013220034d044020042802002205450d052001200141016a22014b0d0520042f01302103200521040c010b0b200341016a22062003492105200145044020050d04200421050c020b20050d03200420064102746a4194036a21054101210603402005280200210520012006460440410021060c0305200641016a210620054194036a21050c010b000b000b200041b8016a200241c8006a1066200241c8006a10632109200041a0026a28020041002000419c026a28020022031b2107200345410174210820004198026a280200210103400240200704400240024020080e03000107010b034020010440200141016b2101200328026021030c010b0b4101210841002105410021010b200741016b21072005210620032104034020042f015e20064d044020042802002203450d072001200141016a22014b0d0720042f015c2106200321040c010b0b200641016a22052006492103200145044020030d06200421030c020b20030d05200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341e0006a21030c010b000b000b200241c8006a10612109200041d8026a2802004100200041d4026a28020022041b21072004454101742108200041d0026a280200210103400240200704400240024020080e03000109010b034020010440200141016b210120042802f40521040c010b0b4100210141012108410021030b200741016b2107034020042f013220034d044020042802002205450d092001200141016a22014b0d0920042f01302103200521040c010b0b200341016a22062003492105200145044020050d08200421050c020b20050d07200420064102746a41f4056a21054101210603402005280200210520012006460440410021060c0305200641016a2106200541f4056a21050c010b000b000b200041b0056a200241c8006a1067200041bc056a200241c8006a1067200041c8056a200241c8006a1068200241c8006a1061200241003602a001200242808001370274200241d48404360270200220002d00cc053a009001200241f0006a20024190016a41011037200220022903703702a401200241286a200241a0016a200228027810152002280228200228022c1005200041e0026a200241c8006a1066200241c8006a10632109200041c8036a2802004100200041c4036a28020022031b21072003454101742108200041c0036a280200210103400240200704400240024020080e0300010b010b034020010440200141016b2101200328026021030c010b0b4100210141012108410021050b200741016b21072005210620032104034020042f015e20064d044020042802002203450d0b2001200141016a22014b0d0b20042f015c2106200321040c010b0b200641016a22052006492103200145044020030d0a200421030c020b20030d09200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341e0006a21030c010b000b000b200241c8006a1061210920004180046a2802004100200041fc036a28020022031b21072003454101742108200041f8036a280200210103400240200704400240024020080e0300010d010b034020010440200141016b2101200328026021030c010b0b4100210141012108410021050b200741016b21072005210620032104034020042f015e20064d044020042802002203450d0d2001200141016a22014b0d0d20042f015c2106200321040c010b0b200641016a22052006492103200145044020030d0c200421030c020b20030d0b200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341e0006a21030c010b000b000b20004188046a200241c8006a1066200241c8006a10632109200041f0046a2802004100200041ec046a28020022031b21072003454101742108200041e8046a280200210103400240200704400240024020080e0300010f010b034020010440200141016b2101200328026021030c010b0b4100210141012108410021050b200741016b21072005210620032104034020042f015e20064d044020042802002203450d0f2001200141016a22014b0d0f20042f015c2106200321040c010b0b200641016a22052006492103200145044020030d0e200421030c020b20030d0d200420054102746a41e0006a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341e0006a21030c010b000b000b200241c8006a10612109200041a8056a2802004100200041a4056a28020022031b21072003454101742108200041a0056a280200210103400240200704400240024020080e03000111010b034020010440200141016b210120032802c00321030c010b0b4100210141012108410021050b200741016b21072005210620032104034020042f01be0320064d044020042802002200450d112001200141016a22014b0d1120042f01bc032106200021040c010b0b200641016a22052006492100200145044020000d10200421030c020b20000d0f200420054102746a41c0036a21034101210503402003280200210320012005460440410021050c0305200541016a2105200341c0036a21030c010b000b000b200241b0016a24000f0b200241f0006a20092004200641246c6a41046a1069200420064102746a4190036a28020022002d00082101200041013a0008024020014101710d0020002802004101470440200241f0006a10060c010b20024100360290012002428080013702a401200241d484043602a0012000280204200241a0016a106a200220022903a00137029401200241086a20024190016a20022802a8011015200241f0006a2002280208200228020c10050b410021010c000b000b200241f0006a2009200420064102746a220141046a350200106b200141306a28020022012d00282104200141013a0028024020044101710d00200128020022064102460440200241f0006a10060c010b200241d484043602940120024100360290012002418080013602a401200241d484043602a001200141046a210402402006410147044041d4840441003a0000200241013602a8012004280200200141086a280200200241a0016a106c0c010b41d4840441013a0000200241013602a8012004200241a0016a106d0b200220022903a00137029401200241106a20024190016a20022802a8011015200241f0006a2002280210200228021410050b410021010c000b000b200241f0006a2009200420064102746a220141046a1048200141306a28020022012d000c2104200141013a000c024020044101710d0020012802004101470440200241f0006a10060c010b20024100360290012002428080013702a401200241d484043602a0012001280204200241a0016a106a200141086a280200200241a0016a106a200220022903a00137029401200241186a20024190016a20022802a8011015200241f0006a2002280218200228021c10050b410021010c000b000b200241f0006a2009200420064102746a220141046a350200106b200141306a28020022012d000c2104200141013a000c024020044101710d00200128020022044102460440200241f0006a10060c010b200241d484043602940120024100360290012002418080013602a401200241d484043602a00102402004410147044041d4840441003a0000200241013602a801200141046a280200200141086a280200200241a0016a106c0c010b41d4840441013a0000200241013602a8012001280204200241a0016a106a0b200220022903a00137029401200241206a20024190016a20022802a8011015200241f0006a2002280220200228022410050b410021010c000b000b200241f0006a2009200420034106746a41346a106e200420034102746a41046a280200200241f0006a106f4100210120062103200521040c000b000b200241f0006a2009200420064102746a220141046a350200106b200141306a28020022012d00442104200141013a0044024020044101710d0020012d000022044102460440200241f0006a10060c010b200241d484043602940120024100360290012002418080013602a401200241d484043602a00102402004410147044041d4840441003a0000200241013602a801200141046a280200200141086a280200200241a0016a106c0c010b41d4840441013a0000200241013602a801200141016a200241a0016a10700b200220022903a00137029401200241306a20024190016a20022802a8011015200241f0006a2002280230200228023410050b410021010c000b000b200241f0006a2009200420034105746a41346a1071200420034102746a41046a280200200241f0006a106f4100210120052104200621030c000b000b000b200241f0006a2009200420064102746a220141046a350200106b200141306a28020022012d00242104200141013a0024024020044101710d0020012d000022044102460440200241f0006a10060c010b200241d484043602940120024100360290012002418080013602a401200241d484043602a00102402004410147044041d4840441003a0000200241013602a801200141046a280200200141086a280200200241a0016a106c0c010b41d4840441013a0000200241013602a801200141016a200241a0016a10130b200220022903a00137029401200241386a20024190016a20022802a8011015200241f0006a2002280238200228023c10050b410021010c000b000bbd0301077f230041106b220124002001200036020c2001410c6a2802002100230041206b22042400200441186a41808001360200200441d4840436021420044100360210200441086a2106230041206b22012400200441106a220541086a2202280200210320024100360200200528020421022005419c840436020420012003360214200120023602100240024002402000280200220741064604402003450d02200241003a0000200141013602180c010b2003450d01200241013a00002001410136021802400240024002400240024020070e06000102030405060b200341014d0d06200241003a000120014102360218200041046a200141106a10520c050b200341014d0d05200241013a0001200141023602180c040b200341014d0d04200241023a0001200141023602180c030b200341014d0d03200241033a0001200141023602180c020b200341014d0d02200241043a0001200141023602180c010b200341014d0d01200241053a000120014102360218200041046a200141106a10520b20052001290310370204200141086a20052001280218101520062001290308370300200141206a24000c010b000b2004280208200428020c105f000bbd0102017f027e230041406a22042400200441186a200241186a290000370300200441106a200241106a290000370300200441086a200241086a290000370300200441286a200341086a290000370300200441306a200341106a290000370300200441386a200341186a29000037030020042002290000370300200420032900003703202000200141a8026a200410322201290300420151047e200141106a290300210520012903080542000b37030020002005370308200441406b24000b930901067f230041d0026b220624002000027f4104200210350d001a4103200310350d001a200641206a200241186a290000370300200641186a200241106a290000370300200641106a200241086a290000370300200641306a200341086a290000370300200641386a200341106a290000370300200641406b200341186a29000037030020062002290000370308200620032900003703280240200141a8026a200641086a10322200290300420151044020002004370308200041003a0020200041106a20053703000c010b200641c8006a200641086a41c0001091011a0240024002402001027f024002400240200141e4016a2802002208200141e8016a280200470440200141f0016a220b200141e0016a2802002208103f2100200641013a00f001200641f0016a410172200641c8006a41c0001091011a200641a0016a2000200641f0016a104020062d00a00122004102462000410146720d062008200641a8016a280200220746410020062802a40122002008461b0d01200b200710412209450d0620092d00004101460d06200941046a210a20002007460d02200a2000360200200b200010412209450d0620092d00004101460d06200941086a210a0c030b20064188016a20014198026a200810420240200628028801410147044020064180026a2006419c016a280200360200200641f8016a20064194016a2902003703002006200629028c013703f00141c80041041033220041013a0000200041016a200641c8006a41c0001091011a200041003a0044200641f0016a200010431a0c010b20064190016a28020020064194016a2802004102746a41306a2802002100200641013a00f001200641f0016a410172200641c8006a41c0001091011a200641a0016a2000200641f0016a10400b200141e0016a280200220041016a22072000490d05200120073602e00120012802e801220041016a22072000490d05200120073602e8010c040b20012802e4010c020b200920003602080b200a200736020020012802e0012008470d012000200720002007491b0b3602e0010b20012802e401220041016a220720004f0d010b000b200120073602e401200641c8006a200641086a41c0001091011a41284108103322002004370308200041003a00202000200836021820004201370300200041106a2005370300200641a0016a200641c8006a41c0001091011a200641f0016a200141d0026a200641a0016a104420062802f0014101470440200641a0016a200641f0016a41047241d0001091011a200641a0016a200010451a0c010b200641f8016a280200200641fc016a2802004102746a41046a20003602000b200641b8016a200241186a290000370300200641b0016a200241106a290000370300200641a8016a200241086a290000370300200641c8016a200341086a290000370300200641d0016a200341106a290000370300200641d8016a200341186a290000370300200620022900003703a001200620032900003703c001200641f8016a200641a0016a41c0001091011a200641c0026a2005370300200641b8026a2004370300200642013703f001200641f0016a100d41060b360200200641d0026a24000bbd10020b7f057e230041d0076b22072400410421080240200210350d0041032108200310350d0020074198026a2209200241186a220c29000037030020074190026a220b200241106a220d29000037030020074188026a220a200241086a220e2900003703002007200229000037038002200741406b200120074180026a102e41012108200729034022142004542211200741c8006a290300221320055420052013511b0d0020094200370300200b4200370300200a42003703002007420037038002200120074180026a1028200741b8016a1024200741f0006a200341186a290000370200200741e8006a200341106a290000370200200741e0006a200341086a29000037020020072003290000370258200741b8026a200741d0016a290300370300200741b0026a200741c8016a290300370300200741a8026a2208200741c0016a290300370300200a200e290000370300200b200d2900003703002009200c290000370300200720072903b8013703a0022007200229000037038002200741f8006a20074180026a41c0001091011a200741b8016a200741d4006a41241091011a200741a0026a200537030020074198036a200741d4016a29020037030020074190036a200741cc016a29020037030020074188036a200741c4016a2902003703002007200437039802200720072902bc01370380032008200741f8006a41c000109101200741f8026a220941fdcdc6cf7a360200200a4200370300200b4200370300200741f0026a220b200641086a280200360200200741e8026a220c20062902003703002007420037038002200741003602e0012007428080013702bc01200741d484043602b80120074180036a200741b8016a1013200720072903b8013702e401200741386a200741e0016a20072802c0011015200728023c21062007280238210d200741306a200741e0016a200a10362007280234210e2007280230210a20072902e4012112200741003602c001200720123703b801200741b8016a200941041037200741c8026a200741b8016a1013200741b8016a101320042005200741b8016a1014200c280200200b280200200741b8016a1038200720072903b8013702e401200741286a200741e0016a20072802c0011015200728022c21082007280228210b2007200741e8016a28020022093602f401200720072802e401220c3602f001200720093602b801200d20064200200a200e200b2008200c200741b8016a1002210b200741f0016a20072802b8011019410121084101210602400240024002400240024002400240024002400240024002400240200b103941016b0e0c0d0203040506070809010a0b000b200720072903f0013703f801200741206a200741f8016a103a20072d00204101710d0b4100210a0240024020072d00210e0201000d0b200741186a200741f8016a103a20072d001920072d0018410171720d0c200741b8016a200741f8016a103b20072802b801220a450d0c20072902bc0121120b410021080c0c0b000b410221060c0a0b410321060c090b410421060c080b410521060c070b410621060c060b410721060c050b410821060c040b410a21060c030b410b21060c020b410921060c010b410021060b027f02402008450440200a0d014101210b41060c020b4101210b4106200641ff017122064101462006410846720d011a4100210b411d210f200741106a411d4100103c200728021421102007280210220a41b68104290000370000200a41156a41cb8104290000370000200a41106a41c68104290000370000200a41086a41be810429000037000041050c010b2012422088a7210f2012a721104100210b41050b210820074190016a420037030020074188016a420037030020074180016a42003703002007420037037820074180026a200741f8006a1021410021060340200641b0054b450440200120066a22092903002112200920074180026a20066a220c290300370300200c2012370300200941086a220d2903002112200d200c41086a220d290300370300200941106a220e2903002115200e200c41106a220e290300370300200941186a220929030021162009200c41186a220929030037030020092016370300200e2015370300200d2012370300200641206a21060c010b0b200141c8056a200741c8076a290300370300200141c0056a200741c0076a290300370300200b4504402000200a3602042000410c6a200f360200200041086a20103602000c010b20074198026a2206200241186a29000037030020074190026a220a200241106a29000037030020074188026a2208200241086a290000370300200720022900003703800202402014201420047d221454201320057d2011ad7d221220135620122013511b0d00200141106a220b20074180026a20142012103d2006200341186a2209290000370300200a200341106a220c2900003703002008200341086a220f29000037030020072003290000370380022007200120074180026a102e200741086a29030021132007290300211220062009290000370300200a200c2900003703002008200f2900003703002007200329000037038002200420127c221420125422012001ad200520137c7c221220135420122013511b0d00200b20074180026a20142012103d20074191016a200241186a29000037000020074189016a200241106a29000037000020074181016a200241086a290000370000200741013a00782007200229000037007920074199026a200341186a29000037000020074191026a200341106a29000037000020074189026a200341086a290000370000200741013a0080022007200329000037008102200741f8006a20074180026a20042005103e410621080c010b000b20002008360200200741d0076a24000b5e01017f230041106b220124002001200036020c2001410c6a2802002101230041206b22002400200041186a41808001360200200041d4840436021420004100360210200041086a200041106a200110362000280208200028020c105f000b3701027e200020014180016a200210312201290300420151047e200141106a290300210320012903080542000b370300200020033703080bdf0501087f230041b0016b220824000240200041f0006a2001100c22022802004101460440200241003a00080c010b20082001412410910121020240024002402000027f0240024002402000412c6a2802002205200041306a280200470440200041386a2209200028022822051054210320024101360240200241406b410472200241241091011a200241f8006a2003200241406b1055200228027822034102462003410146720d06200520024180016a2802002204464100200228027c22032005461b0d012009200410562206450d0620062802004101460d06200641046a210720032004460d02200720033602002009200310562206450d0620062802004101460d06200641086a21070c030b200241286a200041e0006a20051042024020022802284101470440200241d0006a2002413c6a280200360200200241c8006a200241346a2902003703002002200229022c370340412c4104103322034101360200200341046a200241241091011a200341003a0028200241406b200310431a0c010b200241306a280200200241346a2802004102746a41306a280200210320024101360240200241406b410472200241241091011a200241f8006a2003200241406b10550b2000280228220341016a22042003490d05200020043602282000280230220341016a22042003490d05200020043602300c040b200028022c0c020b200620033602080b2007200436020020002802282005470d012003200420032004491b0b3602280b200028022c220341016a220420034f0d010b000b2000200436022c2002200141241091012101410c41041033220241003a00082002200536020420024101360200200141f8006a200141241091011a200141406b20004198016a200141f8006a105720012802404101470440200141f8006a200141406b41047241341091011a200141f8006a200210581a0c010b200141c8006a280200200141cc006a2802004102746a4190036a20023602000b200841b0016a24000b910d02117f017e23004180016b2203240020032001360224200041f8036a210b027f200041fc036a28020022060440200b2802000c010b200b10472206360204200b410036020041000b21080240024003402006412c6a210920062f015e22044102742107417f2105034002402007450440200421050c010b200941286b210a200541016a2105200941046a2109200741046b2107417f200a280200220a2001472001200a491b41ff01710e020301000b0b20080440200841016b2108200620054102746a41e0006a28020021060c010b0b4102210720002903d0034201510440200341e8006a2209200041f0036a290300370300200341e0006a2207200041e8036a290300370300200341d8006a2204200041e0036a2903003703002003200041d8036a290300370350200341306a200341d0006a200341246a10482009200341c8006a2903003703002007200341406b2903003703002004200341386a29030037030020032003290330370350200341808001360274200341d48404360270027f02400240200341d0006a200341f0006a10490e0400050501050b20032003290370370378200341186a200341f8006a104a20032802180d04200328021c2109200341106a200341f8006a104a20032802100d042003280214210441010c010b41000b21072009ad2004ad4220868421140b41104104104b220841013a000c2008201437020420084100200720074102461b360200200320053602582003410036025020032006360254027f02400240024020062f015e410b4f0440200341286a2005104c200341306a280200210f200328022c2109200328022821041047210a20062f015e220720046b220520074b0d062005200541016b2205490d06200a20053b015e200441016a220c2004490d0620072007200c6b2207492005410c4f722005200747720d06200620044102746a220741306a280200210d200741046a280200210e200a41046a2006200c4102746a41046a200541027422051091011a200a41306a2006200c4102746a41306a20051091011a200620043b015e2003200f3602302003200a200620091b36022c4100210420034100360228200341286a20012008104d210941002101034020062802002205450d02200441016a22072004490d07200320062f015c22043602582003200536025420032007360250200741016b220620074b2001200647720d0720052f015e410b490d03200341286a2004104c20032802302111200328022c2003280228210420052f015e104e210120052f015e220820046b220620084b0d072006200641016b2206490d07200120063b015e200441016a22102004490d072008200820106b2208492006410c4f722006200847720d07200520044102746a220841306a280200210c200841046a280200210f200141046a200520104102746a220841046a200641027422061091011a200141306a200841306a20061091011a200520043b015e41016a220620106b220420064b0d0720012f015e2206410c4f2004200641016a47720d07200141e0006a200841e0006a20044102741091011a200341086a20012007104f200328020c2106200328020821012007210420052108044020062108200121040b200320113602302003200836022c20032004360228200341286a200e200d200a1050200721042006210a200c210d200f210e200521060c000b000b200341d0006a20012008104d21090c020b200b2802042205450d04200b2802002104104e220720053602602004200441016a22044b0d04200320072004104f20032802002105200b20032802042204360204200b20053602002005200541016b2205492001200547720d0420042f015e2201410a4b0d042004200141016a22053b015e200420014102746a220141306a200d360200200141046a200e360200200420054102746a41e0006a200a360200200a20053b015c200a2004360200200b280208220141016a22072001490d04200b41086a0c020b200341d0006a200e200d200a10500b200b280208220141016a22072001490d02200b41086a0b20073602000b41002107200928020022012802004101460440200128020421070b200341286a1024024020002007200341286a100a220941ff01714103470d0041022109200020032802242002100b0d00200341346a200241086a2900003702002003413c6a200241106a290000370200200341c4006a200241186a290000370200200320032802243602282003200229000037022c20004188046a200341286a102f200341286a1024410321090b20034180016a240020090f0b000bdb0302047f027e230041b0016b22022400200241f8006a200141186a290000370300200241f0006a200141106a290000370300200241e8006a200141086a29000037030020022001290000370360200241086a200041286a200241e0006a105c027f200228020841014704404202210620002903004201510440200241a8016a2203200041206a290300370300200241a0016a2204200041186a29030037030020024198016a2205200041106a2903003703002002200029030837039001200241e8006a20024190016a20011071200320024180016a2903003703002004200241f8006a2903003703002005200241f0006a2903003703002002200229036837039001200241406b20024190016a108f01200229034021060b20064202520440200241a0016a200241d8006a29030037030020024198016a200241d0006a2903003703002002200229034837039001200621070b200241e0006a200241086a41047241301091011a41284108104b22002007370300200041013a00202000200229039001370308200041106a20024198016a290300370300200041186a200241a0016a290300370300200241e0006a2000105d2802000c010b200241106a280200200241146a2802004102746a41046a2802000b200241b0016a24000bb00302047f027e230041f0016b2202240020024180016a200141c0001091011a200241086a200041286a20024180016a1044027f200228020841014704404202210620002903004201510440200241e8016a2203200041206a290300370300200241e0016a2204200041186a290300370300200241d8016a2205200041106a290300370300200220002903083703d00120024188016a200241d0016a2001106e2003200241a0016a290300370300200420024198016a290300370300200520024190016a29030037030020022002290388013703d001200241e0006a200241d0016a108f01200229036021060b20064202520440200241e0016a200241f8006a290300370300200241d8016a200241f0006a290300370300200220022903683703d001200621070b20024180016a200241086a41047241d0001091011a41284108104b22002007370300200041013a0020200020022903d001370308200041106a200241d8016a290300370300200041186a200241e0016a29030037030020024180016a200010452802000c010b200241106a280200200241146a2802004102746a41046a2802000b200241f0016a24000b11002000200110342200450440000b20000bb50101027f2000200020016a41016b410020016b7122014d0440024041cc8404280200220020016a22032000490d0041d0840428020020034904402001200141ffff036a22004b044041000f0b2000411076220240002200417f46044041000f0b2000200041ffff037147044041000f0b2000411074220020024110746a2203200049044041000f0b4100210241d084042003360200200020016a22032000490d010b41cc84042003360200200021020b20020f0b000b4101017f230041206b22012400200141186a4200370300200141106a4200370300200141086a42003703002001420037030020002001109301200141206a2400450b6102017f017e230041206b220324002001290204210420034100360218200320043703102002290300200241086a290300200341106a101420012003290310370204200341086a20012003280218101520002003290308370300200341206a24000b6001037f230041106b2203240002402000280208220420026a220520044f0440200341086a2004200520002802002000280204109001200328020c2002470d012003280208200120021091011a20002005360208200341106a24000f0b000b000b2c01017f230041106b220324002003200136020c2003410c6a2002105e2002200020011037200341106a24000b2001017f410c21012000410b4d047f2000410274419c84046a28020005410c0b0b3c01017f200020012802042202047f2001200241016b36020420012001280200220141016a36020020012d00000520010b3a000120002002453a00000bc00502097f017e230041106b22062400200620011020024020062802002203044041002006290204220b422088a7220441076b2201200120044b1b210a200341036a417c7120036b210941002101034020012004490440024002400240200120036a2d00002207411874411875220841004e0440200920016b4103712009417f46720d0303402001200a4f0d03200120036a2205280200200541046a28020072418081828478710d032001200141086a22014d0d000b0c010b4100210502400240024002402007419982046a2d000041026b0e030002010a0b200141016a220120044f0d09200120036a2c000041bf7f4c0d020c090b200141016a220220044f0d08200220036a2d000021020240024002400240200741f0016b0e050100000002000b2002411874411875417f4a2008410f6a41ff017141024b720d0b200241c001490d020c0b0b200241f0006a41ff01714130490d010c0a0b2002411874411875417f4a2002418f014b720d090b200141026a220220044f0d08200220036a2c000041bf7f4a0d08200141036a220120044f0d08200120036a2c000041bf7f4c0d010c080b200141016a220220044f0d07200220036a2d00002102024002400240200741e001470440200741ed01460d012008411f6a41ff0171410c490d022008417e71416e472002411874411875417f4a720d0b200241c001490d030c0b0b200241e0017141a001460d020c0a0b2002411874411875417f4a0d09200241a001490d010c090b2002411874411875417f4a200241bf014b720d080b200141026a220120044f0d07200120036a2c000041bf7f4a0d070b200141016a21010c040b000b20012004200120044b1b2105034020012005460440200521010c040b200120036a2c00004100480d03200141016a21010c000b000b200141016a21010c010b0b2000200b370204200321050c010b0b20002005360200200641106a24000bf10101037f230041106b220424000240200141004e0440200441086a2105027f41012001450d001a20024504402001410110340c010b410041cc8404280200220220016a22032002490d001a024041d084042802002003490440200141ffff036a22032001490d01200341107640002202417f46200241ffff0371200247720d012002411074220220034180807c716a22032002490d0141d0840420033602004100200120026a22032002490d021a0b41cc8404200336020020020c010b41000b21022005200136020420052002360200200428020822020d010b000b2000200136020420002002360200200441106a24000b8c0801077f230041a0016b220424000240200041f0006a200110312205290300420151044020052002370308200541003a0020200541106a20033703000c010b200441186a2205200141186a290000370300200441106a2206200141106a290000370300200441086a2207200141086a290000370300200420012900003703000240024002402000027f0240024002402000412c6a2802002208200041306a280200470440200041386a220a2000280228220810592109200441c1006a2007290300370000200441c9006a2006290300370000200441d1006a2005290300370000200441013a003820042004290300370039200441f0006a2009200441386a105a20042d007022054102462005410146720d062008200441f8006a2802002206464100200428027422052008461b0d01200a2006105b2207450d0620072d00004101460d06200741046a210920052006460d0220092005360200200a2005105b2207450d0620072d00004101460d06200741086a21090c030b200441206a200041e0006a20081042024020042802204101470440200441c8006a200441346a280200360200200441406b2004412c6a29020037030020042004290224370338412841041033220541013a0000200541003a002420052004290300370001200541096a200441086a290300370000200541116a200441106a290300370000200541196a200441186a290300370000200441386a200510431a0c010b200441286a2802002004412c6a2802004102746a41306a2802002105200441c1006a200441086a290300370000200441c9006a200441106a290300370000200441d1006a200441186a290300370000200441013a003820042004290300370039200441f0006a2005200441386a105a0b2000280228220541016a22062005490d05200020063602282000280230220541016a22062005490d05200020063602300c040b200028022c0c020b200720053602080b2009200636020020002802282008470d012005200620052006491b0b3602280b200028022c220541016a220620054f0d010b000b2000200636022c200441186a2205200141186a290000370300200441106a2206200141106a290000370300200441086a2207200141086a2900003703002004200129000037030041284108103322012002370308200141003a00202001200836021820014201370300200141106a200337030020044188016a200529030037030020044180016a2006290300370300200441f8006a200729030037030020042004290300370370200441386a20004198016a200441f0006a105c20042802384101470440200441f0006a200441386a41047241301091011a200441f0006a2001105d1a0c010b200441406b280200200441c4006a2802004102746a41046a20013602000b200441a0016a24000b6701017f230041b0016b22042400200441086a200041211091011a200441296a200141211091011a200441d8006a200441086a41c8001091011a200441a8016a2003370300200441a0016a200237030020044200370350200441d0006a100d200441b0016a24000ba30702047f057e230041a0026b22022400200241106a200041286a200110420240027f200228021041014704404102210320002903004201510440200041206a2903002109200041186a2903002108200041106a29030021062002200029030822072001ad7c220a370328200220062007200a56ad7c2207370330200220082006200756ad7c2206370338200220092006200854ad7c37034020024180800136028401200241d484043602800141002100024002400240200241286a20024180016a10490e0400060601060b20022002290380013703c801200241086a200241c8016a103a4101210020022d00084101710d00027f0240024020022d00090e020001030b200241c8006a200241c8016a107420022802484101460d02200241d0006a2802002104200228024c210541000c010b200241d0016a200241c8016a101f20022d00d0014101460d01200241f8016a200241c8016a101f20022d00f8014101460d01200241c6016a20022d00d3013a0000200241f5006a20024191026a290000370000200241ed006a20024189026a290000370000200241e5006a20024181026a290000370000200241d0006a200241e4016a290200370300200241d5006a200241e9016a290000370000200220022900f90137005d200220022f00d1013b01c4012002200241dc016a290200370348200241d8016a280200210420022802d40121052002418c016a200241c8006a41351091011a41010b2103200241fa016a200241c6016a2d00003a0000200220022f01c4013b01f801200241c8006a2002418c016a41381091011a410021000c010b0b20000d03200241d2016a2201200241fa016a22002d00003a0000200220022f01f8013b01d0012002418c016a200241c8006a41381091011a20034102470440200020012d00003a0000200220022f01d0013b01f801200241c8006a2002418c016a41381091011a0b200241ca016a20002d00003a0000200220022f01f8013b01c8012002418c016a200241c8006a41381091011a0b200241d8006a200241106a410472220041106a280200360200200241d0006a200041086a2902003703002002200029020037034841c8004104104b220020033a00002000200436000820002005360004200020022f01c8013b0001200041036a200241ca016a2d00003a00002000410c6a2002418c016a41381091011a200041013a0044200241c8006a200010432802000c010b200241186a2802002002411c6a2802004102746a41306a2802000b200241a0026a24000f0b000b3a01017f20022d000021032000200141c4001091012001200241c40010910121012d0000410246410020034102461b450440200141003a00440b0b2101017f20002001103f22002d0000410247047f200041003a004420000541000b0b900201077f027f20012802042204044020012802000c010b2001104722043602042001410036020041000b2106027f034020042f015e2208410274210941002105417f21030240034020052009460440200821030c020b200420056a2107200341016a2103200541046a21050240417f200741046a280200220720024720022007491b41ff01710e020001020b0b2000410c6a2003360200200041086a2004360200200041106a210541010c020b20060440200641016b2106200420034102746a41e0006a28020021040c010b0b200041106a20033602002000410c6a2004360200200041086a4100360200200041146a21052002210641000b21032000200636020420052001360200200020033602000b860801117f230041306b220224002000280200210e200241186a2000410c6a280200360200200220002902043703100240027f024002400240200228021422042f015e410b4f0440200241206a2002280218104c200241286a28020021072002280224210f2002280220210a200228021021031047210820042f015e2209200a6b220520094b0d05200541016b220b20054b0d052008200b3b015e200a41016a2206200a490d05200920066b220520094b200b410c4f722005200b47720d052004200a4102746a220541306a2802002110200541046a2802002109200841046a200420064102746a41046a200b41027422051091011a200841306a200420064102746a41306a20051091011a2004200a3b015e20022007360228200220082004200f1b36022441002106200241002003200f1b360220200241206a200e2001104d2112034020042802002207450d02200341016a22052003490d06200220042f015c22033602182002200736021420022005360210200541016b220120054b2001200647720d0620072f015e410b490d03200241206a2003104c2002280228210a2002280224210b2002280220210d20072f015e104e210c20072f015e2204200d6b220120044b0d06200141016b221120014b0d06200c20113b015e200d41016a2206200d490d06200420066b220120044b2011410c4f722001201147720d062007200d4102746a220141306a280200210e200141046a280200210f200c41046a200720064102746a220441046a201141027422011091011a200c41306a200441306a20011091011a2007200d3b015e41016a220120066b220320014b0d06200c2f015e2201410c4f2003200141016a47720d06200c41e0006a200441e0006a20034102741091011a200241086a200c2005104f200228020c21042002280208210620052103200721012002200a3602282002200b047f2006210320040520010b36022420022003360220200241206a20092010200810502005210320042108200e2110200f2109200721040c000b000b200241106a200e2001104d21120c020b200028021022042802042200450d0320042802002103104e22012000360260200341016a22002003490d03200220012000104f20022802002100200420022802042203360204200420003602002000200041016b2200492000200647720d0320032f015e2200410a4b0d032003200041016a22013b015e200320004102746a220041306a2010360200200041046a2009360200200320014102746a41e0006a2008360200200820013b015c200820033602002004280208220041016a22032000490d03200441086a0c020b200241106a20092010200810500b20002802102201280208220041016a22032000490d01200141086a0b2003360200200241306a240020120f0b000b880201097f027f20012802042203044020012802000c010b2001107c22033602042001410036020041000b2105200241206a2108027f034020032f01322209410674210a41002104417f2106024003402004200a460440200921060c020b2002200320046a220b41346a108e01220741ff01714504402008200b41d4006a108e0121070b200641016a2106200441406b21040240200741ff01710e020001020b0b41010c020b20050440200541016b2105200320064102746a41f4056a28020021030c010b0b200041146a200241c0001091011a4100210541000b21042000200536020420002004360200200041106a20013602002000410c6a2006360200200041086a20033602000b800b01117f230041e0026b22022400200241206a200041086a28020036020020022000290200370318200041106a21080240027f02400240027f0240200228021c22042f0132410b4f0440200241e0016a2002280220104c200241e8016a280200210720022802e401210c20022802e001210520022802182103107c210920042f0132220a20056b2206200a4b0d062006200641016b2206490d06200920063b0132200420054106746a220b41346a280000210d200241e0016a200b41386a413c1091011a200541016a220b2005490d06200a200a200b6b220a492006410c4f722006200a47720d06200420054102746a41046a280200210a200941346a2004200b4106746a41346a20064106741091011a200941046a2004200b4102746a41046a20064102741091011a200420053b0132200241a0026a200241e0016a413c1091011a20022007360260200220092004200c1b36025c41002107200241002003200c1b360258200241e0016a200841c0001091011a200241d8006a200241e0016a2001107d210c200241a4016a200241a0026a413c1091011a200241186a200241a4016a413c1091011a200241e0016a410472210e0340200428020022050440200341016a22062003490d08200220042f013022013602a0012002200536029c012002200636029801200641016b220320064b2003200747720d0820052f0132410b490d03200241e0016a2001104c20022802e801210f20022802e401211020022802e001210120052f0132107e210320052f0132220820016b220420084b0d082004200441016b2204490d08200320043b0132200520014106746a220741346a280000210b200241e0016a200741386a413c1091011a200141016a22072001490d082008200820076b2208492004410c4f722004200847720d08200520014102746a41046a2802002108200341346a200520074106746a41346a20044106741091011a200341046a200520074102746a221241046a20044102741091011a200520013b0132200241a0026a200241e0016a413c1091011a41016a220420076b220120044b0d0820032f01322204410c4f2001200441016a47720d08200341f4056a201241f4056a20014102741091011a200241106a20032006107f2002280214210420022802102107200241a4016a200241a0026a413c1091011a20062103200521012002200f3602a80220022010047f2007210320040520010b3602a402200220033602a0022002200d3602e001200e200241186a413c1091011a200241a0026a200241e0016a200a2009108001200241d8006a200241a4016a413c1091011a200241186a200241d8006a413c1091011a20062103200b210d200421092008210a200521040c010b0b200241a0026a200241186a413c1091011a41010c020b200241e0016a200841c0001091011a200241186a200241e0016a2001107d210c200028020c21000c020b2002200d3602e001200e200241186a413c1091011a20024198016a200241e0016a200a20091080012001210d41000b200028020c21000d010b2000280208220141016a22032001490d02200041086a0c010b20002802042203450d0120002802002101107e220520033602f4052001200141016a22014b0d01200241086a20052001107f200228020821032000200228020c220136020420002003360200200241e0016a200241a0026a413c1091011a2003200341016b2203492003200747720d0120012f01322203410a4b0d012001200341016a22053b0132200120034106746a220641346a200d360000200641386a200241e0016a413c1091011a200120054102746a41f4056a2009360200200120034102746a41046a200a360200200920053b0130200920013602002000280208220141016a22032001490d01200041086a0b2003360200200241e0026a2400200c0f0b000b2d01017f2000280208220220002802044904402000200241016a360208200028020020026a20013a00000f0b000b2201017f41e000410410732200450440000b200041003b015e2000410036020020000b900201037f230041e0006b220324002003411a6a41f0003a0000200341186a41edc2013b0100200342e9dcad8382add8b9e800370310200320013602082003200236020c200341386a22014200370300200341306a22044200370300200341286a220542003703002003420037032020034100360240200342808001370254200341d48404360250200341106a200341d0006a1076200341086a200341d0006a10772002280200200341d0006a106a200320032903503702442003200341406b2003280258101520032802002003280204200341206a1004200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290320370000200341e0006a24000b3701017f230041106b220224002002200128020436020c200020012802002002410c6a10072001200228020c10191039200241106a24000b4801017f027f4101200128020422024104490d001a2001200241046b36020420012001280200220141046a3602002001280000210241000b210120002002360204200020013602000b11002000200110732200044020000f0b000b5b01027f41042102024020014105490d002001210202400240200141056b0e020200010b4100210141012103410521020c010b200141076b210141012103410621020b2000200336020420002002360200200041086a20013602000b4101027f2000280204220341046a20032f015e41016a2204200028020822002001107b200341306a2201200420002002107b200320043b015e200120004102746a0b2201017f419001410410732200450440000b200041003b015e2000410036020020000b860101037f230041206b2203240020012f015e2104200341003a00182003200436021420034100360210024003400240200341086a200341106a107a2003280208450d002002450d022001200328020c22044102746a41e0006a280200220520043b015c200520013602000c010b0b2000200136020420002002360200200341206a24000f0b000bfc0101067f2000280204220441046a20042f015e220541016a2208200028020822062001107b200441306a200820062002107b0240200641016a22022006490d00200241016a22092002490d00200441e0006a2107200541026a220120094b0440200120026b220520014b0d012005200541016b2205490d01200720094102746a200720024102746a20054102741092010b200720024102746a2003360200200420083b015e20012002200120024b1b2103200420064102746a41e4006a2101200028020021000340200220034704402000450d022001280200220620023b015c20062004360200200141046a2101200241016a21020c010b0b0f0b000b8d0101047f230041106b22022400200028020421052000419c8404360204200041086a220328020021042003410036020002402000280200220320044d0440200241003602082002200420036b3602042002200320056a360200200120021053200320022802086a220120034f0d010b000b200020043602082000200536020420002001360200200241106a24000b100020002802002000280208200110380b0a0020012000412010370b900702087f057e230041c0016b22022400200241106a200041286a200110420240027f20022802104101470440024020002903004201520440410221010c010b200041206a290300210d200041186a290300210a200041106a290300210b20022000290308220c2001ad7c220e3703282002200b200c200e56ad7c220c3703302002200a200b200c56ad7c220b3703382002200d200a200b56ad7c37034020024180800136024c200241d4840436024841002100024002400240200241286a200241c8006a10490e0400060601060b20022002290348370370200241086a200241f0006a103a4101210020022d00084101710d00027f0240024020022d00090e020001030b20024198016a200241f0006a10742002280298014101460d02200228029c01210341002101200241a0016a2802000c010b2002200241f0006a104a20022802000d012002280204210320024198016a200241f0006a101f4101210120022d0098014101460d0120024188016a200241ad016a290000220a370300200241d8006a200241a5016a290000370300200241e0006a200a370300200241e8006a200241b5016a2800003602002002200229009d013703502002280099010b2106200241b0016a200241e8006a280200360200200241a8016a200241e0006a290300370300200241a0016a200241d8006a2903003703002002200229035037039801410021000c010b410221010b20000d0320024190016a2207200241b0016a220028020036020020024188016a2208200241a8016a220429030037030020024180016a2209200241a0016a220529030037030020022002290398013703782001410247044020002007280200360200200420082903003703002005200929030037030020022002290378370398010b200241d8006a2005290300370300200241e0006a2004290300370300200241e8006a200028020036020020022002290398013703500b200241a8016a200241106a410472220041106a280200360200200241a0016a200041086a2902003703002002200029020037039801412c4104104b220020063602082000200336020420002001360200200041013a00282000200229035037020c200041146a200241d8006a2903003702002000411c6a200241e0006a290300370200200041246a200241e8006a28020036020020024198016a200010432802000c010b200241186a2802002002411c6a2802004102746a41306a2802000b200241c0016a24000f0b000b3801017f200228020021032000200141281091012001200241281091012101280200410246410020034102461b450440200141003a00280b0b2101017f2000200110542200280200410247047f200041003a002820000541000b0bb702010a7f027f20012802042204044020012802000c010b200110820122043602042001410036020041000b2107200241046a210920022802002108027f034020042f01be03220a41246c210b41002105417f2106024003402005200b460440200a21060c020b417f2008200420056a220c41046a280200220347200320084b1b22034504402009200c41086a108e0121030b200641016a2106200541246a21050240200341ff01710e020001020b0b200020073602042000410c6a2006360200200041086a200436020041012103200041106a0c020b20070440200741016b2107200420064102746a41c0036a28020021040c010b0b200041046a200241241091011a200041306a20063602002000412c6a200436020041002103200041286a4100360200200041346a0b2000200336020020013602000bad0f021d7f047e230041d0016b22022400200241206a2000412c6a280200360200200220002902243703180240027f02400240027f0240200228021c22042f01be03410b4f044020024188016a2002280220104c20024190016a2802002107200228028c01210c200228028801210520022802182103108201210920042f01be03220a20056b2206200a4b0d062006200641016b2206490d06200920063b01be0320024190016a2004200541246c6a220b41106a29020037030020024198016a200b41186a290200370300200241a0016a200b41206a2902003703002002200b41086a29020037038801200541016a22082005490d06200a200a20086b220a492006410c4f722006200a47720d06200420054102746a4190036a280200210a200b41046a280200210b200941046a2004200841246c6a41046a200641246c1091011a20094190036a200420084102746a4190036a20064102741091011a200420053b01be03200241b8016a220e20024190016a2211290300370300200241c0016a220f20024198016a2212290300370300200241c8016a2210200241a0016a221329030037030020022002290388013703b00120022007360240200220092004200c1b36023c41002107200241002003200c1b36023820024188016a200041241091011a200241386a20024188016a2001108301211420024180016a22152010290300221f370300200241f8006a2216200f2903002220370300200241f0006a2217200e2903002221370300200220022903b0012222370368200241306a2218201f370300200241286a22192020370300200241206a221a20213703002002202237031820024188016a410472210d0340200428020022050440200341016a22062003490d08200220042f01bc0322013602602002200536025c20022006360258200641016b220320064b2003200747720d0820052f01be03410b490d0320024188016a2001104c200228029001211b200228028c01211c200228028801210120052f01be03108401210320052f01be03220820016b220420084b0d082004200441016b2204490d08200320043b01be0320112005200141246c6a220c41106a2902003703002012200c41186a2902003703002013200c41206a2902003703002002200c41086a29020037038801200141016a22072001490d082008200820076b2208492004410c4f722004200847720d08200520014102746a4190036a2802002108200c41046a280200210c200341046a2005200741246c6a41046a200441246c1091011a20034190036a200520074102746a221e4190036a20044102741091011a200520013b01be03200e2011290300370300200f20122903003703002010201329030037030020022002290388013703b00141016a220420076b220120044b0d0820032f01be032204410c4f2001200441016a47720d08200341c0036a201e41c0036a20014102741091011a200241106a200320061085012017200e2903003703002016200f29030037030020152010290300370300200220022903b001370368200228021421042002280210210720062103200521012002201b3602b8012002201c047f2007210320040520010b3602b401200220033602b001200d2002290318370200200d41086a201a290300370200200d41106a2019290300370200200d41186a20182903003702002002200b36028801200241b0016a20024188016a200a2009108601200241d0006a2015290300221f370300200241c8006a20162903002220370300200241406b20172903002221370300201a2021370300201920203703002018201f37030020022002290368221f3703382002201f37031820062103200c210b200421092008210a200521040c010b0b200241c8016a200241306a290300370300200241c0016a200241286a290300370300200241b8016a200241206a290300370300200220022903183703b00141010c020b20024188016a200041241091011a200241186a20024188016a20011083012114200028023021000c020b200d2002290318370200200d41086a200241206a290300370200200d41106a200241286a290300370200200d41186a200241306a2903003702002002200b36028801200241d8006a20024188016a200a20091086012001210b41000b200028023021000d010b2000280208220141016a22032001490d02200041086a0c010b20002802042203450d0120002802002101108401220520033602c0032001200141016a22014b0d01200241086a20052001108501200228020821032000200228020c220136020420002003360200200241a0016a200241c8016a29030037030020024198016a200241c0016a29030037030020024190016a200241b8016a290300370300200220022903b001370388012003200341016b2203492003200747720d0120012f01be032205410a4b0d012001200541246c6a220341046a200b3602002001200541016a22063b01be03200341106a20024190016a290300370200200341186a20024198016a290300370200200341206a200241a0016a290300370200200341086a200229038801370200200120054102746a4190036a200a360200200120064102746a41c0036a2009360200200920063b01bc03200920013602002000280208220141016a22032001490d01200041086a0b2003360200200241d0016a240020140f0b000bac0702087f057e230041b0016b22022400200241086a200041286a200110420240027f200228020841014704404102210320002903004201510440200041206a290300210d200041186a290300210c200041106a290300210a20022000290308220b2001ad7c220e3703382002200a200b200e56ad7c220b3703402002200c200a200b56ad7c220a3703482002200d200a200c54ad7c370350200241808001360264200241d4840436026041002100024002400240200241386a200241e0006a10490e0400060601060b200220022903603703202002200241206a103a4101210020022d00004101710d00027f0240024020022d00010e020001030b20024188016a200241206a10742002280288014101460d02200228028c0121044100210320024190016a2802000c010b20024188016a200241206a101f4101210320022d0088014101460d0120024186016a20022d008b013a0000200241f0006a2002419c016a290200370300200241f5006a200241a1016a290000370000200220022f0089013b018401200220024194016a290200370368200228028c01210420024190016a2802000b2105200241de006a20024186016a2d00003a000020024190016a200241f0006a29030037030020024198016a200241f8006a290300370300200220022f0184013b015c2002200229036837038801410021000c010b410221030b20000d03200241e2006a2206200241de006a22072d00003a0000200241f0006a220820024190016a2200290300370300200241f8006a220920024198016a2201290300370300200220022f015c3b016020022002290388013703682003410247044020024186016a20062d00003a00002000200829030037030020012009290300370300200220022f01603b01840120022002290368370388010b200720024186016a2d00003a0000200241286a2000290300370300200241306a2001290300370300200220022f0184013b015c20022002290388013703200b20024198016a200241086a410472220041106a28020036020020024190016a200041086a290200370300200220002902003703880141284104104b220020033a00002000200536000820002004360004200041013a0024200020022f015c3b0001200041036a200241de006a2d00003a00002000200229032037000c200041146a200241286a2903003700002000411c6a200241306a29030037000020024188016a200010432802000c010b200241106a280200200241146a2802004102746a41306a2802000b200241b0016a24000f0b000b3801017f20022d0000210320002001412410910120012002412410910121012d0000410246410020034102461b450440200141003a00240b0b2101017f20002001105922002d0000410247047f200041003a002420000541000b0b9a0201077f027f20012802042203044020012802000c010b200110880122033602042001410036020041000b2105027f034020032f01322207410574210841002104417f21060240034020042008460440200721060c020b200641016a2106200320046a2109200441206a210402402002200941346a108e0141ff01710e020001020b0b41010c020b20050440200541016b2105200320064102746a4194036a28020021030c010b0b200041146a20022900003700002000412c6a200241186a290000370000200041246a200241106a2900003700002000411c6a200241086a2900003700004100210541000b21042000200536020420002004360200200041106a20013602002000410c6a2006360200200041086a20033602000bf20f021e7f037e230041c0016b22022400200241186a200041086a28020036020020022000290200370310200041106a21080240027f02400240027f0240200228021422052f0132410b4f044020024180016a2002280218104c20024188016a28020021062002280284012104200228028001210c20022802102103108801210920052f01322211200c6b220a20114b0d06200a41016b220e200a4b0d062009200e3b013220024188016a2005200c4105746a220741406b29000037030020024190016a200741c8006a29000037030020024198016a200741d0006a2800003602002002200741386a29000037038001200c41016a220b200c490d062011200b6b220a20114b200e410c4f72200a200e47720d062005200c4102746a41046a2802002113200741346a280000210a200941346a2005200b4105746a41346a200e4105741091011a200941046a2005200b4102746a41046a200e4102741091011a2005200c3b0132200241a8016a221420024188016a2215290300370300200241b0016a221620024190016a2217290300370300200241b8016a221820024198016a221928020036020020022002290380013703a0012002200636023820022009200520041b3602344100210720024100200320041b3602302019200841186a2900003703002017200841106a2900003703002015200841086a2900003703002002200829000037038001200241306a20024180016a2001108901211a200241f8006a221b20182802002201360200200241f0006a221c20162903002222370300200241e8006a221d20142903002221370300200220022903a0012220370360200241286a221e2001360200200241206a221f2022370300200241186a220820213703002002202037031020024180016a410472210d0340200528020022040440200341016a22062003490d08200220052f013022013602582002200436025420022006360250200641016b220320064b2003200747720d0820042f0132410b490d0320024180016a2001104c200228028801210c200228028401200228028001210f20042f0132108a01211020042f01322203200f6b220120034b0d08200141016b221220014b0d08201020123b013220152004200f4105746a220b41406b2900003703002017200b41c8006a2900003703002019200b41d0006a2800003602002002200b41386a29000037038001200f41016a2207200f490d08200320076b220120034b2012410c4f722001201247720d082004200f4102746a41046a2802002111200b41346a280000210b201041346a200420074105746a41346a20124105741091011a201041046a200420074102746a220341046a20124102741091011a2004200f3b013220142015290300370300201620172903003703002018201928020036020020022002290380013703a00141016a220120076b220520014b0d0820102f01322201410c4f2005200141016a47720d0820104194036a20034194036a20054102741091011a200241086a20102006108b01201d2014290300370300201c2016290300370300201b2018280200360200200220022903a001370360200228020c2101200228020821072006210320042105044020012105200721030b2002200c3602a801200220053602a401200220033602a001200d2002290310370200200d41086a2008290300370200200d41106a201f290300370200200d41186a201e2802003602002002200a36028001200241a0016a20024180016a20132009108c01200241c8006a201b2802002203360200200241406b201c2903002221370300200241386a201d290300222037030020082020370300201f2021370300201e20033602002002200229036022203703302002202037031020062103200b210a2001210920112113200421050c010b0b200241b8016a200241286a280200360200200241b0016a200241206a290300370300200241a8016a200241186a290300370300200220022903103703a00141010c020b20024198016a200841186a29000037030020024190016a200841106a29000037030020024188016a200841086a2900003703002002200829000037038001200241106a20024180016a2001108901211a200028020c21040c020b200d2002290310370200200d41086a200241186a290300370200200d41106a200241206a290300370200200d41186a200241286a2802003602002002200a36028001200241d0006a20024180016a20132009108c012001210a41000b200028020c21040d010b2004280208220041016a22032000490d02200441086a0c010b20042802042200450d0120042802002103108a012201200036029403200341016a22002003490d01200220012000108b01200228020021002004200228020422063602042004200036020020024198016a200241b8016a28020036020020024190016a200241b0016a29030037030020024188016a200241a8016a290300370300200220022903a001370380012000200041016b2200492000200747720d0120062f01322201410a4b0d01200620014105746a220341346a200a3600002006200141016a22003b0132200341386a200229038001370000200341406b20024188016a290300370000200341c8006a20024190016a290300370000200341d0006a20024198016a280200360000200620014102746a41046a2013360200200620004102746a4194036a2009360200200920003b0130200920063602002004280208220041016a22032000490d01200441086a0b2003360200200241c0016a2400201a0f0b000b7901017f230041106b22022400024020002802002200413f4d04402001200041027410460c010b200041ffff004d0440200220004102744101723b010e20012002410e6a410210370c010b200041ffffffff034d044020004102744102722001106a0c010b20014103104620002001106a0b200241106a24000b0b004100200020011009000b6502017f017e230041206b22032400200129020421042003410036021820032004370310200320022d00003a001f200341106a2003411f6a4101103720012003290310370204200341086a20012003280218101520002003290308370300200341206a24000b08002000420110780bef0101037f230041306b22022400200110792103200241808001360224200241d48404360220024002402003200241206a10490d0020022002290320370328200241186a200241286a104a20022802180d00200228021c2103200241106a200241286a104a20022802100d0020022802142104200241086a200241286a104a2002280208450d010b000b200041306a200228020c3602002000412c6a2004360200200020033602282000420137030020002001290300370308200041106a200141086a290300370300200041186a200141106a290300370300200041206a200141186a290300370300200241306a24000b0c00200042808080801010780baf0102017f017e230041206b2202240002400240024002402001106541ff01710e020001030b2001420110781a200041003602000c010b200110612101200241808001360204200241d484043602000240024002402001200210490e0400040401040b20022002290300370318200241086a200241186a103b20022802082201450d03200229020c21030c010b410021010b2001450d0120002003370204200020013602000b200241206a24000f0b000b6301017f230041206b22012400200010612100200141808001360214200141d4840436021002402000200141106a104945044020012001290310370318200141086a200141186a101e20012d0008410171450d010b000b20012d0009200141206a24000b820101017f230041306b220224002001107920024100360210200242808001370224200241d484043602202000280228200241206a106a2000412c6a280200200241206a106a200041306a280200200241206a106a20022002290320370214200241086a200241106a200228022810152002280208200228020c1005200241306a24000b8a0101027f230041306b220224002002200028020022034100473a0020200241206a200110680240200304402001106120024100360210200242808001370224200241d484043602202000200241206a105220022002290320370214200241086a200241106a200228022810152002280208200228020c10050c010b2001420110781a0b200241306a24000b4e01017f230041206b2202240020011061200241186a41808001360200200241d4840436021420024100360210200241086a200241106a200010602002280208200228020c1005200241206a24000b8d0201037f230041e0006b220324002003411a6a41f0003a0000200341186a41edc2013b0100200342e9dcad8382add8b9e8003703102003200236020c20032001360208200341386a22014200370300200341306a22044200370300200341286a220542003703002003420037032020034100360240200342808001370254200341d48404360250200341106a200341d0006a1076200341086a200341d0006a10772002200341d0006a106d200320032903503702442003200341406b2003280258101520032802002003280204200341206a1004200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290320370000200341e0006a24000b2601017f230041106b220224002002200036020c20012002410c6a41041037200241106a24000b5001027e20002002200129030022027c22033703002000200129030822042002200356ad7c22023703082000200129031022032002200454ad7c2202370310200020012903182002200354ad7c3703180b0e0020002002106a20012002106a0b140020002802002001106a200041046a200110130b8d0201037f230041e0006b220324002003411a6a41f0003a0000200341186a41edc2013b0100200342e9dcad8382add8b9e8003703102003200236020c20032001360208200341386a22014200370300200341306a22044200370300200341286a220542003703002003420037032020034100360240200342808001370254200341d48404360250200341106a200341d0006a1076200341086a200341d0006a10772002200341d0006a1070200320032903503702442003200341406b2003280258101520032802002003280204200341206a1004200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290320370000200341e0006a24000ba20101027f230041306b2202240020002d00202103200041013a0020024020034101710d0020002903004201520440200110060c010b20024100360210200242808001370224200241d484043602202000290308200041106a290300200241206a1014200041186a280200200241206a106a20022002290320370214200241086a200241106a2002280228101520012002280208200228020c10050b200241306a24000b1100200020011013200041206a200110130b8d0201037f230041e0006b220324002003411a6a41f0003a0000200341186a41edc2013b0100200342e9dcad8382add8b9e8003703102003200236020c20032001360208200341386a22014200370300200341306a22044200370300200341286a220542003703002003420037032020034100360240200342808001370254200341d48404360250200341106a200341d0006a1076200341086a200341d0006a10772002200341d0006a1013200320032903503702442003200341406b2003280258101520032802002003280204200341206a1004200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290320370000200341e0006a24000b4801027f230041106b22032400200341086a20024100103c200328020821042000200328020c360204200020043602002004200120021091011a20002002360208200341106a24000b08002000200110340b6201037f230041106b22022400200241086a2001104a41012103024020022802080d00200228020c210420022001104a20022802000d002002280204210120002004360204200041086a2001360200410021030b20002003360200200241106a24000b930101027f20002f01042103200041003a0004410121040240024020034101714504402000280200220028020422032002490d0220012000280200220120021091011a0c010b200120034108763a0000200028020022002802042203200241016b2202490d01200141016a2000280200220120021091011a0b2000200320026b3602042000200120026a360200410021040b20040b0a0020012000410b10370b0d0020012000280200412010370b6001027e200029032021022000200137032020002002200029030022017c22023703002000200029030822032001200256ad7c22013703082000200029031022022001200354ad7c2201370310200020002903182001200254ad7c37031820000b6001037e200029032021012000420137032020002001200029030022027c22013703002000200029030822032001200254ad7c22013703082000200029031022022001200354ad7c2201370310200020002903182001200254ad7c37031820000b5001037f024020012d00080d0020012802002203200128020422044b0d00200320044f044041012102200141013a00080c010b410121022001200341016a3602000b20002003360204200020023602000b5a01017f0240200241016a22042002490d00200120044b04402001200120026b2201490d012001200141016b2201490d01200020044102746a200020024102746a20014102741092010b200020024102746a20033602000f0b000b2201017f41f405410410732200450440000b200041003b01322000410036020020000b5c01037f230041406a220324002000280204220441346a20042f013241016a2205200028020822002003200141c0001091012201108101200441046a2203200520002002107b200420053b0132200141406b2400200320004102746a0b2201017f41a406410410732200450440000b200041003b01322000410036020020000b860101037f230041206b2203240020012f01322104200341003a00182003200436021420034100360210024003400240200341086a200341106a107a2003280208450d002002450d022001200328020c22044102746a41f4056a280200220520043b0130200520013602000c010b0b2000200136020420002002360200200341206a24000f0b000b970201077f230041406a220724002000280204220441346a20042f0132220541016a2208200028020822062007200141c000109101220a108101200441046a200820062002107b0240200641016a22022006490d00200241016a22092002490d00200441f4056a2107200541026a220120094b0440200120026b220520014b0d012005200541016b2205490d01200720094102746a200720024102746a20054102741092010b200720024102746a2003360200200420083b013220012002200120024b1b2103200420064102746a41f8056a2101200028020021000340200220034704402000450d022001280200220620023b013020062004360200200141046a2101200241016a21020c010b0b200a41406b24000f0b000b5e01017f0240200241016a22042002490d00200120044b04402001200120026b2201490d012001200141016b2201490d01200020044106746a200020024106746a20014106741092010b200020024106746a200341c0001091011a0f0b000b2301017f41c003410410732200450440000b200041003b01be032000410036020020000b6b01037f230041306b2203240020002802082104200028020422002f01be032105200341086a200141241091011a200041046a200541016a22012004200341086a10870120004190036a2205200120042002107b200020013b01be03200341306a2400200520044102746a0b2301017f41f003410410732200450440000b200041003b01be032000410036020020000b880101037f230041206b2203240020012f01be032104200341003a00182003200436021420034100360210024003400240200341086a200341106a107a2003280208450d002002450d022001200328020c22044102746a41c0036a280200220520043b01bc03200520013602000c010b0b2000200136020420002002360200200341206a24000f0b000ba50201077f230041306b2207240020002802082104200028020422062f01be032105200741086a200141241091011a200641046a200541016a22092004200741086a10870120064190036a200920042002107b0240200441016a22022004490d00200241016a220a2002490d00200641c0036a2108200541026a2201200a4b0440200120026b220520014b0d012005200541016b2205490d012008200a4102746a200820024102746a20054102741092010b200820024102746a2003360200200620093b01be0320012002200120024b1b2103200620044102746a41c4036a2101200028020021000340200220034704402000450d022001280200220420023b01bc0320042006360200200141046a2101200241016a21020c010b0b200741306a24000f0b000b5d01017f0240200241016a22042002490d00200120044b04402001200120026b2201490d012001200141016b2201490d012000200441246c6a2000200241246c6a200141246c1092010b2000200241246c6a200341241091011a0f0b000b2201017f419403410410732200450440000b200041003b01322000410036020020000b920101037f230041206b2203240020002802082104200028020422002f01322105200341186a200141186a290000370300200341106a200141106a290000370300200341086a200141086a29000037030020032001290000370300200041346a200541016a220120042003108d01200041046a2205200120042002107b200020013b0132200341206a2400200520044102746a0b2201017f41c403410410732200450440000b200041003b01322000410036020020000b860101037f230041206b2203240020012f01322104200341003a00182003200436021420034100360210024003400240200341086a200341106a107a2003280208450d002002450d022001200328020c22044102746a4194036a280200220520043b0130200520013602000c010b0b2000200136020420002002360200200341206a24000f0b000bcb0201077f230041206b2206240020002802082104200028020422072f01322105200641186a200141186a290000370300200641106a200141106a290000370300200641086a200141086a29000037030020062001290000370300200741346a200541016a220920042006108d01200741046a200920042002107b0240200441016a22012004490d00200141016a220a2001490d0020074194036a2108200541026a2202200a4b0440200220016b220520024b0d012005200541016b2205490d012008200a4102746a200820014102746a20054102741092010b200820014102746a2003360200200720093b01322002200120012002491b2103200720044102746a4198036a2102200028020021000340200120034704402000450d022002280200220420013b013020042007360200200241046a2102200141016a21010c010b0b200641206a24000f0b000b8f0101017f0240200241016a22042002490d00200120044b04402001200120026b2201490d012001200141016b2201490d01200020044105746a200020024105746a20014105741092010b200020024105746a22002003290000370000200041186a200341186a290000370000200041106a200341106a290000370000200041086a200341086a2900003700000f0b000b1800417f41012000200110930122004100481b410020001b0bb40102017f027e230041306b22022400200241808001360224200241d484043602202000027e02400240024002402001200241206a10490e0400010102010b20022002290320370328200241086a200241286a101a20022802080d00200241186a2903002103200229031021042002200241286a104a2002280200450d020b000b42000c010b20022802042101200041106a200337030020002004370308200041186a200136020042010b370300200241306a24000b31000240200120024b200220044b720d002002200220016b2202490d00200020023602042000200120036a3602000f0b000be902010a7f02402002410f4d0440200021030c010b2000410020006b41037122046a210520012106200021030340200320054f450440200320062d00003a0000200641016a2106200341016a21030c010b0b0240200220046b220820024b0d002008417c7121070240200120046a22044103710440200520076a21092004417c71220241046a210141202004410374411871220a6b2203411871210b2003412071210c20022802002106200521030340200320094f0d02200c0d03200320012802002202200b742006200a7672360200200141046a2101200341046a2103200221060c000b000b200520076a210220042101200521030340200220034d0d0120032001280200360200200141046a2101200341046a21030c000b000b200820076b220220084b0d00200520076a2103200420076a21010c010b000b200220036a21020340200220034d450440200320012d00003a0000200141016a2101200341016a21030c010b0b20000be10501097f02400240024002402002200020016b4b0440200120026a2105200020026a21002002410f4d0d032000417c712106200120026a41016b21034100200041037122046b21070340200020064b0440200041016b220020032d00003a0000200341016b21030c010b0b200220046b220420024b0d012004417c7121020240200520076a22054103710440200620026b2108410020026b21072005417c71220041046b21014120200541037441187122096b2203411871210a2003412071210b20002802002103200621000340200020084d0d02200b0d04200041046b22002003200a742001280200220320097672360200200141046b21010c000b000b200620026b2103410020026b2107200120046a41046b2101200621000340200020034d0d01200041046b22002001280200360200200141046b21010c000b000b200420026b220220044b0d01200620076a2100200520076a21050c030b2002410f4d0d012000410020006b41037122046a210620012103034020002006490440200020032d00003a0000200341016a2103200041016a21000c010b0b200220046b220720024b0d002007417c7121050240200120046a22044103710440200520066a21082004417c71220041046a21014120200441037441187122096b2202411871210a2002412071210b20002802002103200621000340200020084f0d02200b0d03200020012802002202200a74200320097672360200200141046a2101200041046a2100200221030c000b000b200520066a210220042101200621000340200020024f0d0120002001280200360200200141046a2101200041046a21000c000b000b200720056b220220074b0d00200520066a2100200420056a21010c010b000b200020026a21020340200020024f0d02200020012d00003a0000200141016a2101200041016a21000c000b000b200541016b2101200020026b21020340200020024d0d01200041016b220020012d00003a0000200141016b21010c000b000b0b4301037f412021020340200245044041000f0b200241016b210220012d0000210320002d00002104200041016a2100200141016a210120032004460d000b200420036b0b0b8c040300418080040b990350535032325374727563743a3a5472616e736665720000001c020100000000000000010050535032325374727563743a3a5472616e736665723a3a66726f6d50535032325374727563743a3a5472616e736665723a3a746f50535032325374727563743a3a417070726f76616c0000001c020100000000005800010050535032325374727563743a3a417070726f76616c3a3a6f776e657250535032325374727563743a3a417070726f76616c3a3a7370656e6465724572726f7220647572696e672063616c6c20746f20726563656976657241433a3a526f6c65526564756e64616e7441433a3a4d697373696e67526f6c6541433a3a496e76616c696443616c6c6572503a3a4e6f74506175736564503a3a50617573656401010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010041db83040b330202020202020202020202020202020202020202020202020202020202020303030303030303030303030303030304040404040041a084040b290100000002000000030000000400000005000000060000000700000008000000090000000c0000000b" + }, + "contract": { + "name": "psp22_minter_pauser", + "version": "0.1.0", + "authors": [ + "Oleksandr Mykhailenko " + ] + }, + "V1": { + "spec": { + "constructors": [ + { + "args": [ + { + "name": "total_supply", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + }, + { + "name": "name", + "type": { + "displayName": [ + "Option" + ], + "type": 19 + } + }, + { + "name": "symbol", + "type": { + "displayName": [ + "Option" + ], + "type": 19 + } + }, + { + "name": "decimal", + "type": { + "displayName": [ + "u8" + ], + "type": 6 + } + } + ], + "docs": [], + "name": [ + "new" + ], + "selector": "0x9bae9d5e" + } + ], + "docs": [], + "events": [ + { + "args": [ + { + "docs": [], + "indexed": true, + "name": "from", + "type": { + "displayName": [ + "Option" + ], + "type": 23 + } + }, + { + "docs": [], + "indexed": true, + "name": "to", + "type": { + "displayName": [ + "Option" + ], + "type": 23 + } + }, + { + "docs": [], + "indexed": false, + "name": "value", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + } + ], + "docs": [ + " Event emitted when a token transfer occurs." + ], + "name": "Transfer" + }, + { + "args": [ + { + "docs": [], + "indexed": true, + "name": "owner", + "type": { + "displayName": [ + "AccountId" + ], + "type": 4 + } + }, + { + "docs": [], + "indexed": true, + "name": "spender", + "type": { + "displayName": [ + "AccountId" + ], + "type": 4 + } + }, + { + "docs": [], + "indexed": false, + "name": "value", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + } + ], + "docs": [ + " Event emitted when an approval occurs that `spender` is allowed to withdraw", + " up to the amount of `value` tokens from `owner`." + ], + "name": "Approval" + } + ], + "messages": [ + { + "args": [], + "docs": [ + " Returns the token name." + ], + "mutates": false, + "name": [ + "PSP22Metadata", + "token_name" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22metadata_external", + "TokenNameOutput" + ], + "type": 19 + }, + "selector": "0x3d261bd4" + }, + { + "args": [], + "docs": [ + " Returns the token symbol." + ], + "mutates": false, + "name": [ + "PSP22Metadata", + "token_symbol" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22metadata_external", + "TokenSymbolOutput" + ], + "type": 19 + }, + "selector": "0x34205be5" + }, + { + "args": [], + "docs": [ + " Returns the token decimals." + ], + "mutates": false, + "name": [ + "PSP22Metadata", + "token_decimals" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22metadata_external", + "TokenDecimalsOutput" + ], + "type": 6 + }, + "selector": "0x7271b782" + }, + { + "args": [ + { + "name": "account", + "type": { + "displayName": [ + "psp22mintable_external", + "MintInput1" + ], + "type": 4 + } + }, + { + "name": "amount", + "type": { + "displayName": [ + "psp22mintable_external", + "MintInput2" + ], + "type": 0 + } + } + ], + "docs": [], + "mutates": true, + "name": [ + "PSP22Mintable", + "mint" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22mintable_external", + "MintOutput" + ], + "type": 20 + }, + "selector": "0xfc3c75d4" + }, + { + "args": [ + { + "name": "spender", + "type": { + "displayName": [ + "psp22_external", + "DecreaseAllowanceInput1" + ], + "type": 4 + } + }, + { + "name": "delta_value", + "type": { + "displayName": [ + "psp22_external", + "DecreaseAllowanceInput2" + ], + "type": 0 + } + } + ], + "docs": [ + " Atomically decreases the allowance granted to `spender` by the caller.", + "", + " An `Approval` event is emitted.", + "", + " # Errors", + "", + " Returns `InsufficientAllowance` error if there are not enough tokens allowed", + " by owner for `spender`.", + "", + " Returns `ZeroSenderAddress` error if sender's address is zero.", + "", + " Returns `ZeroRecipientAddress` error if recipient's address is zero." + ], + "mutates": true, + "name": [ + "PSP22", + "decrease_allowance" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22_external", + "DecreaseAllowanceOutput" + ], + "type": 20 + }, + "selector": "0xfecb57d5" + }, + { + "args": [ + { + "name": "to", + "type": { + "displayName": [ + "psp22_external", + "TransferInput1" + ], + "type": 4 + } + }, + { + "name": "value", + "type": { + "displayName": [ + "psp22_external", + "TransferInput2" + ], + "type": 0 + } + }, + { + "name": "data", + "type": { + "displayName": [ + "psp22_external", + "TransferInput3" + ], + "type": 22 + } + } + ], + "docs": [ + " Transfers `value` amount of tokens from the caller's account to account `to`", + " with additional `data` in unspecified format.", + "", + " On success a `Transfer` event is emitted.", + "", + " # Errors", + "", + " Returns `InsufficientBalance` error if there are not enough tokens on", + " the caller's account Balance.", + "", + " Returns `ZeroSenderAddress` error if sender's address is zero.", + "", + " Returns `ZeroRecipientAddress` error if recipient's address is zero." + ], + "mutates": true, + "name": [ + "PSP22", + "transfer" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22_external", + "TransferOutput" + ], + "type": 20 + }, + "selector": "0xdb20f9f5" + }, + { + "args": [ + { + "name": "spender", + "type": { + "displayName": [ + "psp22_external", + "ApproveInput1" + ], + "type": 4 + } + }, + { + "name": "value", + "type": { + "displayName": [ + "psp22_external", + "ApproveInput2" + ], + "type": 0 + } + } + ], + "docs": [ + " Allows `spender` to withdraw from the caller's account multiple times, up to", + " the `value` amount.", + "", + " If this function is called again it overwrites the current allowance with `value`.", + "", + " An `Approval` event is emitted.", + "", + " # Errors", + "", + " Returns `ZeroSenderAddress` error if sender's address is zero.", + "", + " Returns `ZeroRecipientAddress` error if recipient's address is zero." + ], + "mutates": true, + "name": [ + "PSP22", + "approve" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22_external", + "ApproveOutput" + ], + "type": 20 + }, + "selector": "0xb20f1bbd" + }, + { + "args": [ + { + "name": "owner", + "type": { + "displayName": [ + "psp22_external", + "AllowanceInput1" + ], + "type": 4 + } + }, + { + "name": "spender", + "type": { + "displayName": [ + "psp22_external", + "AllowanceInput2" + ], + "type": 4 + } + } + ], + "docs": [ + " Returns the amount which `spender` is still allowed to withdraw from `owner`.", + "", + " Returns `0` if no allowance has been set `0`." + ], + "mutates": false, + "name": [ + "PSP22", + "allowance" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22_external", + "AllowanceOutput" + ], + "type": 0 + }, + "selector": "0x4d47d921" + }, + { + "args": [ + { + "name": "from", + "type": { + "displayName": [ + "psp22_external", + "TransferFromInput1" + ], + "type": 4 + } + }, + { + "name": "to", + "type": { + "displayName": [ + "psp22_external", + "TransferFromInput2" + ], + "type": 4 + } + }, + { + "name": "value", + "type": { + "displayName": [ + "psp22_external", + "TransferFromInput3" + ], + "type": 0 + } + }, + { + "name": "data", + "type": { + "displayName": [ + "psp22_external", + "TransferFromInput4" + ], + "type": 22 + } + } + ], + "docs": [ + " Transfers `value` tokens on the behalf of `from` to the account `to`", + " with additional `data` in unspecified format.", + "", + " This can be used to allow a contract to transfer tokens on ones behalf and/or", + " to charge fees in sub-currencies, for example.", + "", + " On success a `Transfer` and `Approval` events are emitted.", + "", + " # Errors", + "", + " Returns `InsufficientAllowance` error if there are not enough tokens allowed", + " for the caller to withdraw from `from`.", + "", + " Returns `InsufficientBalance` error if there are not enough tokens on", + " the the account Balance of `from`.", + "", + " Returns `ZeroSenderAddress` error if sender's address is zero.", + "", + " Returns `ZeroRecipientAddress` error if recipient's address is zero." + ], + "mutates": true, + "name": [ + "PSP22", + "transfer_from" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22_external", + "TransferFromOutput" + ], + "type": 20 + }, + "selector": "0x54b3c76e" + }, + { + "args": [ + { + "name": "owner", + "type": { + "displayName": [ + "psp22_external", + "BalanceOfInput1" + ], + "type": 4 + } + } + ], + "docs": [ + " Returns the account Balance for the specified `owner`.", + "", + " Returns `0` if the account is non-existent." + ], + "mutates": false, + "name": [ + "PSP22", + "balance_of" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22_external", + "BalanceOfOutput" + ], + "type": 0 + }, + "selector": "0x6568382f" + }, + { + "args": [ + { + "name": "spender", + "type": { + "displayName": [ + "psp22_external", + "IncreaseAllowanceInput1" + ], + "type": 4 + } + }, + { + "name": "delta_value", + "type": { + "displayName": [ + "psp22_external", + "IncreaseAllowanceInput2" + ], + "type": 0 + } + } + ], + "docs": [ + " Atomically increases the allowance granted to `spender` by the caller.", + "", + " An `Approval` event is emitted.", + "", + " # Errors", + "", + " Returns `ZeroSenderAddress` error if sender's address is zero.", + "", + " Returns `ZeroRecipientAddress` error if recipient's address is zero." + ], + "mutates": true, + "name": [ + "PSP22", + "increase_allowance" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22_external", + "IncreaseAllowanceOutput" + ], + "type": 20 + }, + "selector": "0x96d6b57a" + }, + { + "args": [], + "docs": [ + " Returns the total token supply." + ], + "mutates": false, + "name": [ + "PSP22", + "total_supply" + ], + "payable": false, + "returnType": { + "displayName": [ + "psp22_external", + "TotalSupplyOutput" + ], + "type": 0 + }, + "selector": "0x162df8c2" + }, + { + "args": [], + "docs": [], + "mutates": true, + "name": [ + "pause" + ], + "payable": false, + "returnType": { + "displayName": [ + "Result" + ], + "type": 20 + }, + "selector": "0x81e0c604" + }, + { + "args": [], + "docs": [], + "mutates": true, + "name": [ + "unpause" + ], + "payable": false, + "returnType": { + "displayName": [ + "Result" + ], + "type": 20 + }, + "selector": "0x67616649" + } + ] + }, + "storage": { + "struct": { + "fields": [ + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "ty": 0 + } + }, + "name": "supply" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0100000000000000000000000000000000000000000000000000000000000000", + "ty": 1 + } + }, + "name": "header" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0200000000000000000000000000000000000000000000000000000000000000", + "ty": 2 + } + }, + "name": "len" + }, + { + "layout": { + "array": { + "cellsPerElem": 1, + "layout": { + "cell": { + "key": "0x0200000001000000000000000000000000000000000000000000000000000000", + "ty": 3 + } + }, + "len": 4294967295, + "offset": "0x0300000000000000000000000000000000000000000000000000000000000000" + } + }, + "name": "elems" + } + ] + } + }, + "name": "entries" + } + ] + } + }, + "name": "keys" + }, + { + "layout": { + "hash": { + "layout": { + "cell": { + "key": "0x0300000001000000000000000000000000000000000000000000000000000000", + "ty": 8 + } + }, + "offset": "0x0200000001000000000000000000000000000000000000000000000000000000", + "strategy": { + "hasher": "Blake2x256", + "postfix": "", + "prefix": "0x696e6b20686173686d6170" + } + } + }, + "name": "values" + } + ] + } + }, + "name": "balances" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0300000001000000000000000000000000000000000000000000000000000000", + "ty": 1 + } + }, + "name": "header" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0400000001000000000000000000000000000000000000000000000000000000", + "ty": 2 + } + }, + "name": "len" + }, + { + "layout": { + "array": { + "cellsPerElem": 1, + "layout": { + "cell": { + "key": "0x0400000002000000000000000000000000000000000000000000000000000000", + "ty": 9 + } + }, + "len": 4294967295, + "offset": "0x0500000001000000000000000000000000000000000000000000000000000000" + } + }, + "name": "elems" + } + ] + } + }, + "name": "entries" + } + ] + } + }, + "name": "keys" + }, + { + "layout": { + "hash": { + "layout": { + "cell": { + "key": "0x0500000002000000000000000000000000000000000000000000000000000000", + "ty": 8 + } + }, + "offset": "0x0400000002000000000000000000000000000000000000000000000000000000", + "strategy": { + "hasher": "Blake2x256", + "postfix": "", + "prefix": "0x696e6b20686173686d6170" + } + } + }, + "name": "values" + } + ] + } + }, + "name": "allowances" + } + ] + } + }, + "name": "psp22" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "enum": { + "dispatchKey": "0x0500000002000000000000000000000000000000000000000000000000000000", + "variants": { + "0": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0600000002000000000000000000000000000000000000000000000000000000", + "ty": 11 + } + }, + "name": null + } + ] + }, + "1": { + "fields": [] + } + } + } + }, + "name": "name" + }, + { + "layout": { + "enum": { + "dispatchKey": "0x0600000002000000000000000000000000000000000000000000000000000000", + "variants": { + "0": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0700000002000000000000000000000000000000000000000000000000000000", + "ty": 11 + } + }, + "name": null + } + ] + }, + "1": { + "fields": [] + } + } + } + }, + "name": "symbol" + }, + { + "layout": { + "cell": { + "key": "0x0700000002000000000000000000000000000000000000000000000000000000", + "ty": 6 + } + }, + "name": "decimals" + } + ] + } + }, + "name": "psp22_metadata" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0800000002000000000000000000000000000000000000000000000000000000", + "ty": 12 + } + }, + "name": "paused" + } + ] + } + }, + "name": "pausable" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0900000002000000000000000000000000000000000000000000000000000000", + "ty": 1 + } + }, + "name": "header" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0a00000002000000000000000000000000000000000000000000000000000000", + "ty": 2 + } + }, + "name": "len" + }, + { + "layout": { + "array": { + "cellsPerElem": 1, + "layout": { + "cell": { + "key": "0x0a00000003000000000000000000000000000000000000000000000000000000", + "ty": 13 + } + }, + "len": 4294967295, + "offset": "0x0b00000002000000000000000000000000000000000000000000000000000000" + } + }, + "name": "elems" + } + ] + } + }, + "name": "entries" + } + ] + } + }, + "name": "keys" + }, + { + "layout": { + "hash": { + "layout": { + "cell": { + "key": "0x0b00000003000000000000000000000000000000000000000000000000000000", + "ty": 14 + } + }, + "offset": "0x0a00000003000000000000000000000000000000000000000000000000000000", + "strategy": { + "hasher": "Blake2x256", + "postfix": "", + "prefix": "0x696e6b20686173686d6170" + } + } + }, + "name": "values" + } + ] + } + }, + "name": "admin_roles" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0b00000003000000000000000000000000000000000000000000000000000000", + "ty": 1 + } + }, + "name": "header" + }, + { + "layout": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0c00000003000000000000000000000000000000000000000000000000000000", + "ty": 2 + } + }, + "name": "len" + }, + { + "layout": { + "array": { + "cellsPerElem": 1, + "layout": { + "cell": { + "key": "0x0c00000004000000000000000000000000000000000000000000000000000000", + "ty": 15 + } + }, + "len": 4294967295, + "offset": "0x0d00000003000000000000000000000000000000000000000000000000000000" + } + }, + "name": "elems" + } + ] + } + }, + "name": "entries" + } + ] + } + }, + "name": "keys" + }, + { + "layout": { + "hash": { + "layout": { + "cell": { + "key": "0x0d00000004000000000000000000000000000000000000000000000000000000", + "ty": 17 + } + }, + "offset": "0x0c00000004000000000000000000000000000000000000000000000000000000", + "strategy": { + "hasher": "Blake2x256", + "postfix": "", + "prefix": "0x696e6b20686173686d6170" + } + } + }, + "name": "values" + } + ] + } + }, + "name": "members" + } + ] + } + }, + "name": "access_control" + } + ] + } + }, + "types": [ + { + "id": 0, + "type": { + "def": { + "primitive": "u128" + } + } + }, + { + "id": 1, + "type": { + "def": { + "composite": { + "fields": [ + { + "name": "last_vacant", + "type": 2, + "typeName": "Index" + }, + { + "name": "len", + "type": 2, + "typeName": "u32" + }, + { + "name": "len_entries", + "type": 2, + "typeName": "u32" + } + ] + } + }, + "path": [ + "ink_storage", + "collections", + "stash", + "Header" + ] + } + }, + { + "id": 2, + "type": { + "def": { + "primitive": "u32" + } + } + }, + { + "id": 3, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 7, + "typeName": "VacantEntry" + } + ], + "index": 0, + "name": "Vacant" + }, + { + "fields": [ + { + "type": 4, + "typeName": "T" + } + ], + "index": 1, + "name": "Occupied" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 4 + } + ], + "path": [ + "ink_storage", + "collections", + "stash", + "Entry" + ] + } + }, + { + "id": 4, + "type": { + "def": { + "composite": { + "fields": [ + { + "type": 5, + "typeName": "[u8; 32]" + } + ] + } + }, + "path": [ + "ink_env", + "types", + "AccountId" + ] + } + }, + { + "id": 5, + "type": { + "def": { + "array": { + "len": 32, + "type": 6 + } + } + } + }, + { + "id": 6, + "type": { + "def": { + "primitive": "u8" + } + } + }, + { + "id": 7, + "type": { + "def": { + "composite": { + "fields": [ + { + "name": "next", + "type": 2, + "typeName": "Index" + }, + { + "name": "prev", + "type": 2, + "typeName": "Index" + } + ] + } + }, + "path": [ + "ink_storage", + "collections", + "stash", + "VacantEntry" + ] + } + }, + { + "id": 8, + "type": { + "def": { + "composite": { + "fields": [ + { + "name": "value", + "type": 0, + "typeName": "V" + }, + { + "name": "key_index", + "type": 2, + "typeName": "KeyIndex" + } + ] + } + }, + "params": [ + { + "name": "V", + "type": 0 + } + ], + "path": [ + "ink_storage", + "collections", + "hashmap", + "ValueEntry" + ] + } + }, + { + "id": 9, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 7, + "typeName": "VacantEntry" + } + ], + "index": 0, + "name": "Vacant" + }, + { + "fields": [ + { + "type": 10, + "typeName": "T" + } + ], + "index": 1, + "name": "Occupied" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 10 + } + ], + "path": [ + "ink_storage", + "collections", + "stash", + "Entry" + ] + } + }, + { + "id": 10, + "type": { + "def": { + "tuple": [ + 4, + 4 + ] + } + } + }, + { + "id": 11, + "type": { + "def": { + "primitive": "str" + } + } + }, + { + "id": 12, + "type": { + "def": { + "primitive": "bool" + } + } + }, + { + "id": 13, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 7, + "typeName": "VacantEntry" + } + ], + "index": 0, + "name": "Vacant" + }, + { + "fields": [ + { + "type": 2, + "typeName": "T" + } + ], + "index": 1, + "name": "Occupied" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 2 + } + ], + "path": [ + "ink_storage", + "collections", + "stash", + "Entry" + ] + } + }, + { + "id": 14, + "type": { + "def": { + "composite": { + "fields": [ + { + "name": "value", + "type": 2, + "typeName": "V" + }, + { + "name": "key_index", + "type": 2, + "typeName": "KeyIndex" + } + ] + } + }, + "params": [ + { + "name": "V", + "type": 2 + } + ], + "path": [ + "ink_storage", + "collections", + "hashmap", + "ValueEntry" + ] + } + }, + { + "id": 15, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 7, + "typeName": "VacantEntry" + } + ], + "index": 0, + "name": "Vacant" + }, + { + "fields": [ + { + "type": 16, + "typeName": "T" + } + ], + "index": 1, + "name": "Occupied" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 16 + } + ], + "path": [ + "ink_storage", + "collections", + "stash", + "Entry" + ] + } + }, + { + "id": 16, + "type": { + "def": { + "tuple": [ + 2, + 4 + ] + } + } + }, + { + "id": 17, + "type": { + "def": { + "composite": { + "fields": [ + { + "name": "value", + "type": 18, + "typeName": "V" + }, + { + "name": "key_index", + "type": 2, + "typeName": "KeyIndex" + } + ] + } + }, + "params": [ + { + "name": "V", + "type": 18 + } + ], + "path": [ + "ink_storage", + "collections", + "hashmap", + "ValueEntry" + ] + } + }, + { + "id": 18, + "type": { + "def": { + "tuple": [] + } + } + }, + { + "id": 19, + "type": { + "def": { + "variant": { + "variants": [ + { + "index": 0, + "name": "None" + }, + { + "fields": [ + { + "type": 11 + } + ], + "index": 1, + "name": "Some" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 11 + } + ], + "path": [ + "Option" + ] + } + }, + { + "id": 20, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 18 + } + ], + "index": 0, + "name": "Ok" + }, + { + "fields": [ + { + "type": 21 + } + ], + "index": 1, + "name": "Err" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 18 + }, + { + "name": "E", + "type": 21 + } + ], + "path": [ + "Result" + ] + } + }, + { + "id": 21, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 11, + "typeName": "String" + } + ], + "index": 0, + "name": "Custom" + }, + { + "index": 1, + "name": "InsufficientBalance" + }, + { + "index": 2, + "name": "InsufficientAllowance" + }, + { + "index": 3, + "name": "ZeroRecipientAddress" + }, + { + "index": 4, + "name": "ZeroSenderAddress" + }, + { + "fields": [ + { + "type": 11, + "typeName": "String" + } + ], + "index": 5, + "name": "SafeTransferCheckFailed" + } + ] + } + }, + "path": [ + "contracts", + "traits", + "errors", + "psp22", + "PSP22Error" + ] + } + }, + { + "id": 22, + "type": { + "def": { + "sequence": { + "type": 6 + } + } + } + }, + { + "id": 23, + "type": { + "def": { + "variant": { + "variants": [ + { + "index": 0, + "name": "None" + }, + { + "fields": [ + { + "type": 4 + } + ], + "index": 1, + "name": "Some" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 4 + } + ], + "path": [ + "Option" + ] + } + } + ] + } +} diff --git a/packages/api-contract/src/test/contracts/ink/v3/trait_erc20.contract.json b/packages/api-contract/src/test/contracts/ink/v3/trait_erc20.contract.json index 1732e3892dea..f8cb6ecb2aac 100644 --- a/packages/api-contract/src/test/contracts/ink/v3/trait_erc20.contract.json +++ b/packages/api-contract/src/test/contracts/ink/v3/trait_erc20.contract.json @@ -1 +1,631 @@ -{"source":{"hash":"0x819f50e02feb5b4413261150c77edb5fdf85877ac1da53210f1b1327f342b81a","language":"ink! 3.0.0-rc7","compiler":"rustc 1.58.0-nightly","wasm":"0x0061736d010000000180011360037f7f7f017f60027f7f017f60027f7f0060037f7f7f0060047f7f7f7f0060017f0060057f7f7f7f7f0060000060017f017e60067f7f7f7f7f7f0060047f7f7e7e0060037e7e7f0060057f7f7f7e7e006000017f60017f017f60047f7f7f7f017f60057f7f7f7f7f017f60077f7f7f7f7f7f7f017f60057f7f7f7e7e017f028a020b057365616c30127365616c5f64656275675f6d6573736167650001057365616c30127365616c5f636c6561725f73746f726167650005057365616c30127365616c5f6465706f7369745f6576656e740004057365616c30107365616c5f7365745f73746f726167650003057365616c30107365616c5f6765745f73746f726167650000057365616c300a7365616c5f696e7075740002057365616c300b7365616c5f72657475726e0003057365616c30147365616c5f686173685f626c616b65325f3235360003057365616c300b7365616c5f63616c6c65720002057365616c30167365616c5f76616c75655f7472616e73666572726564000203656e76066d656d6f7279020102100372710004030303020203030a0b0c0a02020201010204040302030204060504020202020b0305030501000802050304020502010305020d0302020507050704120306030100000301020107020101040810010f040003090303020e040101030300010100060606060101110101010101090404040501700118180608017f01418080040b071102066465706c6f7900430463616c6c0045091d010041010b171a1b7355306465775469717475552d2d4d4f512d762d570ac8b201712b01017f037f2002200346047f200005200020036a200120036a2d00003a0000200341016a21030c010b0b0b3001017f2002200220016b22044f0440200020043602042000200120036a3602000f0b4180800441214188b604100c000b4601017f230041206b22032400200341146a410036020020034184be04360210200342013702042003200136021c200320003602182003200341186a36020020032002101c000b3501017f230041106b22032400200341086a410020012002100b200020032802083602002000200328020c360204200341106a24000be60101037f230041d0006b22032400200320013602082003200236020c200341286a22014200370300200341206a22044200370300200341186a220542003703002003420037031020034100360230200342808001370244200341a6c204360240200341086a200341406b100f2002280200200341406b10102002280204200341406b1010200320032903403702342003200341306a2003280248101120032802002003280204200341106a1007200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290310370000200341d0006a24000b0d00200120002802004120102c0b0a00200120004120102c0b5e01027f200141086a22032802002104200341003602002001280204210320014184be04360204200220044b044041ecb60441234180b804100c000b2001200420026b3602082001200220036a36020420002002360204200020033602000bda0101037f230041d0006b22032400200320013602082003200236020c200341286a22014200370300200341206a22044200370300200341186a220542003703002003420037031020034100360230200342808001370244200341a6c204360240200341086a200341406b100f2002280200200341406b1010200320032903403702342003200341306a2003280248101120032802002003280204200341106a1007200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290310370000200341d0006a24000b3401017f230041306b220424002004200136020c200441106a20002004410c6a101220022003200441106a1014200441306a24000b4e01017f230041206b22032400200341186a41808001360200200341a6c20436021420034100360210200341086a200341106a20002001101620022003280208200328020c1003200341206a24000b3b01017f230041306b220524002005200236020c20052001360208200541106a2000200541086a100e20032004200541106a1014200541306a24000b5802017f017e230041206b2204240020012902042105200441003602182004200537031020022003200441106a102b20012004290310370204200441086a20012004280218101120002004290308370300200441206a24000bd40102027f057e230041306b220224000240200029030022084202510d0020012900182104200129001021052001290008210620012900002107200041186a22012d0000200141013a00004101710d0020084201520440200241286a2004370300200241206a2005370300200241186a20063703002002200737031020024201370308200241106a10010c010b200241286a2004370300200241206a2005370300200241186a200637030020022007370310200242013703082000290308200041106a290300200241106a10140b200241306a24000bc70102017f027e230041e0006b220224002002200136020c200241106a2001101920022d00104101460440200220022d00113a0037200241cc006a4102360200200241dc006a41013602002002420237023c200241ec8204360238200241023602542002200241d0006a3602482002200241376a36025820022002410c6a360250200241386a41d08304101c000b200241186a2903002103200241206a2903002104200041106a200241286a2903003703002000200437030820002003370300200241e0006a24000be40102017f027e230041406a22022400200241808001360224200241a6c20436022002400240024002402001200241206a103a0e0402010100010b200041003a0000200041086a42003703000c020b2002413c6a410036020020024184be043602382002420137022c200241e0be04360228200241286a41bcbf04101c000b20022002290320370328200241086a200241286a102a2002290308a70440200041013b01000c010b200241186a290300210320022903102104200041003a0000200041106a2004370300200041086a4201370300200041186a20033703000b200241406b24000bd90401017f230041106b22022400024002400240024002400240024002400240024002400240024020002d000041016b0e0b0102030405060708090a0b000b41012100200128021841cebb0441062001411c6a28020028020c1100000d0b024020012d0000410471450440200128021841f491044101200128021c28020c1100000d0d200128021841e4c1044105200128021c28020c110000450d010c0d0b200128021841f291044102200128021c28020c1100000d0c200241013a000f200241086a2002410f6a36020020022001290218370300200241e4c1044105106b0d0c200241f091044102106b0d0c0b200128021841f591044101200128021c28020c11000021000c0b0b200128021841c1bb04410d2001411c6a28020028020c11000021000c0a0b200128021841b3bb04410e2001411c6a28020028020c11000021000c090b200128021841a8bb04410b2001411c6a28020028020c11000021000c080b2001280218418ebb04411a2001411c6a28020028020c11000021000c070b20012802184180bb04410e2001411c6a28020028020c11000021000c060b200128021841f0ba0441102001411c6a28020028020c11000021000c050b200128021841e4ba04410c2001411c6a28020028020c11000021000c040b200128021841d9ba04410b2001411c6a28020028020c11000021000c030b200128021841d2ba0441072001411c6a28020028020c11000021000c020b200128021841c3ba04410f2001411c6a28020028020c11000021000c010b200128021841b0ba0441132001411c6a28020028020c11000021000b200241106a240020000b810201047f230041406a220224002000280200210441002100200241346a410036020020024184be0436023020024201370224200241d8bc04360220027f4101200141186a28020022052001411c6a2802002201200241206a10680d001a024003402002410436021c2002410436021420024184bd043602102002410436020c200241e4bc043602082002410336023c200241033602342002410336022c200241033602242002200020046a22033602202002200341036a3602382002200341026a3602302002200341016a3602282002200241206a36021820052001200241086a10680d01200041046a22004120470d000b41000c010b41010b200241406b24000b840401087f230041106b220324002003200136020c20032000360208200341d48f0436020420034184be04360200230041406a220224002002200336020c200241346a41013602002002420237022420024194b8043602202002410836023c2002200241386a36023020022002410c6a360238200241106a21064100210041002101230041206b22042400200241206a22052802002107024002400240024002402005280204220941037422080440200741046a21030340200120032802006a22002001490d02200341086a210320002101200841086b22080d000b0b02400240200541146a280200450440200021030c010b02402009450d0020072802040d004100210120004110490d020b41002101200020006a22032000490d010b200322014100480d020b20042001105320042802002200450d0220042802042101200641003602082006200036020020062001360204200441186a200541106a290200370300200441106a200541086a290200370300200420052902003703082006200441086a104b0d03200441206a24000c040b41808804411c41a4af04100c000b1052000b000b41f889044133200441086a419c880441948b041049000b2002280210210020022802182101024041a4c2042d000045044041a5c2042d00004101710d010b200020011000410947044041a4c20441013a00000b41a5c20441013a00000b000b900102017f017e230041406a22042400200441106a2000280200200041046a280200200041086a280200101e20042902142105200441003602282004200537032020012002200441206a101f2003200441206a102020042004290320370214200441086a200441106a20042802281011200441206a2004280208200428020c10212000200441206a1022200441406b24000b4b02017f017e230041106b22042400200120034b04402001200341bcb904102e000b200441086a2001200320021079200429030821052000410036020020002005370204200441106a24000b1000200120021027200220002001102c0b230020002d000041014704402001410010370f0b200141011037200041016a200110100bb40101017f230041306b2203240020004200370000200041186a4200370000200041106a4200370000200041086a42003700000240200241214f0440200341286a4200370300200341206a4200370300200341186a42003703002003420037031020012002200341106a1007200341202000100d20032802002003280204200341106a412041f0830410240c010b200341086a20022000100d2003280208200328020c2001200241e0830410240b200341306a24000b960101047f230041206b220224002000280204210420004184be04360204200041086a2203280200210520034100360200200241086a2004200520002802002203102620024100360218200220022903083703102001200241106a10102003200320022802186a22014d0440200020053602082000200436020420002001360200200241206a24000f0b41808404411c41bc8404100c000b900102017f017e230041406a22042400200441106a2000280200200041046a280200200041086a280200101e20042902142105200441003602282004200537032020012002200441206a101f2003200441206a101020042004290320370214200441086a200441106a20042802281011200441206a2004280208200428020c10212000200441206a1022200441406b24000b7b0020012003460440200020022001100a1a0f0b230041306b2200240020002003360204200020013602002000411c6a41023602002000412c6a41043602002000420337020c200041d49904360208200041043602242000200041206a360218200020003602282000200041046a360220200041086a2004101c000b950101057f230041206b220124002000280204210320004184be04360204200041086a2202280200210420024100360200200141086a2003200420002802002202102620014100360218200120012903083703104104200141106a10272002200220012802186a22054b044041808404411c41bc8404100c000b200020043602082000200336020420002005360200200141206a24000b4801017f230041106b22042400200220034904402003200241ac8404102e000b200441086a200320022001100b200020042802083602002000200428020c360204200441106a24000b7401017f230041106b2202240002402000413f4d04402001200041027410370c010b200041ffff004d0440200220004102744101723b010e20012002410e6a4102102c0c010b200041ffffffff034d04402000410274410272200110410c010b2001410310372000200110410b200241106a24000bae0102017f027e230041406a22022400200241186a200110290240024020022d0018410147044020022001102a2002290300a7450d010b200042013703000c010b200241106a2903002103200229030821042000200229001937000820004200370300200041286a2004370300200041306a2003370300200041206a200241316a290000370000200041186a200241296a290000370000200041106a200241216a2900003700000b200241406b24000bb50202037f017e230041306b22022400200241086a41047221042000027f0240034020022001103320022d00004101710d01200320046a20022d00013a0000200341016a22034120470d000b200041086a200241136a2f00003b00002000410a6a200241156a2d00003a00002000410f6a2002411a6a2f01003b0000200041116a2002411c6a2d00003a0000200041166a200241216a2f00003b0000200041186a200241236a2d00003a0000200220022f010c3b0104200220022d000e3a0006200241166a28010021012002411d6a2800002103200241246a2902002105200228000f2104200041036a20022d00063a0000200020022f01043b0001200041196a2005370000200041126a20033600002000410b6a2001360000200041046a200436000041000c010b41010b3a0000200241306a24000b6402027f037e230041106b22022400200241086a22034200370300200242003703000240200120024110103145044020032903002105200229030021060c010b420121040b2000200637030820002004370300200041106a2005370300200241106a24000b2a01017f230041106b220324002003200137030820032000370300200220034110102c200341106a24000b6701037f230041106b220324002000280208220420026a2205200449044041d0b604411c41fcb804100c000b200341086a2004200520002802002000280204418cb90410782003280208200328020c20012002419cb904102420002005360208200341106a24000b0300010b6b01017f230041306b2203240020032001360204200320003602002003411c6a41023602002003412c6a41043602002003420237020c200341809804360208200341043602242003200341206a3602182003200341046a36022820032003360220200341086a2002101c000b4801017f230041206b22012400200141146a410136020020014201370204200141d4bb043602002001410536021c200120003602182001200141186a360210200141d08604101c000bc00101037f230041306b2202240041bbbc042103411921040240024002400240024020002d000041016b0e0400010203040b419fbc042103411c21040c030b4189bc042103411621040c020b41f5bb042103411421040c010b41dcbb0421030b2002411c6a41013602002002200436022c20022003360228200241063602242002420137020c200241d4bb04360208200141186a2802002001411c6a2802002002200241286a3602202002200241206a360218200241086a1068200241306a24000b6001047f230041106b22032400200028020422042002492205450440200341086a4100200220002802002206107a200120022003280208200328020c41d4c10410242003200220042006107a200020032903003702000b200341106a240020050b910102027f017e230041106b220124002001420437030841042102027f02400240034020012000103320012d00004101710d01200141086a20026a20012d00013a0000200241016a22024108470d000b20012903082203a741044f0d014184be04411b41a0be04100c000b4101210241000c010b410021022003422088a70b2100200141106a24002002ad2000ad420886840b3f01027f230041106b22022400200241003a000f200020012002410f6a410110312201047f41000520022d000f0b3a0001200020013a0000200241106a24000bfe0502047f027e23004190016b22012400200141086a200041e000100a1a200141106a21030240200129030822064201520440200141f0006a220041808001360200200141a6c20436026c20014100360268200141e8006a102520014188016a220220002802003602002001200129036837038001200141e8006a20014180016a41dc84041035200141e8006a41e8840441152003101d20022000280200360200200120012903683703800120014180016a41fd84044113200341216a101d20002002280200360200200120012903800137036820014180016a200141e8006a41908504200141d8006a10360c010b200141f0006a220041808001360200200141a6c20436026c20014100360268200141e8006a102520014188016a220220002802003602002001200129036837038001200141e8006a20014180016a41b885041035200141e8006a41c4850441162003102320022000280200360200200120012903683703800120014180016a41da85044118200141306a102320002002280200360200200120012903800137036820014180016a200141e8006a41f28504200141d0006a10360b230041206b22002400200041186a220420014180016a220241086a28020036020020002002290200220537031020004100360210200041086a200041106a2005a7101120002903082105200141e8006a220241086a2004280200360200200220002903103702002002200537020c200041206a240020014188016a200141f0006a2802003602002001200129036837038001200141f8006a2802002100200128027420012902840121052001410036027020012005370368027f2006500440200141e8006a410010372003200141e8006a1020200341216a200141e8006a1020200141d8006a0c010b200141e8006a410110372003200141e8006a1010200141306a200141e8006a1010200141d0006a0b2203290300200341086a290300200141e8006a102b2001200129036837028401200120014180016a20012802701011200020012802002001280204100220014190016a24000bb40102027f017e230041406a22032400200341106a2001280200200141046a280200200141086a2204280200101e20032902142105200341003602282003200537032020022802002002280204200341206a101f200341206a2002280208410f102c20032003290320370214200341086a200341106a20032802281011200341206a2003280208200328020c10212001200341206a1022200041086a200428020036020020002001290200370200200341406b24000bb40102027f017e230041406a22042400200441106a2001280200200141046a280200200141086a2205280200101e20042902142106200441003602282004200637032020024116200441206a101f2003290300200341086a290300200441206a102b20042004290320370214200441086a200441106a20042802281011200441206a2004280208200428020c10212001200441206a1022200041086a200528020036020020002001290200370200200441406b24000b3901027f20002802082202200028020422034904402000200241016a360208200028020020026a20013a00000f0b2002200341acb904105d000b5901027e20002903002101200041086a2903002102230041206b22002400200041186a41808001360200200041a6c20436021420004100360210200041086a200041106a20012002101641002000280208200028020c103b000baa0102047f017e230041206b22032400200341186a41808001360200200341a6c20436021420034100360210200341086a230041206b22022400200341106a220429020421062002410036021820022006370310200241106a200141ff0171410247047f200241106a4101103720010541000b103720042002290310370204200241086a2004200228021810112002290308370300200241206a240020002003280208200328020c103b000b5401017f230041106b220224002002200128020436020c200020012802002002410c6a100421002001200228020c103d410c21012000410b4d0440200041027441ecc1046a28020021010b200241106a240020010b0b002000200120021006000b6001017f230041106b2201240020004200370000200041186a4200370000200041106a4200370000200041086a420037000020014120360204200120003602002001412036020c20002001410c6a10082001200128020c103d200141106a24000b3701017f230041106b22022400200241086a410020012000280200200028020441a0ba04107820002002290308370200200241106a24000b6c02027f027e230041206b22002400200041086a220142003703002000420037030020004110360214200020003602102000411036021c20002000411c6a1009200041106a200028021c103d2001290300210220002903002103200041206a2400410541042002200384501b0b4c01017f230041206b220324002000450440410120021039000b200341186a4200370300200341106a4200370300200341086a420037030020034200370300200120031017410020021039000bc101002000027f024020014101710d00103e41ff01714105460d00200041043a000141010c010b200041c1006a4200370000200041396a4200370000200041316a4200370000200041296a4200370000200041f8006a4200370300200041f0006a420237030020004180016a420037030020004188016a4200370300200041d8006a4200370000200041d0006a4201370000200041e0006a4200370000200041e8006a4200370000200041286a41013a0000200041086a420237030041000b3a00000b2601017f230041106b220224002002200036020c20012002410c6a4104102c200241106a24000b2e01017f230041e0006b22012400200141086a200041d800100a1a2001420037030020011034200141e0006a24000ba90502027f027e230041d0026b220024000240103e41ff01714105460440200041808001360224200041a6c204360220200041206a1044200020002903203703a801027f4101200041a8016a10324281feffffff1f834280b6baede90b520d001a200041086a200041a8016a102a200041186a29030021022000290310210320002802080b0440410321010c020b103e41ff01714105470440410421010c020b200041e1016a4200370000200041d9016a4200370000200041d1016a4200370000200041c9016a4200370000200041f8016a420037030020004180026a420037030020004188026a420037030020004198026a4200370300200041a0026a4200370300200041a8026a4200370300200042013703f0012000420237039002200041013a00c801200042023703a801200041b0026a103c200041f0016a200041b0026a200320021013027f20002903a8014202520440200042013703a801200041b0016a0c010b200042013703a801200041b0016a0b2201200337030020012002370308200041c0016a220141003a0000200041f0006a2002370300200041da006a200041c8026a290300370100200041d2006a200041c0026a290300370100200041ca006a200041b8026a290300370100200041c2006a20002903b00237010020002003370368200041013a0041200041003a0020200041206a1042200041206a200041a8016a418801100a1a20014200370300200041b8016a4200370300200041b0016a4200370300200042003703a801200041206a200041a8016a1017200041d0026a24000f0b200041043a00a801200041a8016a102f000b200020013a00b002200041bc016a4101360200200042013702ac012000418887043602a801200041053602242000200041206a3602b8012000200041b0026a360220200041a8016a41d08604101c000b3301017f230041106b220124002001200028020436020c20002802002001410c6a10052000200128020c103d200141106a24000bb81d02067f077e23004190056b2200240002400240103e41ff01712201410546044020004180800136026c200041a6c204360268200041e8006a1044200020002903683703b001200041b0016a103222064201832207a70d01200642807e8342002007501b22074280feffffff1f832206422088a721032006421888a721022006421088a7210402400240024002400240024002402007a741087641ff017122014182016b0e020105000b024020014192016b0e020402000b200141f400460d02200141fa01470d0741062101200441ff0171419801470d08200241ff01714133470d08200341a301470d08200041a0036a200041b0016a102820002903a0034201510d07200041ae026a200041c0036a2903002206370100200041a6026a200041b8036a2903002207370100200041de046a200041b0036a2903002208370100200041e6046a2007370100200041ee046a2006370100200041f6016a2008370000200041fe016a200737000020004186026a2006370000200020002903a80322063701d604200020063700ee01200041d0036a2903002107200041c8036a2903002106200041c0016a200041e8016a4126100a1a410321020c050b41062101200441ff017141c400470d07200241ff017141a101470d0741002102200341ad01460d040c070b41062101200441ff0171413a470d06200241ff017141e301470d06200341c801470d06200041a0036a200041b0016a10294101210220002d00a0034101460d05200041c8016a200041aa036a290100370300200041d0016a200041b2036a290100370300200041d7016a200041b9036a290000370000200020002901a2033703c00120002d00a10321050c030b41062101200441ff017141a201470d05200241ff017141fa00470d05200341c801470d05200041d0046a200041b0016a102920002d00d0044101460d0420004190026a200041b0016a102920002d0090024101460d04200041c2036a200028009402360000200041d0006a200041b0026a2d00003a0000200041a8036a200041da046a290100370300200041b0036a200041e2046a290100370300200041b7036a200041e9046a29000037000020002000280091023600bf03200020002901d2043703a0032000200041a8026a290300370348200041a0026a290300210720004198026a290300210620002d00d1042105200041c0016a200041a0036a4126100a1a410221020c020b41062101200441ff0171412e470d04200241ff01714129470d042003411f470d04200041a0036a200041b0016a102820002903a0034201510d03200041ae026a200041c0036a2903002206370100200041a6026a200041b8036a2903002207370100200041de046a200041b0036a2903002208370100200041e6046a2007370100200041ee046a2006370100200041f6016a2008370000200041fe016a200737000020004186026a2006370000200020002903a80322063701d604200020063700ee01200041d0036a2903002107200041c8036a2903002106200041c0016a200041e8016a4126100a1a410421020c010b41062101200441ff0171419f01470d03200241ff01714102470d03200341e300470d03200041c0016a200041b0016a102920002d00c0014101460d02200041e8016a200041b0016a102920002d00e8014101460d02200041306a200041b0016a102a2000290330a70d02200041406b29030021082000290338210a200041c8046a2201200041d9016a290000370300200041c0046a2205200041d1016a290000370300200041b8046a2202200041c9016a290000370300200041d0006a20004181026a2d00003a0000200020002900c1013703b0042000200041f9016a290000370348200020004182026a2801003602b801200020004185026a2800003600bb01200041f1016a290000210720002900e9012106200041b6036a200529030022093701002000419e026a2002290300220b370100200041a6026a2009370100200041ae026a2001290300220c370100200041ee046a200c370000200041e6046a2009370000200041de046a200b370000200020002903b004220937019602200020093700d604200041c0016a200041d0046a4126100a1a410521020b20004188016a200041c0016a4126100a1a20004180016a200041d0006a2d00003a000020002000290348370378200020002802b801360270200020002800bb01360073200221010c020b200020013a00a003200041a0036a102f000b410621010b20002001410646047f410305200041c0016a20004188016a4126100a1a200041e4006a2000280073360000200041e0006a220220004180016a2d00003a000020002000280270360061200041d0006a200229030037030020002000290378220937035820002009370348200041e8016a200041c0016a4126100a1a02400240024002400240024002400240024002400240200141016b0e050403020100050b200041a0036a41800210404101210120002d00a0034101460d09200041a0036a20004196026a200041a8036a418801100a418801100a1a200041a0016a20004186026a29000037030020004198016a200041fe016a29000037030020004190016a200041f6016a290000370300200020002900ee0137038801200041e8046a200041d0006a290300370300200020073703d804200020063703d004200020002903483703e00420004190026a103c200041206a200041a0036a20004188016a20004190026a10460240024020002903202207200a542202200041286a290300220620085420062008511b0d00200041a0036a20004188016a200041d0046a200a2008104741ff017122014102470d002007200a7d220a200756200620087d2002ad7d220720065620062007511b0d0120004188046a20004188016a20004190026a200a20071015410221010b2001410246200041a0036a2001103f000b41808004412141bc8704100c000b200041a0036a418002104020002d00a0034101460d08200041a0036a20004196026a200041a8036a418801100a418801100a1a200041c8046a220120004186026a290000370300200041c0046a2202200041fe016a290000370300200041b8046a2203200041f6016a290000370300200020002900ee013703b00420004188016a103c20004188046a20004188016a200041b0046a200620071015200041e8046a200041a0016a290300370300200041e0046a20004198016a290300370300200041d8046a20004190016a290300370300200041f8046a200329030037030020004180056a200229030037030020004188056a200129030037030020002000290388013703d004200020002903b0043703f00420004198026a200041d0046a41c000100a1a200041e0026a2007370300200041d8026a2006370300200042013703900220004190026a10344101200041a0036a4102103f000b200041a0036a418002104020002d00a0034101460d07200041a0036a20004196026a200041a8036a418801100a418801100a1a200041e8046a20004186026a290000370300200041e0046a200041fe016a290000370300200041d8046a200041f6016a290000370300200020002900ee013703d00420004190026a103c200041a0036a20004190026a200041d0046a20062007104741ff01712201410246200041a0036a2001103f000b200041a0036a4100104020002d00a0034101470d020c060b200041a0036a4100104020002d00a0034101460d05200041a0036a20004196026a200041a8036a418801100a418801100a1a20004199026a200041c8016a290100370000200041a1026a200041d0016a290100370000200041a8026a200041d7016a290000370000200020053a009002200020002901c001370091022000200041a0036a20004190026a10482000200041086a2903003703d804200020002903003703d004200041d0046a1038000b200041a0036a4100104020002d00a0034101460d0420004190016a200041d1036a29000037030020004198016a200041d9036a290000370300200041a0016a200041e1036a2900003703002000200041c9036a290000370388010240200041a8036a29030022064202520440200041b8036a2903002107200041b0036a29030021080c010b200041c8036a2d00004101470d04200041e8046a2201200041a0016a290300370300200041e0046a220220004198016a290300370300200041d8046a220320004190016a29030037030020002000290388013703d00420004180800136029402200041a6c20436029002024002400240200041d0046a20004190026a103a0e0402000001000b200041b4036a410036020020004184be043602b003200042013702a403200041e0be043602a003200041a0036a41bcbf04101c000b420021060c010b200041c0036a2001290300370300200041b8036a2002290300370300200041b0036a2003290300370300200020002903d0043703a803200042013703a00320004190026a200041a8036a101920002d0090024101460d0220004198026a290300500d03200041a8026a2903002107200041a0026a2903002108420121060b20064201520d03200020083703a003200020073703a803200041a0036a1038000b200041a0036a20004196026a200041a8036a418801100a418801100a1a20004190026a200041c0016a4126100a1a20004191016a200041c8016a29010037000020004199016a200041d0016a290100370000200041a0016a200041d7016a290000370000200020053a008801200020002901c00137008901200041df046a2007370000200041ef046a200041d0006a2d00003a0000200020063700d7042000200041b2026a2800003600d304200020002800af023602d004200020002903483700e704200041106a200041a0036a20004188016a200041d0046a10462000200041186a2903003703b804200020002903103703b004200041b0046a1038000b200020002d0091023a00b004419c81044127200041b0046a419c8404419082041049000b41a08204411741b88204104a000b41a18004411e418c8104104a000b20002d00a1030b3a00d004200041b4036a4101360200200042013702a403200041b487043602a0032000410536029402200020004190026a3602b0032000200041d0046a36029002200041a0036a41d08604101c000b6902017f017e230041406a220424002004200336021c20042002360218200441206a200141e8006a200441186a100e2004200441206a1018200429030821052000200441106a2903004200200428020022011b37030820002005420020011b370300200441406b24000bde0202037f037e23004180016b22052400200541186a2000200110480240200529031822092003542207200541206a290300220820045420042008511b450440200041c8006a22062001200920037d200820047d2007ad7d1013200541086a2000200210482005290308220820037c220a20085422002000ad200541106a290300220820047c7c220920085420082009511b0d0120062002200a20091013200541f8006a2004370300200541c1006a200141186a290000370000200541396a200141106a290000370000200541316a200141086a290000370000200541ca006a2002290000370100200541d2006a200241086a290000370100200541da006a200241106a290000370100200541e2006a200241186a29000037010020052003370370200541013a0049200541013a002820052001290000370029200541286a1042410221060b20054180016a240020060f0b41808404411c41cc8704100c000b6202017f017e230041406a220324002003200236021c200341206a200141c8006a2003411c6a10122003200341206a1018200329030821042000200341106a2903004200200328020022011b37030820002004420020011b370300200341406b24000b7c01017f230041406a220524002005200136020c2005200036020820052003360214200520023602102005412c6a41023602002005413c6a41073602002005420237021c200541b4be04360218200541063602342005200541306a3602282005200541106a3602382005200541086a360230200541186a2004101c000b6001017f230041106b220324002003200136020c20032000360208230041206b22002400200041146a410136020020004201370204200041d4bb043602002000410636021c2000200341086a3602182000200041186a36021020002002101c000b5501017f230041206b2202240020022000360204200241186a200141106a290200370300200241106a200141086a29020037030020022001290200370308200241046a41dc8704200241086a104c200241206a24000bfc0301057f230041406a22032400200341346a2001360200200341033a00382003428080808080043703182003200036023041002101200341003602282003410036022002400240024020022802082200450440200241146a28020041ffffffff0171220641016a210520022802102104410021000340200541016b2205450d02200228020020006a220141046a28020022070440200328023020012802002007200328023428020c1100000d040b200020046a2101200041086a21002001280200200341186a200141046a280200110100450d000b0c020b2002410c6a28020022064105742105200641ffffff3f71210603402005450d01200228020020016a220441046a28020022070440200328023020042802002007200328023428020c1100000d030b200320002d001c3a003820032000290204422089370318200341106a20022802102204200041146a106620032003290310370320200341086a20042000410c6a106620032003290308370328200141086a2101200541206b210520002802002107200041206a2100200420074103746a2204280200200341186a2004280204110100450d000b0c010b4100210020062002280204492201450d012003280230200228020020064103746a410020011b22012802002001280204200328023428020c110000450d010b410121000b200341406b240020000b0f00200028020020012002104e41000b3f01017f2000200210502000280208220320002802006a20012002100a1a2003200220036a22014b044041808804411c41a48c04100c000b200020013602080bb90201027f230041106b22022400024002400240200028020022002002410c6a027f02400240200141ff004d0440200028020822032000280204460d010c040b2002410036020c2001418010490d0120014180800449044020022001413f71418001723a000e20022001410c7641e001723a000c20022001410676413f71418001723a000d41030c030b20022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d41040c020b200041011050200028020821030c020b20022001413f71418001723a000d2002200141067641c001723a000c41020b104e0c010b200028020020036a20013a0000200341016a22012003490d01200020013602080b200241106a240041000f0b41808804411c41948c04100c000bbe0301077f230041106b22052400024002400240200120002802042207200028020822026b4b0440200120026a22012002490d03200720076a22032007490d022000280200410020071b210841002102230041106b220624002005027f2003200120012003491b22014108200141084b1b220141004e0440027f0240200804402007450440200641086a2001105320062802082104200628020c0c030b2001419cc204280200220320016a22022003490d021a41a0c2042802002002490440200141ffff036a220441107640002202417f46200241ffff0371200247720d022002411074220320044180807c716a22022003490d024100210441a0c20420023602002001200120036a22022003490d031a0b419cc204200236020020012003450d021a200320082007100a210420010c020b2006200110532006280200210420062802040c010b4100210420010b2102200404402005200436020441000c020b20052001360204410121020b41010b360200200541086a2002360200200641106a240020052802004101460d01200020052902043702000b200541106a24000f0b200541086a280200450d01000b41a08904412141c48904100c000b1052000b4a01017f230041206b220224002000280200200241186a200141106a290200370300200241106a200141086a29020037030020022001290200370308200241086a104b200241206a24000b0f0041d48904411141e88904100c000ba90101027f027f41012001450d001a4100419cc204280200220220016a22032002490d001a024041a0c2042802002003490440200141ffff036a22032001490d01200341107640002202417f46200241ffff0371200247720d012002411074220220034180807c716a22032002490d0141a0c20420033602004100200120026a22032002490d021a0b419cc204200336020020020c010b41000b210320002001360204200020033602000b0e0020002802001a03400c000b000bb20302047f027e027f2000350200210620012104230041306b22032400412721000240024020064290ce00540440200621070c010b412721010240034020064290ce00802107200141046b220020014e0d01200341096a20006a200620074290ce007e7da7220141ffff037141e4006e220241017441f492046a2f00003b00002000200041026a22054c0440200341096a20056a2001200241e4006c6b41ffff037141017441f492046a2f00003b0000200642ffc1d72f562000210120072106450d030c010b0b41f08c04411c41b4af04100c000b0c010b02402007a7220241e3004c0440200021010c010b200041026b220120004e0d01200341096a20016a2007a72200200041ffff037141e4006e220241e4006c6b41ffff037141017441f492046a2f00003b00000b02402002410a4e0440200141026b220020014e0d02200341096a20006a200241017441f492046a2f00003b00000c010b200141016b220020014e0d01200341096a20006a200241306a3a00000b412720006b220141274b04400c010b20044184be044100200341096a20006a20011058200341306a24000c010b41c08c04412141b4af04100c000b0b3001017f2002200220016b22044f0440200020043602042000200120036a3602000f0b41c08c04412141bcc004100c000b0d0042a0e5d6f4fad3e0bc897f0b920401077f230041106b22072400418080c400210920042105024020002802002206410171450d002004200441016a22054d0440412b21090c010b41f08c04411c41a89504100c000b0240024002400240200641047145044041002101200521060c010b2001200120026a105920056a22062005490d010b41012105200028020841014704402000200920012002105a0d032000280218200320042000411c6a28020028020c11000021050c030b024002402000410c6a280200220820064b044020002d00004108710d01200820066b220620084b0d022007200020064101105b20072802002206418080c400460d05200728020421082000200920012002105a0d052000280218200320042000411c6a28020028020c1100000d05200620082000105c21050c050b2000200920012002105a0d042000280218200320042000411c6a28020028020c11000021050c040b2000280204210a2000413036020420002d0020210b200041013a00202000200920012002105a0d03200820066b220120084b0d02200741086a200020014101105b20072802082201418080c400460d03200728020c21022000280218200320042000411c6a28020028020c1100000d03200120022000105c0d032000200b3a00202000200a360204410021050c030b41c08c04412141d89504100c000b41f08c04411c41b89504100c000b41c08c04412141c89504100c000b200741106a240020050b4401017f2000200146044041000f0b024003402002200220002c000041bf7f4a6a22024b0d01200041016a22002001470d000b20020f0b41f08c04411c41a4af04100c000b4b000240027f2001418080c4004704404101200028021820012000411c6a2802002802101101000d011a0b20020d0141000b0f0b2000280218200220032000411c6a28020028020c1100000bb20101027f20022105024002400240200320012d0020220320034103461b41ff017141016b0e03010001020b2002200241016a22034d044020034101762105200241017621040c020b41f08c04411c41e89504100c000b41002105200221040b200441016a21022001411c6a2802002103200128020421042001280218210102400340200241016b2202450d01200120042003280210110100450d000b418080c40021040b20002005360204200020043602000b4701027f2002411c6a28020021032002280218210441002102027f0340200120012002460d011a200241016a2102200420002003280210110100450d000b200241016b0b2001490b6b01017f230041306b2203240020032001360204200320003602002003411c6a41023602002003412c6a41043602002003420237020c200341b89004360208200341043602242003200341206a360218200320033602282003200341046a360220200341086a2002101c000b5901017f230041106b220624000240200120024d0440200220044d0d01200220042005105f000b2001200220051060000b200641086a2001200220031056200020062802083602002000200628020c360204200641106a24000b6b01017f230041306b2203240020032001360204200320003602002003411c6a41023602002003412c6a41043602002003420237020c200341a09804360208200341043602242003200341206a3602182003200341046a36022820032003360220200341086a2002101c000b6b01017f230041306b2203240020032001360204200320003602002003411c6a41023602002003412c6a41043602002003420237020c200341d49804360208200341043602242003200341206a3602182003200341046a36022820032003360220200341086a2002101c000b880101047f200141086a28020021022001280204210402400240200141046a10622205418080c400470440200220046b2203200128020420012802086b6a220220034b0d012001280200220320026a22022003490d02200120023602000b20002005360204200020033602000f0b41c08c04412141dc9a04100c000b41f08c04411c41ec9a04100c000bb70101047f200028020022012000280204460440418080c4000f0b2000200141016a36020020012d00002203411874411875417f4c047f2000200141026a36020020012d0001413f7121022003411f712104200341df014d044020044106742002720f0b2000200141036a36020020012d0002413f712002410674722102200341f00149044020022004410c74720f0b2000200141046a3602002004411274418080f0007120012d0003413f71200241067472720520030b0b3f01017f024002402001450d00200120034f044020012003460d010c020b200120026a2c00004140480d010b200221040b20002001360204200020043602000b980301057f230041306b2202240020012802102105200028020421042000280200210302400240024020012802082206410147044020050d012001280218200320042001411c6a28020028020c11000021000c030b2005450d010b200141146a28020020022003360224200241286a200320046a3602002002410036022041016a210002400340200041016b22000440200241186a200241206a1061200228021c418080c400470d010c020b0b200241106a200241206a10612002280214418080c400460d00200241086a2002280210200320041063200228020c2004200228020822001b21042000200320001b21030b20060d002001280218200320042001411c6a28020028020c11000021000c010b2001410c6a28020022002003200320046a105922054d04402001280218200320042001411c6a28020028020c11000021000c010b20022001200020056b4100105b4101210020022802002205418080c400460d00200228020421062001280218200320042001411c6a28020028020c1100000d00200520062001105c21000b200241306a240020000b140020002802002001200028020428020c1101000b5501027f0240027f02400240200228020041016b0e020103000b200241046a0c010b200120022802044103746a22012802044109470d0120012802000b2802002104410121030b20002004360204200020033602000b2c0020024181014f0440200241800141e49204102e000b200041800120026b3602042000200120026a3602000b4901017f230041206b22032400200341186a200241106a290200370300200341106a200241086a2902003703002003200229020037030820002001200341086a104c200341206a24000b6c01027f230041206b2202240041012103024020002001106a0d002002411c6a410036020020024184be043602182002420137020c200241e88d04360208200141186a2802002001411c6a280200200241086a10680d00200041046a2001106a21030b200241206a240020030b850201037f23004190016b22022400027f02402001280200220341107145044020034120710d012000200110550c020b2000280200210041ff0021030340200241106a20036a413041d7002000410f712204410a491b20046a3a0000200341016b21032000410f4b200041047621000d000b200241086a200241106a200341016a1067200141d4bc0441022002280208200228020c10580c010b2000280200210041ff0021030340200241106a20036a413041372000410f712204410a491b20046a3a0000200341016b21032000410f4b200041047621000d000b2002200241106a200341016a1067200141d4bc0441022002280200200228020410580b20024190016a24000ba908010c7f230041e0006b22032400027f024020020440200341d8006a210d2000280204210b2000280200210c2000280208210a0340200a2d00000440200c41c990044104200b28020c1100000d030b2003410a3602582003428a808080103703502003200236024c200341003602482003200236024420032001360240200341386a2001200241002002106c0240024020032802382207450d00200328023c210503400240024002400240024002402003280254220041016b220420004d0440200320046a41d8006a2d00002108200541084f0440200741036a417c7120076b2200450440410021040c030b200341306a410020052000200020054b1b22042007200541ec9604105e20032802342206450d0220032802302109410021000340200020096a2d00002008460d04200041016a22002006470d000b0c020b2005450d08410021000340200020076a2d00002008460d03200041016a22002005470d000b0c080b41c08c04412141f09d04100c000b0240024002402005200541086b22004f0440200020044f0d010c020b41c08c04412141fc9604100c000b200841818284086c210902400340200441046a22062004490d01200420076a280200200973220e417f73200e41818284086b71200620076a2802002009732206417f73200641818284086b7172418081828478710d022004200441086a22064d04402000200622044f0d010c040b0b41f08c04411c419c9704100c000b41f08c04411c418c9704100c000b200421060b20052006490d01200341286a2006200520071056200328022c2204450d06200328022821054100210003402008200020056a2d00004704402004200041016a2200470d010c080b0b200020066a220020064f0d0041f08c04411c41bc9704100c000b2000200041016a22044b0d012004200328024822046a22002004490d0220032000360248200020032802542204490d03200341206a20032802402003280244200020046b22052000106c20032802202200450d0320032802242104200341186a41002003280254200d410441a09e04105e2004200328021c470d03027f20032802182106034041002004450d011a200441016b210420062d0000210720002d00002108200041016a2100200641016a210620072008460d000b200820076b0b0d03200a41013a0000200541016a220020054f0d0641f08c04411c41c09104100c000b2006200541ac9704102e000b41f08c04411c41809e04100c000b41f08c04411c41909e04100c000b200341106a200328024020032802442003280248200328024c106c20032802142105200328021022070d000b0b200a41003a0000200221000b200341086a20012002200041d09104106d200c2003280208200328020c200b28020c1100000d02200320002001200241e09104106e20032802002101200328020422020d000b0b41000c010b41010b200341e0006a24000b4c01037f230041106b220524002002200449200320044b72450440200541086a2003200420011056200528020c2107200528020821060b2000200736020420002006360200200541106a24000b4e01027f230041106b22052400200541086a20032001200210632005280208220645044020012002410020032004106f000b200528020c21012000200636020020002001360204200541106a24000b6400024002402001450d00200120034f044020012003460d010c020b200120026a2c00004140480d010b2003200320016b220449044041c08c04412141ec9b04100c000b200020043602042000200120026a3602000f0b20022003200120032004106f000bb20601027f23004180016b220524002005200336021c200520023602182005027f20014181024f0440418002210602400340200020066a2c000041bf7f4a0d01200641016b22060d000b410021060b200541106a20002001200641f09c04106d20052005290310370320200541b09e0436022841050c010b200520013602242005200036022020054184be0436022841000b36022c024002402005200120024f047f200120034f0d0120030520020b360238200541d4006a4103360200200541ec006a4106360200200541e4006a410636020020054203370244200541d89e043602402005410436025c2005200541d8006a3602502005200541286a3602682005200541206a3602602005200541386a3602580c010b200541086a027f02400240200220034d04402002450d010240200120024d044020012002470d010c030b200020026a2c000041bf7f4a0d020b20052002360230200221030c020b200541f4006a4106360200200541ec006a4106360200200541e4006a4104360200200541d4006a410436020020054204370244200541949f043602402005410436025c2005200541d8006a3602502005200541286a3602702005200541206a36026820052005411c6a3602602005200541186a3602580c030b2005200336023041002003450d011a0b03400240200120034d044020012003470d0120010c030b200020036a2c00004140480d0020030c020b200341016b22030d000b41000b2206200020012004106e20052005280208220036025820052000200528020c6a36025c2005200541d8006a10622004107022003602342006027f41012000418001490d001a41022000418010490d001a41034104200041808004491b0b20066a22004d04402005200036023c20052006360238200541d4006a4105360200200541fc006a4106360200200541f4006a4106360200200541ec006a410a360200200541e4006a410b36020020054205370244200541e89f043602402005410436025c2005200541d8006a3602502005200541286a3602782005200541206a3602702005200541386a3602682005200541346a3602602005200541306a3602580c010b41f08c04411c2004100c000b200541406b2004101c000b1a002000418080c40046044041908f04412b2001100c000b20000b920a02097f017e4101210602402001280218220741272001411c6a28020028021022081101000d0041f4002103410221010240027f02400240027f0240024002402000280200220241096b0e050704010105000b2002412746200241dc0046720d010b2002410b7421034100210141202100412021040240027e024002400240024002400240024002400240024002400340200120004101766a22002001490d0302402003200041027441c4af046a280200410b7422054d044020032005460d03200021040c010b200041016a22012000490d050b2004200420016b22004f044020012004490d010c030b0b41c08c04412141849904100c000b200041016a21010b2001411f4b0d022001410274220341c4af046a280200411576210002402001411f470440200341c8af046a280200411576220320006b220420034d0d0141c08c04412141ccad04100c000b41c30520006b220441c4054f0d040b4100210320022001200141016b22054f047f200541204f0d05200541027441c4af046a28020041ffffff00710541000b6b220a20024b0d05200441016b220320044b0d06200020046a41016b210402402003450d00200041c305200041c3054b1b210941002101034020002009460d09024020012001200041c4b0046a2d00006a22054d04402005200a4d0d01200021040c030b41f08c04411c418cae04100c000b200041016a210020052101200341016b22030d000b0b20044101710d08024002402002418080044f04402002418080084f0d01200241e7a604412a41bba70441c00141fba80441b60310720d0d0c020b200241c8a10441284198a20441a00241b8a40441af021072450d010c0c0b200241e0ffff007141e0cd0a46200241b9ee0a6b41074972200241feffff0071419ef00a46200241a29d0b6b410e497272200241e1d70b6b419f18492002419ef40b6b41e20b4972200241cba60c6b41b5db2b4972720d00200241f08338490d0b0b200241017267410276410773ad4280808080d000840c090b41f08c04411c41e49804100c000b41f08c04411c41f49804100c000b2001412041acad04105d000b41c08c04412141bcad04100c000b20054120419cae04105d000b41c08c04412141dcad04100c000b41c08c04412141ecad04100c000b200941c30541fcad04105d000b200241017267410276410773ad4280808080d000840b210b41032101200221030c060b41010c010b41020b2101200221030c030b41ee000c010b41f2000b21030b0240034002402001210241002101200321000240024002400240200241016b0e03030200010b02400240024002400240200b422088a741ff017141016b0e050004010203050b200b42ffffffff8f6083210b41fd002100410321010c060b200b42ffffffff8f608342808080802084210b41fb002100410321010c050b200b42ffffffff8f608342808080803084210b41f5002100410321010c040b200b42ffffffff8f60834280808080c00084210b41dc002100410321010c030b200ba7220141ffffffff03712001470d032001410274220041204f0d0520032000411c7176410f712200413072200041d7006a2000410a491b41808f04107021002001450440200b42ffffffff8f608342808080801084210b410321010c030b200b42017d42ffffffff0f83200b4280808080708384210b410321010c020b20074127200811010021060c050b41dc002100410121010b200720002008110100450d010c030b0b41908d04412141e08e04100c000b41c08d04412441f08e04100c000b20060b970301087f230041106b220a240041012107024002402002450d00200120024101746a210b20004180fe0371410876210c200141026a210820012d00012102200041ff0171210e03402002210d0240200c20012d000022014704402008200b462001200c4b720d030c010b200a41086a2009200d200320044198a104105e200a2802082102200a28020c2101024003402001450d01200141016b210120022d0000200241016a2102200e470d000b410021070c040b2008200b460d020b20082d000121022008220141026a2108200d2209200220096a22024d0d000b41f08c04411c4188a104100c000b2006450d00200520066a2103200041ffff03712102024003400240200541016a2100027f200020052d00002201411874411875220441004e0d001a20002003460d0120052d0001200441ff0071410874722101200541026a0b2105200141004a2002200220016b22024a730d0220024100480d032007410173210720032005470d010c030b0b41908f04412b41a8a104100c000b41c08c04412141b8a104100c000b200a41106a240020074101710b7e01037f23004190016b2202240020002d0000210341ff0021000340200241106a20006a413041372003410f712204410a491b20046a3a0000200041016b21002003220441047621032004410f4b0d000b200241086a200241106a200041016a1067200141d4bc0441022002280208200228020c105820024190016a24000b5b01027f230041206b220224002001411c6a28020021032001280218200241186a2000280200220041106a290200370300200241106a200041086a290200370300200220002902003703082003200241086a104c200241206a24000b0b002000280200200110640b1b00200128021841e4c10441052001411c6a28020028020c1100000bfe0201037f230041406a2202240020002802002103410121000240200141186a280200220441e48f04410c2001411c6a280200220128020c1100000d0002402003280208220004402002200036020c410121002002413c6a41013602002002420237022c200241f48f043602282002410c3602142002200241106a36023820022002410c6a36021020042001200241286a1068450d010c020b20032802002200200328020428020c11080042f4f99ee6eea3aaf9fe00520d002002200036020c410121002002413c6a41013602002002420237022c200241f48f043602282002410d3602142002200241106a36023820022002410c6a36021020042001200241286a10680d010b200328020c2100200241246a41033602002002413c6a410e360200200241346a410e36020020024203370214200241bc8f0436021020022000410c6a3602382002200041086a3602302002410636022c200220003602282002200241286a36022020042001200241106a106821000b200241406b240020000b5901017f230041106b220624000240200120024d0440200220044d0d01200220042005105f000b2001200220051060000b200641086a2001200220031079200020062802083602002000200628020c360204200641106a24000b3001017f2002200220016b22044f0440200020043602042000200120036a3602000f0b41a0b60441214188b604100c000b3001017f2002200220016b22044f0440200020043602042000200120036a3602000f0b41d0c004412141bcc004100c000b0be8410c00418080040bf107617474656d707420746f2073756274726163742077697468206f766572666c6f77656e636f756e746572656420656d7074792073746f726167652063656c6c2f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f73746f726167652f7372632f6c617a792f6d6f642e727300003f0001004b0000009d00000019000000636f756c64206e6f742070726f7065726c79206465636f64652073746f7261676520656e7472792f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f73746f726167652f7372632f7472616974732f6d6f642e7273c30001004d000000a80000000a00000073746f7261676520656e7472792077617320656d70747900c30001004d000000a90000000a0000006661696c656420746f2070756c6c207061636b65642066726f6d20726f6f74206b6579204801010024000000301f0100020000002f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f73746f726167652f7372632f7472616974732f6f7074737065632e72730000007c010100510000006b0000000d000000681f0100540000009900000030000000681f0100540000009e0000002e000000617474656d707420746f206164642077697468206f766572666c6f770f000000010000000100000001000000241c010055000000b500000037000000241c010055000000b80000000900000045726332303a3a5472616e7366657200041f0100000000004c02010045726332303a3a5472616e736665723a3a66726f6d45726332303a3a5472616e736665723a3a746f45726332303a3a5472616e736665723a3a76616c756545726332303a3a417070726f76616c000000041f010000000000a602010045726332303a3a417070726f76616c3a3a6f776e657245726332303a3a417070726f76616c3a3a7370656e64657245726332303a3a417070726f76616c3a3a76616c75652f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6578616d706c65732f74726169742d65726332302f6c69622e727308030100480000003f000000050000006469737061746368696e6720696e6b2120636f6e7374727563746f72206661696c65643a2000000060030100250000006469737061746368696e6720696e6b21206d657373616765206661696c65643a2000000090030100210000000803010048000000cc0000002c0000000803010048000000020100002700000010000000040000000400000011000000120000001300418088040bb104617474656d707420746f206164642077697468206f766572666c6f77140000000000000001000000150000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f616c6c6f632f7372632f7261775f7665632e727300000000000000617474656d707420746f206d756c7469706c792077697468206f766572666c6f770000002c0401006d000000830100001c0000006361706163697479206f766572666c6f770000002c0401006d000000fd010000050000006120666f726d617474696e6720747261697420696d706c656d656e746174696f6e2072657475726e656420616e206572726f722f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f616c6c6f632f7372632f666d742e72732b05010069000000550200001c0000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f616c6c6f632f7372632f7665632f6d6f642e7273000000a40501006d000000c60600000d000000a40501006d00000002070000090041c08c040b21617474656d707420746f2073756274726163742077697468206f766572666c6f770041f08c040b41617474656d707420746f206164642077697468206f766572666c6f7700000000617474656d707420746f206d756c7469706c792077697468206f766572666c6f770041c08d040bd528617474656d707420746f2073686966742072696768742077697468206f766572666c6f772e2e0000e4060100020000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f636861722f6d6f642e7273000000f00601006d000000a200000035000000f00601006d000000a200000021000000f00601006d000000a30000003300000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75653a041f010000000000bb07010001000000bb070100010000001600000000000000010000001700000070616e69636b65642061742027272c20f007010001000000f107010003000000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732000000408010020000000240801001200000060202020202f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f666d742f6275696c646572732e727300004d0801007100000028000000150000004d080100710000002f000000210000004d0801007100000030000000120000002c0a280a28292f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f666d742f6e756d2e72730000f60801006c000000650000001400000030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839392f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f666d742f6d6f642e72733c0a01006c0000001e0500000d0000003c0a01006c000000220500000d0000003c0a01006c00000045050000310000003c0a01006c0000004e050000310000003c0a01006c000000b2050000380000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f736c6963652f6d656d6368722e7273000000f80a010071000000420000001e000000f80a0100710000004900000015000000f80a0100710000004e0000001f000000f80a0100710000005700000009000000f80a0100710000005b00000005000000f80a0100710000005b0000003d00000072616e676520737461727420696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820cc0b010012000000de0b01002200000072616e676520656e6420696e64657820100c010010000000de0b010022000000736c69636520696e64657820737461727473206174202062757420656e64732061742000300c010016000000460c01000d0000008f1b01006e000000c6080000170000008f1b01006e000000d1080000180000008f1b01006e000000da08000014000000736f7572636520736c696365206c656e67746820282920646f6573206e6f74206d617463682064657374696e6174696f6e20736c696365206c656e6774682028940c010015000000a90c01002b000000f5080100010000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f7374722f697465722e7273000000ec0c01006d0000009200000026000000ec0c01006d00000092000000110000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f7374722f7472616974732e7273007c0d01006f0000005c010000130000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f7374722f76616c69646174696f6e732e7273fc0d0100740000001d010000110000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f7374722f7061747465726e2e7273800e010070000000a001000047000000800e010070000000b301000020000000800e010070000000b301000011000000800e010070000000b7010000260000005b2e2e2e5d6279746520696e64657820206973206f7574206f6620626f756e6473206f6620600000350f01000b000000400f0100160000004808010001000000626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e6720600000700f01000e0000007e0f010004000000820f0100100000004808010001000000206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f662060350f01000b000000b40f010026000000da0f010008000000e20f01000600000048080100010000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f756e69636f64652f7072696e7461626c652e727300001010010076000000080000001800000010100100760000000a0000001c00000010100100760000001a0000003600000010100100760000001e0000000900000000010305050606020706080709110a1c0b190c1a0d100e0d0f0410031212130916011704180119031a071b011c021f1620032b032d0b2e01300331023201a702a902aa04ab08fa02fb05fd02fe03ff09ad78798b8da23057588b8c901cdd0e0f4b4cfbfc2e2f3f5c5d5fe2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d11293a3b4549575b5c5e5f64658d91a9b4babbc5c9dfe4e5f00d11454964658084b2bcbebfd5d7f0f183858ba4a6bebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff806d71dedf0e1f6e6f1c1d5f7d7eaeaf7fbbbc16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f747596262e2fa7afb7bfc7cfd7df9a409798308f1fd2d4ceff4e4f5a5b07080f10272feeef6e6f373d3f42459091536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab051f09811b03190801042f043404070301070607110a500f1207550703041c0a090308030703020303030c0405030b06010e15054e071b0757070206160d500443032d03010411060f0c3a041d255f206d046a2580c80582b0031a0682fd03590716091809140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a062f314d0380a4083c030f033c0738082b0582ff1118082f112d03210f210f808c048297190b158894052f053b07020e180980be22740c80d61a0c0580ff0580df0cf29d033709815c1480b80880cb050a183b030a06380846080c06740b1e035a0459098083181c0a16094c04808a06aba40c170431a10481da26070c050580a61081f50701202a064c04808d0480be031b030f0d000601010301040205070702080809020a050b020e041001110212051311140115021702190d1c051d0824016a046b02af03bc02cf02d102d40cd509d602d702da01e005e102e704e802ee20f004f802fa02fb010c273b3e4e4f8f9e9e9f7b8b9396a2b2ba86b1060709363d3e56f3d0d1041418363756577faaaeafbd35e01287898e9e040d0e11122931343a4546494a4e4f64655cb6b71b1c07080a0b141736393aa8a9d8d909379091a8070a3b3e66698f926f5fbfeeef5a62f4fcff9a9b2e2f2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a22253e3fe7ecefffc5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d0aeaf6e6f935e227b0503042d036603012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b4e43813709160a08183b45390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a8126524e28082a161a261c1417094e042409440d19070a0648082709750b3f412a063b050a0651060105100305808b621e48080a80a65e22450b0a060d133a060a362c041780b93c64530c48090a46451b4808530d498107460a1d03474937030e080a0639070a81361980b7010f320d839b66750b80c48a4c630d842f8fd18247a1b98239072a045c06260a460a28051382b05b654b0439071140050b020e97f80884d62a09a2e781332d03110408818c89046b050d0309071092604709743c80f60a7308701546809a140c570919808781470385420f1584501f80e12b80d52d031a040281401f113a050184e080f7294c040a04028311444c3d80c23c06010455051b3402810e2c04640c560a80ae381d0d2c040907020e06809a83d80510030d03740c59070c04010f0c0438080a062808224e81540c1503050307091d030b05060a0a060808070980cb250a84062f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f756e69636f64652f756e69636f64655f646174612e7273000031160100790000004b0000002800000031160100790000004f0000000900000031160100790000004d00000009000000311601007900000054000000110000003116010079000000560000001100000031160100790000005700000016000000311601007900000058000000090000003116010079000000520000003e0000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f697465722f7472616974732f616363756d2e727300002c170100760000008d00000001000000f60801006c000000cd010000050000000003000083042000910560005d13a0001217201f0c20601fef2ca02b2a30202c6fa6e02c02a8602d1efb602e00fe20369eff6036fd01e136010a2137240de137ab0e61392f18a139301ce147f31e214cf06ae14f4f6f21509dbca15000cf615165d1a15100da215200e0e15330e16155aee2a156d0e8e15620006e57f001ff5700700007002d0101010201020101480b30151001650702060202010423011e1b5b0b3a09090118040109010301052b033c082a180120370101010408040103070a021d013a0101010204080109010a021a010202390104020402020303011e0203010b0239010405010204011402160601013a0101020104080107030a021e013b0101010c01090128010301370101030503010407020b021d013a01020102010301050207020b021c02390201010204080109010a021d0148010401020301010801510102070c08620102090b064a021b0101010101370e01050102050b0124090166040106010202021902040310040d01020206010f01000300031d021e021e02400201070801020b09012d030101750222017603040209010603db0202013a010107010101010208060a0201301f310430070101050128090c0220040202010338010102030101033a0802029803010d0107040106010302c6400001c32100038d016020000669020004010a200250020001030104011902050197021a120d012608190b2e0330010204020227014306020202020c0108012f01330101030202050201012a020801ee010201040100010010101000020001e201950500030102050428030401a50200040002990b31047b01360f290102020a033104020207013d03240501083e010c0234090a0402015f03020101020601a0010308150239020101010116010e070305c308020301011701510102060101020101020102eb010204060201021b025508020101026a0101010206010165030204010500090102f5010a0201010401900402020401200a280602040801090602032e0d010200070106010152160207010201027a060301010201070101480203010101000200053b0700013f0451010002002e0217000101030405080802071e0494030037043208010e011605010f00070111020701020105000700013d0400076d07006080f00000cc1f010070000000e70000004f0041a0b6040b21617474656d707420746f2073756274726163742077697468206f766572666c6f770041d0b6040baf06617474656d707420746f206164642077697468206f766572666c6f77617373657274696f6e206661696c65643a206d6964203c3d2073656c662e6c656e28292f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f736c6963652f6d6f642e72730000008f1b01006e000000e6050000090000000a000000041f010000000000101c0100010000002f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f656e762f7372632f656e67696e652f6f6e5f636861696e2f6275666665722e7273000000241c010055000000580000001c000000241c0100550000005800000009000000241c0100550000005800000031000000241c0100550000006300000009000000241c010055000000810000001a0000002f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f656e762f7372632f656e67696e652f6f6e5f636861696e2f6578742e72730000cc1c010052000000530100001400000045636473615265636f766572794661696c65644c6f6767696e6744697361626c6564556e6b6e6f776e4e6f7443616c6c61626c65436f64654e6f74466f756e645f456e646f776d656e74546f6f4c6f775472616e736665724661696c65645f42656c6f7753756273697374656e63655468726573686f6c644b65794e6f74466f756e6443616c6c6565526576657274656443616c6c6565547261707065644465636f6465041f0100000000007061696420616e20756e70617961626c65206d657373616765636f756c64206e6f74207265616420696e707574756e61626c6520746f206465636f646520696e707574656e636f756e746572656420756e6b6e6f776e2073656c6563746f72756e61626c6520746f206465636f64652073656c6563746f7230780000541e0100020000005f000000601e010001000000041f010000000000041f010000000000041f01004188bd040b0920000000080000000200419cbd040b150200000003000000010000002000000008000000020041bcbd040b150200000003000000020000002000000008000000020041dcbd040b150200000003000000030000002000000008000000020041fcbd040b9d0402000000030000005765206465636f646520604e6020656c656d656e74733b20716564007120010062000000cd020000170000003a200000041f010000000000301f010002000000656e636f756e746572656420756e6578706563746564206572726f72441f01001c0000002f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f656e762f7372632f656e67696e652f6f6e5f636861696e2f696d706c732e7273681f01005400000014010000170000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f736c6963652f696e6465782e7273cc1f010070000000e00000004c00000000000000617474656d707420746f2073756274726163742077697468206f766572666c6f772f55736572732f677265656e2f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d7363616c652d636f6465632d322e332e312f7372632f636f6465632e72730071200100620000006d0000000e0000004572726f72000000000000000100000002000000030000000400000005000000060000000700000008000000090000000c0000000b"},"contract":{"name":"trait_erc20","version":"3.0.0-rc7","authors":["Parity Technologies "]},"V3":{"spec":{"constructors":[{"args":[{"label":"initial_supply","type":{"displayName":["Balance"],"type":0}}],"docs":["Creates a new ERC-20 contract with the specified initial supply."],"label":"new","payable":false,"selector":"0x9bae9d5e"}],"docs":[],"events":[{"args":[{"docs":[],"indexed":true,"label":"from","type":{"displayName":["Option"],"type":11}},{"docs":[],"indexed":true,"label":"to","type":{"displayName":["Option"],"type":11}},{"docs":[],"indexed":true,"label":"value","type":{"displayName":["Balance"],"type":0}}],"docs":[" Event emitted when a token transfer occurs."],"label":"Transfer"},{"args":[{"docs":[],"indexed":true,"label":"owner","type":{"displayName":["AccountId"],"type":2}},{"docs":[],"indexed":true,"label":"spender","type":{"displayName":["AccountId"],"type":2}},{"docs":[],"indexed":true,"label":"value","type":{"displayName":["Balance"],"type":0}}],"docs":[" Event emitted when an approval occurs that `spender` is allowed to withdraw"," up to the amount of `value` tokens from `owner`."],"label":"Approval"}],"messages":[{"args":[],"docs":[" Returns the total token supply."],"label":"BaseErc20::total_supply","mutates":false,"payable":false,"returnType":{"displayName":["Balance"],"type":0},"selector":"0x8244a1ad"},{"args":[{"label":"owner","type":{"displayName":["AccountId"],"type":2}}],"docs":[" Returns the account balance for the specified `owner`.",""," Returns `0` if the account is non-existent."],"label":"BaseErc20::balance_of","mutates":false,"payable":false,"returnType":{"displayName":["Balance"],"type":0},"selector":"0x933ae3c8"},{"args":[{"label":"owner","type":{"displayName":["AccountId"],"type":2}},{"label":"spender","type":{"displayName":["AccountId"],"type":2}}],"docs":[" Returns the amount which `spender` is still allowed to withdraw from `owner`.",""," Returns `0` if no allowance has been set."],"label":"BaseErc20::allowance","mutates":false,"payable":false,"returnType":{"displayName":["Balance"],"type":0},"selector":"0x74a27ac8"},{"args":[{"label":"to","type":{"displayName":["AccountId"],"type":2}},{"label":"value","type":{"displayName":["Balance"],"type":0}}],"docs":[" Transfers `value` amount of tokens from the caller's account to account `to`.",""," On success a `Transfer` event is emitted.",""," # Errors",""," Returns `InsufficientBalance` error if there are not enough tokens on"," the caller's account balance."],"label":"BaseErc20::transfer","mutates":true,"payable":false,"returnType":{"displayName":["Result"],"type":8},"selector":"0xfa9833a3"},{"args":[{"label":"spender","type":{"displayName":["AccountId"],"type":2}},{"label":"value","type":{"displayName":["Balance"],"type":0}}],"docs":[" Allows `spender` to withdraw from the caller's account multiple times, up to"," the `value` amount.",""," If this function is called again it overwrites the current allowance with `value`.",""," An `Approval` event is emitted."],"label":"BaseErc20::approve","mutates":true,"payable":false,"returnType":{"displayName":["Result"],"type":8},"selector":"0x922e291f"},{"args":[{"label":"from","type":{"displayName":["AccountId"],"type":2}},{"label":"to","type":{"displayName":["AccountId"],"type":2}},{"label":"value","type":{"displayName":["Balance"],"type":0}}],"docs":[" Transfers `value` tokens on the behalf of `from` to the account `to`.",""," This can be used to allow a contract to transfer tokens on ones behalf and/or"," to charge fees in sub-currencies, for example.",""," On success a `Transfer` event is emitted.",""," # Errors",""," Returns `InsufficientAllowance` error if there are not enough tokens allowed"," for the caller to withdraw from `from`.",""," Returns `InsufficientBalance` error if there are not enough tokens on"," the account balance of `from`."],"label":"BaseErc20::transfer_from","mutates":true,"payable":false,"returnType":{"displayName":["Result"],"type":8},"selector":"0x839f0263"}]},"storage":{"struct":{"fields":[{"layout":{"cell":{"key":"0x0000000000000000000000000000000000000000000000000000000000000000","ty":0}},"name":"total_supply"},{"layout":{"cell":{"key":"0x0100000000000000000000000000000000000000000000000000000000000000","ty":1}},"name":"balances"},{"layout":{"cell":{"key":"0x0200000000000000000000000000000000000000000000000000000000000000","ty":6}},"name":"allowances"}]}},"types":[{"id":0,"type":{"def":{"primitive":"u128"}}},{"id":1,"type":{"def":{"composite":{"fields":[{"name":"offset_key","type":5,"typeName":"Key"}]}},"params":[{"name":"K","type":2},{"name":"V","type":0}],"path":["ink_storage","lazy","mapping","Mapping"]}},{"id":2,"type":{"def":{"composite":{"fields":[{"type":3,"typeName":"[u8; 32]"}]}},"path":["ink_env","types","AccountId"]}},{"id":3,"type":{"def":{"array":{"len":32,"type":4}}}},{"id":4,"type":{"def":{"primitive":"u8"}}},{"id":5,"type":{"def":{"composite":{"fields":[{"type":3,"typeName":"[u8; 32]"}]}},"path":["ink_primitives","Key"]}},{"id":6,"type":{"def":{"composite":{"fields":[{"name":"offset_key","type":5,"typeName":"Key"}]}},"params":[{"name":"K","type":7},{"name":"V","type":0}],"path":["ink_storage","lazy","mapping","Mapping"]}},{"id":7,"type":{"def":{"tuple":[2,2]}}},{"id":8,"type":{"def":{"variant":{"variants":[{"fields":[{"type":9}],"index":0,"name":"Ok"},{"fields":[{"type":10}],"index":1,"name":"Err"}]}},"params":[{"name":"T","type":9},{"name":"E","type":10}],"path":["Result"]}},{"id":9,"type":{"def":{"tuple":[]}}},{"id":10,"type":{"def":{"variant":{"variants":[{"index":0,"name":"InsufficientBalance"},{"index":1,"name":"InsufficientAllowance"}]}},"path":["trait_erc20","erc20","Error"]}},{"id":11,"type":{"def":{"variant":{"variants":[{"index":0,"name":"None"},{"fields":[{"type":2}],"index":1,"name":"Some"}]}},"params":[{"name":"T","type":2}],"path":["Option"]}}]}} \ No newline at end of file +{ + "source": { + "hash": "0x819f50e02feb5b4413261150c77edb5fdf85877ac1da53210f1b1327f342b81a", + "language": "ink! 3.0.0-rc7", + "compiler": "rustc 1.58.0-nightly", + "wasm": "0x0061736d010000000180011360037f7f7f017f60027f7f017f60027f7f0060037f7f7f0060047f7f7f7f0060017f0060057f7f7f7f7f0060000060017f017e60067f7f7f7f7f7f0060047f7f7e7e0060037e7e7f0060057f7f7f7e7e006000017f60017f017f60047f7f7f7f017f60057f7f7f7f7f017f60077f7f7f7f7f7f7f017f60057f7f7f7e7e017f028a020b057365616c30127365616c5f64656275675f6d6573736167650001057365616c30127365616c5f636c6561725f73746f726167650005057365616c30127365616c5f6465706f7369745f6576656e740004057365616c30107365616c5f7365745f73746f726167650003057365616c30107365616c5f6765745f73746f726167650000057365616c300a7365616c5f696e7075740002057365616c300b7365616c5f72657475726e0003057365616c30147365616c5f686173685f626c616b65325f3235360003057365616c300b7365616c5f63616c6c65720002057365616c30167365616c5f76616c75655f7472616e73666572726564000203656e76066d656d6f7279020102100372710004030303020203030a0b0c0a02020201010204040302030204060504020202020b0305030501000802050304020502010305020d0302020507050704120306030100000301020107020101040810010f040003090303020e040101030300010100060606060101110101010101090404040501700118180608017f01418080040b071102066465706c6f7900430463616c6c0045091d010041010b171a1b7355306465775469717475552d2d4d4f512d762d570ac8b201712b01017f037f2002200346047f200005200020036a200120036a2d00003a0000200341016a21030c010b0b0b3001017f2002200220016b22044f0440200020043602042000200120036a3602000f0b4180800441214188b604100c000b4601017f230041206b22032400200341146a410036020020034184be04360210200342013702042003200136021c200320003602182003200341186a36020020032002101c000b3501017f230041106b22032400200341086a410020012002100b200020032802083602002000200328020c360204200341106a24000be60101037f230041d0006b22032400200320013602082003200236020c200341286a22014200370300200341206a22044200370300200341186a220542003703002003420037031020034100360230200342808001370244200341a6c204360240200341086a200341406b100f2002280200200341406b10102002280204200341406b1010200320032903403702342003200341306a2003280248101120032802002003280204200341106a1007200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290310370000200341d0006a24000b0d00200120002802004120102c0b0a00200120004120102c0b5e01027f200141086a22032802002104200341003602002001280204210320014184be04360204200220044b044041ecb60441234180b804100c000b2001200420026b3602082001200220036a36020420002002360204200020033602000bda0101037f230041d0006b22032400200320013602082003200236020c200341286a22014200370300200341206a22044200370300200341186a220542003703002003420037031020034100360230200342808001370244200341a6c204360240200341086a200341406b100f2002280200200341406b1010200320032903403702342003200341306a2003280248101120032802002003280204200341106a1007200041186a2001290300370000200041106a2004290300370000200041086a200529030037000020002003290310370000200341d0006a24000b3401017f230041306b220424002004200136020c200441106a20002004410c6a101220022003200441106a1014200441306a24000b4e01017f230041206b22032400200341186a41808001360200200341a6c20436021420034100360210200341086a200341106a20002001101620022003280208200328020c1003200341206a24000b3b01017f230041306b220524002005200236020c20052001360208200541106a2000200541086a100e20032004200541106a1014200541306a24000b5802017f017e230041206b2204240020012902042105200441003602182004200537031020022003200441106a102b20012004290310370204200441086a20012004280218101120002004290308370300200441206a24000bd40102027f057e230041306b220224000240200029030022084202510d0020012900182104200129001021052001290008210620012900002107200041186a22012d0000200141013a00004101710d0020084201520440200241286a2004370300200241206a2005370300200241186a20063703002002200737031020024201370308200241106a10010c010b200241286a2004370300200241206a2005370300200241186a200637030020022007370310200242013703082000290308200041106a290300200241106a10140b200241306a24000bc70102017f027e230041e0006b220224002002200136020c200241106a2001101920022d00104101460440200220022d00113a0037200241cc006a4102360200200241dc006a41013602002002420237023c200241ec8204360238200241023602542002200241d0006a3602482002200241376a36025820022002410c6a360250200241386a41d08304101c000b200241186a2903002103200241206a2903002104200041106a200241286a2903003703002000200437030820002003370300200241e0006a24000be40102017f027e230041406a22022400200241808001360224200241a6c20436022002400240024002402001200241206a103a0e0402010100010b200041003a0000200041086a42003703000c020b2002413c6a410036020020024184be043602382002420137022c200241e0be04360228200241286a41bcbf04101c000b20022002290320370328200241086a200241286a102a2002290308a70440200041013b01000c010b200241186a290300210320022903102104200041003a0000200041106a2004370300200041086a4201370300200041186a20033703000b200241406b24000bd90401017f230041106b22022400024002400240024002400240024002400240024002400240024020002d000041016b0e0b0102030405060708090a0b000b41012100200128021841cebb0441062001411c6a28020028020c1100000d0b024020012d0000410471450440200128021841f491044101200128021c28020c1100000d0d200128021841e4c1044105200128021c28020c110000450d010c0d0b200128021841f291044102200128021c28020c1100000d0c200241013a000f200241086a2002410f6a36020020022001290218370300200241e4c1044105106b0d0c200241f091044102106b0d0c0b200128021841f591044101200128021c28020c11000021000c0b0b200128021841c1bb04410d2001411c6a28020028020c11000021000c0a0b200128021841b3bb04410e2001411c6a28020028020c11000021000c090b200128021841a8bb04410b2001411c6a28020028020c11000021000c080b2001280218418ebb04411a2001411c6a28020028020c11000021000c070b20012802184180bb04410e2001411c6a28020028020c11000021000c060b200128021841f0ba0441102001411c6a28020028020c11000021000c050b200128021841e4ba04410c2001411c6a28020028020c11000021000c040b200128021841d9ba04410b2001411c6a28020028020c11000021000c030b200128021841d2ba0441072001411c6a28020028020c11000021000c020b200128021841c3ba04410f2001411c6a28020028020c11000021000c010b200128021841b0ba0441132001411c6a28020028020c11000021000b200241106a240020000b810201047f230041406a220224002000280200210441002100200241346a410036020020024184be0436023020024201370224200241d8bc04360220027f4101200141186a28020022052001411c6a2802002201200241206a10680d001a024003402002410436021c2002410436021420024184bd043602102002410436020c200241e4bc043602082002410336023c200241033602342002410336022c200241033602242002200020046a22033602202002200341036a3602382002200341026a3602302002200341016a3602282002200241206a36021820052001200241086a10680d01200041046a22004120470d000b41000c010b41010b200241406b24000b840401087f230041106b220324002003200136020c20032000360208200341d48f0436020420034184be04360200230041406a220224002002200336020c200241346a41013602002002420237022420024194b8043602202002410836023c2002200241386a36023020022002410c6a360238200241106a21064100210041002101230041206b22042400200241206a22052802002107024002400240024002402005280204220941037422080440200741046a21030340200120032802006a22002001490d02200341086a210320002101200841086b22080d000b0b02400240200541146a280200450440200021030c010b02402009450d0020072802040d004100210120004110490d020b41002101200020006a22032000490d010b200322014100480d020b20042001105320042802002200450d0220042802042101200641003602082006200036020020062001360204200441186a200541106a290200370300200441106a200541086a290200370300200420052902003703082006200441086a104b0d03200441206a24000c040b41808804411c41a4af04100c000b1052000b000b41f889044133200441086a419c880441948b041049000b2002280210210020022802182101024041a4c2042d000045044041a5c2042d00004101710d010b200020011000410947044041a4c20441013a00000b41a5c20441013a00000b000b900102017f017e230041406a22042400200441106a2000280200200041046a280200200041086a280200101e20042902142105200441003602282004200537032020012002200441206a101f2003200441206a102020042004290320370214200441086a200441106a20042802281011200441206a2004280208200428020c10212000200441206a1022200441406b24000b4b02017f017e230041106b22042400200120034b04402001200341bcb904102e000b200441086a2001200320021079200429030821052000410036020020002005370204200441106a24000b1000200120021027200220002001102c0b230020002d000041014704402001410010370f0b200141011037200041016a200110100bb40101017f230041306b2203240020004200370000200041186a4200370000200041106a4200370000200041086a42003700000240200241214f0440200341286a4200370300200341206a4200370300200341186a42003703002003420037031020012002200341106a1007200341202000100d20032802002003280204200341106a412041f0830410240c010b200341086a20022000100d2003280208200328020c2001200241e0830410240b200341306a24000b960101047f230041206b220224002000280204210420004184be04360204200041086a2203280200210520034100360200200241086a2004200520002802002203102620024100360218200220022903083703102001200241106a10102003200320022802186a22014d0440200020053602082000200436020420002001360200200241206a24000f0b41808404411c41bc8404100c000b900102017f017e230041406a22042400200441106a2000280200200041046a280200200041086a280200101e20042902142105200441003602282004200537032020012002200441206a101f2003200441206a101020042004290320370214200441086a200441106a20042802281011200441206a2004280208200428020c10212000200441206a1022200441406b24000b7b0020012003460440200020022001100a1a0f0b230041306b2200240020002003360204200020013602002000411c6a41023602002000412c6a41043602002000420337020c200041d49904360208200041043602242000200041206a360218200020003602282000200041046a360220200041086a2004101c000b950101057f230041206b220124002000280204210320004184be04360204200041086a2202280200210420024100360200200141086a2003200420002802002202102620014100360218200120012903083703104104200141106a10272002200220012802186a22054b044041808404411c41bc8404100c000b200020043602082000200336020420002005360200200141206a24000b4801017f230041106b22042400200220034904402003200241ac8404102e000b200441086a200320022001100b200020042802083602002000200428020c360204200441106a24000b7401017f230041106b2202240002402000413f4d04402001200041027410370c010b200041ffff004d0440200220004102744101723b010e20012002410e6a4102102c0c010b200041ffffffff034d04402000410274410272200110410c010b2001410310372000200110410b200241106a24000bae0102017f027e230041406a22022400200241186a200110290240024020022d0018410147044020022001102a2002290300a7450d010b200042013703000c010b200241106a2903002103200229030821042000200229001937000820004200370300200041286a2004370300200041306a2003370300200041206a200241316a290000370000200041186a200241296a290000370000200041106a200241216a2900003700000b200241406b24000bb50202037f017e230041306b22022400200241086a41047221042000027f0240034020022001103320022d00004101710d01200320046a20022d00013a0000200341016a22034120470d000b200041086a200241136a2f00003b00002000410a6a200241156a2d00003a00002000410f6a2002411a6a2f01003b0000200041116a2002411c6a2d00003a0000200041166a200241216a2f00003b0000200041186a200241236a2d00003a0000200220022f010c3b0104200220022d000e3a0006200241166a28010021012002411d6a2800002103200241246a2902002105200228000f2104200041036a20022d00063a0000200020022f01043b0001200041196a2005370000200041126a20033600002000410b6a2001360000200041046a200436000041000c010b41010b3a0000200241306a24000b6402027f037e230041106b22022400200241086a22034200370300200242003703000240200120024110103145044020032903002105200229030021060c010b420121040b2000200637030820002004370300200041106a2005370300200241106a24000b2a01017f230041106b220324002003200137030820032000370300200220034110102c200341106a24000b6701037f230041106b220324002000280208220420026a2205200449044041d0b604411c41fcb804100c000b200341086a2004200520002802002000280204418cb90410782003280208200328020c20012002419cb904102420002005360208200341106a24000b0300010b6b01017f230041306b2203240020032001360204200320003602002003411c6a41023602002003412c6a41043602002003420237020c200341809804360208200341043602242003200341206a3602182003200341046a36022820032003360220200341086a2002101c000b4801017f230041206b22012400200141146a410136020020014201370204200141d4bb043602002001410536021c200120003602182001200141186a360210200141d08604101c000bc00101037f230041306b2202240041bbbc042103411921040240024002400240024020002d000041016b0e0400010203040b419fbc042103411c21040c030b4189bc042103411621040c020b41f5bb042103411421040c010b41dcbb0421030b2002411c6a41013602002002200436022c20022003360228200241063602242002420137020c200241d4bb04360208200141186a2802002001411c6a2802002002200241286a3602202002200241206a360218200241086a1068200241306a24000b6001047f230041106b22032400200028020422042002492205450440200341086a4100200220002802002206107a200120022003280208200328020c41d4c10410242003200220042006107a200020032903003702000b200341106a240020050b910102027f017e230041106b220124002001420437030841042102027f02400240034020012000103320012d00004101710d01200141086a20026a20012d00013a0000200241016a22024108470d000b20012903082203a741044f0d014184be04411b41a0be04100c000b4101210241000c010b410021022003422088a70b2100200141106a24002002ad2000ad420886840b3f01027f230041106b22022400200241003a000f200020012002410f6a410110312201047f41000520022d000f0b3a0001200020013a0000200241106a24000bfe0502047f027e23004190016b22012400200141086a200041e000100a1a200141106a21030240200129030822064201520440200141f0006a220041808001360200200141a6c20436026c20014100360268200141e8006a102520014188016a220220002802003602002001200129036837038001200141e8006a20014180016a41dc84041035200141e8006a41e8840441152003101d20022000280200360200200120012903683703800120014180016a41fd84044113200341216a101d20002002280200360200200120012903800137036820014180016a200141e8006a41908504200141d8006a10360c010b200141f0006a220041808001360200200141a6c20436026c20014100360268200141e8006a102520014188016a220220002802003602002001200129036837038001200141e8006a20014180016a41b885041035200141e8006a41c4850441162003102320022000280200360200200120012903683703800120014180016a41da85044118200141306a102320002002280200360200200120012903800137036820014180016a200141e8006a41f28504200141d0006a10360b230041206b22002400200041186a220420014180016a220241086a28020036020020002002290200220537031020004100360210200041086a200041106a2005a7101120002903082105200141e8006a220241086a2004280200360200200220002903103702002002200537020c200041206a240020014188016a200141f0006a2802003602002001200129036837038001200141f8006a2802002100200128027420012902840121052001410036027020012005370368027f2006500440200141e8006a410010372003200141e8006a1020200341216a200141e8006a1020200141d8006a0c010b200141e8006a410110372003200141e8006a1010200141306a200141e8006a1010200141d0006a0b2203290300200341086a290300200141e8006a102b2001200129036837028401200120014180016a20012802701011200020012802002001280204100220014190016a24000bb40102027f017e230041406a22032400200341106a2001280200200141046a280200200141086a2204280200101e20032902142105200341003602282003200537032020022802002002280204200341206a101f200341206a2002280208410f102c20032003290320370214200341086a200341106a20032802281011200341206a2003280208200328020c10212001200341206a1022200041086a200428020036020020002001290200370200200341406b24000bb40102027f017e230041406a22042400200441106a2001280200200141046a280200200141086a2205280200101e20042902142106200441003602282004200637032020024116200441206a101f2003290300200341086a290300200441206a102b20042004290320370214200441086a200441106a20042802281011200441206a2004280208200428020c10212001200441206a1022200041086a200528020036020020002001290200370200200441406b24000b3901027f20002802082202200028020422034904402000200241016a360208200028020020026a20013a00000f0b2002200341acb904105d000b5901027e20002903002101200041086a2903002102230041206b22002400200041186a41808001360200200041a6c20436021420004100360210200041086a200041106a20012002101641002000280208200028020c103b000baa0102047f017e230041206b22032400200341186a41808001360200200341a6c20436021420034100360210200341086a230041206b22022400200341106a220429020421062002410036021820022006370310200241106a200141ff0171410247047f200241106a4101103720010541000b103720042002290310370204200241086a2004200228021810112002290308370300200241206a240020002003280208200328020c103b000b5401017f230041106b220224002002200128020436020c200020012802002002410c6a100421002001200228020c103d410c21012000410b4d0440200041027441ecc1046a28020021010b200241106a240020010b0b002000200120021006000b6001017f230041106b2201240020004200370000200041186a4200370000200041106a4200370000200041086a420037000020014120360204200120003602002001412036020c20002001410c6a10082001200128020c103d200141106a24000b3701017f230041106b22022400200241086a410020012000280200200028020441a0ba04107820002002290308370200200241106a24000b6c02027f027e230041206b22002400200041086a220142003703002000420037030020004110360214200020003602102000411036021c20002000411c6a1009200041106a200028021c103d2001290300210220002903002103200041206a2400410541042002200384501b0b4c01017f230041206b220324002000450440410120021039000b200341186a4200370300200341106a4200370300200341086a420037030020034200370300200120031017410020021039000bc101002000027f024020014101710d00103e41ff01714105460d00200041043a000141010c010b200041c1006a4200370000200041396a4200370000200041316a4200370000200041296a4200370000200041f8006a4200370300200041f0006a420237030020004180016a420037030020004188016a4200370300200041d8006a4200370000200041d0006a4201370000200041e0006a4200370000200041e8006a4200370000200041286a41013a0000200041086a420237030041000b3a00000b2601017f230041106b220224002002200036020c20012002410c6a4104102c200241106a24000b2e01017f230041e0006b22012400200141086a200041d800100a1a2001420037030020011034200141e0006a24000ba90502027f027e230041d0026b220024000240103e41ff01714105460440200041808001360224200041a6c204360220200041206a1044200020002903203703a801027f4101200041a8016a10324281feffffff1f834280b6baede90b520d001a200041086a200041a8016a102a200041186a29030021022000290310210320002802080b0440410321010c020b103e41ff01714105470440410421010c020b200041e1016a4200370000200041d9016a4200370000200041d1016a4200370000200041c9016a4200370000200041f8016a420037030020004180026a420037030020004188026a420037030020004198026a4200370300200041a0026a4200370300200041a8026a4200370300200042013703f0012000420237039002200041013a00c801200042023703a801200041b0026a103c200041f0016a200041b0026a200320021013027f20002903a8014202520440200042013703a801200041b0016a0c010b200042013703a801200041b0016a0b2201200337030020012002370308200041c0016a220141003a0000200041f0006a2002370300200041da006a200041c8026a290300370100200041d2006a200041c0026a290300370100200041ca006a200041b8026a290300370100200041c2006a20002903b00237010020002003370368200041013a0041200041003a0020200041206a1042200041206a200041a8016a418801100a1a20014200370300200041b8016a4200370300200041b0016a4200370300200042003703a801200041206a200041a8016a1017200041d0026a24000f0b200041043a00a801200041a8016a102f000b200020013a00b002200041bc016a4101360200200042013702ac012000418887043602a801200041053602242000200041206a3602b8012000200041b0026a360220200041a8016a41d08604101c000b3301017f230041106b220124002001200028020436020c20002802002001410c6a10052000200128020c103d200141106a24000bb81d02067f077e23004190056b2200240002400240103e41ff01712201410546044020004180800136026c200041a6c204360268200041e8006a1044200020002903683703b001200041b0016a103222064201832207a70d01200642807e8342002007501b22074280feffffff1f832206422088a721032006421888a721022006421088a7210402400240024002400240024002402007a741087641ff017122014182016b0e020105000b024020014192016b0e020402000b200141f400460d02200141fa01470d0741062101200441ff0171419801470d08200241ff01714133470d08200341a301470d08200041a0036a200041b0016a102820002903a0034201510d07200041ae026a200041c0036a2903002206370100200041a6026a200041b8036a2903002207370100200041de046a200041b0036a2903002208370100200041e6046a2007370100200041ee046a2006370100200041f6016a2008370000200041fe016a200737000020004186026a2006370000200020002903a80322063701d604200020063700ee01200041d0036a2903002107200041c8036a2903002106200041c0016a200041e8016a4126100a1a410321020c050b41062101200441ff017141c400470d07200241ff017141a101470d0741002102200341ad01460d040c070b41062101200441ff0171413a470d06200241ff017141e301470d06200341c801470d06200041a0036a200041b0016a10294101210220002d00a0034101460d05200041c8016a200041aa036a290100370300200041d0016a200041b2036a290100370300200041d7016a200041b9036a290000370000200020002901a2033703c00120002d00a10321050c030b41062101200441ff017141a201470d05200241ff017141fa00470d05200341c801470d05200041d0046a200041b0016a102920002d00d0044101460d0420004190026a200041b0016a102920002d0090024101460d04200041c2036a200028009402360000200041d0006a200041b0026a2d00003a0000200041a8036a200041da046a290100370300200041b0036a200041e2046a290100370300200041b7036a200041e9046a29000037000020002000280091023600bf03200020002901d2043703a0032000200041a8026a290300370348200041a0026a290300210720004198026a290300210620002d00d1042105200041c0016a200041a0036a4126100a1a410221020c020b41062101200441ff0171412e470d04200241ff01714129470d042003411f470d04200041a0036a200041b0016a102820002903a0034201510d03200041ae026a200041c0036a2903002206370100200041a6026a200041b8036a2903002207370100200041de046a200041b0036a2903002208370100200041e6046a2007370100200041ee046a2006370100200041f6016a2008370000200041fe016a200737000020004186026a2006370000200020002903a80322063701d604200020063700ee01200041d0036a2903002107200041c8036a2903002106200041c0016a200041e8016a4126100a1a410421020c010b41062101200441ff0171419f01470d03200241ff01714102470d03200341e300470d03200041c0016a200041b0016a102920002d00c0014101460d02200041e8016a200041b0016a102920002d00e8014101460d02200041306a200041b0016a102a2000290330a70d02200041406b29030021082000290338210a200041c8046a2201200041d9016a290000370300200041c0046a2205200041d1016a290000370300200041b8046a2202200041c9016a290000370300200041d0006a20004181026a2d00003a0000200020002900c1013703b0042000200041f9016a290000370348200020004182026a2801003602b801200020004185026a2800003600bb01200041f1016a290000210720002900e9012106200041b6036a200529030022093701002000419e026a2002290300220b370100200041a6026a2009370100200041ae026a2001290300220c370100200041ee046a200c370000200041e6046a2009370000200041de046a200b370000200020002903b004220937019602200020093700d604200041c0016a200041d0046a4126100a1a410521020b20004188016a200041c0016a4126100a1a20004180016a200041d0006a2d00003a000020002000290348370378200020002802b801360270200020002800bb01360073200221010c020b200020013a00a003200041a0036a102f000b410621010b20002001410646047f410305200041c0016a20004188016a4126100a1a200041e4006a2000280073360000200041e0006a220220004180016a2d00003a000020002000280270360061200041d0006a200229030037030020002000290378220937035820002009370348200041e8016a200041c0016a4126100a1a02400240024002400240024002400240024002400240200141016b0e050403020100050b200041a0036a41800210404101210120002d00a0034101460d09200041a0036a20004196026a200041a8036a418801100a418801100a1a200041a0016a20004186026a29000037030020004198016a200041fe016a29000037030020004190016a200041f6016a290000370300200020002900ee0137038801200041e8046a200041d0006a290300370300200020073703d804200020063703d004200020002903483703e00420004190026a103c200041206a200041a0036a20004188016a20004190026a10460240024020002903202207200a542202200041286a290300220620085420062008511b0d00200041a0036a20004188016a200041d0046a200a2008104741ff017122014102470d002007200a7d220a200756200620087d2002ad7d220720065620062007511b0d0120004188046a20004188016a20004190026a200a20071015410221010b2001410246200041a0036a2001103f000b41808004412141bc8704100c000b200041a0036a418002104020002d00a0034101460d08200041a0036a20004196026a200041a8036a418801100a418801100a1a200041c8046a220120004186026a290000370300200041c0046a2202200041fe016a290000370300200041b8046a2203200041f6016a290000370300200020002900ee013703b00420004188016a103c20004188046a20004188016a200041b0046a200620071015200041e8046a200041a0016a290300370300200041e0046a20004198016a290300370300200041d8046a20004190016a290300370300200041f8046a200329030037030020004180056a200229030037030020004188056a200129030037030020002000290388013703d004200020002903b0043703f00420004198026a200041d0046a41c000100a1a200041e0026a2007370300200041d8026a2006370300200042013703900220004190026a10344101200041a0036a4102103f000b200041a0036a418002104020002d00a0034101460d07200041a0036a20004196026a200041a8036a418801100a418801100a1a200041e8046a20004186026a290000370300200041e0046a200041fe016a290000370300200041d8046a200041f6016a290000370300200020002900ee013703d00420004190026a103c200041a0036a20004190026a200041d0046a20062007104741ff01712201410246200041a0036a2001103f000b200041a0036a4100104020002d00a0034101470d020c060b200041a0036a4100104020002d00a0034101460d05200041a0036a20004196026a200041a8036a418801100a418801100a1a20004199026a200041c8016a290100370000200041a1026a200041d0016a290100370000200041a8026a200041d7016a290000370000200020053a009002200020002901c001370091022000200041a0036a20004190026a10482000200041086a2903003703d804200020002903003703d004200041d0046a1038000b200041a0036a4100104020002d00a0034101460d0420004190016a200041d1036a29000037030020004198016a200041d9036a290000370300200041a0016a200041e1036a2900003703002000200041c9036a290000370388010240200041a8036a29030022064202520440200041b8036a2903002107200041b0036a29030021080c010b200041c8036a2d00004101470d04200041e8046a2201200041a0016a290300370300200041e0046a220220004198016a290300370300200041d8046a220320004190016a29030037030020002000290388013703d00420004180800136029402200041a6c20436029002024002400240200041d0046a20004190026a103a0e0402000001000b200041b4036a410036020020004184be043602b003200042013702a403200041e0be043602a003200041a0036a41bcbf04101c000b420021060c010b200041c0036a2001290300370300200041b8036a2002290300370300200041b0036a2003290300370300200020002903d0043703a803200042013703a00320004190026a200041a8036a101920002d0090024101460d0220004198026a290300500d03200041a8026a2903002107200041a0026a2903002108420121060b20064201520d03200020083703a003200020073703a803200041a0036a1038000b200041a0036a20004196026a200041a8036a418801100a418801100a1a20004190026a200041c0016a4126100a1a20004191016a200041c8016a29010037000020004199016a200041d0016a290100370000200041a0016a200041d7016a290000370000200020053a008801200020002901c00137008901200041df046a2007370000200041ef046a200041d0006a2d00003a0000200020063700d7042000200041b2026a2800003600d304200020002800af023602d004200020002903483700e704200041106a200041a0036a20004188016a200041d0046a10462000200041186a2903003703b804200020002903103703b004200041b0046a1038000b200020002d0091023a00b004419c81044127200041b0046a419c8404419082041049000b41a08204411741b88204104a000b41a18004411e418c8104104a000b20002d00a1030b3a00d004200041b4036a4101360200200042013702a403200041b487043602a0032000410536029402200020004190026a3602b0032000200041d0046a36029002200041a0036a41d08604101c000b6902017f017e230041406a220424002004200336021c20042002360218200441206a200141e8006a200441186a100e2004200441206a1018200429030821052000200441106a2903004200200428020022011b37030820002005420020011b370300200441406b24000bde0202037f037e23004180016b22052400200541186a2000200110480240200529031822092003542207200541206a290300220820045420042008511b450440200041c8006a22062001200920037d200820047d2007ad7d1013200541086a2000200210482005290308220820037c220a20085422002000ad200541106a290300220820047c7c220920085420082009511b0d0120062002200a20091013200541f8006a2004370300200541c1006a200141186a290000370000200541396a200141106a290000370000200541316a200141086a290000370000200541ca006a2002290000370100200541d2006a200241086a290000370100200541da006a200241106a290000370100200541e2006a200241186a29000037010020052003370370200541013a0049200541013a002820052001290000370029200541286a1042410221060b20054180016a240020060f0b41808404411c41cc8704100c000b6202017f017e230041406a220324002003200236021c200341206a200141c8006a2003411c6a10122003200341206a1018200329030821042000200341106a2903004200200328020022011b37030820002004420020011b370300200341406b24000b7c01017f230041406a220524002005200136020c2005200036020820052003360214200520023602102005412c6a41023602002005413c6a41073602002005420237021c200541b4be04360218200541063602342005200541306a3602282005200541106a3602382005200541086a360230200541186a2004101c000b6001017f230041106b220324002003200136020c20032000360208230041206b22002400200041146a410136020020004201370204200041d4bb043602002000410636021c2000200341086a3602182000200041186a36021020002002101c000b5501017f230041206b2202240020022000360204200241186a200141106a290200370300200241106a200141086a29020037030020022001290200370308200241046a41dc8704200241086a104c200241206a24000bfc0301057f230041406a22032400200341346a2001360200200341033a00382003428080808080043703182003200036023041002101200341003602282003410036022002400240024020022802082200450440200241146a28020041ffffffff0171220641016a210520022802102104410021000340200541016b2205450d02200228020020006a220141046a28020022070440200328023020012802002007200328023428020c1100000d040b200020046a2101200041086a21002001280200200341186a200141046a280200110100450d000b0c020b2002410c6a28020022064105742105200641ffffff3f71210603402005450d01200228020020016a220441046a28020022070440200328023020042802002007200328023428020c1100000d030b200320002d001c3a003820032000290204422089370318200341106a20022802102204200041146a106620032003290310370320200341086a20042000410c6a106620032003290308370328200141086a2101200541206b210520002802002107200041206a2100200420074103746a2204280200200341186a2004280204110100450d000b0c010b4100210020062002280204492201450d012003280230200228020020064103746a410020011b22012802002001280204200328023428020c110000450d010b410121000b200341406b240020000b0f00200028020020012002104e41000b3f01017f2000200210502000280208220320002802006a20012002100a1a2003200220036a22014b044041808804411c41a48c04100c000b200020013602080bb90201027f230041106b22022400024002400240200028020022002002410c6a027f02400240200141ff004d0440200028020822032000280204460d010c040b2002410036020c2001418010490d0120014180800449044020022001413f71418001723a000e20022001410c7641e001723a000c20022001410676413f71418001723a000d41030c030b20022001413f71418001723a000f2002200141127641f001723a000c20022001410676413f71418001723a000e20022001410c76413f71418001723a000d41040c020b200041011050200028020821030c020b20022001413f71418001723a000d2002200141067641c001723a000c41020b104e0c010b200028020020036a20013a0000200341016a22012003490d01200020013602080b200241106a240041000f0b41808804411c41948c04100c000bbe0301077f230041106b22052400024002400240200120002802042207200028020822026b4b0440200120026a22012002490d03200720076a22032007490d022000280200410020071b210841002102230041106b220624002005027f2003200120012003491b22014108200141084b1b220141004e0440027f0240200804402007450440200641086a2001105320062802082104200628020c0c030b2001419cc204280200220320016a22022003490d021a41a0c2042802002002490440200141ffff036a220441107640002202417f46200241ffff0371200247720d022002411074220320044180807c716a22022003490d024100210441a0c20420023602002001200120036a22022003490d031a0b419cc204200236020020012003450d021a200320082007100a210420010c020b2006200110532006280200210420062802040c010b4100210420010b2102200404402005200436020441000c020b20052001360204410121020b41010b360200200541086a2002360200200641106a240020052802004101460d01200020052902043702000b200541106a24000f0b200541086a280200450d01000b41a08904412141c48904100c000b1052000b4a01017f230041206b220224002000280200200241186a200141106a290200370300200241106a200141086a29020037030020022001290200370308200241086a104b200241206a24000b0f0041d48904411141e88904100c000ba90101027f027f41012001450d001a4100419cc204280200220220016a22032002490d001a024041a0c2042802002003490440200141ffff036a22032001490d01200341107640002202417f46200241ffff0371200247720d012002411074220220034180807c716a22032002490d0141a0c20420033602004100200120026a22032002490d021a0b419cc204200336020020020c010b41000b210320002001360204200020033602000b0e0020002802001a03400c000b000bb20302047f027e027f2000350200210620012104230041306b22032400412721000240024020064290ce00540440200621070c010b412721010240034020064290ce00802107200141046b220020014e0d01200341096a20006a200620074290ce007e7da7220141ffff037141e4006e220241017441f492046a2f00003b00002000200041026a22054c0440200341096a20056a2001200241e4006c6b41ffff037141017441f492046a2f00003b0000200642ffc1d72f562000210120072106450d030c010b0b41f08c04411c41b4af04100c000b0c010b02402007a7220241e3004c0440200021010c010b200041026b220120004e0d01200341096a20016a2007a72200200041ffff037141e4006e220241e4006c6b41ffff037141017441f492046a2f00003b00000b02402002410a4e0440200141026b220020014e0d02200341096a20006a200241017441f492046a2f00003b00000c010b200141016b220020014e0d01200341096a20006a200241306a3a00000b412720006b220141274b04400c010b20044184be044100200341096a20006a20011058200341306a24000c010b41c08c04412141b4af04100c000b0b3001017f2002200220016b22044f0440200020043602042000200120036a3602000f0b41c08c04412141bcc004100c000b0d0042a0e5d6f4fad3e0bc897f0b920401077f230041106b22072400418080c400210920042105024020002802002206410171450d002004200441016a22054d0440412b21090c010b41f08c04411c41a89504100c000b0240024002400240200641047145044041002101200521060c010b2001200120026a105920056a22062005490d010b41012105200028020841014704402000200920012002105a0d032000280218200320042000411c6a28020028020c11000021050c030b024002402000410c6a280200220820064b044020002d00004108710d01200820066b220620084b0d022007200020064101105b20072802002206418080c400460d05200728020421082000200920012002105a0d052000280218200320042000411c6a28020028020c1100000d05200620082000105c21050c050b2000200920012002105a0d042000280218200320042000411c6a28020028020c11000021050c040b2000280204210a2000413036020420002d0020210b200041013a00202000200920012002105a0d03200820066b220120084b0d02200741086a200020014101105b20072802082201418080c400460d03200728020c21022000280218200320042000411c6a28020028020c1100000d03200120022000105c0d032000200b3a00202000200a360204410021050c030b41c08c04412141d89504100c000b41f08c04411c41b89504100c000b41c08c04412141c89504100c000b200741106a240020050b4401017f2000200146044041000f0b024003402002200220002c000041bf7f4a6a22024b0d01200041016a22002001470d000b20020f0b41f08c04411c41a4af04100c000b4b000240027f2001418080c4004704404101200028021820012000411c6a2802002802101101000d011a0b20020d0141000b0f0b2000280218200220032000411c6a28020028020c1100000bb20101027f20022105024002400240200320012d0020220320034103461b41ff017141016b0e03010001020b2002200241016a22034d044020034101762105200241017621040c020b41f08c04411c41e89504100c000b41002105200221040b200441016a21022001411c6a2802002103200128020421042001280218210102400340200241016b2202450d01200120042003280210110100450d000b418080c40021040b20002005360204200020043602000b4701027f2002411c6a28020021032002280218210441002102027f0340200120012002460d011a200241016a2102200420002003280210110100450d000b200241016b0b2001490b6b01017f230041306b2203240020032001360204200320003602002003411c6a41023602002003412c6a41043602002003420237020c200341b89004360208200341043602242003200341206a360218200320033602282003200341046a360220200341086a2002101c000b5901017f230041106b220624000240200120024d0440200220044d0d01200220042005105f000b2001200220051060000b200641086a2001200220031056200020062802083602002000200628020c360204200641106a24000b6b01017f230041306b2203240020032001360204200320003602002003411c6a41023602002003412c6a41043602002003420237020c200341a09804360208200341043602242003200341206a3602182003200341046a36022820032003360220200341086a2002101c000b6b01017f230041306b2203240020032001360204200320003602002003411c6a41023602002003412c6a41043602002003420237020c200341d49804360208200341043602242003200341206a3602182003200341046a36022820032003360220200341086a2002101c000b880101047f200141086a28020021022001280204210402400240200141046a10622205418080c400470440200220046b2203200128020420012802086b6a220220034b0d012001280200220320026a22022003490d02200120023602000b20002005360204200020033602000f0b41c08c04412141dc9a04100c000b41f08c04411c41ec9a04100c000bb70101047f200028020022012000280204460440418080c4000f0b2000200141016a36020020012d00002203411874411875417f4c047f2000200141026a36020020012d0001413f7121022003411f712104200341df014d044020044106742002720f0b2000200141036a36020020012d0002413f712002410674722102200341f00149044020022004410c74720f0b2000200141046a3602002004411274418080f0007120012d0003413f71200241067472720520030b0b3f01017f024002402001450d00200120034f044020012003460d010c020b200120026a2c00004140480d010b200221040b20002001360204200020043602000b980301057f230041306b2202240020012802102105200028020421042000280200210302400240024020012802082206410147044020050d012001280218200320042001411c6a28020028020c11000021000c030b2005450d010b200141146a28020020022003360224200241286a200320046a3602002002410036022041016a210002400340200041016b22000440200241186a200241206a1061200228021c418080c400470d010c020b0b200241106a200241206a10612002280214418080c400460d00200241086a2002280210200320041063200228020c2004200228020822001b21042000200320001b21030b20060d002001280218200320042001411c6a28020028020c11000021000c010b2001410c6a28020022002003200320046a105922054d04402001280218200320042001411c6a28020028020c11000021000c010b20022001200020056b4100105b4101210020022802002205418080c400460d00200228020421062001280218200320042001411c6a28020028020c1100000d00200520062001105c21000b200241306a240020000b140020002802002001200028020428020c1101000b5501027f0240027f02400240200228020041016b0e020103000b200241046a0c010b200120022802044103746a22012802044109470d0120012802000b2802002104410121030b20002004360204200020033602000b2c0020024181014f0440200241800141e49204102e000b200041800120026b3602042000200120026a3602000b4901017f230041206b22032400200341186a200241106a290200370300200341106a200241086a2902003703002003200229020037030820002001200341086a104c200341206a24000b6c01027f230041206b2202240041012103024020002001106a0d002002411c6a410036020020024184be043602182002420137020c200241e88d04360208200141186a2802002001411c6a280200200241086a10680d00200041046a2001106a21030b200241206a240020030b850201037f23004190016b22022400027f02402001280200220341107145044020034120710d012000200110550c020b2000280200210041ff0021030340200241106a20036a413041d7002000410f712204410a491b20046a3a0000200341016b21032000410f4b200041047621000d000b200241086a200241106a200341016a1067200141d4bc0441022002280208200228020c10580c010b2000280200210041ff0021030340200241106a20036a413041372000410f712204410a491b20046a3a0000200341016b21032000410f4b200041047621000d000b2002200241106a200341016a1067200141d4bc0441022002280200200228020410580b20024190016a24000ba908010c7f230041e0006b22032400027f024020020440200341d8006a210d2000280204210b2000280200210c2000280208210a0340200a2d00000440200c41c990044104200b28020c1100000d030b2003410a3602582003428a808080103703502003200236024c200341003602482003200236024420032001360240200341386a2001200241002002106c0240024020032802382207450d00200328023c210503400240024002400240024002402003280254220041016b220420004d0440200320046a41d8006a2d00002108200541084f0440200741036a417c7120076b2200450440410021040c030b200341306a410020052000200020054b1b22042007200541ec9604105e20032802342206450d0220032802302109410021000340200020096a2d00002008460d04200041016a22002006470d000b0c020b2005450d08410021000340200020076a2d00002008460d03200041016a22002005470d000b0c080b41c08c04412141f09d04100c000b0240024002402005200541086b22004f0440200020044f0d010c020b41c08c04412141fc9604100c000b200841818284086c210902400340200441046a22062004490d01200420076a280200200973220e417f73200e41818284086b71200620076a2802002009732206417f73200641818284086b7172418081828478710d022004200441086a22064d04402000200622044f0d010c040b0b41f08c04411c419c9704100c000b41f08c04411c418c9704100c000b200421060b20052006490d01200341286a2006200520071056200328022c2204450d06200328022821054100210003402008200020056a2d00004704402004200041016a2200470d010c080b0b200020066a220020064f0d0041f08c04411c41bc9704100c000b2000200041016a22044b0d012004200328024822046a22002004490d0220032000360248200020032802542204490d03200341206a20032802402003280244200020046b22052000106c20032802202200450d0320032802242104200341186a41002003280254200d410441a09e04105e2004200328021c470d03027f20032802182106034041002004450d011a200441016b210420062d0000210720002d00002108200041016a2100200641016a210620072008460d000b200820076b0b0d03200a41013a0000200541016a220020054f0d0641f08c04411c41c09104100c000b2006200541ac9704102e000b41f08c04411c41809e04100c000b41f08c04411c41909e04100c000b200341106a200328024020032802442003280248200328024c106c20032802142105200328021022070d000b0b200a41003a0000200221000b200341086a20012002200041d09104106d200c2003280208200328020c200b28020c1100000d02200320002001200241e09104106e20032802002101200328020422020d000b0b41000c010b41010b200341e0006a24000b4c01037f230041106b220524002002200449200320044b72450440200541086a2003200420011056200528020c2107200528020821060b2000200736020420002006360200200541106a24000b4e01027f230041106b22052400200541086a20032001200210632005280208220645044020012002410020032004106f000b200528020c21012000200636020020002001360204200541106a24000b6400024002402001450d00200120034f044020012003460d010c020b200120026a2c00004140480d010b2003200320016b220449044041c08c04412141ec9b04100c000b200020043602042000200120026a3602000f0b20022003200120032004106f000bb20601027f23004180016b220524002005200336021c200520023602182005027f20014181024f0440418002210602400340200020066a2c000041bf7f4a0d01200641016b22060d000b410021060b200541106a20002001200641f09c04106d20052005290310370320200541b09e0436022841050c010b200520013602242005200036022020054184be0436022841000b36022c024002402005200120024f047f200120034f0d0120030520020b360238200541d4006a4103360200200541ec006a4106360200200541e4006a410636020020054203370244200541d89e043602402005410436025c2005200541d8006a3602502005200541286a3602682005200541206a3602602005200541386a3602580c010b200541086a027f02400240200220034d04402002450d010240200120024d044020012002470d010c030b200020026a2c000041bf7f4a0d020b20052002360230200221030c020b200541f4006a4106360200200541ec006a4106360200200541e4006a4104360200200541d4006a410436020020054204370244200541949f043602402005410436025c2005200541d8006a3602502005200541286a3602702005200541206a36026820052005411c6a3602602005200541186a3602580c030b2005200336023041002003450d011a0b03400240200120034d044020012003470d0120010c030b200020036a2c00004140480d0020030c020b200341016b22030d000b41000b2206200020012004106e20052005280208220036025820052000200528020c6a36025c2005200541d8006a10622004107022003602342006027f41012000418001490d001a41022000418010490d001a41034104200041808004491b0b20066a22004d04402005200036023c20052006360238200541d4006a4105360200200541fc006a4106360200200541f4006a4106360200200541ec006a410a360200200541e4006a410b36020020054205370244200541e89f043602402005410436025c2005200541d8006a3602502005200541286a3602782005200541206a3602702005200541386a3602682005200541346a3602602005200541306a3602580c010b41f08c04411c2004100c000b200541406b2004101c000b1a002000418080c40046044041908f04412b2001100c000b20000b920a02097f017e4101210602402001280218220741272001411c6a28020028021022081101000d0041f4002103410221010240027f02400240027f0240024002402000280200220241096b0e050704010105000b2002412746200241dc0046720d010b2002410b7421034100210141202100412021040240027e024002400240024002400240024002400240024002400340200120004101766a22002001490d0302402003200041027441c4af046a280200410b7422054d044020032005460d03200021040c010b200041016a22012000490d050b2004200420016b22004f044020012004490d010c030b0b41c08c04412141849904100c000b200041016a21010b2001411f4b0d022001410274220341c4af046a280200411576210002402001411f470440200341c8af046a280200411576220320006b220420034d0d0141c08c04412141ccad04100c000b41c30520006b220441c4054f0d040b4100210320022001200141016b22054f047f200541204f0d05200541027441c4af046a28020041ffffff00710541000b6b220a20024b0d05200441016b220320044b0d06200020046a41016b210402402003450d00200041c305200041c3054b1b210941002101034020002009460d09024020012001200041c4b0046a2d00006a22054d04402005200a4d0d01200021040c030b41f08c04411c418cae04100c000b200041016a210020052101200341016b22030d000b0b20044101710d08024002402002418080044f04402002418080084f0d01200241e7a604412a41bba70441c00141fba80441b60310720d0d0c020b200241c8a10441284198a20441a00241b8a40441af021072450d010c0c0b200241e0ffff007141e0cd0a46200241b9ee0a6b41074972200241feffff0071419ef00a46200241a29d0b6b410e497272200241e1d70b6b419f18492002419ef40b6b41e20b4972200241cba60c6b41b5db2b4972720d00200241f08338490d0b0b200241017267410276410773ad4280808080d000840c090b41f08c04411c41e49804100c000b41f08c04411c41f49804100c000b2001412041acad04105d000b41c08c04412141bcad04100c000b20054120419cae04105d000b41c08c04412141dcad04100c000b41c08c04412141ecad04100c000b200941c30541fcad04105d000b200241017267410276410773ad4280808080d000840b210b41032101200221030c060b41010c010b41020b2101200221030c030b41ee000c010b41f2000b21030b0240034002402001210241002101200321000240024002400240200241016b0e03030200010b02400240024002400240200b422088a741ff017141016b0e050004010203050b200b42ffffffff8f6083210b41fd002100410321010c060b200b42ffffffff8f608342808080802084210b41fb002100410321010c050b200b42ffffffff8f608342808080803084210b41f5002100410321010c040b200b42ffffffff8f60834280808080c00084210b41dc002100410321010c030b200ba7220141ffffffff03712001470d032001410274220041204f0d0520032000411c7176410f712200413072200041d7006a2000410a491b41808f04107021002001450440200b42ffffffff8f608342808080801084210b410321010c030b200b42017d42ffffffff0f83200b4280808080708384210b410321010c020b20074127200811010021060c050b41dc002100410121010b200720002008110100450d010c030b0b41908d04412141e08e04100c000b41c08d04412441f08e04100c000b20060b970301087f230041106b220a240041012107024002402002450d00200120024101746a210b20004180fe0371410876210c200141026a210820012d00012102200041ff0171210e03402002210d0240200c20012d000022014704402008200b462001200c4b720d030c010b200a41086a2009200d200320044198a104105e200a2802082102200a28020c2101024003402001450d01200141016b210120022d0000200241016a2102200e470d000b410021070c040b2008200b460d020b20082d000121022008220141026a2108200d2209200220096a22024d0d000b41f08c04411c4188a104100c000b2006450d00200520066a2103200041ffff03712102024003400240200541016a2100027f200020052d00002201411874411875220441004e0d001a20002003460d0120052d0001200441ff0071410874722101200541026a0b2105200141004a2002200220016b22024a730d0220024100480d032007410173210720032005470d010c030b0b41908f04412b41a8a104100c000b41c08c04412141b8a104100c000b200a41106a240020074101710b7e01037f23004190016b2202240020002d0000210341ff0021000340200241106a20006a413041372003410f712204410a491b20046a3a0000200041016b21002003220441047621032004410f4b0d000b200241086a200241106a200041016a1067200141d4bc0441022002280208200228020c105820024190016a24000b5b01027f230041206b220224002001411c6a28020021032001280218200241186a2000280200220041106a290200370300200241106a200041086a290200370300200220002902003703082003200241086a104c200241206a24000b0b002000280200200110640b1b00200128021841e4c10441052001411c6a28020028020c1100000bfe0201037f230041406a2202240020002802002103410121000240200141186a280200220441e48f04410c2001411c6a280200220128020c1100000d0002402003280208220004402002200036020c410121002002413c6a41013602002002420237022c200241f48f043602282002410c3602142002200241106a36023820022002410c6a36021020042001200241286a1068450d010c020b20032802002200200328020428020c11080042f4f99ee6eea3aaf9fe00520d002002200036020c410121002002413c6a41013602002002420237022c200241f48f043602282002410d3602142002200241106a36023820022002410c6a36021020042001200241286a10680d010b200328020c2100200241246a41033602002002413c6a410e360200200241346a410e36020020024203370214200241bc8f0436021020022000410c6a3602382002200041086a3602302002410636022c200220003602282002200241286a36022020042001200241106a106821000b200241406b240020000b5901017f230041106b220624000240200120024d0440200220044d0d01200220042005105f000b2001200220051060000b200641086a2001200220031079200020062802083602002000200628020c360204200641106a24000b3001017f2002200220016b22044f0440200020043602042000200120036a3602000f0b41a0b60441214188b604100c000b3001017f2002200220016b22044f0440200020043602042000200120036a3602000f0b41d0c004412141bcc004100c000b0be8410c00418080040bf107617474656d707420746f2073756274726163742077697468206f766572666c6f77656e636f756e746572656420656d7074792073746f726167652063656c6c2f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f73746f726167652f7372632f6c617a792f6d6f642e727300003f0001004b0000009d00000019000000636f756c64206e6f742070726f7065726c79206465636f64652073746f7261676520656e7472792f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f73746f726167652f7372632f7472616974732f6d6f642e7273c30001004d000000a80000000a00000073746f7261676520656e7472792077617320656d70747900c30001004d000000a90000000a0000006661696c656420746f2070756c6c207061636b65642066726f6d20726f6f74206b6579204801010024000000301f0100020000002f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f73746f726167652f7372632f7472616974732f6f7074737065632e72730000007c010100510000006b0000000d000000681f0100540000009900000030000000681f0100540000009e0000002e000000617474656d707420746f206164642077697468206f766572666c6f770f000000010000000100000001000000241c010055000000b500000037000000241c010055000000b80000000900000045726332303a3a5472616e7366657200041f0100000000004c02010045726332303a3a5472616e736665723a3a66726f6d45726332303a3a5472616e736665723a3a746f45726332303a3a5472616e736665723a3a76616c756545726332303a3a417070726f76616c000000041f010000000000a602010045726332303a3a417070726f76616c3a3a6f776e657245726332303a3a417070726f76616c3a3a7370656e64657245726332303a3a417070726f76616c3a3a76616c75652f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6578616d706c65732f74726169742d65726332302f6c69622e727308030100480000003f000000050000006469737061746368696e6720696e6b2120636f6e7374727563746f72206661696c65643a2000000060030100250000006469737061746368696e6720696e6b21206d657373616765206661696c65643a2000000090030100210000000803010048000000cc0000002c0000000803010048000000020100002700000010000000040000000400000011000000120000001300418088040bb104617474656d707420746f206164642077697468206f766572666c6f77140000000000000001000000150000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f616c6c6f632f7372632f7261775f7665632e727300000000000000617474656d707420746f206d756c7469706c792077697468206f766572666c6f770000002c0401006d000000830100001c0000006361706163697479206f766572666c6f770000002c0401006d000000fd010000050000006120666f726d617474696e6720747261697420696d706c656d656e746174696f6e2072657475726e656420616e206572726f722f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f616c6c6f632f7372632f666d742e72732b05010069000000550200001c0000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f616c6c6f632f7372632f7665632f6d6f642e7273000000a40501006d000000c60600000d000000a40501006d00000002070000090041c08c040b21617474656d707420746f2073756274726163742077697468206f766572666c6f770041f08c040b41617474656d707420746f206164642077697468206f766572666c6f7700000000617474656d707420746f206d756c7469706c792077697468206f766572666c6f770041c08d040bd528617474656d707420746f2073686966742072696768742077697468206f766572666c6f772e2e0000e4060100020000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f636861722f6d6f642e7273000000f00601006d000000a200000035000000f00601006d000000a200000021000000f00601006d000000a30000003300000063616c6c656420604f7074696f6e3a3a756e77726170282960206f6e206120604e6f6e65602076616c75653a041f010000000000bb07010001000000bb070100010000001600000000000000010000001700000070616e69636b65642061742027272c20f007010001000000f107010003000000696e646578206f7574206f6620626f756e64733a20746865206c656e20697320206275742074686520696e6465782069732000000408010020000000240801001200000060202020202f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f666d742f6275696c646572732e727300004d0801007100000028000000150000004d080100710000002f000000210000004d0801007100000030000000120000002c0a280a28292f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f666d742f6e756d2e72730000f60801006c000000650000001400000030303031303230333034303530363037303830393130313131323133313431353136313731383139323032313232323332343235323632373238323933303331333233333334333533363337333833393430343134323433343434353436343734383439353035313532353335343535353635373538353936303631363236333634363536363637363836393730373137323733373437353736373737383739383038313832383338343835383638373838383939303931393239333934393539363937393839392f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f666d742f6d6f642e72733c0a01006c0000001e0500000d0000003c0a01006c000000220500000d0000003c0a01006c00000045050000310000003c0a01006c0000004e050000310000003c0a01006c000000b2050000380000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f736c6963652f6d656d6368722e7273000000f80a010071000000420000001e000000f80a0100710000004900000015000000f80a0100710000004e0000001f000000f80a0100710000005700000009000000f80a0100710000005b00000005000000f80a0100710000005b0000003d00000072616e676520737461727420696e64657820206f7574206f662072616e676520666f7220736c696365206f66206c656e67746820cc0b010012000000de0b01002200000072616e676520656e6420696e64657820100c010010000000de0b010022000000736c69636520696e64657820737461727473206174202062757420656e64732061742000300c010016000000460c01000d0000008f1b01006e000000c6080000170000008f1b01006e000000d1080000180000008f1b01006e000000da08000014000000736f7572636520736c696365206c656e67746820282920646f6573206e6f74206d617463682064657374696e6174696f6e20736c696365206c656e6774682028940c010015000000a90c01002b000000f5080100010000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f7374722f697465722e7273000000ec0c01006d0000009200000026000000ec0c01006d00000092000000110000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f7374722f7472616974732e7273007c0d01006f0000005c010000130000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f7374722f76616c69646174696f6e732e7273fc0d0100740000001d010000110000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f7374722f7061747465726e2e7273800e010070000000a001000047000000800e010070000000b301000020000000800e010070000000b301000011000000800e010070000000b7010000260000005b2e2e2e5d6279746520696e64657820206973206f7574206f6620626f756e6473206f6620600000350f01000b000000400f0100160000004808010001000000626567696e203c3d20656e642028203c3d2029207768656e20736c6963696e6720600000700f01000e0000007e0f010004000000820f0100100000004808010001000000206973206e6f742061206368617220626f756e646172793b20697420697320696e7369646520202862797465732029206f662060350f01000b000000b40f010026000000da0f010008000000e20f01000600000048080100010000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f756e69636f64652f7072696e7461626c652e727300001010010076000000080000001800000010100100760000000a0000001c00000010100100760000001a0000003600000010100100760000001e0000000900000000010305050606020706080709110a1c0b190c1a0d100e0d0f0410031212130916011704180119031a071b011c021f1620032b032d0b2e01300331023201a702a902aa04ab08fa02fb05fd02fe03ff09ad78798b8da23057588b8c901cdd0e0f4b4cfbfc2e2f3f5c5d5fe2848d8e9192a9b1babbc5c6c9cadee4e5ff00041112293134373a3b3d494a5d848e92a9b1b4babbc6cacecfe4e500040d0e11122931343a3b4546494a5e646584919b9dc9cecf0d11293a3b4549575b5c5e5f64658d91a9b4babbc5c9dfe4e5f00d11454964658084b2bcbebfd5d7f0f183858ba4a6bebfc5c7cecfdadb4898bdcdc6cecf494e4f57595e5f898e8fb1b6b7bfc1c6c7d71116175b5cf6f7feff806d71dedf0e1f6e6f1c1d5f7d7eaeaf7fbbbc16171e1f46474e4f585a5c5e7e7fb5c5d4d5dcf0f1f572738f747596262e2fa7afb7bfc7cfd7df9a409798308f1fd2d4ceff4e4f5a5b07080f10272feeef6e6f373d3f42459091536775c8c9d0d1d8d9e7feff00205f2282df048244081b04061181ac0e80ab051f09811b03190801042f043404070301070607110a500f1207550703041c0a090308030703020303030c0405030b06010e15054e071b0757070206160d500443032d03010411060f0c3a041d255f206d046a2580c80582b0031a0682fd03590716091809140c140c6a060a061a0659072b05460a2c040c040103310b2c041a060b0380ac060a062f314d0380a4083c030f033c0738082b0582ff1118082f112d03210f210f808c048297190b158894052f053b07020e180980be22740c80d61a0c0580ff0580df0cf29d033709815c1480b80880cb050a183b030a06380846080c06740b1e035a0459098083181c0a16094c04808a06aba40c170431a10481da26070c050580a61081f50701202a064c04808d0480be031b030f0d000601010301040205070702080809020a050b020e041001110212051311140115021702190d1c051d0824016a046b02af03bc02cf02d102d40cd509d602d702da01e005e102e704e802ee20f004f802fa02fb010c273b3e4e4f8f9e9e9f7b8b9396a2b2ba86b1060709363d3e56f3d0d1041418363756577faaaeafbd35e01287898e9e040d0e11122931343a4546494a4e4f64655cb6b71b1c07080a0b141736393aa8a9d8d909379091a8070a3b3e66698f926f5fbfeeef5a62f4fcff9a9b2e2f2728559da0a1a3a4a7a8adbabcc4060b0c151d3a3f4551a6a7cccda007191a22253e3fe7ecefffc5c604202325262833383a484a4c50535556585a5c5e606365666b73787d7f8aa4aaafb0c0d0aeaf6e6f935e227b0503042d036603012f2e80821d03310f1c0424091e052b0544040e2a80aa06240424042808340b4e43813709160a08183b45390363080930160521031b05014038044b052f040a070907402027040c0936033a051a07040c07504937330d33072e080a8126524e28082a161a261c1417094e042409440d19070a0648082709750b3f412a063b050a0651060105100305808b621e48080a80a65e22450b0a060d133a060a362c041780b93c64530c48090a46451b4808530d498107460a1d03474937030e080a0639070a81361980b7010f320d839b66750b80c48a4c630d842f8fd18247a1b98239072a045c06260a460a28051382b05b654b0439071140050b020e97f80884d62a09a2e781332d03110408818c89046b050d0309071092604709743c80f60a7308701546809a140c570919808781470385420f1584501f80e12b80d52d031a040281401f113a050184e080f7294c040a04028311444c3d80c23c06010455051b3402810e2c04640c560a80ae381d0d2c040907020e06809a83d80510030d03740c59070c04010f0c0438080a062808224e81540c1503050307091d030b05060a0a060808070980cb250a84062f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f756e69636f64652f756e69636f64655f646174612e7273000031160100790000004b0000002800000031160100790000004f0000000900000031160100790000004d00000009000000311601007900000054000000110000003116010079000000560000001100000031160100790000005700000016000000311601007900000058000000090000003116010079000000520000003e0000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f697465722f7472616974732f616363756d2e727300002c170100760000008d00000001000000f60801006c000000cd010000050000000003000083042000910560005d13a0001217201f0c20601fef2ca02b2a30202c6fa6e02c02a8602d1efb602e00fe20369eff6036fd01e136010a2137240de137ab0e61392f18a139301ce147f31e214cf06ae14f4f6f21509dbca15000cf615165d1a15100da215200e0e15330e16155aee2a156d0e8e15620006e57f001ff5700700007002d0101010201020101480b30151001650702060202010423011e1b5b0b3a09090118040109010301052b033c082a180120370101010408040103070a021d013a0101010204080109010a021a010202390104020402020303011e0203010b0239010405010204011402160601013a0101020104080107030a021e013b0101010c01090128010301370101030503010407020b021d013a01020102010301050207020b021c02390201010204080109010a021d0148010401020301010801510102070c08620102090b064a021b0101010101370e01050102050b0124090166040106010202021902040310040d01020206010f01000300031d021e021e02400201070801020b09012d030101750222017603040209010603db0202013a010107010101010208060a0201301f310430070101050128090c0220040202010338010102030101033a0802029803010d0107040106010302c6400001c32100038d016020000669020004010a200250020001030104011902050197021a120d012608190b2e0330010204020227014306020202020c0108012f01330101030202050201012a020801ee010201040100010010101000020001e201950500030102050428030401a50200040002990b31047b01360f290102020a033104020207013d03240501083e010c0234090a0402015f03020101020601a0010308150239020101010116010e070305c308020301011701510102060101020101020102eb010204060201021b025508020101026a0101010206010165030204010500090102f5010a0201010401900402020401200a280602040801090602032e0d010200070106010152160207010201027a060301010201070101480203010101000200053b0700013f0451010002002e0217000101030405080802071e0494030037043208010e011605010f00070111020701020105000700013d0400076d07006080f00000cc1f010070000000e70000004f0041a0b6040b21617474656d707420746f2073756274726163742077697468206f766572666c6f770041d0b6040baf06617474656d707420746f206164642077697468206f766572666c6f77617373657274696f6e206661696c65643a206d6964203c3d2073656c662e6c656e28292f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f736c6963652f6d6f642e72730000008f1b01006e000000e6050000090000000a000000041f010000000000101c0100010000002f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f656e762f7372632f656e67696e652f6f6e5f636861696e2f6275666665722e7273000000241c010055000000580000001c000000241c0100550000005800000009000000241c0100550000005800000031000000241c0100550000006300000009000000241c010055000000810000001a0000002f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f656e762f7372632f656e67696e652f6f6e5f636861696e2f6578742e72730000cc1c010052000000530100001400000045636473615265636f766572794661696c65644c6f6767696e6744697361626c6564556e6b6e6f776e4e6f7443616c6c61626c65436f64654e6f74466f756e645f456e646f776d656e74546f6f4c6f775472616e736665724661696c65645f42656c6f7753756273697374656e63655468726573686f6c644b65794e6f74466f756e6443616c6c6565526576657274656443616c6c6565547261707065644465636f6465041f0100000000007061696420616e20756e70617961626c65206d657373616765636f756c64206e6f74207265616420696e707574756e61626c6520746f206465636f646520696e707574656e636f756e746572656420756e6b6e6f776e2073656c6563746f72756e61626c6520746f206465636f64652073656c6563746f7230780000541e0100020000005f000000601e010001000000041f010000000000041f010000000000041f01004188bd040b0920000000080000000200419cbd040b150200000003000000010000002000000008000000020041bcbd040b150200000003000000020000002000000008000000020041dcbd040b150200000003000000030000002000000008000000020041fcbd040b9d0402000000030000005765206465636f646520604e6020656c656d656e74733b20716564007120010062000000cd020000170000003a200000041f010000000000301f010002000000656e636f756e746572656420756e6578706563746564206572726f72441f01001c0000002f55736572732f677265656e2f45787465726e616c2f346972652e6c6162732f696e6b5f6f726967696e616c2f6372617465732f656e762f7372632f656e67696e652f6f6e5f636861696e2f696d706c732e7273681f01005400000014010000170000002f55736572732f677265656e2f2e7275737475702f746f6f6c636861696e732f6e696768746c792d7838365f36342d6170706c652d64617277696e2f6c69622f727573746c69622f7372632f727573742f6c6962726172792f636f72652f7372632f736c6963652f696e6465782e7273cc1f010070000000e00000004c00000000000000617474656d707420746f2073756274726163742077697468206f766572666c6f772f55736572732f677265656e2f2e636172676f2f72656769737472792f7372632f6769746875622e636f6d2d316563633632393964623965633832332f7061726974792d7363616c652d636f6465632d322e332e312f7372632f636f6465632e72730071200100620000006d0000000e0000004572726f72000000000000000100000002000000030000000400000005000000060000000700000008000000090000000c0000000b" + }, + "contract": { + "name": "trait_erc20", + "version": "3.0.0-rc7", + "authors": [ + "Parity Technologies " + ] + }, + "V3": { + "spec": { + "constructors": [ + { + "args": [ + { + "label": "initial_supply", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + } + ], + "docs": [ + "Creates a new ERC-20 contract with the specified initial supply." + ], + "label": "new", + "payable": false, + "selector": "0x9bae9d5e" + } + ], + "docs": [], + "events": [ + { + "args": [ + { + "docs": [], + "indexed": true, + "label": "from", + "type": { + "displayName": [ + "Option" + ], + "type": 11 + } + }, + { + "docs": [], + "indexed": true, + "label": "to", + "type": { + "displayName": [ + "Option" + ], + "type": 11 + } + }, + { + "docs": [], + "indexed": true, + "label": "value", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + } + ], + "docs": [ + " Event emitted when a token transfer occurs." + ], + "label": "Transfer" + }, + { + "args": [ + { + "docs": [], + "indexed": true, + "label": "owner", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + }, + { + "docs": [], + "indexed": true, + "label": "spender", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + }, + { + "docs": [], + "indexed": true, + "label": "value", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + } + ], + "docs": [ + " Event emitted when an approval occurs that `spender` is allowed to withdraw", + " up to the amount of `value` tokens from `owner`." + ], + "label": "Approval" + } + ], + "messages": [ + { + "args": [], + "docs": [ + " Returns the total token supply." + ], + "label": "BaseErc20::total_supply", + "mutates": false, + "payable": false, + "returnType": { + "displayName": [ + "Balance" + ], + "type": 0 + }, + "selector": "0x8244a1ad" + }, + { + "args": [ + { + "label": "owner", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + } + ], + "docs": [ + " Returns the account balance for the specified `owner`.", + "", + " Returns `0` if the account is non-existent." + ], + "label": "BaseErc20::balance_of", + "mutates": false, + "payable": false, + "returnType": { + "displayName": [ + "Balance" + ], + "type": 0 + }, + "selector": "0x933ae3c8" + }, + { + "args": [ + { + "label": "owner", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + }, + { + "label": "spender", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + } + ], + "docs": [ + " Returns the amount which `spender` is still allowed to withdraw from `owner`.", + "", + " Returns `0` if no allowance has been set." + ], + "label": "BaseErc20::allowance", + "mutates": false, + "payable": false, + "returnType": { + "displayName": [ + "Balance" + ], + "type": 0 + }, + "selector": "0x74a27ac8" + }, + { + "args": [ + { + "label": "to", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + }, + { + "label": "value", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + } + ], + "docs": [ + " Transfers `value` amount of tokens from the caller's account to account `to`.", + "", + " On success a `Transfer` event is emitted.", + "", + " # Errors", + "", + " Returns `InsufficientBalance` error if there are not enough tokens on", + " the caller's account balance." + ], + "label": "BaseErc20::transfer", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "Result" + ], + "type": 8 + }, + "selector": "0xfa9833a3" + }, + { + "args": [ + { + "label": "spender", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + }, + { + "label": "value", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + } + ], + "docs": [ + " Allows `spender` to withdraw from the caller's account multiple times, up to", + " the `value` amount.", + "", + " If this function is called again it overwrites the current allowance with `value`.", + "", + " An `Approval` event is emitted." + ], + "label": "BaseErc20::approve", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "Result" + ], + "type": 8 + }, + "selector": "0x922e291f" + }, + { + "args": [ + { + "label": "from", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + }, + { + "label": "to", + "type": { + "displayName": [ + "AccountId" + ], + "type": 2 + } + }, + { + "label": "value", + "type": { + "displayName": [ + "Balance" + ], + "type": 0 + } + } + ], + "docs": [ + " Transfers `value` tokens on the behalf of `from` to the account `to`.", + "", + " This can be used to allow a contract to transfer tokens on ones behalf and/or", + " to charge fees in sub-currencies, for example.", + "", + " On success a `Transfer` event is emitted.", + "", + " # Errors", + "", + " Returns `InsufficientAllowance` error if there are not enough tokens allowed", + " for the caller to withdraw from `from`.", + "", + " Returns `InsufficientBalance` error if there are not enough tokens on", + " the account balance of `from`." + ], + "label": "BaseErc20::transfer_from", + "mutates": true, + "payable": false, + "returnType": { + "displayName": [ + "Result" + ], + "type": 8 + }, + "selector": "0x839f0263" + } + ] + }, + "storage": { + "struct": { + "fields": [ + { + "layout": { + "cell": { + "key": "0x0000000000000000000000000000000000000000000000000000000000000000", + "ty": 0 + } + }, + "name": "total_supply" + }, + { + "layout": { + "cell": { + "key": "0x0100000000000000000000000000000000000000000000000000000000000000", + "ty": 1 + } + }, + "name": "balances" + }, + { + "layout": { + "cell": { + "key": "0x0200000000000000000000000000000000000000000000000000000000000000", + "ty": 6 + } + }, + "name": "allowances" + } + ] + } + }, + "types": [ + { + "id": 0, + "type": { + "def": { + "primitive": "u128" + } + } + }, + { + "id": 1, + "type": { + "def": { + "composite": { + "fields": [ + { + "name": "offset_key", + "type": 5, + "typeName": "Key" + } + ] + } + }, + "params": [ + { + "name": "K", + "type": 2 + }, + { + "name": "V", + "type": 0 + } + ], + "path": [ + "ink_storage", + "lazy", + "mapping", + "Mapping" + ] + } + }, + { + "id": 2, + "type": { + "def": { + "composite": { + "fields": [ + { + "type": 3, + "typeName": "[u8; 32]" + } + ] + } + }, + "path": [ + "ink_env", + "types", + "AccountId" + ] + } + }, + { + "id": 3, + "type": { + "def": { + "array": { + "len": 32, + "type": 4 + } + } + } + }, + { + "id": 4, + "type": { + "def": { + "primitive": "u8" + } + } + }, + { + "id": 5, + "type": { + "def": { + "composite": { + "fields": [ + { + "type": 3, + "typeName": "[u8; 32]" + } + ] + } + }, + "path": [ + "ink_primitives", + "Key" + ] + } + }, + { + "id": 6, + "type": { + "def": { + "composite": { + "fields": [ + { + "name": "offset_key", + "type": 5, + "typeName": "Key" + } + ] + } + }, + "params": [ + { + "name": "K", + "type": 7 + }, + { + "name": "V", + "type": 0 + } + ], + "path": [ + "ink_storage", + "lazy", + "mapping", + "Mapping" + ] + } + }, + { + "id": 7, + "type": { + "def": { + "tuple": [ + 2, + 2 + ] + } + } + }, + { + "id": 8, + "type": { + "def": { + "variant": { + "variants": [ + { + "fields": [ + { + "type": 9 + } + ], + "index": 0, + "name": "Ok" + }, + { + "fields": [ + { + "type": 10 + } + ], + "index": 1, + "name": "Err" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 9 + }, + { + "name": "E", + "type": 10 + } + ], + "path": [ + "Result" + ] + } + }, + { + "id": 9, + "type": { + "def": { + "tuple": [] + } + } + }, + { + "id": 10, + "type": { + "def": { + "variant": { + "variants": [ + { + "index": 0, + "name": "InsufficientBalance" + }, + { + "index": 1, + "name": "InsufficientAllowance" + } + ] + } + }, + "path": [ + "trait_erc20", + "erc20", + "Error" + ] + } + }, + { + "id": 11, + "type": { + "def": { + "variant": { + "variants": [ + { + "index": 0, + "name": "None" + }, + { + "fields": [ + { + "type": 2 + } + ], + "index": 1, + "name": "Some" + } + ] + } + }, + "params": [ + { + "name": "T", + "type": 2 + } + ], + "path": [ + "Option" + ] + } + } + ] + } +} diff --git a/packages/types-augment/src/registry.ts b/packages/types-augment/src/registry.ts index c80427ec6810..ef4004b26ee9 100644 --- a/packages/types-augment/src/registry.ts +++ b/packages/types-augment/src/registry.ts @@ -18,7 +18,7 @@ import type { StatementKind } from '@polkadot/types/interfaces/claims'; import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective'; import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus'; import type { AliveContractInfo, CodeHash, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultErr, ContractExecResultErrModule, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateReturnValue, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts'; -import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi'; +import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi'; import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan'; import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus'; import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy'; @@ -216,9 +216,11 @@ declare module '@polkadot/types/types/registry' { ContractCallRequest: ContractCallRequest; ContractConstructorSpecLatest: ContractConstructorSpecLatest; ContractConstructorSpecV0: ContractConstructorSpecV0; + ContractConstructorSpecV1: ContractConstructorSpecV1; ContractConstructorSpecV2: ContractConstructorSpecV2; ContractConstructorSpecV3: ContractConstructorSpecV3; ContractContractSpecV0: ContractContractSpecV0; + ContractContractSpecV1: ContractContractSpecV1; ContractContractSpecV2: ContractContractSpecV2; ContractContractSpecV3: ContractContractSpecV3; ContractCryptoHasher: ContractCryptoHasher; @@ -229,6 +231,7 @@ declare module '@polkadot/types/types/registry' { ContractEventParamSpecV2: ContractEventParamSpecV2; ContractEventSpecLatest: ContractEventSpecLatest; ContractEventSpecV0: ContractEventSpecV0; + ContractEventSpecV1: ContractEventSpecV1; ContractEventSpecV2: ContractEventSpecV2; ContractExecResult: ContractExecResult; ContractExecResultErr: ContractExecResultErr; @@ -256,6 +259,7 @@ declare module '@polkadot/types/types/registry' { ContractMessageParamSpecV2: ContractMessageParamSpecV2; ContractMessageSpecLatest: ContractMessageSpecLatest; ContractMessageSpecV0: ContractMessageSpecV0; + ContractMessageSpecV1: ContractMessageSpecV1; ContractMessageSpecV2: ContractMessageSpecV2; ContractMetadata: ContractMetadata; ContractMetadataLatest: ContractMetadataLatest; diff --git a/packages/types/src/interfaces/contractsAbi/definitions.ts b/packages/types/src/interfaces/contractsAbi/definitions.ts index 7bf643ded151..5c90d2304bfd 100644 --- a/packages/types/src/interfaces/contractsAbi/definitions.ts +++ b/packages/types/src/interfaces/contractsAbi/definitions.ts @@ -63,6 +63,12 @@ const spec = { args: 'Vec', docs: 'Vec' }, + ContractConstructorSpecV1: { + name: 'Vec', + selector: 'ContractSelector', + args: 'Vec', + docs: 'Vec' + }, ContractConstructorSpecV2: { label: 'Text', selector: 'ContractSelector', @@ -82,6 +88,12 @@ const spec = { events: 'Vec', docs: 'Vec' }, + ContractContractSpecV1: { + constructors: 'Vec', + messages: 'Vec', + events: 'Vec', + docs: 'Vec' + }, ContractContractSpecV2: { constructors: 'Vec', messages: 'Vec', @@ -112,6 +124,11 @@ const spec = { args: 'Vec', docs: 'Vec' }, + ContractEventSpecV1: { + name: 'Text', + args: 'Vec', + docs: 'Vec' + }, ContractEventSpecV2: { label: 'Text', args: 'Vec', @@ -134,6 +151,15 @@ const spec = { returnType: 'Option', docs: 'Vec' }, + ContractMessageSpecV1: { + name: 'Vec', + selector: 'ContractSelector', + mutates: 'bool', + payable: 'bool', + args: 'Vec', + returnType: 'Option', + docs: 'Vec' + }, ContractMessageSpecV2: { label: 'Text', selector: 'ContractSelector', @@ -157,7 +183,7 @@ const ContractMetadataV0 = { const ContractMetadataV1 = { types: 'Vec', - spec: 'ContractContractSpecV0' + spec: 'ContractContractSpecV1' }; const ContractMetadataV2 = { diff --git a/packages/types/src/interfaces/contractsAbi/types.ts b/packages/types/src/interfaces/contractsAbi/types.ts index a166074d10c6..8d67b05c8c60 100644 --- a/packages/types/src/interfaces/contractsAbi/types.ts +++ b/packages/types/src/interfaces/contractsAbi/types.ts @@ -17,6 +17,14 @@ export interface ContractConstructorSpecV0 extends Struct { readonly docs: Vec; } +/** @name ContractConstructorSpecV1 */ +export interface ContractConstructorSpecV1 extends Struct { + readonly name: Vec; + readonly selector: ContractSelector; + readonly args: Vec; + readonly docs: Vec; +} + /** @name ContractConstructorSpecV2 */ export interface ContractConstructorSpecV2 extends Struct { readonly label: Text; @@ -42,6 +50,14 @@ export interface ContractContractSpecV0 extends Struct { readonly docs: Vec; } +/** @name ContractContractSpecV1 */ +export interface ContractContractSpecV1 extends Struct { + readonly constructors: Vec; + readonly messages: Vec; + readonly events: Vec; + readonly docs: Vec; +} + /** @name ContractContractSpecV2 */ export interface ContractContractSpecV2 extends Struct { readonly constructors: Vec; @@ -101,6 +117,13 @@ export interface ContractEventSpecV0 extends Struct { readonly docs: Vec; } +/** @name ContractEventSpecV1 */ +export interface ContractEventSpecV1 extends Struct { + readonly name: Text; + readonly args: Vec; + readonly docs: Vec; +} + /** @name ContractEventSpecV2 */ export interface ContractEventSpecV2 extends Struct { readonly label: Text; @@ -185,6 +208,17 @@ export interface ContractMessageSpecV0 extends Struct { readonly docs: Vec; } +/** @name ContractMessageSpecV1 */ +export interface ContractMessageSpecV1 extends Struct { + readonly name: Vec; + readonly selector: ContractSelector; + readonly mutates: bool; + readonly payable: bool; + readonly args: Vec; + readonly returnType: Option; + readonly docs: Vec; +} + /** @name ContractMessageSpecV2 */ export interface ContractMessageSpecV2 extends Struct { readonly label: Text; @@ -221,7 +255,7 @@ export interface ContractMetadataV0 extends Struct { /** @name ContractMetadataV1 */ export interface ContractMetadataV1 extends Struct { readonly types: Vec; - readonly spec: ContractContractSpecV0; + readonly spec: ContractContractSpecV1; } /** @name ContractMetadataV2 */