@etherisc/gif-next 0.0.2-b4a6c3e-033 → 0.0.2-b4fc06b-491
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +268 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → components/BaseComponent.sol/BaseComponent.json} +162 -147
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +610 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +125 -113
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/policy/IPolicy.sol/IPolicyModule.json → components/IPoolComponent.sol/IPoolComponent.json} +124 -129
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +523 -77
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +505 -97
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +114 -0
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +244 -1372
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2740 -949
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +930 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1283 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +755 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +432 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +481 -0
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +563 -24
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +872 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +705 -50
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1261 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +508 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/{components/Component.sol/Component.json → shared/IRegisterable.sol/IRegisterable.json} +98 -102
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/BaseComponent.sol +86 -0
- package/contracts/components/Distribution.sol +166 -0
- package/contracts/components/IBaseComponent.sol +24 -0
- package/contracts/components/IDistributionComponent.sol +43 -0
- package/contracts/components/IPoolComponent.sol +62 -0
- package/contracts/components/IProductComponent.sol +35 -0
- package/contracts/components/Pool.sol +232 -25
- package/contracts/components/Product.sol +254 -46
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/instance/AccessManagedSimple.sol +122 -0
- package/contracts/instance/AccessManagerSimple.sol +692 -0
- package/contracts/instance/IAccessManagerSimple.sol +391 -0
- package/contracts/instance/IInstance.sol +24 -21
- package/contracts/instance/IInstanceService.sol +30 -0
- package/contracts/instance/Instance.sol +422 -52
- package/contracts/instance/InstanceAccessManager.sol +288 -0
- package/contracts/instance/InstanceReader.sol +290 -0
- package/contracts/instance/InstanceService.sol +138 -0
- package/contracts/instance/InstanceServiceManager.sol +56 -0
- package/contracts/instance/base/ComponentServiceBase.sol +49 -0
- package/contracts/instance/base/IInstanceBase.sol +23 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +172 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/module/IAccess.sol +38 -0
- package/contracts/instance/module/IBundle.sol +19 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +43 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ComponentOwnerService.sol +317 -0
- package/contracts/instance/service/IComponentOwnerService.sol +20 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPoolService.sol +37 -0
- package/contracts/instance/service/IProductService.sol +107 -0
- package/contracts/registry/ChainNft.sol +129 -62
- package/contracts/registry/IRegistry.sol +68 -45
- package/contracts/registry/IRegistryService.sol +35 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +411 -125
- package/contracts/registry/RegistryService.sol +444 -0
- package/contracts/registry/RegistryServiceManager.sol +64 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +21 -0
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +17 -0
- package/contracts/shared/IService.sol +15 -0
- package/contracts/shared/IVersionable.sol +96 -0
- package/contracts/shared/NftOwnable.sol +136 -0
- package/contracts/shared/ProxyManager.sol +94 -0
- package/contracts/shared/Registerable.sol +89 -0
- package/contracts/shared/RegisterableUpgradable.sol +16 -0
- package/contracts/shared/Service.sol +54 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +147 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +24 -0
- package/contracts/test/TestToken.sol +26 -0
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/test/Usdc.sol +26 -0
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +44 -20
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +22 -1
- package/contracts/types/NftIdSet.sol +60 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +60 -15
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +82 -0
- package/contracts/types/StateId.sol +14 -4
- package/contracts/types/Timestamp.sol +29 -4
- package/contracts/types/UFixed.sol +150 -31
- package/contracts/types/Version.sol +107 -0
- package/package.json +14 -5
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/registry/IChainNft.sol +0 -21
@@ -7,18 +7,18 @@
|
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
9
|
"internalType": "address",
|
10
|
-
"name": "
|
10
|
+
"name": "accessManagerAddress",
|
11
11
|
"type": "address"
|
12
12
|
},
|
13
13
|
{
|
14
14
|
"internalType": "address",
|
15
|
-
"name": "
|
15
|
+
"name": "registryAddress",
|
16
16
|
"type": "address"
|
17
17
|
},
|
18
18
|
{
|
19
|
-
"internalType": "
|
20
|
-
"name": "
|
21
|
-
"type": "
|
19
|
+
"internalType": "NftId",
|
20
|
+
"name": "registryNftId",
|
21
|
+
"type": "uint96"
|
22
22
|
}
|
23
23
|
],
|
24
24
|
"stateMutability": "nonpayable",
|
@@ -27,551 +27,553 @@
|
|
27
27
|
{
|
28
28
|
"inputs": [
|
29
29
|
{
|
30
|
-
"internalType": "
|
31
|
-
"name": "
|
32
|
-
"type": "
|
33
|
-
}
|
30
|
+
"internalType": "address",
|
31
|
+
"name": "authority",
|
32
|
+
"type": "address"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"name": "AccessManagedInvalidAuthority",
|
36
|
+
"type": "error"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"inputs": [
|
34
40
|
{
|
35
|
-
"internalType": "
|
36
|
-
"name": "
|
37
|
-
"type": "
|
41
|
+
"internalType": "address",
|
42
|
+
"name": "caller",
|
43
|
+
"type": "address"
|
38
44
|
},
|
39
45
|
{
|
40
|
-
"internalType": "
|
41
|
-
"name": "
|
42
|
-
"type": "
|
43
|
-
}
|
46
|
+
"internalType": "uint32",
|
47
|
+
"name": "delay",
|
48
|
+
"type": "uint32"
|
49
|
+
}
|
50
|
+
],
|
51
|
+
"name": "AccessManagedRequiredDelay",
|
52
|
+
"type": "error"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"inputs": [
|
44
56
|
{
|
45
|
-
"internalType": "
|
46
|
-
"name": "
|
47
|
-
"type": "
|
57
|
+
"internalType": "address",
|
58
|
+
"name": "caller",
|
59
|
+
"type": "address"
|
48
60
|
}
|
49
61
|
],
|
50
|
-
"name": "
|
62
|
+
"name": "AccessManagedUnauthorized",
|
51
63
|
"type": "error"
|
52
64
|
},
|
53
65
|
{
|
54
66
|
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "address",
|
69
|
+
"name": "registry",
|
70
|
+
"type": "address"
|
71
|
+
},
|
55
72
|
{
|
56
73
|
"internalType": "NftId",
|
57
74
|
"name": "nftId",
|
58
75
|
"type": "uint96"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"internalType": "ObjectType",
|
62
|
-
"name": "objectType",
|
63
|
-
"type": "uint8"
|
64
76
|
}
|
65
77
|
],
|
66
|
-
"name": "
|
78
|
+
"name": "ErrorAlreadyLinked",
|
67
79
|
"type": "error"
|
68
80
|
},
|
69
81
|
{
|
70
|
-
"anonymous": false,
|
71
82
|
"inputs": [
|
72
83
|
{
|
73
|
-
"indexed": false,
|
74
|
-
"internalType": "bytes32",
|
75
|
-
"name": "role",
|
76
|
-
"type": "bytes32"
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"indexed": false,
|
80
84
|
"internalType": "address",
|
81
|
-
"name": "
|
85
|
+
"name": "contractAddress",
|
82
86
|
"type": "address"
|
83
|
-
}
|
87
|
+
}
|
88
|
+
],
|
89
|
+
"name": "ErrorContractNotRegistered",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [
|
84
94
|
{
|
85
|
-
"
|
86
|
-
"
|
87
|
-
"
|
88
|
-
"type": "bool"
|
95
|
+
"internalType": "RoleId",
|
96
|
+
"name": "roleId",
|
97
|
+
"type": "uint64"
|
89
98
|
}
|
90
99
|
],
|
91
|
-
"name": "
|
92
|
-
"type": "
|
100
|
+
"name": "ErrorGrantNonexstentRole",
|
101
|
+
"type": "error"
|
93
102
|
},
|
94
103
|
{
|
95
|
-
"anonymous": false,
|
96
104
|
"inputs": [
|
97
105
|
{
|
98
|
-
"
|
99
|
-
"
|
100
|
-
"
|
101
|
-
"type": "uint96"
|
106
|
+
"internalType": "ObjectType",
|
107
|
+
"name": "objectType",
|
108
|
+
"type": "uint8"
|
102
109
|
},
|
103
110
|
{
|
104
|
-
"indexed": false,
|
105
111
|
"internalType": "StateId",
|
106
112
|
"name": "fromStateId",
|
107
113
|
"type": "uint8"
|
108
114
|
},
|
109
115
|
{
|
110
|
-
"indexed": false,
|
111
116
|
"internalType": "StateId",
|
112
117
|
"name": "toStateId",
|
113
118
|
"type": "uint8"
|
114
119
|
}
|
115
120
|
],
|
116
|
-
"name": "
|
117
|
-
"type": "
|
121
|
+
"name": "ErrorInvalidStateTransition",
|
122
|
+
"type": "error"
|
118
123
|
},
|
119
124
|
{
|
120
|
-
"anonymous": false,
|
121
125
|
"inputs": [
|
122
126
|
{
|
123
|
-
"indexed": false,
|
124
127
|
"internalType": "NftId",
|
125
128
|
"name": "nftId",
|
126
129
|
"type": "uint96"
|
127
130
|
},
|
128
131
|
{
|
129
|
-
"indexed": false,
|
130
132
|
"internalType": "ObjectType",
|
131
133
|
"name": "objectType",
|
132
134
|
"type": "uint8"
|
133
|
-
},
|
134
|
-
{
|
135
|
-
"indexed": false,
|
136
|
-
"internalType": "StateId",
|
137
|
-
"name": "fromStateId",
|
138
|
-
"type": "uint8"
|
139
|
-
},
|
140
|
-
{
|
141
|
-
"indexed": false,
|
142
|
-
"internalType": "StateId",
|
143
|
-
"name": "toStateId",
|
144
|
-
"type": "uint8"
|
145
135
|
}
|
146
136
|
],
|
147
|
-
"name": "
|
148
|
-
"type": "
|
137
|
+
"name": "ErrorNoLifecycle",
|
138
|
+
"type": "error"
|
149
139
|
},
|
150
140
|
{
|
151
|
-
"anonymous": false,
|
152
141
|
"inputs": [
|
153
142
|
{
|
154
|
-
"indexed": false,
|
155
|
-
"internalType": "uint256",
|
156
|
-
"name": "idx",
|
157
|
-
"type": "uint256"
|
158
|
-
},
|
159
|
-
{
|
160
|
-
"indexed": false,
|
161
143
|
"internalType": "address",
|
162
|
-
"name": "
|
144
|
+
"name": "account",
|
163
145
|
"type": "address"
|
164
|
-
},
|
165
|
-
{
|
166
|
-
"indexed": false,
|
167
|
-
"internalType": "string",
|
168
|
-
"name": "comment",
|
169
|
-
"type": "string"
|
170
146
|
}
|
171
147
|
],
|
172
|
-
"name": "
|
173
|
-
"type": "
|
148
|
+
"name": "ErrorNotOwner",
|
149
|
+
"type": "error"
|
174
150
|
},
|
175
151
|
{
|
176
|
-
"anonymous": false,
|
177
152
|
"inputs": [
|
178
153
|
{
|
179
|
-
"
|
180
|
-
"
|
181
|
-
"
|
182
|
-
"type": "uint96"
|
183
|
-
},
|
184
|
-
{
|
185
|
-
"indexed": false,
|
186
|
-
"internalType": "StateId",
|
187
|
-
"name": "fromStateId",
|
188
|
-
"type": "uint8"
|
189
|
-
},
|
190
|
-
{
|
191
|
-
"indexed": false,
|
192
|
-
"internalType": "StateId",
|
193
|
-
"name": "toStateId",
|
194
|
-
"type": "uint8"
|
154
|
+
"internalType": "address",
|
155
|
+
"name": "registryAddress",
|
156
|
+
"type": "address"
|
195
157
|
}
|
196
158
|
],
|
197
|
-
"name": "
|
198
|
-
"type": "
|
159
|
+
"name": "ErrorNotRegistry",
|
160
|
+
"type": "error"
|
199
161
|
},
|
200
162
|
{
|
201
|
-
"inputs": [
|
202
|
-
"name": "INITIAL_CAPITAL",
|
203
|
-
"outputs": [
|
163
|
+
"inputs": [
|
204
164
|
{
|
205
|
-
"internalType": "
|
206
|
-
"name": "",
|
207
|
-
"type": "
|
165
|
+
"internalType": "address",
|
166
|
+
"name": "registryAddress",
|
167
|
+
"type": "address"
|
208
168
|
}
|
209
169
|
],
|
210
|
-
"
|
211
|
-
"type": "
|
170
|
+
"name": "ErrorRegisterableNotRegistry",
|
171
|
+
"type": "error"
|
212
172
|
},
|
213
173
|
{
|
214
174
|
"inputs": [],
|
215
|
-
"name": "
|
216
|
-
"
|
175
|
+
"name": "ErrorRegistryAddressZero",
|
176
|
+
"type": "error"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"inputs": [
|
217
180
|
{
|
218
|
-
"internalType": "
|
219
|
-
"name": "",
|
220
|
-
"type": "
|
181
|
+
"internalType": "address",
|
182
|
+
"name": "registry",
|
183
|
+
"type": "address"
|
221
184
|
}
|
222
185
|
],
|
223
|
-
"
|
224
|
-
"type": "
|
186
|
+
"name": "ErrorRegistryAlreadyInitialized",
|
187
|
+
"type": "error"
|
225
188
|
},
|
226
189
|
{
|
227
190
|
"inputs": [],
|
228
|
-
"name": "
|
229
|
-
"
|
191
|
+
"name": "ErrorRegistryNotInitialized",
|
192
|
+
"type": "error"
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"inputs": [
|
230
196
|
{
|
231
|
-
"internalType": "
|
232
|
-
"name": "",
|
233
|
-
"type": "
|
197
|
+
"internalType": "RoleId",
|
198
|
+
"name": "roleId",
|
199
|
+
"type": "uint64"
|
234
200
|
}
|
235
201
|
],
|
236
|
-
"
|
237
|
-
"type": "
|
202
|
+
"name": "ErrorRenounceNonexstentRole",
|
203
|
+
"type": "error"
|
238
204
|
},
|
239
205
|
{
|
240
|
-
"inputs": [
|
241
|
-
"name": "ORACLE_OWNER_ROLE",
|
242
|
-
"outputs": [
|
206
|
+
"inputs": [
|
243
207
|
{
|
244
|
-
"internalType": "
|
245
|
-
"name": "
|
246
|
-
"type": "
|
208
|
+
"internalType": "RoleId",
|
209
|
+
"name": "roleId",
|
210
|
+
"type": "uint64"
|
247
211
|
}
|
248
212
|
],
|
249
|
-
"
|
250
|
-
"type": "
|
213
|
+
"name": "ErrorRevokeNonexstentRole",
|
214
|
+
"type": "error"
|
251
215
|
},
|
252
216
|
{
|
253
|
-
"inputs": [
|
254
|
-
"name": "POOL_OWNER",
|
255
|
-
"outputs": [
|
217
|
+
"inputs": [
|
256
218
|
{
|
257
|
-
"internalType": "
|
258
|
-
"name": "",
|
259
|
-
"type": "
|
219
|
+
"internalType": "RoleId",
|
220
|
+
"name": "roleId",
|
221
|
+
"type": "uint64"
|
260
222
|
}
|
261
223
|
],
|
262
|
-
"
|
263
|
-
"type": "
|
224
|
+
"name": "ErrorRoleIdInvalid",
|
225
|
+
"type": "error"
|
264
226
|
},
|
265
227
|
{
|
266
|
-
"inputs": [
|
267
|
-
"name": "POOL_OWNER_ROLE",
|
268
|
-
"outputs": [
|
228
|
+
"inputs": [
|
269
229
|
{
|
270
|
-
"internalType": "
|
271
|
-
"name": "
|
272
|
-
"type": "
|
230
|
+
"internalType": "RoleId",
|
231
|
+
"name": "roleId",
|
232
|
+
"type": "uint64"
|
273
233
|
}
|
274
234
|
],
|
275
|
-
"
|
276
|
-
"type": "
|
235
|
+
"name": "ErrorRoleIdNotActive",
|
236
|
+
"type": "error"
|
277
237
|
},
|
278
238
|
{
|
279
|
-
"inputs": [
|
280
|
-
"name": "PRODUCT_OWNER",
|
281
|
-
"outputs": [
|
239
|
+
"inputs": [
|
282
240
|
{
|
283
|
-
"internalType": "
|
284
|
-
"name": "",
|
285
|
-
"type": "
|
241
|
+
"internalType": "RoleId",
|
242
|
+
"name": "roleId",
|
243
|
+
"type": "uint64"
|
286
244
|
}
|
287
245
|
],
|
288
|
-
"
|
289
|
-
"type": "
|
246
|
+
"name": "ErrorRoleIdTooBig",
|
247
|
+
"type": "error"
|
290
248
|
},
|
291
249
|
{
|
292
|
-
"inputs": [
|
293
|
-
"name": "PRODUCT_OWNER_ROLE",
|
294
|
-
"outputs": [
|
250
|
+
"inputs": [
|
295
251
|
{
|
296
|
-
"internalType": "
|
297
|
-
"name": "
|
298
|
-
"type": "
|
252
|
+
"internalType": "RoleId",
|
253
|
+
"name": "roleId",
|
254
|
+
"type": "uint64"
|
299
255
|
}
|
300
256
|
],
|
301
|
-
"
|
302
|
-
"type": "
|
257
|
+
"name": "ErrorRoleIdTooSmall",
|
258
|
+
"type": "error"
|
303
259
|
},
|
304
260
|
{
|
305
261
|
"inputs": [
|
306
262
|
{
|
307
|
-
"internalType": "
|
308
|
-
"name": "
|
309
|
-
"type": "
|
263
|
+
"internalType": "RoleId",
|
264
|
+
"name": "roleId",
|
265
|
+
"type": "uint64"
|
310
266
|
}
|
311
267
|
],
|
312
|
-
"name": "
|
313
|
-
"
|
314
|
-
"stateMutability": "nonpayable",
|
315
|
-
"type": "function"
|
268
|
+
"name": "ErrorRoleNameEmpty",
|
269
|
+
"type": "error"
|
316
270
|
},
|
317
271
|
{
|
318
272
|
"inputs": [
|
319
273
|
{
|
320
|
-
"internalType": "
|
321
|
-
"name": "
|
322
|
-
"type": "
|
274
|
+
"internalType": "RoleId",
|
275
|
+
"name": "roleId",
|
276
|
+
"type": "uint64"
|
323
277
|
},
|
324
278
|
{
|
325
|
-
"
|
326
|
-
|
327
|
-
|
328
|
-
"name": "fractionalFee",
|
329
|
-
"type": "uint256"
|
330
|
-
},
|
331
|
-
{
|
332
|
-
"internalType": "uint256",
|
333
|
-
"name": "fixedFee",
|
334
|
-
"type": "uint256"
|
335
|
-
}
|
336
|
-
],
|
337
|
-
"internalType": "struct Fee",
|
338
|
-
"name": "fee",
|
339
|
-
"type": "tuple"
|
279
|
+
"internalType": "ShortString",
|
280
|
+
"name": "name",
|
281
|
+
"type": "bytes32"
|
340
282
|
}
|
341
283
|
],
|
342
|
-
"name": "
|
343
|
-
"
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
"type": "uint256"
|
348
|
-
},
|
284
|
+
"name": "ErrorRoleNameNotUnique",
|
285
|
+
"type": "error"
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"inputs": [
|
349
289
|
{
|
350
|
-
"internalType": "
|
351
|
-
"name": "
|
352
|
-
"type": "
|
290
|
+
"internalType": "address",
|
291
|
+
"name": "target",
|
292
|
+
"type": "address"
|
353
293
|
}
|
354
294
|
],
|
355
|
-
"
|
356
|
-
"type": "
|
295
|
+
"name": "ErrorTargetDoesNotExist",
|
296
|
+
"type": "error"
|
357
297
|
},
|
358
298
|
{
|
359
|
-
"inputs": [
|
299
|
+
"inputs": [],
|
300
|
+
"name": "InvalidInitialization",
|
301
|
+
"type": "error"
|
302
|
+
},
|
303
|
+
{
|
304
|
+
"inputs": [],
|
305
|
+
"name": "InvalidShortString",
|
306
|
+
"type": "error"
|
307
|
+
},
|
308
|
+
{
|
309
|
+
"inputs": [],
|
310
|
+
"name": "NotInitializing",
|
311
|
+
"type": "error"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"inputs": [
|
360
315
|
{
|
361
|
-
"internalType": "
|
362
|
-
"name": "
|
363
|
-
"type": "
|
364
|
-
}
|
316
|
+
"internalType": "string",
|
317
|
+
"name": "str",
|
318
|
+
"type": "string"
|
319
|
+
}
|
320
|
+
],
|
321
|
+
"name": "StringTooLong",
|
322
|
+
"type": "error"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"anonymous": false,
|
326
|
+
"inputs": [
|
327
|
+
{
|
328
|
+
"indexed": false,
|
329
|
+
"internalType": "address",
|
330
|
+
"name": "authority",
|
331
|
+
"type": "address"
|
332
|
+
}
|
333
|
+
],
|
334
|
+
"name": "AuthorityUpdated",
|
335
|
+
"type": "event"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"anonymous": false,
|
339
|
+
"inputs": [
|
340
|
+
{
|
341
|
+
"indexed": false,
|
342
|
+
"internalType": "uint64",
|
343
|
+
"name": "version",
|
344
|
+
"type": "uint64"
|
345
|
+
}
|
346
|
+
],
|
347
|
+
"name": "Initialized",
|
348
|
+
"type": "event"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"anonymous": false,
|
352
|
+
"inputs": [
|
365
353
|
{
|
354
|
+
"indexed": false,
|
366
355
|
"internalType": "ObjectType",
|
367
356
|
"name": "objectType",
|
368
357
|
"type": "uint8"
|
369
358
|
},
|
370
359
|
{
|
371
|
-
"
|
372
|
-
"
|
373
|
-
"
|
360
|
+
"indexed": false,
|
361
|
+
"internalType": "KeyId",
|
362
|
+
"name": "keyId",
|
363
|
+
"type": "bytes31"
|
374
364
|
},
|
375
365
|
{
|
366
|
+
"indexed": false,
|
376
367
|
"internalType": "StateId",
|
377
|
-
"name": "
|
368
|
+
"name": "state",
|
378
369
|
"type": "uint8"
|
379
|
-
}
|
380
|
-
],
|
381
|
-
"name": "checkAndLogTransition",
|
382
|
-
"outputs": [
|
370
|
+
},
|
383
371
|
{
|
384
|
-
"
|
385
|
-
"
|
386
|
-
"
|
372
|
+
"indexed": false,
|
373
|
+
"internalType": "address",
|
374
|
+
"name": "createdBy",
|
375
|
+
"type": "address"
|
376
|
+
},
|
377
|
+
{
|
378
|
+
"indexed": false,
|
379
|
+
"internalType": "address",
|
380
|
+
"name": "txOrigin",
|
381
|
+
"type": "address"
|
387
382
|
}
|
388
383
|
],
|
389
|
-
"
|
390
|
-
"type": "
|
384
|
+
"name": "LogInfoCreated",
|
385
|
+
"type": "event"
|
391
386
|
},
|
392
387
|
{
|
393
|
-
"
|
394
|
-
"
|
395
|
-
"outputs": [
|
388
|
+
"anonymous": false,
|
389
|
+
"inputs": [
|
396
390
|
{
|
397
|
-
"
|
398
|
-
"
|
399
|
-
"
|
391
|
+
"indexed": false,
|
392
|
+
"internalType": "ObjectType",
|
393
|
+
"name": "objectType",
|
394
|
+
"type": "uint8"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"indexed": false,
|
398
|
+
"internalType": "KeyId",
|
399
|
+
"name": "keyId",
|
400
|
+
"type": "bytes31"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"indexed": false,
|
404
|
+
"internalType": "StateId",
|
405
|
+
"name": "state",
|
406
|
+
"type": "uint8"
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"indexed": false,
|
410
|
+
"internalType": "address",
|
411
|
+
"name": "updatedBy",
|
412
|
+
"type": "address"
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"indexed": false,
|
416
|
+
"internalType": "address",
|
417
|
+
"name": "txOrigin",
|
418
|
+
"type": "address"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"indexed": false,
|
422
|
+
"internalType": "Blocknumber",
|
423
|
+
"name": "lastUpdatedIn",
|
424
|
+
"type": "uint32"
|
400
425
|
}
|
401
426
|
],
|
402
|
-
"
|
403
|
-
"type": "
|
427
|
+
"name": "LogInfoUpdated",
|
428
|
+
"type": "event"
|
404
429
|
},
|
405
430
|
{
|
431
|
+
"anonymous": false,
|
406
432
|
"inputs": [
|
407
433
|
{
|
408
|
-
"
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
"type": "uint96"
|
413
|
-
},
|
414
|
-
{
|
415
|
-
"internalType": "NftId",
|
416
|
-
"name": "parentNftId",
|
417
|
-
"type": "uint96"
|
418
|
-
},
|
419
|
-
{
|
420
|
-
"internalType": "ObjectType",
|
421
|
-
"name": "objectType",
|
422
|
-
"type": "uint8"
|
423
|
-
},
|
424
|
-
{
|
425
|
-
"internalType": "address",
|
426
|
-
"name": "objectAddress",
|
427
|
-
"type": "address"
|
428
|
-
},
|
429
|
-
{
|
430
|
-
"internalType": "address",
|
431
|
-
"name": "initialOwner",
|
432
|
-
"type": "address"
|
433
|
-
}
|
434
|
-
],
|
435
|
-
"internalType": "struct IRegistry.RegistryInfo",
|
436
|
-
"name": "productInfo",
|
437
|
-
"type": "tuple"
|
434
|
+
"indexed": false,
|
435
|
+
"internalType": "ObjectType",
|
436
|
+
"name": "objectType",
|
437
|
+
"type": "uint8"
|
438
438
|
},
|
439
439
|
{
|
440
|
-
"
|
441
|
-
"
|
442
|
-
"
|
440
|
+
"indexed": false,
|
441
|
+
"internalType": "KeyId",
|
442
|
+
"name": "keyId",
|
443
|
+
"type": "bytes31"
|
443
444
|
},
|
444
445
|
{
|
445
|
-
"
|
446
|
-
"
|
447
|
-
"
|
446
|
+
"indexed": false,
|
447
|
+
"internalType": "StateId",
|
448
|
+
"name": "stateOld",
|
449
|
+
"type": "uint8"
|
448
450
|
},
|
449
451
|
{
|
450
|
-
"
|
451
|
-
"
|
452
|
-
"
|
452
|
+
"indexed": false,
|
453
|
+
"internalType": "StateId",
|
454
|
+
"name": "stateNew",
|
455
|
+
"type": "uint8"
|
453
456
|
},
|
454
457
|
{
|
455
|
-
"
|
456
|
-
"
|
457
|
-
"
|
458
|
+
"indexed": false,
|
459
|
+
"internalType": "address",
|
460
|
+
"name": "updatedBy",
|
461
|
+
"type": "address"
|
458
462
|
},
|
459
463
|
{
|
460
|
-
"
|
461
|
-
"
|
462
|
-
"
|
464
|
+
"indexed": false,
|
465
|
+
"internalType": "address",
|
466
|
+
"name": "txOrigin",
|
467
|
+
"type": "address"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"indexed": false,
|
471
|
+
"internalType": "Blocknumber",
|
472
|
+
"name": "lastUpdatedIn",
|
473
|
+
"type": "uint32"
|
463
474
|
}
|
464
475
|
],
|
465
|
-
"name": "
|
476
|
+
"name": "LogStateUpdated",
|
477
|
+
"type": "event"
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"inputs": [],
|
481
|
+
"name": "ADMIN_ROLE",
|
466
482
|
"outputs": [
|
467
483
|
{
|
468
|
-
"internalType": "
|
469
|
-
"name": "
|
470
|
-
"type": "
|
484
|
+
"internalType": "uint64",
|
485
|
+
"name": "",
|
486
|
+
"type": "uint64"
|
471
487
|
}
|
472
488
|
],
|
473
|
-
"stateMutability": "
|
489
|
+
"stateMutability": "view",
|
474
490
|
"type": "function"
|
475
491
|
},
|
476
492
|
{
|
477
|
-
"inputs": [
|
478
|
-
|
479
|
-
"internalType": "string",
|
480
|
-
"name": "roleName",
|
481
|
-
"type": "string"
|
482
|
-
}
|
483
|
-
],
|
484
|
-
"name": "createRole",
|
493
|
+
"inputs": [],
|
494
|
+
"name": "CUSTOM_ROLE_ID_MIN",
|
485
495
|
"outputs": [
|
486
496
|
{
|
487
|
-
"internalType": "
|
488
|
-
"name": "
|
489
|
-
"type": "
|
497
|
+
"internalType": "uint64",
|
498
|
+
"name": "",
|
499
|
+
"type": "uint64"
|
490
500
|
}
|
491
501
|
],
|
492
|
-
"stateMutability": "
|
502
|
+
"stateMutability": "view",
|
493
503
|
"type": "function"
|
494
504
|
},
|
495
505
|
{
|
496
|
-
"inputs": [
|
506
|
+
"inputs": [],
|
507
|
+
"name": "EXECUTION_DELAY",
|
508
|
+
"outputs": [
|
497
509
|
{
|
498
|
-
"internalType": "
|
499
|
-
"name": "
|
500
|
-
"type": "
|
510
|
+
"internalType": "uint32",
|
511
|
+
"name": "",
|
512
|
+
"type": "uint32"
|
501
513
|
}
|
502
514
|
],
|
503
|
-
"
|
504
|
-
"outputs": [],
|
505
|
-
"stateMutability": "nonpayable",
|
515
|
+
"stateMutability": "view",
|
506
516
|
"type": "function"
|
507
517
|
},
|
508
518
|
{
|
509
|
-
"inputs": [
|
519
|
+
"inputs": [],
|
520
|
+
"name": "PUBLIC_ROLE",
|
521
|
+
"outputs": [
|
510
522
|
{
|
511
|
-
"internalType": "
|
512
|
-
"name": "
|
513
|
-
"type": "
|
523
|
+
"internalType": "uint64",
|
524
|
+
"name": "",
|
525
|
+
"type": "uint64"
|
514
526
|
}
|
515
527
|
],
|
516
|
-
"
|
517
|
-
"outputs": [],
|
518
|
-
"stateMutability": "nonpayable",
|
528
|
+
"stateMutability": "view",
|
519
529
|
"type": "function"
|
520
530
|
},
|
521
531
|
{
|
522
|
-
"inputs": [
|
523
|
-
|
524
|
-
"internalType": "NftId",
|
525
|
-
"name": "nftId",
|
526
|
-
"type": "uint96"
|
527
|
-
}
|
528
|
-
],
|
529
|
-
"name": "getBundleNftForPolicy",
|
532
|
+
"inputs": [],
|
533
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
530
534
|
"outputs": [
|
531
535
|
{
|
532
|
-
"internalType": "
|
533
|
-
"name": "
|
534
|
-
"type": "
|
536
|
+
"internalType": "bytes32",
|
537
|
+
"name": "",
|
538
|
+
"type": "bytes32"
|
535
539
|
}
|
536
540
|
],
|
537
541
|
"stateMutability": "view",
|
538
542
|
"type": "function"
|
539
543
|
},
|
540
544
|
{
|
541
|
-
"inputs": [
|
545
|
+
"inputs": [],
|
546
|
+
"name": "authority",
|
547
|
+
"outputs": [
|
542
548
|
{
|
543
549
|
"internalType": "address",
|
544
|
-
"name": "
|
550
|
+
"name": "",
|
545
551
|
"type": "address"
|
546
552
|
}
|
547
553
|
],
|
548
|
-
"name": "getComponentId",
|
549
|
-
"outputs": [
|
550
|
-
{
|
551
|
-
"internalType": "NftId",
|
552
|
-
"name": "componentNftId",
|
553
|
-
"type": "uint96"
|
554
|
-
}
|
555
|
-
],
|
556
554
|
"stateMutability": "view",
|
557
555
|
"type": "function"
|
558
556
|
},
|
559
557
|
{
|
560
558
|
"inputs": [
|
561
559
|
{
|
562
|
-
"internalType": "
|
563
|
-
"name": "
|
564
|
-
"type": "
|
565
|
-
}
|
566
|
-
],
|
567
|
-
"name": "getComponentId",
|
568
|
-
"outputs": [
|
560
|
+
"internalType": "ObjectType",
|
561
|
+
"name": "objectType",
|
562
|
+
"type": "uint8"
|
563
|
+
},
|
569
564
|
{
|
570
|
-
"internalType": "
|
571
|
-
"name": "
|
572
|
-
"type": "
|
565
|
+
"internalType": "StateId",
|
566
|
+
"name": "fromId",
|
567
|
+
"type": "uint8"
|
568
|
+
},
|
569
|
+
{
|
570
|
+
"internalType": "StateId",
|
571
|
+
"name": "toId",
|
572
|
+
"type": "uint8"
|
573
573
|
}
|
574
574
|
],
|
575
|
+
"name": "checkTransition",
|
576
|
+
"outputs": [],
|
575
577
|
"stateMutability": "view",
|
576
578
|
"type": "function"
|
577
579
|
},
|
@@ -579,267 +581,154 @@
|
|
579
581
|
"inputs": [
|
580
582
|
{
|
581
583
|
"internalType": "NftId",
|
582
|
-
"name": "
|
584
|
+
"name": "bundleNftId",
|
583
585
|
"type": "uint96"
|
584
|
-
}
|
585
|
-
],
|
586
|
-
"name": "getComponentInfo",
|
587
|
-
"outputs": [
|
588
|
-
{
|
589
|
-
"components": [
|
590
|
-
{
|
591
|
-
"internalType": "NftId",
|
592
|
-
"name": "nftId",
|
593
|
-
"type": "uint96"
|
594
|
-
},
|
595
|
-
{
|
596
|
-
"internalType": "StateId",
|
597
|
-
"name": "state",
|
598
|
-
"type": "uint8"
|
599
|
-
},
|
600
|
-
{
|
601
|
-
"internalType": "contract IERC20Metadata",
|
602
|
-
"name": "token",
|
603
|
-
"type": "address"
|
604
|
-
}
|
605
|
-
],
|
606
|
-
"internalType": "struct IComponent.ComponentInfo",
|
607
|
-
"name": "",
|
608
|
-
"type": "tuple"
|
609
|
-
}
|
610
|
-
],
|
611
|
-
"stateMutability": "view",
|
612
|
-
"type": "function"
|
613
|
-
},
|
614
|
-
{
|
615
|
-
"inputs": [],
|
616
|
-
"name": "getComponentOwnerService",
|
617
|
-
"outputs": [
|
618
|
-
{
|
619
|
-
"internalType": "contract IComponentOwnerService",
|
620
|
-
"name": "",
|
621
|
-
"type": "address"
|
622
|
-
}
|
623
|
-
],
|
624
|
-
"stateMutability": "view",
|
625
|
-
"type": "function"
|
626
|
-
},
|
627
|
-
{
|
628
|
-
"inputs": [],
|
629
|
-
"name": "getData",
|
630
|
-
"outputs": [
|
631
|
-
{
|
632
|
-
"internalType": "bytes",
|
633
|
-
"name": "data",
|
634
|
-
"type": "bytes"
|
635
|
-
}
|
636
|
-
],
|
637
|
-
"stateMutability": "pure",
|
638
|
-
"type": "function"
|
639
|
-
},
|
640
|
-
{
|
641
|
-
"inputs": [],
|
642
|
-
"name": "getInitialOwner",
|
643
|
-
"outputs": [
|
644
|
-
{
|
645
|
-
"internalType": "address",
|
646
|
-
"name": "deployer",
|
647
|
-
"type": "address"
|
648
|
-
}
|
649
|
-
],
|
650
|
-
"stateMutability": "view",
|
651
|
-
"type": "function"
|
652
|
-
},
|
653
|
-
{
|
654
|
-
"inputs": [
|
655
|
-
{
|
656
|
-
"internalType": "ObjectType",
|
657
|
-
"name": "objectType",
|
658
|
-
"type": "uint8"
|
659
|
-
}
|
660
|
-
],
|
661
|
-
"name": "getInitialState",
|
662
|
-
"outputs": [
|
663
|
-
{
|
664
|
-
"internalType": "StateId",
|
665
|
-
"name": "",
|
666
|
-
"type": "uint8"
|
667
|
-
}
|
668
|
-
],
|
669
|
-
"stateMutability": "view",
|
670
|
-
"type": "function"
|
671
|
-
},
|
672
|
-
{
|
673
|
-
"inputs": [],
|
674
|
-
"name": "getNftId",
|
675
|
-
"outputs": [
|
676
|
-
{
|
677
|
-
"internalType": "NftId",
|
678
|
-
"name": "nftId",
|
679
|
-
"type": "uint96"
|
680
|
-
}
|
681
|
-
],
|
682
|
-
"stateMutability": "view",
|
683
|
-
"type": "function"
|
684
|
-
},
|
685
|
-
{
|
686
|
-
"inputs": [],
|
687
|
-
"name": "getOwner",
|
688
|
-
"outputs": [
|
689
|
-
{
|
690
|
-
"internalType": "address",
|
691
|
-
"name": "owner",
|
692
|
-
"type": "address"
|
693
|
-
}
|
694
|
-
],
|
695
|
-
"stateMutability": "view",
|
696
|
-
"type": "function"
|
697
|
-
},
|
698
|
-
{
|
699
|
-
"inputs": [],
|
700
|
-
"name": "getParentNftId",
|
701
|
-
"outputs": [
|
702
|
-
{
|
703
|
-
"internalType": "NftId",
|
704
|
-
"name": "",
|
705
|
-
"type": "uint96"
|
706
|
-
}
|
707
|
-
],
|
708
|
-
"stateMutability": "pure",
|
709
|
-
"type": "function"
|
710
|
-
},
|
711
|
-
{
|
712
|
-
"inputs": [
|
713
|
-
{
|
714
|
-
"internalType": "NftId",
|
715
|
-
"name": "nftId",
|
716
|
-
"type": "uint96"
|
717
|
-
}
|
718
|
-
],
|
719
|
-
"name": "getPolicyInfo",
|
720
|
-
"outputs": [
|
586
|
+
},
|
721
587
|
{
|
722
588
|
"components": [
|
723
589
|
{
|
724
590
|
"internalType": "NftId",
|
725
|
-
"name": "
|
591
|
+
"name": "poolNftId",
|
726
592
|
"type": "uint96"
|
727
593
|
},
|
728
594
|
{
|
729
|
-
"
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
"
|
742
|
-
|
743
|
-
|
744
|
-
"internalType": "uint256",
|
745
|
-
"name": "premiumPaidAmount",
|
746
|
-
"type": "uint256"
|
595
|
+
"components": [
|
596
|
+
{
|
597
|
+
"internalType": "UFixed",
|
598
|
+
"name": "fractionalFee",
|
599
|
+
"type": "uint256"
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"internalType": "uint256",
|
603
|
+
"name": "fixedFee",
|
604
|
+
"type": "uint256"
|
605
|
+
}
|
606
|
+
],
|
607
|
+
"internalType": "struct Fee",
|
608
|
+
"name": "fee",
|
609
|
+
"type": "tuple"
|
747
610
|
},
|
748
611
|
{
|
749
|
-
"internalType": "
|
750
|
-
"name": "
|
751
|
-
"type": "
|
612
|
+
"internalType": "bytes",
|
613
|
+
"name": "filter",
|
614
|
+
"type": "bytes"
|
752
615
|
},
|
753
616
|
{
|
754
617
|
"internalType": "uint256",
|
755
|
-
"name": "
|
618
|
+
"name": "capitalAmount",
|
756
619
|
"type": "uint256"
|
757
620
|
},
|
758
621
|
{
|
759
622
|
"internalType": "uint256",
|
760
|
-
"name": "
|
623
|
+
"name": "lockedAmount",
|
761
624
|
"type": "uint256"
|
762
625
|
},
|
763
626
|
{
|
764
627
|
"internalType": "uint256",
|
765
|
-
"name": "
|
628
|
+
"name": "balanceAmount",
|
766
629
|
"type": "uint256"
|
767
630
|
},
|
768
631
|
{
|
769
|
-
"internalType": "
|
632
|
+
"internalType": "Timestamp",
|
770
633
|
"name": "expiredAt",
|
771
|
-
"type": "
|
634
|
+
"type": "uint40"
|
772
635
|
},
|
773
636
|
{
|
774
|
-
"internalType": "
|
637
|
+
"internalType": "Timestamp",
|
775
638
|
"name": "closedAt",
|
776
|
-
"type": "
|
639
|
+
"type": "uint40"
|
777
640
|
}
|
778
641
|
],
|
779
|
-
"internalType": "struct
|
780
|
-
"name": "
|
642
|
+
"internalType": "struct IBundle.BundleInfo",
|
643
|
+
"name": "bundle",
|
781
644
|
"type": "tuple"
|
782
645
|
}
|
783
646
|
],
|
784
|
-
"
|
647
|
+
"name": "createBundle",
|
648
|
+
"outputs": [],
|
649
|
+
"stateMutability": "nonpayable",
|
785
650
|
"type": "function"
|
786
651
|
},
|
787
652
|
{
|
788
653
|
"inputs": [
|
789
654
|
{
|
790
655
|
"internalType": "NftId",
|
791
|
-
"name": "
|
656
|
+
"name": "policyNftId",
|
792
657
|
"type": "uint96"
|
793
|
-
}
|
794
|
-
|
795
|
-
|
796
|
-
|
658
|
+
},
|
659
|
+
{
|
660
|
+
"internalType": "NumberId",
|
661
|
+
"name": "claimId",
|
662
|
+
"type": "uint32"
|
663
|
+
},
|
797
664
|
{
|
798
665
|
"components": [
|
799
|
-
{
|
800
|
-
"internalType": "NftId",
|
801
|
-
"name": "nftId",
|
802
|
-
"type": "uint96"
|
803
|
-
},
|
804
666
|
{
|
805
667
|
"internalType": "uint256",
|
806
|
-
"name": "
|
668
|
+
"name": "claimAmount",
|
807
669
|
"type": "uint256"
|
808
670
|
},
|
809
671
|
{
|
810
672
|
"internalType": "uint256",
|
811
|
-
"name": "
|
673
|
+
"name": "paidAmount",
|
812
674
|
"type": "uint256"
|
675
|
+
},
|
676
|
+
{
|
677
|
+
"internalType": "bytes",
|
678
|
+
"name": "data",
|
679
|
+
"type": "bytes"
|
680
|
+
},
|
681
|
+
{
|
682
|
+
"internalType": "Timestamp",
|
683
|
+
"name": "closedAt",
|
684
|
+
"type": "uint40"
|
813
685
|
}
|
814
686
|
],
|
815
|
-
"internalType": "struct
|
816
|
-
"name": "
|
687
|
+
"internalType": "struct IPolicy.ClaimInfo",
|
688
|
+
"name": "claim",
|
817
689
|
"type": "tuple"
|
818
690
|
}
|
819
691
|
],
|
820
|
-
"
|
692
|
+
"name": "createClaim",
|
693
|
+
"outputs": [],
|
694
|
+
"stateMutability": "nonpayable",
|
821
695
|
"type": "function"
|
822
696
|
},
|
823
697
|
{
|
824
698
|
"inputs": [
|
825
699
|
{
|
826
|
-
"internalType": "
|
827
|
-
"name": "
|
828
|
-
"type": "
|
700
|
+
"internalType": "RoleId",
|
701
|
+
"name": "roleId",
|
702
|
+
"type": "uint64"
|
703
|
+
},
|
704
|
+
{
|
705
|
+
"internalType": "string",
|
706
|
+
"name": "name",
|
707
|
+
"type": "string"
|
829
708
|
}
|
830
709
|
],
|
831
|
-
"name": "
|
832
|
-
"outputs": [
|
710
|
+
"name": "createCustomRole",
|
711
|
+
"outputs": [],
|
712
|
+
"stateMutability": "nonpayable",
|
713
|
+
"type": "function"
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"inputs": [
|
717
|
+
{
|
718
|
+
"internalType": "NftId",
|
719
|
+
"name": "distributionNftId",
|
720
|
+
"type": "uint96"
|
721
|
+
},
|
833
722
|
{
|
834
723
|
"components": [
|
835
724
|
{
|
836
725
|
"internalType": "NftId",
|
837
|
-
"name": "
|
726
|
+
"name": "productNftId",
|
838
727
|
"type": "uint96"
|
839
728
|
},
|
840
729
|
{
|
841
|
-
"internalType": "
|
842
|
-
"name": "
|
730
|
+
"internalType": "contract TokenHandler",
|
731
|
+
"name": "tokenHandler",
|
843
732
|
"type": "address"
|
844
733
|
},
|
845
734
|
{
|
@@ -856,58 +745,172 @@
|
|
856
745
|
}
|
857
746
|
],
|
858
747
|
"internalType": "struct Fee",
|
859
|
-
"name": "
|
748
|
+
"name": "distributionFee",
|
860
749
|
"type": "tuple"
|
861
750
|
},
|
862
751
|
{
|
863
|
-
"
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
"name": "fixedFee",
|
872
|
-
"type": "uint256"
|
873
|
-
}
|
874
|
-
],
|
875
|
-
"internalType": "struct Fee",
|
876
|
-
"name": "performanceFee",
|
877
|
-
"type": "tuple"
|
752
|
+
"internalType": "bool",
|
753
|
+
"name": "isIntercepting",
|
754
|
+
"type": "bool"
|
755
|
+
},
|
756
|
+
{
|
757
|
+
"internalType": "address",
|
758
|
+
"name": "wallet",
|
759
|
+
"type": "address"
|
878
760
|
}
|
879
761
|
],
|
880
|
-
"internalType": "struct
|
762
|
+
"internalType": "struct ISetup.DistributionSetupInfo",
|
881
763
|
"name": "setup",
|
882
764
|
"type": "tuple"
|
883
765
|
}
|
884
766
|
],
|
885
|
-
"
|
886
|
-
"
|
887
|
-
|
888
|
-
{
|
889
|
-
"inputs": [],
|
890
|
-
"name": "getProductService",
|
891
|
-
"outputs": [
|
892
|
-
{
|
893
|
-
"internalType": "contract IProductService",
|
894
|
-
"name": "",
|
895
|
-
"type": "address"
|
896
|
-
}
|
897
|
-
],
|
898
|
-
"stateMutability": "view",
|
767
|
+
"name": "createDistributionSetup",
|
768
|
+
"outputs": [],
|
769
|
+
"stateMutability": "nonpayable",
|
899
770
|
"type": "function"
|
900
771
|
},
|
901
772
|
{
|
902
773
|
"inputs": [
|
903
774
|
{
|
904
775
|
"internalType": "NftId",
|
905
|
-
"name": "
|
776
|
+
"name": "policyNftId",
|
906
777
|
"type": "uint96"
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"internalType": "NumberId",
|
781
|
+
"name": "payoutId",
|
782
|
+
"type": "uint32"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"components": [
|
786
|
+
{
|
787
|
+
"internalType": "NumberId",
|
788
|
+
"name": "claimId",
|
789
|
+
"type": "uint32"
|
790
|
+
},
|
791
|
+
{
|
792
|
+
"internalType": "uint256",
|
793
|
+
"name": "amount",
|
794
|
+
"type": "uint256"
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"internalType": "bytes",
|
798
|
+
"name": "data",
|
799
|
+
"type": "bytes"
|
800
|
+
},
|
801
|
+
{
|
802
|
+
"internalType": "Timestamp",
|
803
|
+
"name": "paidAt",
|
804
|
+
"type": "uint40"
|
805
|
+
}
|
806
|
+
],
|
807
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
808
|
+
"name": "payout",
|
809
|
+
"type": "tuple"
|
907
810
|
}
|
908
811
|
],
|
909
|
-
"name": "
|
910
|
-
"outputs": [
|
812
|
+
"name": "createDistributor",
|
813
|
+
"outputs": [],
|
814
|
+
"stateMutability": "nonpayable",
|
815
|
+
"type": "function"
|
816
|
+
},
|
817
|
+
{
|
818
|
+
"inputs": [
|
819
|
+
{
|
820
|
+
"internalType": "NftId",
|
821
|
+
"name": "policyNftId",
|
822
|
+
"type": "uint96"
|
823
|
+
},
|
824
|
+
{
|
825
|
+
"internalType": "NumberId",
|
826
|
+
"name": "payoutId",
|
827
|
+
"type": "uint32"
|
828
|
+
},
|
829
|
+
{
|
830
|
+
"components": [
|
831
|
+
{
|
832
|
+
"internalType": "NumberId",
|
833
|
+
"name": "claimId",
|
834
|
+
"type": "uint32"
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"internalType": "uint256",
|
838
|
+
"name": "amount",
|
839
|
+
"type": "uint256"
|
840
|
+
},
|
841
|
+
{
|
842
|
+
"internalType": "bytes",
|
843
|
+
"name": "data",
|
844
|
+
"type": "bytes"
|
845
|
+
},
|
846
|
+
{
|
847
|
+
"internalType": "Timestamp",
|
848
|
+
"name": "paidAt",
|
849
|
+
"type": "uint40"
|
850
|
+
}
|
851
|
+
],
|
852
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
853
|
+
"name": "payout",
|
854
|
+
"type": "tuple"
|
855
|
+
}
|
856
|
+
],
|
857
|
+
"name": "createDistributorType",
|
858
|
+
"outputs": [],
|
859
|
+
"stateMutability": "nonpayable",
|
860
|
+
"type": "function"
|
861
|
+
},
|
862
|
+
{
|
863
|
+
"inputs": [
|
864
|
+
{
|
865
|
+
"internalType": "NftId",
|
866
|
+
"name": "policyNftId",
|
867
|
+
"type": "uint96"
|
868
|
+
},
|
869
|
+
{
|
870
|
+
"internalType": "NumberId",
|
871
|
+
"name": "payoutId",
|
872
|
+
"type": "uint32"
|
873
|
+
},
|
874
|
+
{
|
875
|
+
"components": [
|
876
|
+
{
|
877
|
+
"internalType": "NumberId",
|
878
|
+
"name": "claimId",
|
879
|
+
"type": "uint32"
|
880
|
+
},
|
881
|
+
{
|
882
|
+
"internalType": "uint256",
|
883
|
+
"name": "amount",
|
884
|
+
"type": "uint256"
|
885
|
+
},
|
886
|
+
{
|
887
|
+
"internalType": "bytes",
|
888
|
+
"name": "data",
|
889
|
+
"type": "bytes"
|
890
|
+
},
|
891
|
+
{
|
892
|
+
"internalType": "Timestamp",
|
893
|
+
"name": "paidAt",
|
894
|
+
"type": "uint40"
|
895
|
+
}
|
896
|
+
],
|
897
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
898
|
+
"name": "payout",
|
899
|
+
"type": "tuple"
|
900
|
+
}
|
901
|
+
],
|
902
|
+
"name": "createPayout",
|
903
|
+
"outputs": [],
|
904
|
+
"stateMutability": "nonpayable",
|
905
|
+
"type": "function"
|
906
|
+
},
|
907
|
+
{
|
908
|
+
"inputs": [
|
909
|
+
{
|
910
|
+
"internalType": "NftId",
|
911
|
+
"name": "policyNftId",
|
912
|
+
"type": "uint96"
|
913
|
+
},
|
911
914
|
{
|
912
915
|
"components": [
|
913
916
|
{
|
@@ -917,18 +920,103 @@
|
|
917
920
|
},
|
918
921
|
{
|
919
922
|
"internalType": "NftId",
|
920
|
-
"name": "
|
923
|
+
"name": "bundleNftId",
|
921
924
|
"type": "uint96"
|
922
925
|
},
|
923
926
|
{
|
924
|
-
"internalType": "
|
925
|
-
"name": "
|
926
|
-
"type": "
|
927
|
+
"internalType": "ReferralId",
|
928
|
+
"name": "referralId",
|
929
|
+
"type": "bytes8"
|
927
930
|
},
|
928
931
|
{
|
929
|
-
"internalType": "
|
930
|
-
"name": "
|
931
|
-
"type": "
|
932
|
+
"internalType": "RiskId",
|
933
|
+
"name": "riskId",
|
934
|
+
"type": "bytes8"
|
935
|
+
},
|
936
|
+
{
|
937
|
+
"internalType": "uint256",
|
938
|
+
"name": "sumInsuredAmount",
|
939
|
+
"type": "uint256"
|
940
|
+
},
|
941
|
+
{
|
942
|
+
"internalType": "uint256",
|
943
|
+
"name": "premiumAmount",
|
944
|
+
"type": "uint256"
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"internalType": "uint256",
|
948
|
+
"name": "premiumPaidAmount",
|
949
|
+
"type": "uint256"
|
950
|
+
},
|
951
|
+
{
|
952
|
+
"internalType": "uint256",
|
953
|
+
"name": "lifetime",
|
954
|
+
"type": "uint256"
|
955
|
+
},
|
956
|
+
{
|
957
|
+
"internalType": "bytes",
|
958
|
+
"name": "applicationData",
|
959
|
+
"type": "bytes"
|
960
|
+
},
|
961
|
+
{
|
962
|
+
"internalType": "bytes",
|
963
|
+
"name": "policyData",
|
964
|
+
"type": "bytes"
|
965
|
+
},
|
966
|
+
{
|
967
|
+
"internalType": "uint16",
|
968
|
+
"name": "claimsCount",
|
969
|
+
"type": "uint16"
|
970
|
+
},
|
971
|
+
{
|
972
|
+
"internalType": "uint16",
|
973
|
+
"name": "openClaimsCount",
|
974
|
+
"type": "uint16"
|
975
|
+
},
|
976
|
+
{
|
977
|
+
"internalType": "uint256",
|
978
|
+
"name": "payoutAmount",
|
979
|
+
"type": "uint256"
|
980
|
+
},
|
981
|
+
{
|
982
|
+
"internalType": "Timestamp",
|
983
|
+
"name": "activatedAt",
|
984
|
+
"type": "uint40"
|
985
|
+
},
|
986
|
+
{
|
987
|
+
"internalType": "Timestamp",
|
988
|
+
"name": "expiredAt",
|
989
|
+
"type": "uint40"
|
990
|
+
},
|
991
|
+
{
|
992
|
+
"internalType": "Timestamp",
|
993
|
+
"name": "closedAt",
|
994
|
+
"type": "uint40"
|
995
|
+
}
|
996
|
+
],
|
997
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
998
|
+
"name": "policy",
|
999
|
+
"type": "tuple"
|
1000
|
+
}
|
1001
|
+
],
|
1002
|
+
"name": "createPolicy",
|
1003
|
+
"outputs": [],
|
1004
|
+
"stateMutability": "nonpayable",
|
1005
|
+
"type": "function"
|
1006
|
+
},
|
1007
|
+
{
|
1008
|
+
"inputs": [
|
1009
|
+
{
|
1010
|
+
"internalType": "NftId",
|
1011
|
+
"name": "distributionNftId",
|
1012
|
+
"type": "uint96"
|
1013
|
+
},
|
1014
|
+
{
|
1015
|
+
"components": [
|
1016
|
+
{
|
1017
|
+
"internalType": "NftId",
|
1018
|
+
"name": "productNftId",
|
1019
|
+
"type": "uint96"
|
932
1020
|
},
|
933
1021
|
{
|
934
1022
|
"internalType": "contract TokenHandler",
|
@@ -936,9 +1024,9 @@
|
|
936
1024
|
"type": "address"
|
937
1025
|
},
|
938
1026
|
{
|
939
|
-
"internalType": "
|
940
|
-
"name": "
|
941
|
-
"type": "
|
1027
|
+
"internalType": "UFixed",
|
1028
|
+
"name": "collateralizationLevel",
|
1029
|
+
"type": "uint256"
|
942
1030
|
},
|
943
1031
|
{
|
944
1032
|
"components": [
|
@@ -954,7 +1042,7 @@
|
|
954
1042
|
}
|
955
1043
|
],
|
956
1044
|
"internalType": "struct Fee",
|
957
|
-
"name": "
|
1045
|
+
"name": "poolFee",
|
958
1046
|
"type": "tuple"
|
959
1047
|
},
|
960
1048
|
{
|
@@ -971,175 +1059,326 @@
|
|
971
1059
|
}
|
972
1060
|
],
|
973
1061
|
"internalType": "struct Fee",
|
974
|
-
"name": "
|
1062
|
+
"name": "stakingFee",
|
1063
|
+
"type": "tuple"
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
"components": [
|
1067
|
+
{
|
1068
|
+
"internalType": "UFixed",
|
1069
|
+
"name": "fractionalFee",
|
1070
|
+
"type": "uint256"
|
1071
|
+
},
|
1072
|
+
{
|
1073
|
+
"internalType": "uint256",
|
1074
|
+
"name": "fixedFee",
|
1075
|
+
"type": "uint256"
|
1076
|
+
}
|
1077
|
+
],
|
1078
|
+
"internalType": "struct Fee",
|
1079
|
+
"name": "performanceFee",
|
975
1080
|
"type": "tuple"
|
1081
|
+
},
|
1082
|
+
{
|
1083
|
+
"internalType": "bool",
|
1084
|
+
"name": "isIntercepting",
|
1085
|
+
"type": "bool"
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
"internalType": "address",
|
1089
|
+
"name": "wallet",
|
1090
|
+
"type": "address"
|
976
1091
|
}
|
977
1092
|
],
|
978
|
-
"internalType": "struct
|
1093
|
+
"internalType": "struct ISetup.PoolSetupInfo",
|
979
1094
|
"name": "setup",
|
980
1095
|
"type": "tuple"
|
981
1096
|
}
|
982
1097
|
],
|
983
|
-
"
|
984
|
-
"
|
985
|
-
|
986
|
-
{
|
987
|
-
"inputs": [],
|
988
|
-
"name": "getRegistry",
|
989
|
-
"outputs": [
|
990
|
-
{
|
991
|
-
"internalType": "contract IRegistry",
|
992
|
-
"name": "registry",
|
993
|
-
"type": "address"
|
994
|
-
}
|
995
|
-
],
|
996
|
-
"stateMutability": "view",
|
997
|
-
"type": "function"
|
998
|
-
},
|
999
|
-
{
|
1000
|
-
"inputs": [
|
1001
|
-
{
|
1002
|
-
"internalType": "uint256",
|
1003
|
-
"name": "idx",
|
1004
|
-
"type": "uint256"
|
1005
|
-
}
|
1006
|
-
],
|
1007
|
-
"name": "getRole",
|
1008
|
-
"outputs": [
|
1009
|
-
{
|
1010
|
-
"internalType": "bytes32",
|
1011
|
-
"name": "role",
|
1012
|
-
"type": "bytes32"
|
1013
|
-
}
|
1014
|
-
],
|
1015
|
-
"stateMutability": "view",
|
1016
|
-
"type": "function"
|
1017
|
-
},
|
1018
|
-
{
|
1019
|
-
"inputs": [],
|
1020
|
-
"name": "getRoleCount",
|
1021
|
-
"outputs": [
|
1022
|
-
{
|
1023
|
-
"internalType": "uint256",
|
1024
|
-
"name": "roles",
|
1025
|
-
"type": "uint256"
|
1026
|
-
}
|
1027
|
-
],
|
1028
|
-
"stateMutability": "view",
|
1098
|
+
"name": "createPoolSetup",
|
1099
|
+
"outputs": [],
|
1100
|
+
"stateMutability": "nonpayable",
|
1029
1101
|
"type": "function"
|
1030
1102
|
},
|
1031
1103
|
{
|
1032
1104
|
"inputs": [
|
1033
1105
|
{
|
1034
|
-
"internalType": "
|
1035
|
-
"name": "
|
1036
|
-
"type": "
|
1037
|
-
}
|
1038
|
-
],
|
1039
|
-
"name": "getRoleForName",
|
1040
|
-
"outputs": [
|
1041
|
-
{
|
1042
|
-
"internalType": "bytes32",
|
1043
|
-
"name": "role",
|
1044
|
-
"type": "bytes32"
|
1045
|
-
}
|
1046
|
-
],
|
1047
|
-
"stateMutability": "pure",
|
1048
|
-
"type": "function"
|
1049
|
-
},
|
1050
|
-
{
|
1051
|
-
"inputs": [
|
1106
|
+
"internalType": "NftId",
|
1107
|
+
"name": "productNftId",
|
1108
|
+
"type": "uint96"
|
1109
|
+
},
|
1052
1110
|
{
|
1053
|
-
"
|
1054
|
-
|
1055
|
-
|
1111
|
+
"components": [
|
1112
|
+
{
|
1113
|
+
"internalType": "contract IERC20Metadata",
|
1114
|
+
"name": "token",
|
1115
|
+
"type": "address"
|
1116
|
+
},
|
1117
|
+
{
|
1118
|
+
"internalType": "contract TokenHandler",
|
1119
|
+
"name": "tokenHandler",
|
1120
|
+
"type": "address"
|
1121
|
+
},
|
1122
|
+
{
|
1123
|
+
"internalType": "NftId",
|
1124
|
+
"name": "distributionNftId",
|
1125
|
+
"type": "uint96"
|
1126
|
+
},
|
1127
|
+
{
|
1128
|
+
"internalType": "NftId",
|
1129
|
+
"name": "poolNftId",
|
1130
|
+
"type": "uint96"
|
1131
|
+
},
|
1132
|
+
{
|
1133
|
+
"components": [
|
1134
|
+
{
|
1135
|
+
"internalType": "UFixed",
|
1136
|
+
"name": "fractionalFee",
|
1137
|
+
"type": "uint256"
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
"internalType": "uint256",
|
1141
|
+
"name": "fixedFee",
|
1142
|
+
"type": "uint256"
|
1143
|
+
}
|
1144
|
+
],
|
1145
|
+
"internalType": "struct Fee",
|
1146
|
+
"name": "distributionFee",
|
1147
|
+
"type": "tuple"
|
1148
|
+
},
|
1149
|
+
{
|
1150
|
+
"components": [
|
1151
|
+
{
|
1152
|
+
"internalType": "UFixed",
|
1153
|
+
"name": "fractionalFee",
|
1154
|
+
"type": "uint256"
|
1155
|
+
},
|
1156
|
+
{
|
1157
|
+
"internalType": "uint256",
|
1158
|
+
"name": "fixedFee",
|
1159
|
+
"type": "uint256"
|
1160
|
+
}
|
1161
|
+
],
|
1162
|
+
"internalType": "struct Fee",
|
1163
|
+
"name": "productFee",
|
1164
|
+
"type": "tuple"
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
"components": [
|
1168
|
+
{
|
1169
|
+
"internalType": "UFixed",
|
1170
|
+
"name": "fractionalFee",
|
1171
|
+
"type": "uint256"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"internalType": "uint256",
|
1175
|
+
"name": "fixedFee",
|
1176
|
+
"type": "uint256"
|
1177
|
+
}
|
1178
|
+
],
|
1179
|
+
"internalType": "struct Fee",
|
1180
|
+
"name": "processingFee",
|
1181
|
+
"type": "tuple"
|
1182
|
+
},
|
1183
|
+
{
|
1184
|
+
"components": [
|
1185
|
+
{
|
1186
|
+
"internalType": "UFixed",
|
1187
|
+
"name": "fractionalFee",
|
1188
|
+
"type": "uint256"
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"internalType": "uint256",
|
1192
|
+
"name": "fixedFee",
|
1193
|
+
"type": "uint256"
|
1194
|
+
}
|
1195
|
+
],
|
1196
|
+
"internalType": "struct Fee",
|
1197
|
+
"name": "poolFee",
|
1198
|
+
"type": "tuple"
|
1199
|
+
},
|
1200
|
+
{
|
1201
|
+
"components": [
|
1202
|
+
{
|
1203
|
+
"internalType": "UFixed",
|
1204
|
+
"name": "fractionalFee",
|
1205
|
+
"type": "uint256"
|
1206
|
+
},
|
1207
|
+
{
|
1208
|
+
"internalType": "uint256",
|
1209
|
+
"name": "fixedFee",
|
1210
|
+
"type": "uint256"
|
1211
|
+
}
|
1212
|
+
],
|
1213
|
+
"internalType": "struct Fee",
|
1214
|
+
"name": "stakingFee",
|
1215
|
+
"type": "tuple"
|
1216
|
+
},
|
1217
|
+
{
|
1218
|
+
"components": [
|
1219
|
+
{
|
1220
|
+
"internalType": "UFixed",
|
1221
|
+
"name": "fractionalFee",
|
1222
|
+
"type": "uint256"
|
1223
|
+
},
|
1224
|
+
{
|
1225
|
+
"internalType": "uint256",
|
1226
|
+
"name": "fixedFee",
|
1227
|
+
"type": "uint256"
|
1228
|
+
}
|
1229
|
+
],
|
1230
|
+
"internalType": "struct Fee",
|
1231
|
+
"name": "performanceFee",
|
1232
|
+
"type": "tuple"
|
1233
|
+
}
|
1234
|
+
],
|
1235
|
+
"internalType": "struct ISetup.ProductSetupInfo",
|
1236
|
+
"name": "setup",
|
1237
|
+
"type": "tuple"
|
1056
1238
|
}
|
1057
1239
|
],
|
1058
|
-
"name": "
|
1059
|
-
"outputs": [
|
1240
|
+
"name": "createProductSetup",
|
1241
|
+
"outputs": [],
|
1242
|
+
"stateMutability": "nonpayable",
|
1243
|
+
"type": "function"
|
1244
|
+
},
|
1245
|
+
{
|
1246
|
+
"inputs": [
|
1060
1247
|
{
|
1061
|
-
"internalType": "
|
1062
|
-
"name": "
|
1063
|
-
"type": "
|
1248
|
+
"internalType": "NftId",
|
1249
|
+
"name": "policyNftId",
|
1250
|
+
"type": "uint96"
|
1251
|
+
},
|
1252
|
+
{
|
1253
|
+
"internalType": "NumberId",
|
1254
|
+
"name": "payoutId",
|
1255
|
+
"type": "uint32"
|
1256
|
+
},
|
1257
|
+
{
|
1258
|
+
"components": [
|
1259
|
+
{
|
1260
|
+
"internalType": "NumberId",
|
1261
|
+
"name": "claimId",
|
1262
|
+
"type": "uint32"
|
1263
|
+
},
|
1264
|
+
{
|
1265
|
+
"internalType": "uint256",
|
1266
|
+
"name": "amount",
|
1267
|
+
"type": "uint256"
|
1268
|
+
},
|
1269
|
+
{
|
1270
|
+
"internalType": "bytes",
|
1271
|
+
"name": "data",
|
1272
|
+
"type": "bytes"
|
1273
|
+
},
|
1274
|
+
{
|
1275
|
+
"internalType": "Timestamp",
|
1276
|
+
"name": "paidAt",
|
1277
|
+
"type": "uint40"
|
1278
|
+
}
|
1279
|
+
],
|
1280
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
1281
|
+
"name": "payout",
|
1282
|
+
"type": "tuple"
|
1064
1283
|
}
|
1065
1284
|
],
|
1066
|
-
"
|
1285
|
+
"name": "createReferral",
|
1286
|
+
"outputs": [],
|
1287
|
+
"stateMutability": "nonpayable",
|
1067
1288
|
"type": "function"
|
1068
1289
|
},
|
1069
1290
|
{
|
1070
1291
|
"inputs": [
|
1071
1292
|
{
|
1072
|
-
"internalType": "
|
1073
|
-
"name": "
|
1074
|
-
"type": "
|
1075
|
-
}
|
1076
|
-
],
|
1077
|
-
"name": "getRoleInfo",
|
1078
|
-
"outputs": [
|
1293
|
+
"internalType": "RiskId",
|
1294
|
+
"name": "riskId",
|
1295
|
+
"type": "bytes8"
|
1296
|
+
},
|
1079
1297
|
{
|
1080
1298
|
"components": [
|
1081
1299
|
{
|
1082
|
-
"internalType": "
|
1083
|
-
"name": "
|
1084
|
-
"type": "
|
1085
|
-
},
|
1086
|
-
{
|
1087
|
-
"internalType": "string",
|
1088
|
-
"name": "name",
|
1089
|
-
"type": "string"
|
1300
|
+
"internalType": "NftId",
|
1301
|
+
"name": "productNftId",
|
1302
|
+
"type": "uint96"
|
1090
1303
|
},
|
1091
1304
|
{
|
1092
|
-
"internalType": "
|
1093
|
-
"name": "
|
1094
|
-
"type": "
|
1305
|
+
"internalType": "bytes",
|
1306
|
+
"name": "data",
|
1307
|
+
"type": "bytes"
|
1095
1308
|
}
|
1096
1309
|
],
|
1097
|
-
"internalType": "struct
|
1098
|
-
"name": "
|
1310
|
+
"internalType": "struct IRisk.RiskInfo",
|
1311
|
+
"name": "risk",
|
1099
1312
|
"type": "tuple"
|
1100
1313
|
}
|
1101
1314
|
],
|
1102
|
-
"
|
1315
|
+
"name": "createRisk",
|
1316
|
+
"outputs": [],
|
1317
|
+
"stateMutability": "nonpayable",
|
1103
1318
|
"type": "function"
|
1104
1319
|
},
|
1105
1320
|
{
|
1106
1321
|
"inputs": [
|
1107
1322
|
{
|
1108
|
-
"internalType": "
|
1109
|
-
"name": "
|
1110
|
-
"type": "
|
1323
|
+
"internalType": "RoleId",
|
1324
|
+
"name": "roleId",
|
1325
|
+
"type": "uint64"
|
1111
1326
|
},
|
1112
1327
|
{
|
1113
|
-
"internalType": "
|
1114
|
-
"name": "
|
1115
|
-
"type": "
|
1328
|
+
"internalType": "string",
|
1329
|
+
"name": "name",
|
1330
|
+
"type": "string"
|
1116
1331
|
}
|
1117
1332
|
],
|
1118
|
-
"name": "
|
1119
|
-
"outputs": [
|
1333
|
+
"name": "createStandardRole",
|
1334
|
+
"outputs": [],
|
1335
|
+
"stateMutability": "nonpayable",
|
1336
|
+
"type": "function"
|
1337
|
+
},
|
1338
|
+
{
|
1339
|
+
"inputs": [
|
1120
1340
|
{
|
1121
1341
|
"internalType": "address",
|
1122
|
-
"name": "
|
1342
|
+
"name": "target",
|
1123
1343
|
"type": "address"
|
1344
|
+
},
|
1345
|
+
{
|
1346
|
+
"components": [
|
1347
|
+
{
|
1348
|
+
"internalType": "ShortString",
|
1349
|
+
"name": "name",
|
1350
|
+
"type": "bytes32"
|
1351
|
+
},
|
1352
|
+
{
|
1353
|
+
"internalType": "bool",
|
1354
|
+
"name": "isCustom",
|
1355
|
+
"type": "bool"
|
1356
|
+
}
|
1357
|
+
],
|
1358
|
+
"internalType": "struct IAccess.TargetInfo",
|
1359
|
+
"name": "targetInfo",
|
1360
|
+
"type": "tuple"
|
1124
1361
|
}
|
1125
1362
|
],
|
1126
|
-
"
|
1363
|
+
"name": "createTarget",
|
1364
|
+
"outputs": [],
|
1365
|
+
"stateMutability": "nonpayable",
|
1127
1366
|
"type": "function"
|
1128
1367
|
},
|
1129
1368
|
{
|
1130
1369
|
"inputs": [
|
1131
1370
|
{
|
1132
|
-
"internalType": "
|
1133
|
-
"name": "
|
1371
|
+
"internalType": "Key32",
|
1372
|
+
"name": "key32",
|
1134
1373
|
"type": "bytes32"
|
1135
1374
|
}
|
1136
1375
|
],
|
1137
|
-
"name": "
|
1376
|
+
"name": "exists",
|
1138
1377
|
"outputs": [
|
1139
1378
|
{
|
1140
|
-
"internalType": "
|
1141
|
-
"name": "
|
1142
|
-
"type": "
|
1379
|
+
"internalType": "bool",
|
1380
|
+
"name": "",
|
1381
|
+
"type": "bool"
|
1143
1382
|
}
|
1144
1383
|
],
|
1145
1384
|
"stateMutability": "view",
|
@@ -1148,17 +1387,56 @@
|
|
1148
1387
|
{
|
1149
1388
|
"inputs": [
|
1150
1389
|
{
|
1151
|
-
"internalType": "
|
1152
|
-
"name": "
|
1153
|
-
"type": "
|
1390
|
+
"internalType": "Key32",
|
1391
|
+
"name": "key32",
|
1392
|
+
"type": "bytes32"
|
1154
1393
|
}
|
1155
1394
|
],
|
1156
|
-
"name": "
|
1395
|
+
"name": "get",
|
1157
1396
|
"outputs": [
|
1158
1397
|
{
|
1159
|
-
"
|
1160
|
-
|
1161
|
-
|
1398
|
+
"components": [
|
1399
|
+
{
|
1400
|
+
"components": [
|
1401
|
+
{
|
1402
|
+
"internalType": "ObjectType",
|
1403
|
+
"name": "objectType",
|
1404
|
+
"type": "uint8"
|
1405
|
+
},
|
1406
|
+
{
|
1407
|
+
"internalType": "StateId",
|
1408
|
+
"name": "state",
|
1409
|
+
"type": "uint8"
|
1410
|
+
},
|
1411
|
+
{
|
1412
|
+
"internalType": "address",
|
1413
|
+
"name": "updatedBy",
|
1414
|
+
"type": "address"
|
1415
|
+
},
|
1416
|
+
{
|
1417
|
+
"internalType": "Blocknumber",
|
1418
|
+
"name": "updatedIn",
|
1419
|
+
"type": "uint32"
|
1420
|
+
},
|
1421
|
+
{
|
1422
|
+
"internalType": "Blocknumber",
|
1423
|
+
"name": "createdIn",
|
1424
|
+
"type": "uint32"
|
1425
|
+
}
|
1426
|
+
],
|
1427
|
+
"internalType": "struct IKeyValueStore.Metadata",
|
1428
|
+
"name": "metadata",
|
1429
|
+
"type": "tuple"
|
1430
|
+
},
|
1431
|
+
{
|
1432
|
+
"internalType": "bytes",
|
1433
|
+
"name": "data",
|
1434
|
+
"type": "bytes"
|
1435
|
+
}
|
1436
|
+
],
|
1437
|
+
"internalType": "struct IKeyValueStore.Value",
|
1438
|
+
"name": "value",
|
1439
|
+
"type": "tuple"
|
1162
1440
|
}
|
1163
1441
|
],
|
1164
1442
|
"stateMutability": "view",
|
@@ -1166,54 +1444,177 @@
|
|
1166
1444
|
},
|
1167
1445
|
{
|
1168
1446
|
"inputs": [],
|
1169
|
-
"name": "
|
1447
|
+
"name": "getComponentOwnerService",
|
1170
1448
|
"outputs": [
|
1171
1449
|
{
|
1172
|
-
"internalType": "
|
1173
|
-
"name": "
|
1174
|
-
"type": "
|
1450
|
+
"internalType": "contract IComponentOwnerService",
|
1451
|
+
"name": "",
|
1452
|
+
"type": "address"
|
1175
1453
|
}
|
1176
1454
|
],
|
1177
|
-
"stateMutability": "
|
1455
|
+
"stateMutability": "view",
|
1178
1456
|
"type": "function"
|
1179
1457
|
},
|
1180
1458
|
{
|
1181
1459
|
"inputs": [
|
1182
1460
|
{
|
1183
|
-
"internalType": "
|
1184
|
-
"name": "
|
1461
|
+
"internalType": "Key32",
|
1462
|
+
"name": "key32",
|
1185
1463
|
"type": "bytes32"
|
1186
|
-
}
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1464
|
+
}
|
1465
|
+
],
|
1466
|
+
"name": "getData",
|
1467
|
+
"outputs": [
|
1468
|
+
{
|
1469
|
+
"internalType": "bytes",
|
1470
|
+
"name": "data",
|
1471
|
+
"type": "bytes"
|
1472
|
+
}
|
1473
|
+
],
|
1474
|
+
"stateMutability": "view",
|
1475
|
+
"type": "function"
|
1476
|
+
},
|
1477
|
+
{
|
1478
|
+
"inputs": [],
|
1479
|
+
"name": "getInitialInfo",
|
1480
|
+
"outputs": [
|
1481
|
+
{
|
1482
|
+
"components": [
|
1483
|
+
{
|
1484
|
+
"internalType": "NftId",
|
1485
|
+
"name": "nftId",
|
1486
|
+
"type": "uint96"
|
1487
|
+
},
|
1488
|
+
{
|
1489
|
+
"internalType": "NftId",
|
1490
|
+
"name": "parentNftId",
|
1491
|
+
"type": "uint96"
|
1492
|
+
},
|
1493
|
+
{
|
1494
|
+
"internalType": "ObjectType",
|
1495
|
+
"name": "objectType",
|
1496
|
+
"type": "uint8"
|
1497
|
+
},
|
1498
|
+
{
|
1499
|
+
"internalType": "bool",
|
1500
|
+
"name": "isInterceptor",
|
1501
|
+
"type": "bool"
|
1502
|
+
},
|
1503
|
+
{
|
1504
|
+
"internalType": "address",
|
1505
|
+
"name": "objectAddress",
|
1506
|
+
"type": "address"
|
1507
|
+
},
|
1508
|
+
{
|
1509
|
+
"internalType": "address",
|
1510
|
+
"name": "initialOwner",
|
1511
|
+
"type": "address"
|
1512
|
+
},
|
1513
|
+
{
|
1514
|
+
"internalType": "bytes",
|
1515
|
+
"name": "data",
|
1516
|
+
"type": "bytes"
|
1517
|
+
}
|
1518
|
+
],
|
1519
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1520
|
+
"name": "",
|
1521
|
+
"type": "tuple"
|
1522
|
+
},
|
1523
|
+
{
|
1524
|
+
"internalType": "bytes",
|
1525
|
+
"name": "data",
|
1526
|
+
"type": "bytes"
|
1527
|
+
}
|
1528
|
+
],
|
1529
|
+
"stateMutability": "view",
|
1530
|
+
"type": "function"
|
1531
|
+
},
|
1532
|
+
{
|
1533
|
+
"inputs": [
|
1534
|
+
{
|
1535
|
+
"internalType": "ObjectType",
|
1536
|
+
"name": "objectType",
|
1537
|
+
"type": "uint8"
|
1538
|
+
}
|
1539
|
+
],
|
1540
|
+
"name": "getInitialState",
|
1541
|
+
"outputs": [
|
1542
|
+
{
|
1543
|
+
"internalType": "StateId",
|
1544
|
+
"name": "",
|
1545
|
+
"type": "uint8"
|
1546
|
+
}
|
1547
|
+
],
|
1548
|
+
"stateMutability": "view",
|
1549
|
+
"type": "function"
|
1550
|
+
},
|
1551
|
+
{
|
1552
|
+
"inputs": [],
|
1553
|
+
"name": "getInstanceReader",
|
1554
|
+
"outputs": [
|
1555
|
+
{
|
1556
|
+
"internalType": "contract InstanceReader",
|
1557
|
+
"name": "",
|
1190
1558
|
"type": "address"
|
1191
1559
|
}
|
1192
1560
|
],
|
1193
|
-
"
|
1194
|
-
"outputs": [],
|
1195
|
-
"stateMutability": "nonpayable",
|
1561
|
+
"stateMutability": "view",
|
1196
1562
|
"type": "function"
|
1197
1563
|
},
|
1198
1564
|
{
|
1199
1565
|
"inputs": [
|
1200
1566
|
{
|
1201
|
-
"internalType": "
|
1202
|
-
"name": "
|
1567
|
+
"internalType": "Key32",
|
1568
|
+
"name": "key32",
|
1203
1569
|
"type": "bytes32"
|
1204
|
-
}
|
1570
|
+
}
|
1571
|
+
],
|
1572
|
+
"name": "getMetadata",
|
1573
|
+
"outputs": [
|
1205
1574
|
{
|
1206
|
-
"
|
1207
|
-
|
1208
|
-
|
1575
|
+
"components": [
|
1576
|
+
{
|
1577
|
+
"internalType": "ObjectType",
|
1578
|
+
"name": "objectType",
|
1579
|
+
"type": "uint8"
|
1580
|
+
},
|
1581
|
+
{
|
1582
|
+
"internalType": "StateId",
|
1583
|
+
"name": "state",
|
1584
|
+
"type": "uint8"
|
1585
|
+
},
|
1586
|
+
{
|
1587
|
+
"internalType": "address",
|
1588
|
+
"name": "updatedBy",
|
1589
|
+
"type": "address"
|
1590
|
+
},
|
1591
|
+
{
|
1592
|
+
"internalType": "Blocknumber",
|
1593
|
+
"name": "updatedIn",
|
1594
|
+
"type": "uint32"
|
1595
|
+
},
|
1596
|
+
{
|
1597
|
+
"internalType": "Blocknumber",
|
1598
|
+
"name": "createdIn",
|
1599
|
+
"type": "uint32"
|
1600
|
+
}
|
1601
|
+
],
|
1602
|
+
"internalType": "struct IKeyValueStore.Metadata",
|
1603
|
+
"name": "metadata",
|
1604
|
+
"type": "tuple"
|
1209
1605
|
}
|
1210
1606
|
],
|
1211
|
-
"
|
1607
|
+
"stateMutability": "view",
|
1608
|
+
"type": "function"
|
1609
|
+
},
|
1610
|
+
{
|
1611
|
+
"inputs": [],
|
1612
|
+
"name": "getNftId",
|
1212
1613
|
"outputs": [
|
1213
1614
|
{
|
1214
|
-
"internalType": "
|
1615
|
+
"internalType": "NftId",
|
1215
1616
|
"name": "",
|
1216
|
-
"type": "
|
1617
|
+
"type": "uint96"
|
1217
1618
|
}
|
1218
1619
|
],
|
1219
1620
|
"stateMutability": "view",
|
@@ -1221,25 +1622,25 @@
|
|
1221
1622
|
},
|
1222
1623
|
{
|
1223
1624
|
"inputs": [],
|
1224
|
-
"name": "
|
1625
|
+
"name": "getOwner",
|
1225
1626
|
"outputs": [
|
1226
1627
|
{
|
1227
|
-
"internalType": "
|
1628
|
+
"internalType": "address",
|
1228
1629
|
"name": "",
|
1229
|
-
"type": "
|
1630
|
+
"type": "address"
|
1230
1631
|
}
|
1231
1632
|
],
|
1232
|
-
"stateMutability": "
|
1633
|
+
"stateMutability": "view",
|
1233
1634
|
"type": "function"
|
1234
1635
|
},
|
1235
1636
|
{
|
1236
1637
|
"inputs": [],
|
1237
|
-
"name": "
|
1638
|
+
"name": "getRegistry",
|
1238
1639
|
"outputs": [
|
1239
1640
|
{
|
1240
|
-
"internalType": "
|
1641
|
+
"internalType": "contract IRegistry",
|
1241
1642
|
"name": "",
|
1242
|
-
"type": "
|
1643
|
+
"type": "address"
|
1243
1644
|
}
|
1244
1645
|
],
|
1245
1646
|
"stateMutability": "view",
|
@@ -1248,22 +1649,129 @@
|
|
1248
1649
|
{
|
1249
1650
|
"inputs": [
|
1250
1651
|
{
|
1251
|
-
"internalType": "
|
1252
|
-
"name": "
|
1253
|
-
"type": "
|
1652
|
+
"internalType": "RoleId",
|
1653
|
+
"name": "roleId",
|
1654
|
+
"type": "uint64"
|
1655
|
+
}
|
1656
|
+
],
|
1657
|
+
"name": "getRole",
|
1658
|
+
"outputs": [
|
1659
|
+
{
|
1660
|
+
"components": [
|
1661
|
+
{
|
1662
|
+
"internalType": "ShortString",
|
1663
|
+
"name": "name",
|
1664
|
+
"type": "bytes32"
|
1665
|
+
},
|
1666
|
+
{
|
1667
|
+
"internalType": "bool",
|
1668
|
+
"name": "isCustom",
|
1669
|
+
"type": "bool"
|
1670
|
+
}
|
1671
|
+
],
|
1672
|
+
"internalType": "struct IAccess.RoleInfo",
|
1673
|
+
"name": "role",
|
1674
|
+
"type": "tuple"
|
1675
|
+
}
|
1676
|
+
],
|
1677
|
+
"stateMutability": "view",
|
1678
|
+
"type": "function"
|
1679
|
+
},
|
1680
|
+
{
|
1681
|
+
"inputs": [
|
1682
|
+
{
|
1683
|
+
"internalType": "uint256",
|
1684
|
+
"name": "idx",
|
1685
|
+
"type": "uint256"
|
1686
|
+
}
|
1687
|
+
],
|
1688
|
+
"name": "getRoleId",
|
1689
|
+
"outputs": [
|
1690
|
+
{
|
1691
|
+
"internalType": "RoleId",
|
1692
|
+
"name": "roleId",
|
1693
|
+
"type": "uint64"
|
1694
|
+
}
|
1695
|
+
],
|
1696
|
+
"stateMutability": "view",
|
1697
|
+
"type": "function"
|
1698
|
+
},
|
1699
|
+
{
|
1700
|
+
"inputs": [
|
1701
|
+
{
|
1702
|
+
"internalType": "RoleId",
|
1703
|
+
"name": "roleId",
|
1704
|
+
"type": "uint64"
|
1254
1705
|
},
|
1706
|
+
{
|
1707
|
+
"internalType": "uint256",
|
1708
|
+
"name": "idx",
|
1709
|
+
"type": "uint256"
|
1710
|
+
}
|
1711
|
+
],
|
1712
|
+
"name": "getRoleMember",
|
1713
|
+
"outputs": [
|
1714
|
+
{
|
1715
|
+
"internalType": "address",
|
1716
|
+
"name": "roleMember",
|
1717
|
+
"type": "address"
|
1718
|
+
}
|
1719
|
+
],
|
1720
|
+
"stateMutability": "view",
|
1721
|
+
"type": "function"
|
1722
|
+
},
|
1723
|
+
{
|
1724
|
+
"inputs": [
|
1725
|
+
{
|
1726
|
+
"internalType": "Key32",
|
1727
|
+
"name": "key32",
|
1728
|
+
"type": "bytes32"
|
1729
|
+
}
|
1730
|
+
],
|
1731
|
+
"name": "getState",
|
1732
|
+
"outputs": [
|
1255
1733
|
{
|
1256
1734
|
"internalType": "StateId",
|
1257
|
-
"name": "
|
1735
|
+
"name": "state",
|
1258
1736
|
"type": "uint8"
|
1737
|
+
}
|
1738
|
+
],
|
1739
|
+
"stateMutability": "view",
|
1740
|
+
"type": "function"
|
1741
|
+
},
|
1742
|
+
{
|
1743
|
+
"inputs": [
|
1744
|
+
{
|
1745
|
+
"internalType": "RoleId",
|
1746
|
+
"name": "roleId",
|
1747
|
+
"type": "uint64"
|
1259
1748
|
},
|
1260
1749
|
{
|
1261
|
-
"internalType": "
|
1262
|
-
"name": "
|
1750
|
+
"internalType": "address",
|
1751
|
+
"name": "member",
|
1752
|
+
"type": "address"
|
1753
|
+
}
|
1754
|
+
],
|
1755
|
+
"name": "grantRole",
|
1756
|
+
"outputs": [
|
1757
|
+
{
|
1758
|
+
"internalType": "bool",
|
1759
|
+
"name": "granted",
|
1760
|
+
"type": "bool"
|
1761
|
+
}
|
1762
|
+
],
|
1763
|
+
"stateMutability": "nonpayable",
|
1764
|
+
"type": "function"
|
1765
|
+
},
|
1766
|
+
{
|
1767
|
+
"inputs": [
|
1768
|
+
{
|
1769
|
+
"internalType": "ObjectType",
|
1770
|
+
"name": "objectType",
|
1263
1771
|
"type": "uint8"
|
1264
1772
|
}
|
1265
1773
|
],
|
1266
|
-
"name": "
|
1774
|
+
"name": "hasLifecycle",
|
1267
1775
|
"outputs": [
|
1268
1776
|
{
|
1269
1777
|
"internalType": "bool",
|
@@ -1276,13 +1784,28 @@
|
|
1276
1784
|
},
|
1277
1785
|
{
|
1278
1786
|
"inputs": [
|
1787
|
+
{
|
1788
|
+
"internalType": "address",
|
1789
|
+
"name": "accessManagerAddress",
|
1790
|
+
"type": "address"
|
1791
|
+
},
|
1792
|
+
{
|
1793
|
+
"internalType": "address",
|
1794
|
+
"name": "registryAddress",
|
1795
|
+
"type": "address"
|
1796
|
+
},
|
1279
1797
|
{
|
1280
1798
|
"internalType": "NftId",
|
1281
|
-
"name": "
|
1799
|
+
"name": "registryNftId",
|
1282
1800
|
"type": "uint96"
|
1801
|
+
},
|
1802
|
+
{
|
1803
|
+
"internalType": "address",
|
1804
|
+
"name": "initialOwner",
|
1805
|
+
"type": "address"
|
1283
1806
|
}
|
1284
1807
|
],
|
1285
|
-
"name": "
|
1808
|
+
"name": "initialize",
|
1286
1809
|
"outputs": [],
|
1287
1810
|
"stateMutability": "nonpayable",
|
1288
1811
|
"type": "function"
|
@@ -1290,62 +1813,988 @@
|
|
1290
1813
|
{
|
1291
1814
|
"inputs": [
|
1292
1815
|
{
|
1293
|
-
"internalType": "
|
1294
|
-
"name": "
|
1816
|
+
"internalType": "address",
|
1817
|
+
"name": "initialAuthority",
|
1818
|
+
"type": "address"
|
1819
|
+
}
|
1820
|
+
],
|
1821
|
+
"name": "initialize",
|
1822
|
+
"outputs": [],
|
1823
|
+
"stateMutability": "nonpayable",
|
1824
|
+
"type": "function"
|
1825
|
+
},
|
1826
|
+
{
|
1827
|
+
"inputs": [],
|
1828
|
+
"name": "isConsumingScheduledOp",
|
1829
|
+
"outputs": [
|
1830
|
+
{
|
1831
|
+
"internalType": "bytes4",
|
1832
|
+
"name": "",
|
1833
|
+
"type": "bytes4"
|
1834
|
+
}
|
1835
|
+
],
|
1836
|
+
"stateMutability": "view",
|
1837
|
+
"type": "function"
|
1838
|
+
},
|
1839
|
+
{
|
1840
|
+
"inputs": [
|
1841
|
+
{
|
1842
|
+
"internalType": "ObjectType",
|
1843
|
+
"name": "objectType",
|
1844
|
+
"type": "uint8"
|
1845
|
+
},
|
1846
|
+
{
|
1847
|
+
"internalType": "StateId",
|
1848
|
+
"name": "fromId",
|
1849
|
+
"type": "uint8"
|
1850
|
+
},
|
1851
|
+
{
|
1852
|
+
"internalType": "StateId",
|
1853
|
+
"name": "toId",
|
1854
|
+
"type": "uint8"
|
1855
|
+
}
|
1856
|
+
],
|
1857
|
+
"name": "isValidTransition",
|
1858
|
+
"outputs": [
|
1859
|
+
{
|
1860
|
+
"internalType": "bool",
|
1861
|
+
"name": "",
|
1862
|
+
"type": "bool"
|
1863
|
+
}
|
1864
|
+
],
|
1865
|
+
"stateMutability": "view",
|
1866
|
+
"type": "function"
|
1867
|
+
},
|
1868
|
+
{
|
1869
|
+
"inputs": [],
|
1870
|
+
"name": "linkToRegisteredNftId",
|
1871
|
+
"outputs": [],
|
1872
|
+
"stateMutability": "nonpayable",
|
1873
|
+
"type": "function"
|
1874
|
+
},
|
1875
|
+
{
|
1876
|
+
"inputs": [
|
1877
|
+
{
|
1878
|
+
"internalType": "RoleId",
|
1879
|
+
"name": "roleId",
|
1880
|
+
"type": "uint64"
|
1881
|
+
}
|
1882
|
+
],
|
1883
|
+
"name": "renounceRole",
|
1884
|
+
"outputs": [
|
1885
|
+
{
|
1886
|
+
"internalType": "bool",
|
1887
|
+
"name": "revoked",
|
1888
|
+
"type": "bool"
|
1889
|
+
}
|
1890
|
+
],
|
1891
|
+
"stateMutability": "nonpayable",
|
1892
|
+
"type": "function"
|
1893
|
+
},
|
1894
|
+
{
|
1895
|
+
"inputs": [
|
1896
|
+
{
|
1897
|
+
"internalType": "RoleId",
|
1898
|
+
"name": "roleId",
|
1899
|
+
"type": "uint64"
|
1900
|
+
},
|
1901
|
+
{
|
1902
|
+
"internalType": "address",
|
1903
|
+
"name": "member",
|
1904
|
+
"type": "address"
|
1905
|
+
}
|
1906
|
+
],
|
1907
|
+
"name": "revokeRole",
|
1908
|
+
"outputs": [
|
1909
|
+
{
|
1910
|
+
"internalType": "bool",
|
1911
|
+
"name": "revoked",
|
1912
|
+
"type": "bool"
|
1913
|
+
}
|
1914
|
+
],
|
1915
|
+
"stateMutability": "nonpayable",
|
1916
|
+
"type": "function"
|
1917
|
+
},
|
1918
|
+
{
|
1919
|
+
"inputs": [
|
1920
|
+
{
|
1921
|
+
"internalType": "RoleId",
|
1922
|
+
"name": "roleId",
|
1923
|
+
"type": "uint64"
|
1924
|
+
}
|
1925
|
+
],
|
1926
|
+
"name": "roleMembers",
|
1927
|
+
"outputs": [
|
1928
|
+
{
|
1929
|
+
"internalType": "uint256",
|
1930
|
+
"name": "numberOfMembers",
|
1931
|
+
"type": "uint256"
|
1932
|
+
}
|
1933
|
+
],
|
1934
|
+
"stateMutability": "view",
|
1935
|
+
"type": "function"
|
1936
|
+
},
|
1937
|
+
{
|
1938
|
+
"inputs": [],
|
1939
|
+
"name": "roles",
|
1940
|
+
"outputs": [
|
1941
|
+
{
|
1942
|
+
"internalType": "uint256",
|
1943
|
+
"name": "numberOfRoles",
|
1944
|
+
"type": "uint256"
|
1945
|
+
}
|
1946
|
+
],
|
1947
|
+
"stateMutability": "view",
|
1948
|
+
"type": "function"
|
1949
|
+
},
|
1950
|
+
{
|
1951
|
+
"inputs": [
|
1952
|
+
{
|
1953
|
+
"internalType": "address",
|
1954
|
+
"name": "newAuthority",
|
1955
|
+
"type": "address"
|
1956
|
+
}
|
1957
|
+
],
|
1958
|
+
"name": "setAuthority",
|
1959
|
+
"outputs": [],
|
1960
|
+
"stateMutability": "nonpayable",
|
1961
|
+
"type": "function"
|
1962
|
+
},
|
1963
|
+
{
|
1964
|
+
"inputs": [
|
1965
|
+
{
|
1966
|
+
"internalType": "contract InstanceReader",
|
1967
|
+
"name": "instanceReader",
|
1968
|
+
"type": "address"
|
1969
|
+
}
|
1970
|
+
],
|
1971
|
+
"name": "setInstanceReader",
|
1972
|
+
"outputs": [],
|
1973
|
+
"stateMutability": "nonpayable",
|
1974
|
+
"type": "function"
|
1975
|
+
},
|
1976
|
+
{
|
1977
|
+
"inputs": [
|
1978
|
+
{
|
1979
|
+
"internalType": "address",
|
1980
|
+
"name": "target",
|
1981
|
+
"type": "address"
|
1982
|
+
},
|
1983
|
+
{
|
1984
|
+
"internalType": "bool",
|
1985
|
+
"name": "closed",
|
1986
|
+
"type": "bool"
|
1987
|
+
}
|
1988
|
+
],
|
1989
|
+
"name": "setTargetClosed",
|
1990
|
+
"outputs": [],
|
1991
|
+
"stateMutability": "nonpayable",
|
1992
|
+
"type": "function"
|
1993
|
+
},
|
1994
|
+
{
|
1995
|
+
"inputs": [
|
1996
|
+
{
|
1997
|
+
"internalType": "bytes4",
|
1998
|
+
"name": "interfaceId",
|
1999
|
+
"type": "bytes4"
|
2000
|
+
}
|
2001
|
+
],
|
2002
|
+
"name": "supportsInterface",
|
2003
|
+
"outputs": [
|
2004
|
+
{
|
2005
|
+
"internalType": "bool",
|
2006
|
+
"name": "",
|
2007
|
+
"type": "bool"
|
2008
|
+
}
|
2009
|
+
],
|
2010
|
+
"stateMutability": "view",
|
2011
|
+
"type": "function"
|
2012
|
+
},
|
2013
|
+
{
|
2014
|
+
"inputs": [
|
2015
|
+
{
|
2016
|
+
"internalType": "NftId",
|
2017
|
+
"name": "bundleNftId",
|
2018
|
+
"type": "uint96"
|
2019
|
+
}
|
2020
|
+
],
|
2021
|
+
"name": "toBundleKey32",
|
2022
|
+
"outputs": [
|
2023
|
+
{
|
2024
|
+
"internalType": "Key32",
|
2025
|
+
"name": "",
|
2026
|
+
"type": "bytes32"
|
2027
|
+
}
|
2028
|
+
],
|
2029
|
+
"stateMutability": "pure",
|
2030
|
+
"type": "function"
|
2031
|
+
},
|
2032
|
+
{
|
2033
|
+
"inputs": [
|
2034
|
+
{
|
2035
|
+
"internalType": "ObjectType",
|
2036
|
+
"name": "objectType",
|
2037
|
+
"type": "uint8"
|
2038
|
+
},
|
2039
|
+
{
|
2040
|
+
"internalType": "KeyId",
|
2041
|
+
"name": "id",
|
2042
|
+
"type": "bytes31"
|
2043
|
+
}
|
2044
|
+
],
|
2045
|
+
"name": "toKey32",
|
2046
|
+
"outputs": [
|
2047
|
+
{
|
2048
|
+
"internalType": "Key32",
|
2049
|
+
"name": "",
|
2050
|
+
"type": "bytes32"
|
2051
|
+
}
|
2052
|
+
],
|
2053
|
+
"stateMutability": "pure",
|
2054
|
+
"type": "function"
|
2055
|
+
},
|
2056
|
+
{
|
2057
|
+
"inputs": [
|
2058
|
+
{
|
2059
|
+
"internalType": "NftId",
|
2060
|
+
"name": "policyNftId",
|
2061
|
+
"type": "uint96"
|
2062
|
+
}
|
2063
|
+
],
|
2064
|
+
"name": "toPolicyKey32",
|
2065
|
+
"outputs": [
|
2066
|
+
{
|
2067
|
+
"internalType": "Key32",
|
2068
|
+
"name": "",
|
2069
|
+
"type": "bytes32"
|
2070
|
+
}
|
2071
|
+
],
|
2072
|
+
"stateMutability": "pure",
|
2073
|
+
"type": "function"
|
2074
|
+
},
|
2075
|
+
{
|
2076
|
+
"inputs": [
|
2077
|
+
{
|
2078
|
+
"internalType": "RoleId",
|
2079
|
+
"name": "roleId",
|
2080
|
+
"type": "uint64"
|
2081
|
+
}
|
2082
|
+
],
|
2083
|
+
"name": "toRoleKey32",
|
2084
|
+
"outputs": [
|
2085
|
+
{
|
2086
|
+
"internalType": "Key32",
|
2087
|
+
"name": "",
|
2088
|
+
"type": "bytes32"
|
2089
|
+
}
|
2090
|
+
],
|
2091
|
+
"stateMutability": "pure",
|
2092
|
+
"type": "function"
|
2093
|
+
},
|
2094
|
+
{
|
2095
|
+
"inputs": [
|
2096
|
+
{
|
2097
|
+
"internalType": "address",
|
2098
|
+
"name": "target",
|
2099
|
+
"type": "address"
|
2100
|
+
}
|
2101
|
+
],
|
2102
|
+
"name": "toTargetKey32",
|
2103
|
+
"outputs": [
|
2104
|
+
{
|
2105
|
+
"internalType": "Key32",
|
2106
|
+
"name": "",
|
2107
|
+
"type": "bytes32"
|
2108
|
+
}
|
2109
|
+
],
|
2110
|
+
"stateMutability": "pure",
|
2111
|
+
"type": "function"
|
2112
|
+
},
|
2113
|
+
{
|
2114
|
+
"inputs": [
|
2115
|
+
{
|
2116
|
+
"internalType": "NftId",
|
2117
|
+
"name": "bundleNftId",
|
2118
|
+
"type": "uint96"
|
2119
|
+
},
|
2120
|
+
{
|
2121
|
+
"components": [
|
2122
|
+
{
|
2123
|
+
"internalType": "NftId",
|
2124
|
+
"name": "poolNftId",
|
2125
|
+
"type": "uint96"
|
2126
|
+
},
|
2127
|
+
{
|
2128
|
+
"components": [
|
2129
|
+
{
|
2130
|
+
"internalType": "UFixed",
|
2131
|
+
"name": "fractionalFee",
|
2132
|
+
"type": "uint256"
|
2133
|
+
},
|
2134
|
+
{
|
2135
|
+
"internalType": "uint256",
|
2136
|
+
"name": "fixedFee",
|
2137
|
+
"type": "uint256"
|
2138
|
+
}
|
2139
|
+
],
|
2140
|
+
"internalType": "struct Fee",
|
2141
|
+
"name": "fee",
|
2142
|
+
"type": "tuple"
|
2143
|
+
},
|
2144
|
+
{
|
2145
|
+
"internalType": "bytes",
|
2146
|
+
"name": "filter",
|
2147
|
+
"type": "bytes"
|
2148
|
+
},
|
2149
|
+
{
|
2150
|
+
"internalType": "uint256",
|
2151
|
+
"name": "capitalAmount",
|
2152
|
+
"type": "uint256"
|
2153
|
+
},
|
2154
|
+
{
|
2155
|
+
"internalType": "uint256",
|
2156
|
+
"name": "lockedAmount",
|
2157
|
+
"type": "uint256"
|
2158
|
+
},
|
2159
|
+
{
|
2160
|
+
"internalType": "uint256",
|
2161
|
+
"name": "balanceAmount",
|
2162
|
+
"type": "uint256"
|
2163
|
+
},
|
2164
|
+
{
|
2165
|
+
"internalType": "Timestamp",
|
2166
|
+
"name": "expiredAt",
|
2167
|
+
"type": "uint40"
|
2168
|
+
},
|
2169
|
+
{
|
2170
|
+
"internalType": "Timestamp",
|
2171
|
+
"name": "closedAt",
|
2172
|
+
"type": "uint40"
|
2173
|
+
}
|
2174
|
+
],
|
2175
|
+
"internalType": "struct IBundle.BundleInfo",
|
2176
|
+
"name": "bundle",
|
2177
|
+
"type": "tuple"
|
2178
|
+
},
|
2179
|
+
{
|
2180
|
+
"internalType": "StateId",
|
2181
|
+
"name": "newState",
|
2182
|
+
"type": "uint8"
|
2183
|
+
}
|
2184
|
+
],
|
2185
|
+
"name": "updateBundle",
|
2186
|
+
"outputs": [],
|
2187
|
+
"stateMutability": "nonpayable",
|
2188
|
+
"type": "function"
|
2189
|
+
},
|
2190
|
+
{
|
2191
|
+
"inputs": [
|
2192
|
+
{
|
2193
|
+
"internalType": "NftId",
|
2194
|
+
"name": "bundleNftId",
|
2195
|
+
"type": "uint96"
|
2196
|
+
},
|
2197
|
+
{
|
2198
|
+
"internalType": "StateId",
|
2199
|
+
"name": "newState",
|
2200
|
+
"type": "uint8"
|
2201
|
+
}
|
2202
|
+
],
|
2203
|
+
"name": "updateBundleState",
|
2204
|
+
"outputs": [],
|
2205
|
+
"stateMutability": "nonpayable",
|
2206
|
+
"type": "function"
|
2207
|
+
},
|
2208
|
+
{
|
2209
|
+
"inputs": [
|
2210
|
+
{
|
2211
|
+
"internalType": "NftId",
|
2212
|
+
"name": "policyNftId",
|
2213
|
+
"type": "uint96"
|
2214
|
+
},
|
2215
|
+
{
|
2216
|
+
"internalType": "NumberId",
|
2217
|
+
"name": "claimId",
|
2218
|
+
"type": "uint32"
|
2219
|
+
},
|
2220
|
+
{
|
2221
|
+
"components": [
|
2222
|
+
{
|
2223
|
+
"internalType": "uint256",
|
2224
|
+
"name": "claimAmount",
|
2225
|
+
"type": "uint256"
|
2226
|
+
},
|
2227
|
+
{
|
2228
|
+
"internalType": "uint256",
|
2229
|
+
"name": "paidAmount",
|
2230
|
+
"type": "uint256"
|
2231
|
+
},
|
2232
|
+
{
|
2233
|
+
"internalType": "bytes",
|
2234
|
+
"name": "data",
|
2235
|
+
"type": "bytes"
|
2236
|
+
},
|
2237
|
+
{
|
2238
|
+
"internalType": "Timestamp",
|
2239
|
+
"name": "closedAt",
|
2240
|
+
"type": "uint40"
|
2241
|
+
}
|
2242
|
+
],
|
2243
|
+
"internalType": "struct IPolicy.ClaimInfo",
|
2244
|
+
"name": "claim",
|
2245
|
+
"type": "tuple"
|
2246
|
+
},
|
2247
|
+
{
|
2248
|
+
"internalType": "StateId",
|
2249
|
+
"name": "newState",
|
2250
|
+
"type": "uint8"
|
2251
|
+
}
|
2252
|
+
],
|
2253
|
+
"name": "updateClaim",
|
2254
|
+
"outputs": [],
|
2255
|
+
"stateMutability": "nonpayable",
|
2256
|
+
"type": "function"
|
2257
|
+
},
|
2258
|
+
{
|
2259
|
+
"inputs": [
|
2260
|
+
{
|
2261
|
+
"internalType": "NftId",
|
2262
|
+
"name": "policyNftId",
|
2263
|
+
"type": "uint96"
|
2264
|
+
},
|
2265
|
+
{
|
2266
|
+
"internalType": "NumberId",
|
2267
|
+
"name": "payoutId",
|
2268
|
+
"type": "uint32"
|
2269
|
+
},
|
2270
|
+
{
|
2271
|
+
"components": [
|
2272
|
+
{
|
2273
|
+
"internalType": "NumberId",
|
2274
|
+
"name": "claimId",
|
2275
|
+
"type": "uint32"
|
2276
|
+
},
|
2277
|
+
{
|
2278
|
+
"internalType": "uint256",
|
2279
|
+
"name": "amount",
|
2280
|
+
"type": "uint256"
|
2281
|
+
},
|
2282
|
+
{
|
2283
|
+
"internalType": "bytes",
|
2284
|
+
"name": "data",
|
2285
|
+
"type": "bytes"
|
2286
|
+
},
|
2287
|
+
{
|
2288
|
+
"internalType": "Timestamp",
|
2289
|
+
"name": "paidAt",
|
2290
|
+
"type": "uint40"
|
2291
|
+
}
|
2292
|
+
],
|
2293
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
2294
|
+
"name": "payout",
|
2295
|
+
"type": "tuple"
|
2296
|
+
},
|
2297
|
+
{
|
2298
|
+
"internalType": "StateId",
|
2299
|
+
"name": "newState",
|
2300
|
+
"type": "uint8"
|
2301
|
+
}
|
2302
|
+
],
|
2303
|
+
"name": "updateClaim",
|
2304
|
+
"outputs": [],
|
2305
|
+
"stateMutability": "nonpayable",
|
2306
|
+
"type": "function"
|
2307
|
+
},
|
2308
|
+
{
|
2309
|
+
"inputs": [
|
2310
|
+
{
|
2311
|
+
"internalType": "NftId",
|
2312
|
+
"name": "policyNftId",
|
2313
|
+
"type": "uint96"
|
2314
|
+
},
|
2315
|
+
{
|
2316
|
+
"internalType": "StateId",
|
2317
|
+
"name": "newState",
|
2318
|
+
"type": "uint8"
|
2319
|
+
}
|
2320
|
+
],
|
2321
|
+
"name": "updateClaimState",
|
2322
|
+
"outputs": [],
|
2323
|
+
"stateMutability": "nonpayable",
|
2324
|
+
"type": "function"
|
2325
|
+
},
|
2326
|
+
{
|
2327
|
+
"inputs": [
|
2328
|
+
{
|
2329
|
+
"internalType": "NftId",
|
2330
|
+
"name": "distributionNftId",
|
2331
|
+
"type": "uint96"
|
2332
|
+
},
|
2333
|
+
{
|
2334
|
+
"components": [
|
2335
|
+
{
|
2336
|
+
"internalType": "NftId",
|
2337
|
+
"name": "productNftId",
|
2338
|
+
"type": "uint96"
|
2339
|
+
},
|
2340
|
+
{
|
2341
|
+
"internalType": "contract TokenHandler",
|
2342
|
+
"name": "tokenHandler",
|
2343
|
+
"type": "address"
|
2344
|
+
},
|
2345
|
+
{
|
2346
|
+
"components": [
|
2347
|
+
{
|
2348
|
+
"internalType": "UFixed",
|
2349
|
+
"name": "fractionalFee",
|
2350
|
+
"type": "uint256"
|
2351
|
+
},
|
2352
|
+
{
|
2353
|
+
"internalType": "uint256",
|
2354
|
+
"name": "fixedFee",
|
2355
|
+
"type": "uint256"
|
2356
|
+
}
|
2357
|
+
],
|
2358
|
+
"internalType": "struct Fee",
|
2359
|
+
"name": "distributionFee",
|
2360
|
+
"type": "tuple"
|
2361
|
+
},
|
2362
|
+
{
|
2363
|
+
"internalType": "bool",
|
2364
|
+
"name": "isIntercepting",
|
2365
|
+
"type": "bool"
|
2366
|
+
},
|
2367
|
+
{
|
2368
|
+
"internalType": "address",
|
2369
|
+
"name": "wallet",
|
2370
|
+
"type": "address"
|
2371
|
+
}
|
2372
|
+
],
|
2373
|
+
"internalType": "struct ISetup.DistributionSetupInfo",
|
2374
|
+
"name": "setup",
|
2375
|
+
"type": "tuple"
|
2376
|
+
},
|
2377
|
+
{
|
2378
|
+
"internalType": "StateId",
|
2379
|
+
"name": "newState",
|
2380
|
+
"type": "uint8"
|
2381
|
+
}
|
2382
|
+
],
|
2383
|
+
"name": "updateDistributionSetup",
|
2384
|
+
"outputs": [],
|
2385
|
+
"stateMutability": "nonpayable",
|
2386
|
+
"type": "function"
|
2387
|
+
},
|
2388
|
+
{
|
2389
|
+
"inputs": [
|
2390
|
+
{
|
2391
|
+
"internalType": "NftId",
|
2392
|
+
"name": "distributionNftId",
|
2393
|
+
"type": "uint96"
|
2394
|
+
},
|
2395
|
+
{
|
2396
|
+
"internalType": "StateId",
|
2397
|
+
"name": "newState",
|
2398
|
+
"type": "uint8"
|
2399
|
+
}
|
2400
|
+
],
|
2401
|
+
"name": "updateDistributionSetupState",
|
2402
|
+
"outputs": [],
|
2403
|
+
"stateMutability": "nonpayable",
|
2404
|
+
"type": "function"
|
2405
|
+
},
|
2406
|
+
{
|
2407
|
+
"inputs": [
|
2408
|
+
{
|
2409
|
+
"internalType": "NftId",
|
2410
|
+
"name": "policyNftId",
|
2411
|
+
"type": "uint96"
|
2412
|
+
},
|
2413
|
+
{
|
2414
|
+
"internalType": "NumberId",
|
2415
|
+
"name": "payoutId",
|
2416
|
+
"type": "uint32"
|
2417
|
+
},
|
2418
|
+
{
|
2419
|
+
"components": [
|
2420
|
+
{
|
2421
|
+
"internalType": "NumberId",
|
2422
|
+
"name": "claimId",
|
2423
|
+
"type": "uint32"
|
2424
|
+
},
|
2425
|
+
{
|
2426
|
+
"internalType": "uint256",
|
2427
|
+
"name": "amount",
|
2428
|
+
"type": "uint256"
|
2429
|
+
},
|
2430
|
+
{
|
2431
|
+
"internalType": "bytes",
|
2432
|
+
"name": "data",
|
2433
|
+
"type": "bytes"
|
2434
|
+
},
|
2435
|
+
{
|
2436
|
+
"internalType": "Timestamp",
|
2437
|
+
"name": "paidAt",
|
2438
|
+
"type": "uint40"
|
2439
|
+
}
|
2440
|
+
],
|
2441
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
2442
|
+
"name": "payout",
|
2443
|
+
"type": "tuple"
|
2444
|
+
},
|
2445
|
+
{
|
2446
|
+
"internalType": "StateId",
|
2447
|
+
"name": "newState",
|
2448
|
+
"type": "uint8"
|
2449
|
+
}
|
2450
|
+
],
|
2451
|
+
"name": "updateDistributor",
|
2452
|
+
"outputs": [],
|
2453
|
+
"stateMutability": "nonpayable",
|
2454
|
+
"type": "function"
|
2455
|
+
},
|
2456
|
+
{
|
2457
|
+
"inputs": [
|
2458
|
+
{
|
2459
|
+
"internalType": "NftId",
|
2460
|
+
"name": "policyNftId",
|
1295
2461
|
"type": "uint96"
|
1296
2462
|
},
|
2463
|
+
{
|
2464
|
+
"internalType": "StateId",
|
2465
|
+
"name": "newState",
|
2466
|
+
"type": "uint8"
|
2467
|
+
}
|
2468
|
+
],
|
2469
|
+
"name": "updateDistributorState",
|
2470
|
+
"outputs": [],
|
2471
|
+
"stateMutability": "nonpayable",
|
2472
|
+
"type": "function"
|
2473
|
+
},
|
2474
|
+
{
|
2475
|
+
"inputs": [
|
1297
2476
|
{
|
1298
2477
|
"internalType": "NftId",
|
1299
|
-
"name": "
|
2478
|
+
"name": "policyNftId",
|
2479
|
+
"type": "uint96"
|
2480
|
+
},
|
2481
|
+
{
|
2482
|
+
"internalType": "NumberId",
|
2483
|
+
"name": "payoutId",
|
2484
|
+
"type": "uint32"
|
2485
|
+
},
|
2486
|
+
{
|
2487
|
+
"components": [
|
2488
|
+
{
|
2489
|
+
"internalType": "NumberId",
|
2490
|
+
"name": "claimId",
|
2491
|
+
"type": "uint32"
|
2492
|
+
},
|
2493
|
+
{
|
2494
|
+
"internalType": "uint256",
|
2495
|
+
"name": "amount",
|
2496
|
+
"type": "uint256"
|
2497
|
+
},
|
2498
|
+
{
|
2499
|
+
"internalType": "bytes",
|
2500
|
+
"name": "data",
|
2501
|
+
"type": "bytes"
|
2502
|
+
},
|
2503
|
+
{
|
2504
|
+
"internalType": "Timestamp",
|
2505
|
+
"name": "paidAt",
|
2506
|
+
"type": "uint40"
|
2507
|
+
}
|
2508
|
+
],
|
2509
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
2510
|
+
"name": "payout",
|
2511
|
+
"type": "tuple"
|
2512
|
+
},
|
2513
|
+
{
|
2514
|
+
"internalType": "StateId",
|
2515
|
+
"name": "newState",
|
2516
|
+
"type": "uint8"
|
2517
|
+
}
|
2518
|
+
],
|
2519
|
+
"name": "updateDistributorType",
|
2520
|
+
"outputs": [],
|
2521
|
+
"stateMutability": "nonpayable",
|
2522
|
+
"type": "function"
|
2523
|
+
},
|
2524
|
+
{
|
2525
|
+
"inputs": [
|
2526
|
+
{
|
2527
|
+
"internalType": "NftId",
|
2528
|
+
"name": "policyNftId",
|
1300
2529
|
"type": "uint96"
|
2530
|
+
},
|
2531
|
+
{
|
2532
|
+
"internalType": "StateId",
|
2533
|
+
"name": "newState",
|
2534
|
+
"type": "uint8"
|
1301
2535
|
}
|
1302
2536
|
],
|
1303
|
-
"name": "
|
2537
|
+
"name": "updateDistributorTypeState",
|
1304
2538
|
"outputs": [],
|
1305
2539
|
"stateMutability": "nonpayable",
|
1306
2540
|
"type": "function"
|
1307
2541
|
},
|
1308
2542
|
{
|
1309
|
-
"inputs": [
|
1310
|
-
|
1311
|
-
|
2543
|
+
"inputs": [
|
2544
|
+
{
|
2545
|
+
"internalType": "NftId",
|
2546
|
+
"name": "policyNftId",
|
2547
|
+
"type": "uint96"
|
2548
|
+
},
|
2549
|
+
{
|
2550
|
+
"internalType": "StateId",
|
2551
|
+
"name": "newState",
|
2552
|
+
"type": "uint8"
|
2553
|
+
}
|
2554
|
+
],
|
2555
|
+
"name": "updatePayoutState",
|
2556
|
+
"outputs": [],
|
2557
|
+
"stateMutability": "nonpayable",
|
2558
|
+
"type": "function"
|
2559
|
+
},
|
2560
|
+
{
|
2561
|
+
"inputs": [
|
2562
|
+
{
|
2563
|
+
"internalType": "NftId",
|
2564
|
+
"name": "policyNftId",
|
2565
|
+
"type": "uint96"
|
2566
|
+
},
|
2567
|
+
{
|
2568
|
+
"components": [
|
2569
|
+
{
|
2570
|
+
"internalType": "NftId",
|
2571
|
+
"name": "productNftId",
|
2572
|
+
"type": "uint96"
|
2573
|
+
},
|
2574
|
+
{
|
2575
|
+
"internalType": "NftId",
|
2576
|
+
"name": "bundleNftId",
|
2577
|
+
"type": "uint96"
|
2578
|
+
},
|
2579
|
+
{
|
2580
|
+
"internalType": "ReferralId",
|
2581
|
+
"name": "referralId",
|
2582
|
+
"type": "bytes8"
|
2583
|
+
},
|
2584
|
+
{
|
2585
|
+
"internalType": "RiskId",
|
2586
|
+
"name": "riskId",
|
2587
|
+
"type": "bytes8"
|
2588
|
+
},
|
2589
|
+
{
|
2590
|
+
"internalType": "uint256",
|
2591
|
+
"name": "sumInsuredAmount",
|
2592
|
+
"type": "uint256"
|
2593
|
+
},
|
2594
|
+
{
|
2595
|
+
"internalType": "uint256",
|
2596
|
+
"name": "premiumAmount",
|
2597
|
+
"type": "uint256"
|
2598
|
+
},
|
2599
|
+
{
|
2600
|
+
"internalType": "uint256",
|
2601
|
+
"name": "premiumPaidAmount",
|
2602
|
+
"type": "uint256"
|
2603
|
+
},
|
2604
|
+
{
|
2605
|
+
"internalType": "uint256",
|
2606
|
+
"name": "lifetime",
|
2607
|
+
"type": "uint256"
|
2608
|
+
},
|
2609
|
+
{
|
2610
|
+
"internalType": "bytes",
|
2611
|
+
"name": "applicationData",
|
2612
|
+
"type": "bytes"
|
2613
|
+
},
|
2614
|
+
{
|
2615
|
+
"internalType": "bytes",
|
2616
|
+
"name": "policyData",
|
2617
|
+
"type": "bytes"
|
2618
|
+
},
|
2619
|
+
{
|
2620
|
+
"internalType": "uint16",
|
2621
|
+
"name": "claimsCount",
|
2622
|
+
"type": "uint16"
|
2623
|
+
},
|
2624
|
+
{
|
2625
|
+
"internalType": "uint16",
|
2626
|
+
"name": "openClaimsCount",
|
2627
|
+
"type": "uint16"
|
2628
|
+
},
|
2629
|
+
{
|
2630
|
+
"internalType": "uint256",
|
2631
|
+
"name": "payoutAmount",
|
2632
|
+
"type": "uint256"
|
2633
|
+
},
|
2634
|
+
{
|
2635
|
+
"internalType": "Timestamp",
|
2636
|
+
"name": "activatedAt",
|
2637
|
+
"type": "uint40"
|
2638
|
+
},
|
2639
|
+
{
|
2640
|
+
"internalType": "Timestamp",
|
2641
|
+
"name": "expiredAt",
|
2642
|
+
"type": "uint40"
|
2643
|
+
},
|
2644
|
+
{
|
2645
|
+
"internalType": "Timestamp",
|
2646
|
+
"name": "closedAt",
|
2647
|
+
"type": "uint40"
|
2648
|
+
}
|
2649
|
+
],
|
2650
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
2651
|
+
"name": "policy",
|
2652
|
+
"type": "tuple"
|
2653
|
+
},
|
2654
|
+
{
|
2655
|
+
"internalType": "StateId",
|
2656
|
+
"name": "newState",
|
2657
|
+
"type": "uint8"
|
2658
|
+
}
|
2659
|
+
],
|
2660
|
+
"name": "updatePolicy",
|
2661
|
+
"outputs": [],
|
2662
|
+
"stateMutability": "nonpayable",
|
2663
|
+
"type": "function"
|
2664
|
+
},
|
2665
|
+
{
|
2666
|
+
"inputs": [
|
2667
|
+
{
|
2668
|
+
"internalType": "NftId",
|
2669
|
+
"name": "policyNftId",
|
2670
|
+
"type": "uint96"
|
2671
|
+
},
|
2672
|
+
{
|
2673
|
+
"internalType": "StateId",
|
2674
|
+
"name": "newState",
|
2675
|
+
"type": "uint8"
|
2676
|
+
}
|
2677
|
+
],
|
2678
|
+
"name": "updatePolicyState",
|
2679
|
+
"outputs": [],
|
2680
|
+
"stateMutability": "nonpayable",
|
2681
|
+
"type": "function"
|
2682
|
+
},
|
2683
|
+
{
|
2684
|
+
"inputs": [
|
2685
|
+
{
|
2686
|
+
"internalType": "NftId",
|
2687
|
+
"name": "distributionNftId",
|
2688
|
+
"type": "uint96"
|
2689
|
+
},
|
2690
|
+
{
|
2691
|
+
"components": [
|
2692
|
+
{
|
2693
|
+
"internalType": "NftId",
|
2694
|
+
"name": "productNftId",
|
2695
|
+
"type": "uint96"
|
2696
|
+
},
|
2697
|
+
{
|
2698
|
+
"internalType": "contract TokenHandler",
|
2699
|
+
"name": "tokenHandler",
|
2700
|
+
"type": "address"
|
2701
|
+
},
|
2702
|
+
{
|
2703
|
+
"internalType": "UFixed",
|
2704
|
+
"name": "collateralizationLevel",
|
2705
|
+
"type": "uint256"
|
2706
|
+
},
|
2707
|
+
{
|
2708
|
+
"components": [
|
2709
|
+
{
|
2710
|
+
"internalType": "UFixed",
|
2711
|
+
"name": "fractionalFee",
|
2712
|
+
"type": "uint256"
|
2713
|
+
},
|
2714
|
+
{
|
2715
|
+
"internalType": "uint256",
|
2716
|
+
"name": "fixedFee",
|
2717
|
+
"type": "uint256"
|
2718
|
+
}
|
2719
|
+
],
|
2720
|
+
"internalType": "struct Fee",
|
2721
|
+
"name": "poolFee",
|
2722
|
+
"type": "tuple"
|
2723
|
+
},
|
2724
|
+
{
|
2725
|
+
"components": [
|
2726
|
+
{
|
2727
|
+
"internalType": "UFixed",
|
2728
|
+
"name": "fractionalFee",
|
2729
|
+
"type": "uint256"
|
2730
|
+
},
|
2731
|
+
{
|
2732
|
+
"internalType": "uint256",
|
2733
|
+
"name": "fixedFee",
|
2734
|
+
"type": "uint256"
|
2735
|
+
}
|
2736
|
+
],
|
2737
|
+
"internalType": "struct Fee",
|
2738
|
+
"name": "stakingFee",
|
2739
|
+
"type": "tuple"
|
2740
|
+
},
|
2741
|
+
{
|
2742
|
+
"components": [
|
2743
|
+
{
|
2744
|
+
"internalType": "UFixed",
|
2745
|
+
"name": "fractionalFee",
|
2746
|
+
"type": "uint256"
|
2747
|
+
},
|
2748
|
+
{
|
2749
|
+
"internalType": "uint256",
|
2750
|
+
"name": "fixedFee",
|
2751
|
+
"type": "uint256"
|
2752
|
+
}
|
2753
|
+
],
|
2754
|
+
"internalType": "struct Fee",
|
2755
|
+
"name": "performanceFee",
|
2756
|
+
"type": "tuple"
|
2757
|
+
},
|
2758
|
+
{
|
2759
|
+
"internalType": "bool",
|
2760
|
+
"name": "isIntercepting",
|
2761
|
+
"type": "bool"
|
2762
|
+
},
|
2763
|
+
{
|
2764
|
+
"internalType": "address",
|
2765
|
+
"name": "wallet",
|
2766
|
+
"type": "address"
|
2767
|
+
}
|
2768
|
+
],
|
2769
|
+
"internalType": "struct ISetup.PoolSetupInfo",
|
2770
|
+
"name": "setup",
|
2771
|
+
"type": "tuple"
|
2772
|
+
},
|
1312
2773
|
{
|
1313
|
-
"internalType": "
|
1314
|
-
"name": "
|
1315
|
-
"type": "
|
2774
|
+
"internalType": "StateId",
|
2775
|
+
"name": "newState",
|
2776
|
+
"type": "uint8"
|
1316
2777
|
}
|
1317
2778
|
],
|
2779
|
+
"name": "updatePoolSetup",
|
2780
|
+
"outputs": [],
|
1318
2781
|
"stateMutability": "nonpayable",
|
1319
2782
|
"type": "function"
|
1320
2783
|
},
|
1321
2784
|
{
|
1322
2785
|
"inputs": [
|
1323
|
-
{
|
1324
|
-
"internalType": "contract IComponentContract",
|
1325
|
-
"name": "component",
|
1326
|
-
"type": "address"
|
1327
|
-
}
|
1328
|
-
],
|
1329
|
-
"name": "registerComponent",
|
1330
|
-
"outputs": [
|
1331
2786
|
{
|
1332
2787
|
"internalType": "NftId",
|
1333
|
-
"name": "
|
2788
|
+
"name": "distributionNftId",
|
1334
2789
|
"type": "uint96"
|
1335
|
-
}
|
1336
|
-
],
|
1337
|
-
"stateMutability": "nonpayable",
|
1338
|
-
"type": "function"
|
1339
|
-
},
|
1340
|
-
{
|
1341
|
-
"inputs": [
|
2790
|
+
},
|
1342
2791
|
{
|
1343
|
-
"internalType": "
|
1344
|
-
"name": "
|
1345
|
-
"type": "
|
2792
|
+
"internalType": "StateId",
|
2793
|
+
"name": "newState",
|
2794
|
+
"type": "uint8"
|
1346
2795
|
}
|
1347
2796
|
],
|
1348
|
-
"name": "
|
2797
|
+
"name": "updatePoolSetupState",
|
1349
2798
|
"outputs": [],
|
1350
2799
|
"stateMutability": "nonpayable",
|
1351
2800
|
"type": "function"
|
@@ -1354,50 +2803,145 @@
|
|
1354
2803
|
"inputs": [
|
1355
2804
|
{
|
1356
2805
|
"internalType": "NftId",
|
1357
|
-
"name": "
|
2806
|
+
"name": "productNftId",
|
1358
2807
|
"type": "uint96"
|
1359
2808
|
},
|
1360
|
-
{
|
1361
|
-
"internalType": "address",
|
1362
|
-
"name": "wallet",
|
1363
|
-
"type": "address"
|
1364
|
-
},
|
1365
2809
|
{
|
1366
2810
|
"components": [
|
1367
2811
|
{
|
1368
|
-
"internalType": "
|
1369
|
-
"name": "
|
1370
|
-
"type": "
|
2812
|
+
"internalType": "contract IERC20Metadata",
|
2813
|
+
"name": "token",
|
2814
|
+
"type": "address"
|
1371
2815
|
},
|
1372
2816
|
{
|
1373
|
-
"internalType": "
|
1374
|
-
"name": "
|
1375
|
-
"type": "
|
1376
|
-
}
|
1377
|
-
],
|
1378
|
-
"internalType": "struct Fee",
|
1379
|
-
"name": "stakingFee",
|
1380
|
-
"type": "tuple"
|
1381
|
-
},
|
1382
|
-
{
|
1383
|
-
"components": [
|
2817
|
+
"internalType": "contract TokenHandler",
|
2818
|
+
"name": "tokenHandler",
|
2819
|
+
"type": "address"
|
2820
|
+
},
|
1384
2821
|
{
|
1385
|
-
"internalType": "
|
1386
|
-
"name": "
|
1387
|
-
"type": "
|
2822
|
+
"internalType": "NftId",
|
2823
|
+
"name": "distributionNftId",
|
2824
|
+
"type": "uint96"
|
1388
2825
|
},
|
1389
2826
|
{
|
1390
|
-
"internalType": "
|
1391
|
-
"name": "
|
1392
|
-
"type": "
|
2827
|
+
"internalType": "NftId",
|
2828
|
+
"name": "poolNftId",
|
2829
|
+
"type": "uint96"
|
2830
|
+
},
|
2831
|
+
{
|
2832
|
+
"components": [
|
2833
|
+
{
|
2834
|
+
"internalType": "UFixed",
|
2835
|
+
"name": "fractionalFee",
|
2836
|
+
"type": "uint256"
|
2837
|
+
},
|
2838
|
+
{
|
2839
|
+
"internalType": "uint256",
|
2840
|
+
"name": "fixedFee",
|
2841
|
+
"type": "uint256"
|
2842
|
+
}
|
2843
|
+
],
|
2844
|
+
"internalType": "struct Fee",
|
2845
|
+
"name": "distributionFee",
|
2846
|
+
"type": "tuple"
|
2847
|
+
},
|
2848
|
+
{
|
2849
|
+
"components": [
|
2850
|
+
{
|
2851
|
+
"internalType": "UFixed",
|
2852
|
+
"name": "fractionalFee",
|
2853
|
+
"type": "uint256"
|
2854
|
+
},
|
2855
|
+
{
|
2856
|
+
"internalType": "uint256",
|
2857
|
+
"name": "fixedFee",
|
2858
|
+
"type": "uint256"
|
2859
|
+
}
|
2860
|
+
],
|
2861
|
+
"internalType": "struct Fee",
|
2862
|
+
"name": "productFee",
|
2863
|
+
"type": "tuple"
|
2864
|
+
},
|
2865
|
+
{
|
2866
|
+
"components": [
|
2867
|
+
{
|
2868
|
+
"internalType": "UFixed",
|
2869
|
+
"name": "fractionalFee",
|
2870
|
+
"type": "uint256"
|
2871
|
+
},
|
2872
|
+
{
|
2873
|
+
"internalType": "uint256",
|
2874
|
+
"name": "fixedFee",
|
2875
|
+
"type": "uint256"
|
2876
|
+
}
|
2877
|
+
],
|
2878
|
+
"internalType": "struct Fee",
|
2879
|
+
"name": "processingFee",
|
2880
|
+
"type": "tuple"
|
2881
|
+
},
|
2882
|
+
{
|
2883
|
+
"components": [
|
2884
|
+
{
|
2885
|
+
"internalType": "UFixed",
|
2886
|
+
"name": "fractionalFee",
|
2887
|
+
"type": "uint256"
|
2888
|
+
},
|
2889
|
+
{
|
2890
|
+
"internalType": "uint256",
|
2891
|
+
"name": "fixedFee",
|
2892
|
+
"type": "uint256"
|
2893
|
+
}
|
2894
|
+
],
|
2895
|
+
"internalType": "struct Fee",
|
2896
|
+
"name": "poolFee",
|
2897
|
+
"type": "tuple"
|
2898
|
+
},
|
2899
|
+
{
|
2900
|
+
"components": [
|
2901
|
+
{
|
2902
|
+
"internalType": "UFixed",
|
2903
|
+
"name": "fractionalFee",
|
2904
|
+
"type": "uint256"
|
2905
|
+
},
|
2906
|
+
{
|
2907
|
+
"internalType": "uint256",
|
2908
|
+
"name": "fixedFee",
|
2909
|
+
"type": "uint256"
|
2910
|
+
}
|
2911
|
+
],
|
2912
|
+
"internalType": "struct Fee",
|
2913
|
+
"name": "stakingFee",
|
2914
|
+
"type": "tuple"
|
2915
|
+
},
|
2916
|
+
{
|
2917
|
+
"components": [
|
2918
|
+
{
|
2919
|
+
"internalType": "UFixed",
|
2920
|
+
"name": "fractionalFee",
|
2921
|
+
"type": "uint256"
|
2922
|
+
},
|
2923
|
+
{
|
2924
|
+
"internalType": "uint256",
|
2925
|
+
"name": "fixedFee",
|
2926
|
+
"type": "uint256"
|
2927
|
+
}
|
2928
|
+
],
|
2929
|
+
"internalType": "struct Fee",
|
2930
|
+
"name": "performanceFee",
|
2931
|
+
"type": "tuple"
|
1393
2932
|
}
|
1394
2933
|
],
|
1395
|
-
"internalType": "struct
|
1396
|
-
"name": "
|
2934
|
+
"internalType": "struct ISetup.ProductSetupInfo",
|
2935
|
+
"name": "setup",
|
1397
2936
|
"type": "tuple"
|
2937
|
+
},
|
2938
|
+
{
|
2939
|
+
"internalType": "StateId",
|
2940
|
+
"name": "newState",
|
2941
|
+
"type": "uint8"
|
1398
2942
|
}
|
1399
2943
|
],
|
1400
|
-
"name": "
|
2944
|
+
"name": "updateProductSetup",
|
1401
2945
|
"outputs": [],
|
1402
2946
|
"stateMutability": "nonpayable",
|
1403
2947
|
"type": "function"
|
@@ -1410,61 +2954,62 @@
|
|
1410
2954
|
"type": "uint96"
|
1411
2955
|
},
|
1412
2956
|
{
|
1413
|
-
"internalType": "
|
1414
|
-
"name": "
|
1415
|
-
"type": "
|
1416
|
-
}
|
2957
|
+
"internalType": "StateId",
|
2958
|
+
"name": "newState",
|
2959
|
+
"type": "uint8"
|
2960
|
+
}
|
2961
|
+
],
|
2962
|
+
"name": "updateProductSetupState",
|
2963
|
+
"outputs": [],
|
2964
|
+
"stateMutability": "nonpayable",
|
2965
|
+
"type": "function"
|
2966
|
+
},
|
2967
|
+
{
|
2968
|
+
"inputs": [
|
1417
2969
|
{
|
1418
2970
|
"internalType": "NftId",
|
1419
|
-
"name": "
|
2971
|
+
"name": "policyNftId",
|
1420
2972
|
"type": "uint96"
|
1421
2973
|
},
|
1422
2974
|
{
|
1423
|
-
"internalType": "
|
1424
|
-
"name": "
|
1425
|
-
"type": "
|
1426
|
-
},
|
1427
|
-
{
|
1428
|
-
"internalType": "address",
|
1429
|
-
"name": "wallet",
|
1430
|
-
"type": "address"
|
2975
|
+
"internalType": "NumberId",
|
2976
|
+
"name": "payoutId",
|
2977
|
+
"type": "uint32"
|
1431
2978
|
},
|
1432
2979
|
{
|
1433
2980
|
"components": [
|
1434
2981
|
{
|
1435
|
-
"internalType": "
|
1436
|
-
"name": "
|
1437
|
-
"type": "
|
2982
|
+
"internalType": "NumberId",
|
2983
|
+
"name": "claimId",
|
2984
|
+
"type": "uint32"
|
1438
2985
|
},
|
1439
2986
|
{
|
1440
2987
|
"internalType": "uint256",
|
1441
|
-
"name": "
|
2988
|
+
"name": "amount",
|
1442
2989
|
"type": "uint256"
|
1443
|
-
}
|
1444
|
-
],
|
1445
|
-
"internalType": "struct Fee",
|
1446
|
-
"name": "policyFee",
|
1447
|
-
"type": "tuple"
|
1448
|
-
},
|
1449
|
-
{
|
1450
|
-
"components": [
|
2990
|
+
},
|
1451
2991
|
{
|
1452
|
-
"internalType": "
|
1453
|
-
"name": "
|
1454
|
-
"type": "
|
2992
|
+
"internalType": "bytes",
|
2993
|
+
"name": "data",
|
2994
|
+
"type": "bytes"
|
1455
2995
|
},
|
1456
2996
|
{
|
1457
|
-
"internalType": "
|
1458
|
-
"name": "
|
1459
|
-
"type": "
|
2997
|
+
"internalType": "Timestamp",
|
2998
|
+
"name": "paidAt",
|
2999
|
+
"type": "uint40"
|
1460
3000
|
}
|
1461
3001
|
],
|
1462
|
-
"internalType": "struct
|
1463
|
-
"name": "
|
3002
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
3003
|
+
"name": "payout",
|
1464
3004
|
"type": "tuple"
|
3005
|
+
},
|
3006
|
+
{
|
3007
|
+
"internalType": "StateId",
|
3008
|
+
"name": "newState",
|
3009
|
+
"type": "uint8"
|
1465
3010
|
}
|
1466
3011
|
],
|
1467
|
-
"name": "
|
3012
|
+
"name": "updateReferral",
|
1468
3013
|
"outputs": [],
|
1469
3014
|
"stateMutability": "nonpayable",
|
1470
3015
|
"type": "function"
|
@@ -1472,100 +3017,70 @@
|
|
1472
3017
|
{
|
1473
3018
|
"inputs": [
|
1474
3019
|
{
|
1475
|
-
"internalType": "
|
1476
|
-
"name": "
|
1477
|
-
"type": "
|
3020
|
+
"internalType": "NftId",
|
3021
|
+
"name": "policyNftId",
|
3022
|
+
"type": "uint96"
|
1478
3023
|
},
|
1479
3024
|
{
|
1480
|
-
"internalType": "
|
1481
|
-
"name": "
|
1482
|
-
"type": "
|
3025
|
+
"internalType": "StateId",
|
3026
|
+
"name": "newState",
|
3027
|
+
"type": "uint8"
|
1483
3028
|
}
|
1484
3029
|
],
|
1485
|
-
"name": "
|
3030
|
+
"name": "updateReferralState",
|
1486
3031
|
"outputs": [],
|
1487
3032
|
"stateMutability": "nonpayable",
|
1488
3033
|
"type": "function"
|
1489
3034
|
},
|
1490
3035
|
{
|
1491
3036
|
"inputs": [
|
3037
|
+
{
|
3038
|
+
"internalType": "RiskId",
|
3039
|
+
"name": "riskId",
|
3040
|
+
"type": "bytes8"
|
3041
|
+
},
|
1492
3042
|
{
|
1493
3043
|
"components": [
|
1494
3044
|
{
|
1495
3045
|
"internalType": "NftId",
|
1496
|
-
"name": "
|
3046
|
+
"name": "productNftId",
|
1497
3047
|
"type": "uint96"
|
1498
3048
|
},
|
1499
3049
|
{
|
1500
|
-
"internalType": "
|
1501
|
-
"name": "
|
1502
|
-
"type": "
|
1503
|
-
},
|
1504
|
-
{
|
1505
|
-
"internalType": "contract IERC20Metadata",
|
1506
|
-
"name": "token",
|
1507
|
-
"type": "address"
|
3050
|
+
"internalType": "bytes",
|
3051
|
+
"name": "data",
|
3052
|
+
"type": "bytes"
|
1508
3053
|
}
|
1509
3054
|
],
|
1510
|
-
"internalType": "struct
|
1511
|
-
"name": "
|
3055
|
+
"internalType": "struct IRisk.RiskInfo",
|
3056
|
+
"name": "risk",
|
1512
3057
|
"type": "tuple"
|
1513
|
-
}
|
1514
|
-
],
|
1515
|
-
"name": "setComponentInfo",
|
1516
|
-
"outputs": [
|
3058
|
+
},
|
1517
3059
|
{
|
1518
|
-
"internalType": "
|
1519
|
-
"name": "
|
1520
|
-
"type": "
|
3060
|
+
"internalType": "StateId",
|
3061
|
+
"name": "newState",
|
3062
|
+
"type": "uint8"
|
1521
3063
|
}
|
1522
3064
|
],
|
3065
|
+
"name": "updateRisk",
|
3066
|
+
"outputs": [],
|
1523
3067
|
"stateMutability": "nonpayable",
|
1524
3068
|
"type": "function"
|
1525
3069
|
},
|
1526
3070
|
{
|
1527
3071
|
"inputs": [
|
1528
3072
|
{
|
1529
|
-
"internalType": "
|
1530
|
-
"name": "
|
1531
|
-
"type": "
|
1532
|
-
},
|
1533
|
-
{
|
1534
|
-
"components": [
|
1535
|
-
{
|
1536
|
-
"internalType": "UFixed",
|
1537
|
-
"name": "fractionalFee",
|
1538
|
-
"type": "uint256"
|
1539
|
-
},
|
1540
|
-
{
|
1541
|
-
"internalType": "uint256",
|
1542
|
-
"name": "fixedFee",
|
1543
|
-
"type": "uint256"
|
1544
|
-
}
|
1545
|
-
],
|
1546
|
-
"internalType": "struct Fee",
|
1547
|
-
"name": "stakingFee",
|
1548
|
-
"type": "tuple"
|
3073
|
+
"internalType": "RiskId",
|
3074
|
+
"name": "riskId",
|
3075
|
+
"type": "bytes8"
|
1549
3076
|
},
|
1550
3077
|
{
|
1551
|
-
"
|
1552
|
-
|
1553
|
-
|
1554
|
-
"name": "fractionalFee",
|
1555
|
-
"type": "uint256"
|
1556
|
-
},
|
1557
|
-
{
|
1558
|
-
"internalType": "uint256",
|
1559
|
-
"name": "fixedFee",
|
1560
|
-
"type": "uint256"
|
1561
|
-
}
|
1562
|
-
],
|
1563
|
-
"internalType": "struct Fee",
|
1564
|
-
"name": "performanceFee",
|
1565
|
-
"type": "tuple"
|
3078
|
+
"internalType": "StateId",
|
3079
|
+
"name": "newState",
|
3080
|
+
"type": "uint8"
|
1566
3081
|
}
|
1567
3082
|
],
|
1568
|
-
"name": "
|
3083
|
+
"name": "updateRiskState",
|
1569
3084
|
"outputs": [],
|
1570
3085
|
"stateMutability": "nonpayable",
|
1571
3086
|
"type": "function"
|
@@ -1573,46 +3088,22 @@
|
|
1573
3088
|
{
|
1574
3089
|
"inputs": [
|
1575
3090
|
{
|
1576
|
-
"internalType": "
|
1577
|
-
"name": "
|
1578
|
-
"type": "
|
3091
|
+
"internalType": "RoleId",
|
3092
|
+
"name": "roleId",
|
3093
|
+
"type": "uint64"
|
1579
3094
|
},
|
1580
3095
|
{
|
1581
|
-
"
|
1582
|
-
|
1583
|
-
|
1584
|
-
"name": "fractionalFee",
|
1585
|
-
"type": "uint256"
|
1586
|
-
},
|
1587
|
-
{
|
1588
|
-
"internalType": "uint256",
|
1589
|
-
"name": "fixedFee",
|
1590
|
-
"type": "uint256"
|
1591
|
-
}
|
1592
|
-
],
|
1593
|
-
"internalType": "struct Fee",
|
1594
|
-
"name": "policyFee",
|
1595
|
-
"type": "tuple"
|
3096
|
+
"internalType": "string",
|
3097
|
+
"name": "name",
|
3098
|
+
"type": "string"
|
1596
3099
|
},
|
1597
3100
|
{
|
1598
|
-
"
|
1599
|
-
|
1600
|
-
|
1601
|
-
"name": "fractionalFee",
|
1602
|
-
"type": "uint256"
|
1603
|
-
},
|
1604
|
-
{
|
1605
|
-
"internalType": "uint256",
|
1606
|
-
"name": "fixedFee",
|
1607
|
-
"type": "uint256"
|
1608
|
-
}
|
1609
|
-
],
|
1610
|
-
"internalType": "struct Fee",
|
1611
|
-
"name": "processingFee",
|
1612
|
-
"type": "tuple"
|
3101
|
+
"internalType": "StateId",
|
3102
|
+
"name": "newState",
|
3103
|
+
"type": "uint8"
|
1613
3104
|
}
|
1614
3105
|
],
|
1615
|
-
"name": "
|
3106
|
+
"name": "updateRole",
|
1616
3107
|
"outputs": [],
|
1617
3108
|
"stateMutability": "nonpayable",
|
1618
3109
|
"type": "function"
|
@@ -1620,104 +3111,404 @@
|
|
1620
3111
|
{
|
1621
3112
|
"inputs": [
|
1622
3113
|
{
|
1623
|
-
"internalType": "
|
1624
|
-
"name": "
|
1625
|
-
"type": "
|
3114
|
+
"internalType": "RoleId",
|
3115
|
+
"name": "roleId",
|
3116
|
+
"type": "uint64"
|
1626
3117
|
},
|
1627
3118
|
{
|
1628
|
-
"internalType": "
|
1629
|
-
"name": "
|
1630
|
-
"type": "
|
3119
|
+
"internalType": "StateId",
|
3120
|
+
"name": "newState",
|
3121
|
+
"type": "uint8"
|
1631
3122
|
}
|
1632
3123
|
],
|
1633
|
-
"name": "
|
3124
|
+
"name": "updateRoleState",
|
1634
3125
|
"outputs": [],
|
1635
3126
|
"stateMutability": "nonpayable",
|
1636
3127
|
"type": "function"
|
1637
3128
|
}
|
1638
3129
|
],
|
1639
|
-
"bytecode": "0x60e06040523480156200001157600080fd5b506040516200a33c3803806200a33c833981810160405281019062000037919062000e1a565b808182848680806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620001066040518060400160405280600c81526020017f50726f647563744f776e657200000000000000000000000000000000000000008152506200050560201b60201c565b60808181525050620001536040518060400160405280600b81526020017f4f7261636c654f776e65720000000000000000000000000000000000000000008152506200050560201b60201c565b60a08181525050620001a06040518060400160405280600981526020017f506f6f6c4f776e657200000000000000000000000000000000000000000000008152506200050560201b60201c565b60c08181525050620001c7620001bb6200054460201b60201c565b6200055d60201b60201c565b620001e7620001db6200071b60201b60201c565b6200055d60201b60201c565b62000207620001fb6200073460201b60201c565b6200055d60201b60201c565b620002176200074d60201b60201c565b620002276200094660201b60201c565b600030905080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505030601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505030601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555030601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505030601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200128a565b60008060405180606001604052806000801b81526020018481526020016001151581525090506200053c8162000bcc60201b60201c565b915050919050565b600062000558603c62000c8960201b60201c565b905090565b6200056d62000c9360201b60201c565b600660008360ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055506001600760008360ff1660ff1681526020019081526020016000206000620005cb62000c9360201b60201c565b60ff1660ff1681526020019081526020016000206000620005f162000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008360ff1660ff16815260200190815260200160002060006200064962000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006200066f62000c9360201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008360ff1660ff1681526020019081526020016000206000620006c762000cac60201b60201c565b60ff1660ff1681526020019081526020016000206000620006ed62000cc560201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006200072f604662000c8960201b60201c565b905090565b600062000748605062000c8960201b60201c565b905090565b6200075d62000c9360201b60201c565b600660006200077162000cde60201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160076000620007b362000cde60201b60201c565b60ff1660ff1681526020019081526020016000206000620007d962000c9360201b60201c565b60ff1660ff1681526020019081526020016000206000620007ff62000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760006200084062000cde60201b60201c565b60ff1660ff16815260200190815260200160002060006200086662000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006200088c62000c9360201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000620008cd62000cde60201b60201c565b60ff1660ff1681526020019081526020016000206000620008f362000cac60201b60201c565b60ff1660ff16815260200190815260200160002060006200091962000cf760201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6200095662000d1060201b60201c565b600660006200096a62000d2960201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160076000620009ac62000d2960201b60201c565b60ff1660ff1681526020019081526020016000206000620009d262000d1060201b60201c565b60ff1660ff1681526020019081526020016000206000620009f862000d4260201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600062000a3962000d2960201b60201c565b60ff1660ff168152602001908152602001600020600062000a5f62000d1060201b60201c565b60ff1660ff168152602001908152602001600020600062000a8562000d5b60201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600062000ac662000d2960201b60201c565b60ff1660ff168152602001908152602001600020600062000aec62000d1060201b60201c565b60ff1660ff168152602001908152602001600020600062000b1262000c9360201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600062000b5362000d2960201b60201c565b60ff1660ff168152602001908152602001600020600062000b7962000c9360201b60201c565b60ff1660ff168152602001908152602001600020600062000b9f62000cf760201b60201c565b60ff1660ff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000816000015190506000801b810362000c2b5762000bf5826020015162000d7460201b60201c565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908162000c609190620010f0565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b6000819050919050565b600062000ca7606462000da660201b60201c565b905090565b600062000cc0606e62000da660201b60201c565b905090565b600062000cd960d262000da660201b60201c565b905090565b600062000cf2605162000c8960201b60201c565b905090565b600062000d0b60c862000da660201b60201c565b905090565b600062000d24600a62000da660201b60201c565b905090565b600062000d3d605a62000c8960201b60201c565b905090565b600062000d56601462000da660201b60201c565b905090565b600062000d6f601e62000da660201b60201c565b905090565b60008160405160200162000d89919062001266565b604051602081830303815290604052805190602001209050919050565b6000819050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000de28262000db5565b9050919050565b62000df48162000dd5565b811462000e0057600080fd5b50565b60008151905062000e148162000de9565b92915050565b60008060006060848603121562000e365762000e3562000db0565b5b600062000e468682870162000e03565b935050602062000e598682870162000e03565b925050604062000e6c8682870162000e03565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ef857607f821691505b60208210810362000f0e5762000f0d62000eb0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000f787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f39565b62000f84868362000f39565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000fd162000fcb62000fc58462000f9c565b62000fa6565b62000f9c565b9050919050565b6000819050919050565b62000fed8362000fb0565b6200100562000ffc8262000fd8565b84845462000f46565b825550505050565b600090565b6200101c6200100d565b6200102981848462000fe2565b505050565b5b8181101562001051576200104560008262001012565b6001810190506200102f565b5050565b601f821115620010a0576200106a8162000f14565b620010758462000f29565b8101602085101562001085578190505b6200109d620010948562000f29565b8301826200102e565b50505b505050565b600082821c905092915050565b6000620010c560001984600802620010a5565b1980831691505092915050565b6000620010e08383620010b2565b9150826002028217905092915050565b620010fb8262000e76565b67ffffffffffffffff81111562001117576200111662000e81565b5b62001123825462000edf565b6200113082828562001055565b600060209050601f83116001811462001168576000841562001153578287015190505b6200115f8582620010d2565b865550620011cf565b601f198416620011788662000f14565b60005b82811015620011a2578489015182556001820191506020850194506020810190506200117b565b86831015620011c25784890151620011be601f891682620010b2565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b60005b8381101562001208578082015181840152602081019050620011eb565b60008484015250505050565b6000601f19601f8301169050919050565b6000620012328262000e76565b6200123e8185620011d7565b935062001250818560208601620011e8565b6200125b8162001214565b840191505092915050565b6000602082019050818103600083015262001282818462001225565b905092915050565b60805160a05160c051619082620012ba6000396000611c4b0152600061160601526000612ea201526190826000f3fe60806040523480156200001157600080fd5b5060043610620003f45760003560e01c80637ff826131162000219578063bd7d9d851162000129578063e9e96c7011620000bd578063f174ce191162000087578063f174ce191462000ce5578063f274e87d1462000d07578063fb2cb1011462000d3e578063fc0ae0541462000d6057620003f4565b8063e9e96c701462000c37578063eb71e8c41462000c6d578063eb7f494d1462000c8f578063f0ea17c31462000caf57620003f4565b8063ca38559811620000ff578063ca3855981462000bb7578063d0bb064c1462000bd7578063d547741f1462000bf7578063dc261c3a1462000c1757620003f4565b8063bd7d9d851462000b15578063be409a111462000b4b578063ca15c8731462000b8157620003f4565b80639cad005211620001ad578063b90915521162000177578063b90915521462000a7b578063ba62fbe41462000a9d578063bce395231462000abf578063bd62faf71462000adf57620003f4565b80639cad005214620009a3578063a310e2a314620009d9578063a7f3669b1462000a0f578063af17d38a1462000a4557620003f4565b80638aa03b6b11620001ef5780638aa03b6b14620008f55780639010d07c146200091757806391d14854146200094d57806393865aec146200098357620003f4565b80637ff82613146200089157806383d3331914620008b1578063893d20e814620008d357620003f4565b80633300a8a811620003155780636078a3b211620002a95780636fa2985311620002735780636fa2985314620007f757806379e829d014620008195780637c4a13b1146200083b5780637fec8b31146200085b57620003f4565b80636078a3b2146200075d578063644c45e014620007935780636c137ea914620007b55780636ce5caea14620007d757620003f4565b80634fd077f511620002eb5780634fd077f514620006995780635312fdc214620006cf57806357f80bbf14620007055780635ab1bd53146200073b57620003f4565b80633300a8a8146200061f5780633bc5de3014620006555780634288121d146200067757620003f4565b806322366844116200038d5780632f2ff15d11620003635780632f2ff15d146200059b57806331b62a3b14620005bb57806331e48e3214620005dd57806332e3a6e914620005fd57620003f4565b80632236684414620005215780632a5f6e8514620005435780632b1c7f73146200056557620003f4565b806313f7dcfc11620003cf57806313f7dcfc146200048757806315dae03e14620004a75780631aa3a00814620004c95780632064717e14620004eb57620003f4565b806301ed760414620003f957806302393c41146200042f5780630d3581811462000451575b600080fd5b62000417600480360381019062000411919062006000565b62000d96565b60405162000426919062006075565b60405180910390f35b6200043962000de7565b604051620004489190620060ad565b60405180910390f35b6200046f600480360381019062000469919062006108565b62000df0565b6040516200047e919062006173565b60405180910390f35b620004a560048036038101906200049f919062006000565b62000e20565b005b620004b162000f00565b604051620004c09190620061a1565b60405180910390f35b620004d362000f11565b604051620004e2919062006075565b60405180910390f35b62000509600480360381019062000503919062006389565b6200104a565b60405162000518919062006075565b60405180910390f35b6200052b620014cb565b6040516200053a919062006445565b60405180910390f35b6200054d62001602565b6040516200055c91906200647d565b60405180910390f35b6200058360048036038101906200057d91906200649a565b6200162a565b60405162000592919062006075565b60405180910390f35b620005b96004803603810190620005b39190620064fd565b6200168b565b005b620005c56200195d565b604051620005d4919062006075565b60405180910390f35b620005fb6004803603810190620005f5919062006613565b62001970565b005b6200060762001c47565b6040516200061691906200647d565b60405180910390f35b6200063d600480360381019062000637919062006000565b62001c6f565b6040516200064c9190620067c3565b60405180910390f35b6200065f62001d9e565b6040516200066e919062006869565b60405180910390f35b6200068162001dc8565b604051620006909190620068ee565b60405180910390f35b620006b76004803603810190620006b1919062006000565b62001df2565b604051620006c6919062006a08565b60405180910390f35b620006ed6004803603810190620006e7919062006a26565b6200204a565b604051620006fc91906200647d565b60405180910390f35b6200072360048036038101906200071d919062006000565b62002075565b60405162000732919062006aa0565b60405180910390f35b6200074562002112565b60405162000754919062006ae2565b60405180910390f35b6200077b600480360381019062000775919062006b44565b6200213b565b6040516200078a919062006075565b60405180910390f35b6200079d62002df7565b604051620007ac919062006075565b60405180910390f35b620007bf62002e9e565b604051620007ce91906200647d565b60405180910390f35b620007f56004803603810190620007ef919062006b76565b62002ec6565b005b6200080162003504565b60405162000810919062006be2565b60405180910390f35b620008236200352e565b60405162000832919062006445565b60405180910390f35b62000859600480360381019062000853919062006bff565b62003537565b005b62000879600480360381019062000873919062006a26565b62003764565b60405162000888919062006075565b60405180910390f35b620008af6004803603810190620008a9919062006000565b620037b2565b005b620008bb62003987565b604051620008ca9190620060ad565b60405180910390f35b620008dd62003994565b604051620008ec919062006c42565b60405180910390f35b620008ff62003b3f565b6040516200090e9190620060ad565b60405180910390f35b6200093560048036038101906200092f919062006c5f565b62003b44565b60405162000944919062006c42565b60405180910390f35b6200096b6004803603810190620009659190620064fd565b62003b75565b6040516200097a919062006445565b60405180910390f35b620009a160048036038101906200099b919062006ca6565b62003bdd565b005b620009c16004803603810190620009bb919062006dcf565b62003c4e565b604051620009d091906200647d565b60405180910390f35b620009f76004803603810190620009f1919062006000565b62003c80565b60405162000a06919062006e31565b60405180910390f35b62000a2d600480360381019062000a27919062006e7f565b62003cdc565b60405162000a3c919062006173565b60405180910390f35b62000a63600480360381019062000a5d919062006dcf565b62003f21565b60405162000a7291906200647d565b60405180910390f35b62000a8562004017565b60405162000a94919062006f4e565b60405180910390f35b62000aa762004050565b60405162000ab69190620060ad565b60405180910390f35b62000add600480360381019062000ad7919062006b76565b6200405d565b005b62000afd600480360381019062000af7919062007026565b6200440e565b60405162000b0c919062006075565b60405180910390f35b62000b33600480360381019062000b2d919062006000565b62004918565b60405162000b42919062007160565b60405180910390f35b62000b69600480360381019062000b63919062006bff565b62004a19565b60405162000b78919062007248565b60405180910390f35b62000b9f600480360381019062000b99919062006bff565b62004b07565b60405162000bae9190620060ad565b60405180910390f35b62000bd5600480360381019062000bcf919062006000565b62004b2d565b005b62000bf5600480360381019062000bef91906200726c565b62004cf5565b005b62000c15600480360381019062000c0f9190620064fd565b62004e2e565b005b62000c35600480360381019062000c2f919062006ca6565b62005000565b005b62000c55600480360381019062000c4f9190620072de565b62005071565b60405162000c64919062006445565b60405180910390f35b62000c77620050d1565b60405162000c86919062006f4e565b60405180910390f35b62000cad600480360381019062000ca7919062006bff565b6200510a565b005b62000ccd600480360381019062000cc7919062006000565b62005337565b60405162000cdc9190620073a7565b60405180910390f35b62000cef62005433565b60405162000cfe919062006f4e565b60405180910390f35b62000d25600480360381019062000d1f9190620073c4565b6200546c565b60405162000d359291906200740b565b60405180910390f35b62000d48620055a7565b60405162000d57919062006c42565b60405180910390f35b62000d7e600480360381019062000d78919062006108565b620055d1565b60405162000d8d91906200647d565b60405180910390f35b600060116000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b6402540be40081565b6000600660008360ff1660ff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000eb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eaa90620074ae565b60405180910390fd5b600060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050806002015481600301819055504281600601819055505050565b600062000f0c62005798565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000fa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f9b9062007520565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000fff919062006c42565b6020604051808303816000875af11580156200101f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001045919062007559565b905090565b60003373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620010df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010d690620074ae565b60405180910390fd5b816bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016200112891906200759c565b602060405180830381865af415801562001146573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200116c9190620075ea565b503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620011b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011df919062007661565b73ffffffffffffffffffffffffffffffffffffffff16631d1b0cac886000015162001209620057ab565b896040518463ffffffff1660e01b81526004016200122a9392919062007693565b6020604051808303816000875af11580156200124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001270919062007559565b9050604051806101600160405280826bffffffffffffffffffffffff168152602001601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d358181620012da620057ab565b6040518263ffffffff1660e01b8152600401620012f89190620061a1565b602060405180830381865afa15801562001316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200133c9190620076e7565b60ff168152602001868152602001858152602001600081526020018481526020014281526020014281526020016000815260200160008152602001600081525060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015560a0820151816004015560c0820151816005015560e082015181600601556101008201518160070155610120820151816008015561014082015181600901559050508160116000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509695505050505050565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040162001529919062006c42565b602060405180830381865afa15801562001547573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200156d919062007559565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401620015b891906200759c565b602060405180830381865af4158015620015d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015fc9190620075ea565b91505090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620016d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620016fd919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200176490620077b2565b60405180910390fd5b81600260008481526020019081526020016000206000015414620017c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017bf9062007824565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff166200182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018259062007896565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620018be8160056000858152602001908152602001600020620057be90919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166040516200195193929190620078b8565b60405180910390a15050565b60006200196b6000620057f0565b905090565b600084604051620019819062005d56565b6200198d919062006c42565b604051809103906000f080158015620019aa573d6000803e3d6000fd5b509050604051806101000160405280896bffffffffffffffffffffffff168152602001886bffffffffffffffffffffffff168152602001876bffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815250601960008a6bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555060408201518160010160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550606082015181600101600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c0820151816004016000820151816000015560208201518160010155505060e082015181600601600082015181600001556020820151816001015550509050505050505050505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b62001c7962005d64565b601b6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182016040518060400160405290816000820154815260200160018201548152505081526020016003820160405180604001604052908160008201548152602001600182015481525050815250509050919050565b6060600060405160200162001db4919062007938565b604051602081830303815290604052905090565b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62001dfc62005dc0565b60196000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016001820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160018201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600482016040518060400160405290816000820154815260200160018201548152505081526020016006820160405180604001604052908160008201548152602001600182015481525050815250509050919050565b60006003828154811062002063576200206262007955565b5b90600052602060002001549050919050565b6200207f62005e81565b60146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001600182015481526020016002820154815250509050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620021d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620021c790620079d4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200221e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002244919062007a0d565b905060006200225382620055d1565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828673ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015620022be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022e4919062007730565b6040518363ffffffff1660e01b81526004016200230392919062007a3f565b602060405180830381865afa15801562002321573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023479190620075ea565b62002389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620023809062007abc565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620023d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023fb919062007661565b73ffffffffffffffffffffffffffffffffffffffff16634420e486856040518263ffffffff1660e01b815260040162002435919062006c42565b6020604051808303816000875af115801562002455573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200247b919062007559565b925060008473ffffffffffffffffffffffffffffffffffffffff166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa158015620024cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620024f1919062007af5565b905060008573ffffffffffffffffffffffffffffffffffffffff1663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002541573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002567919062007730565b90506040518060600160405280866bffffffffffffffffffffffff168152602001600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d358181876040518263ffffffff1660e01b8152600401620025e59190620061a1565b602060405180830381865afa15801562002603573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026299190620076e7565b60ff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681525060086000876bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050620027a28673ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200276c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002792919062007a0d565b6200279c620057fa565b6200580d565b1562002a8657600086905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015620027fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002821919062007559565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016200286c91906200759c565b602060405180830381865af41580156200288a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028b09190620075ea565b620028f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620028e99062007b77565b60405180910390fd5b6000620028fe62005820565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e48e3289838589898973ffffffffffffffffffffffffffffffffffffffff1663bc74aab06040518163ffffffff1660e01b81526004016040805180830381865afa1580156200298e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029b4919062007c20565b8a73ffffffffffffffffffffffffffffffffffffffff1663daafed406040518163ffffffff1660e01b81526004016040805180830381865afa158015620029ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a25919062007c20565b6040518863ffffffff1660e01b815260040162002a49979695949392919062007c96565b600060405180830381600087803b15801562002a6457600080fd5b505af115801562002a79573d6000803e3d6000fd5b5050505050505062002d22565b62002b0c8673ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002ad6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002afc919062007a0d565b62002b0662005825565b6200580d565b1562002d21576000869050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ca385598876040518263ffffffff1660e01b815260040162002b74919062006075565b600060405180830381600087803b15801562002b8f57600080fd5b505af115801562002ba4573d6000803e3d6000fd5b50505050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0bb064c87848473ffffffffffffffffffffffffffffffffffffffff16634b270a466040518163ffffffff1660e01b81526004016040805180830381865afa15801562002c33573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002c59919062007c20565b8573ffffffffffffffffffffffffffffffffffffffff1663235c36036040518163ffffffff1660e01b81526004016040805180830381865afa15801562002ca4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002cca919062007c20565b6040518563ffffffff1660e01b815260040162002ceb949392919062007d14565b600060405180830381600087803b15801562002d0657600080fd5b505af115801562002d1b573d6000803e3d6000fd5b50505050505b5b84600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600a859080600181540180825580915050600190039060005260206000209060029182820401919006600c029091909190916101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040162002e55919062006c42565b602060405180830381865afa15801562002e73573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e99919062007559565b905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85846040518263ffffffff1660e01b815260040162002f25919062006075565b61016060405180830381865afa15801562002f44573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002f6a919062007e88565b905062002f7c81600001518462005838565b62002fbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fb59062007f0b565b60405180910390fd5b600060196000846bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016001820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160018201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160048201604051806040016040529081600082015481526020016001820154815250508152602001600682016040518060400160405290816000820154815260200160018201548152505081525050905060008160800151905060003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003260573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003286919062007661565b73ffffffffffffffffffffffffffffffffffffffff1663df33330b876040518263ffffffff1660e01b8152600401620032c0919062006075565b602060405180830381865afa158015620032de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003304919062007730565b90506000601b600085604001516bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050620033708460c0015162005861565b15620033f3578273ffffffffffffffffffffffffffffffffffffffff1663beabacc8838388606001516040518463ffffffff1660e01b8152600401620033b99392919062007f2d565b600060405180830381600087803b158015620033d457600080fd5b505af1158015620033e9573d6000803e3d6000fd5b50505050620034fb565b6000806200340a87606001518760c001516200546c565b915091508473ffffffffffffffffffffffffffffffffffffffff1663beabacc8858860a00151856040518463ffffffff1660e01b8152600401620034519392919062007f2d565b600060405180830381600087803b1580156200346c57600080fd5b505af115801562003481573d6000803e3d6000fd5b505050508473ffffffffffffffffffffffffffffffffffffffff1663beabacc88585846040518463ffffffff1660e01b8152600401620034c49392919062007f2d565b600060405180830381600087803b158015620034df57600080fd5b505af1158015620034f4573d6000803e3d6000fd5b5050505050505b50505050505050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003583573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035a9919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462003619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200361090620077b2565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054620036559062007f99565b80601f0160208091040260200160405190810160405280929190818152602001828054620036839062007f99565b8015620036d45780601f10620036a857610100808354040283529160200191620036d4565b820191906000526020600020905b815481529060010190602001808311620036b657829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511462003743576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200373a9062008044565b60405180910390fd5b60008160400190151590811515815250506200375f8162005882565b505050565b6000600a82815481106200377d576200377c62007955565b5b9060005260206000209060029182820401919006600c029054906101000a90046bffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462003845576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200383c90620074ae565b60405180910390fd5b600060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020905042816007018190555080600401544262003893919062008095565b8160080181905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a7f3669b83620038e4620057ab565b84600001600c9054906101000a900460ff166200390062005939565b6040518563ffffffff1660e01b8152600401620039219493929190620080d0565b6020604051808303816000875af115801562003941573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039679190620076e7565b81600001600c6101000a81548160ff021916908360ff1602179055505050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401620039f2919062006c42565b602060405180830381865afa15801562003a10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003a36919062007559565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b815260040162003a93919062006075565b602060405180830381865afa15801562003ab1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ad7919062007730565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362003b3757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662003b39565b815b91505090565b600081565b600062003b6d82600560008681526020019081526020016000206200594c90919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601b6000856bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050828160010160008201518160000155602082015181600101559050508181600301600082015181600001556020820151816001015590505050505050565b60008160405160200162003c63919062006f4e565b604051602081830303815290604052805190602001209050919050565b600060196000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060008360ff1660ff16815260200190815260200160002060009054906101000a900460ff1662003d7d57848484846040517f33760ddc00000000000000000000000000000000000000000000000000000000815260040162003d749493929190620080d0565b60405180910390fd5b62003d928462003d8c620057ab565b6200580d565b1562003ddb577f3453c320908f5844705a0f2acbb230412df911a60544eca9236d16f5f9f1f6f685848460405162003dcd939291906200811d565b60405180910390a162003f16565b62003df08462003dea62005968565b6200580d565b1562003e39577f92e25bf636cb4bfa6edf8b4fa57c0d64b6d959e3c6376d17c9bcc168fe36be1985848460405162003e2b939291906200811d565b60405180910390a162003f15565b62003e4e8462003e48620057fa565b6200580d565b8062003e6b575062003e6a8462003e646200597b565b6200580d565b5b8062003e88575062003e878462003e8162005825565b6200580d565b5b1562003ed3577fcc75054af33cdb7ef0c6dd9d4cb6f22e1dc2d22204db49d769d5da19579fb84e8585858560405162003ec59493929190620080d0565b60405180910390a162003f14565b84846040517f092b31d400000000000000000000000000000000000000000000000000000000815260040162003f0b9291906200815a565b60405180910390fd5b5b5b819050949350505050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003f6f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003f95919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462004005576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162003ffc90620077b2565b60405180910390fd5b62004010826200598e565b9050919050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600a80549050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620040f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620040e790620074ae565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85846040518263ffffffff1660e01b81526004016200414f919062006075565b61016060405180830381865afa1580156200416e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004194919062007e88565b9050620041a681600001518462005838565b620041e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620041df90620081d7565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634fd077f5846040518263ffffffff1660e01b815260040162004247919062006075565b61014060405180830381865afa15801562004266573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200428c919062008335565b90506200429e81600001518462005838565b620042e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620042d790620083de565b60405180910390fd5b600081604001519050600060146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050620043448160000160009054906101000a90046bffffffffffffffffffffffff168362005838565b62004386576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200437d9062008450565b60405180910390fd5b836040015181600201548260010154620043a1919062008472565b1015620043e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620043dc90620084fd565b60405180910390fd5b8360400151816002016000828254620043ff919062008095565b92505081905550505050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620044a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200449a90620079d4565b60405180910390fd5b81600001519050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401620044f391906200759c565b602060405180830381865af415801562004511573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620045379190620075ea565b801562004619575060086000826bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__63c4cade9d9091836040518363ffffffff1660e01b8152600401620045d49291906200851f565b602060405180830381865af4158015620045f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620046189190620075ea565b5b6200465b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004652906200859c565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620046a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620046cf919062007661565b73ffffffffffffffffffffffffffffffffffffffff16634c3371cd836040518263ffffffff1660e01b815260040162004709919062006075565b60a060405180830381865afa15801562004727573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200474d919062008659565b604001519050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a7f3669b838360086000876bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020600001600c9054906101000a900460ff1687602001516040518563ffffffff1660e01b8152600401620047f99493929190620080d0565b6020604051808303816000875af115801562004819573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200483f9190620076e7565b508260086000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505050919050565b6200492262005eb0565b60106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff1660ff1660ff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820154815250509050919050565b62004a2362005f1b565b600260008381526020019081526020016000206040518060600160405290816000820154815260200160018201805462004a5d9062007f99565b80601f016020809104026020016040519081016040528092919081815260200182805462004a8b9062007f99565b801562004adc5780601f1062004ab05761010080835404028352916020019162004adc565b820191906000526020600020905b81548152906001019060200180831162004abe57829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b600062004b2660056000848152602001908152602001600020620059c7565b9050919050565b60146000826bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6352694ee890916040518263ffffffff1660e01b815260040162004bc091906200759c565b602060405180830381865af415801562004bde573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004c049190620075ea565b62004c46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004c3d90620086db565b60405180910390fd5b6040518060600160405280826bffffffffffffffffffffffff1681526020016402540be4008152602001600081525060146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600101556040820151816002015590505050565b6040518060800160405280856bffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815250601b6000866bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600101600082015181600001556020820151816001015550506060820151816003016000820151816000015560208201518160010155505090505050505050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562004e7a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004ea0919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462004f10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004f0790620077b2565b60405180910390fd5b8160026000848152602001908152602001600020600001541462004f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004f62906200874d565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062004ffb8160056000858152602001908152602001600020620059de90919063ffffffff16565b505050565b600060196000856bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050828160040160008201518160000155602082015181600101559050508181600601600082015181600001556020820151816001015590505050505050565b6000600760008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060008360ff1660ff16815260200190815260200160002060009054906101000a900460ff1690509392505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562005156573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200517c919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620051ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620051e390620077b2565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054620052289062007f99565b80601f0160208091040260200160405190810160405280929190818152602001828054620052569062007f99565b8015620052a75780601f106200527b57610100808354040283529160200191620052a7565b820191906000526020600020905b8154815290600101906020018083116200528957829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511462005316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200530d90620087e5565b60405180910390fd5b6001816040019015159081151581525050620053328162005882565b505050565b6200534162005f41565b60086000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff1660ff1660ff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050919050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000806000620054fd73__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__6392ae8ce0876040518263ffffffff1660e01b8152600401620054ae919062008818565b602060405180830381865af4158015620054cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620054f2919062008835565b856000015162005a10565b9050836020015173__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__63d05b0452836040518263ffffffff1660e01b81526004016200553d919062008878565b602060405180830381865af41580156200555b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062005581919062008895565b6200558d919062008095565b925082856200559d919062008472565b9150509250929050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620055e882620055e2620057fa565b6200580d565b1562005668573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200563a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620056609190620088de565b905062005793565b6200567d826200567762005825565b6200580d565b15620056fd573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa158015620056cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620056f59190620088de565b905062005793565b62005712826200570c6200597b565b6200580d565b1562005792573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa15801562005764573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200578a9190620088de565b905062005793565b5b919050565b6000620057a6603262005a2f565b905090565b6000620057b9605a62005a2f565b905090565b6000620057e8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62005a39565b905092915050565b6000819050919050565b600062005808603c62005a2f565b905090565b60008160ff168360ff1614905092915050565b600090565b600062005833605062005a2f565b905090565b6000816bffffffffffffffffffffffff16836bffffffffffffffffffffffff1614905092915050565b60008082602001511480156200587b575060008260000151145b9050919050565b6000816000015190506000801b8103620058db57620058a5826020015162003c4e565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908162005910919062008ab0565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b600062005947606462005aad565b905090565b60006200595d836000018362005ab7565b60001c905092915050565b600062005976605162005a2f565b905090565b600062005989604662005a2f565b905090565b60008060405180606001604052806000801b8152602001848152602001600115158152509050620059bf8162005882565b915050919050565b6000620059d78260000162005ae5565b9050919050565b600062005a08836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62005af6565b905092915050565b600062005a278383670de0b6b3a764000062005c1a565b905092915050565b6000819050919050565b600062005a47838362005d33565b62005aa257826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062005aa7565b600090505b92915050565b6000819050919050565b600082600001828154811062005ad25762005ad162007955565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6000808360010160008481526020019081526020016000205490506000811462005c0e57600060018262005b2b919062008472565b905060006001866000018054905062005b45919062008472565b905081811462005bbb57600086600001828154811062005b6a5762005b6962007955565b5b906000526020600020015490508087600001848154811062005b915762005b9062007955565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548062005bd25762005bd162008b97565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062005c14565b60009150505b92915050565b600080600080198587098587029250828110838203039150506000810362005c5a5783828162005c4f5762005c4e62008bc6565b5b049250505062005d2c565b80841162005c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162005c969062008c45565b60405180910390fd5b60008486880990508281118203915080830392506000600186190186169050808604955080840493506001818260000304019050808302841793506000600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6103e58062008c6883390190565b604051806080016040528060006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200162005dab62005f89565b815260200162005dba62005f89565b81525090565b60405180610100016040528060006bffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200162005e6c62005f89565b815260200162005e7b62005f89565b81525090565b604051806060016040528060006bffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610160016040528060006bffffffffffffffffffffffff168152602001600060ff1681526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b604051806060016040528060006bffffffffffffffffffffffff168152602001600060ff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b604051806040016040528060008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60006bffffffffffffffffffffffff82169050919050565b62005fda8162005fb7565b811462005fe657600080fd5b50565b60008135905062005ffa8162005fcf565b92915050565b60006020828403121562006019576200601862005fad565b5b6000620060298482850162005fe9565b91505092915050565b6000819050919050565b60006200605d62006057620060518462005fb7565b62006032565b62005fb7565b9050919050565b6200606f816200603c565b82525050565b60006020820190506200608c600083018462006064565b92915050565b6000819050919050565b620060a78162006092565b82525050565b6000602082019050620060c460008301846200609c565b92915050565b600060ff82169050919050565b620060e281620060ca565b8114620060ee57600080fd5b50565b6000813590506200610281620060d7565b92915050565b60006020828403121562006121576200612062005fad565b5b60006200613184828501620060f1565b91505092915050565b60006200615b620061556200614f84620060ca565b62006032565b620060ca565b9050919050565b6200616d816200613a565b82525050565b60006020820190506200618a600083018462006162565b92915050565b6200619b816200613a565b82525050565b6000602082019050620061b8600083018462006190565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200620e82620061c3565b810181811067ffffffffffffffff8211171562006230576200622f620061d4565b5b80604052505050565b60006200624562005fa3565b905062006253828262006203565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620062858262006258565b9050919050565b620062978162006278565b8114620062a357600080fd5b50565b600081359050620062b7816200628c565b92915050565b600060a08284031215620062d657620062d5620061be565b5b620062e260a062006239565b90506000620062f48482850162005fe9565b60008301525060206200630a8482850162005fe9565b60208301525060406200632084828501620060f1565b60408301525060606200633684828501620062a6565b60608301525060806200634c84828501620062a6565b60808301525092915050565b620063638162006092565b81146200636f57600080fd5b50565b600081359050620063838162006358565b92915050565b6000806000806000806101408789031215620063aa57620063a962005fad565b5b6000620063ba89828a01620062bd565b96505060a0620063cd89828a01620062a6565b95505060c0620063e089828a0162006372565b94505060e0620063f389828a0162006372565b9350506101006200640789828a0162006372565b9250506101206200641b89828a0162005fe9565b9150509295509295509295565b60008115159050919050565b6200643f8162006428565b82525050565b60006020820190506200645c600083018462006434565b92915050565b6000819050919050565b620064778162006462565b82525050565b60006020820190506200649460008301846200646c565b92915050565b600060208284031215620064b357620064b262005fad565b5b6000620064c384828501620062a6565b91505092915050565b620064d78162006462565b8114620064e357600080fd5b50565b600081359050620064f781620064cc565b92915050565b6000806040838503121562006517576200651662005fad565b5b60006200652785828601620064e6565b92505060206200653a85828601620062a6565b9150509250929050565b6000620065518262006278565b9050919050565b620065638162006544565b81146200656f57600080fd5b50565b600081359050620065838162006558565b92915050565b620065948162006092565b8114620065a057600080fd5b50565b600081359050620065b48162006589565b92915050565b600060408284031215620065d357620065d2620061be565b5b620065df604062006239565b90506000620065f184828501620065a3565b6000830152506020620066078482850162006372565b60208301525092915050565b6000806000806000806000610120888a03121562006636576200663562005fad565b5b6000620066468a828b0162005fe9565b9750506020620066598a828b0162005fe9565b96505060406200666c8a828b0162005fe9565b95505060606200667f8a828b0162006572565b9450506080620066928a828b01620062a6565b93505060a0620066a58a828b01620065ba565b92505060e0620066b88a828b01620065ba565b91505092959891949750929550565b620066d2816200603c565b82525050565b620066e38162006278565b82525050565b60006200670a62006704620066fe8462006092565b62006032565b62006092565b9050919050565b6200671c81620066e9565b82525050565b6200672d8162006092565b82525050565b6040820160008201516200674b600085018262006711565b50602082015162006760602085018262006722565b50505050565b60c0820160008201516200677e6000850182620066c7565b506020820151620067936020850182620066d8565b506040820151620067a8604085018262006733565b506060820151620067bd608085018262006733565b50505050565b600060c082019050620067da600083018462006766565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200681c578082015181840152602081019050620067ff565b60008484015250505050565b60006200683582620067e0565b620068418185620067eb565b935062006853818560208601620067fc565b6200685e81620061c3565b840191505092915050565b6000602082019050818103600083015262006885818462006828565b905092915050565b6000620068ae620068a8620068a28462006258565b62006032565b62006258565b9050919050565b6000620068c2826200688d565b9050919050565b6000620068d682620068b5565b9050919050565b620068e881620068c9565b82525050565b6000602082019050620069056000830184620068dd565b92915050565b60006200691882620068b5565b9050919050565b6200692a816200690b565b82525050565b60006200693d82620068b5565b9050919050565b6200694f8162006930565b82525050565b610140820160008201516200696e6000850182620066c7565b506020820151620069836020850182620066c7565b506040820151620069986040850182620066c7565b506060820151620069ad60608501826200691f565b506080820151620069c2608085018262006944565b5060a0820151620069d760a0850182620066d8565b5060c0820151620069ec60c085018262006733565b5060e082015162006a0261010085018262006733565b50505050565b60006101408201905062006a20600083018462006955565b92915050565b60006020828403121562006a3f5762006a3e62005fad565b5b600062006a4f8482850162006372565b91505092915050565b60608201600082015162006a706000850182620066c7565b50602082015162006a85602085018262006722565b50604082015162006a9a604085018262006722565b50505050565b600060608201905062006ab7600083018462006a58565b92915050565b600062006aca82620068b5565b9050919050565b62006adc8162006abd565b82525050565b600060208201905062006af9600083018462006ad1565b92915050565b600062006b0c8262006278565b9050919050565b62006b1e8162006aff565b811462006b2a57600080fd5b50565b60008135905062006b3e8162006b13565b92915050565b60006020828403121562006b5d5762006b5c62005fad565b5b600062006b6d8482850162006b2d565b91505092915050565b6000806040838503121562006b905762006b8f62005fad565b5b600062006ba08582860162005fe9565b925050602062006bb38582860162005fe9565b9150509250929050565b600062006bca82620068b5565b9050919050565b62006bdc8162006bbd565b82525050565b600060208201905062006bf9600083018462006bd1565b92915050565b60006020828403121562006c185762006c1762005fad565b5b600062006c2884828501620064e6565b91505092915050565b62006c3c8162006278565b82525050565b600060208201905062006c59600083018462006c31565b92915050565b6000806040838503121562006c795762006c7862005fad565b5b600062006c8985828601620064e6565b925050602062006c9c8582860162006372565b9150509250929050565b600080600060a0848603121562006cc25762006cc162005fad565b5b600062006cd28682870162005fe9565b935050602062006ce586828701620065ba565b925050606062006cf886828701620065ba565b9150509250925092565b600080fd5b600080fd5b600067ffffffffffffffff82111562006d2a5762006d29620061d4565b5b62006d3582620061c3565b9050602081019050919050565b82818337600083830152505050565b600062006d6862006d628462006d0c565b62006239565b90508281526020810184848401111562006d875762006d8662006d07565b5b62006d9484828562006d42565b509392505050565b600082601f83011262006db45762006db362006d02565b5b813562006dc684826020860162006d51565b91505092915050565b60006020828403121562006de85762006de762005fad565b5b600082013567ffffffffffffffff81111562006e095762006e0862005fb2565b5b62006e178482850162006d9c565b91505092915050565b62006e2b8162006930565b82525050565b600060208201905062006e48600083018462006e20565b92915050565b62006e5981620060ca565b811462006e6557600080fd5b50565b60008135905062006e798162006e4e565b92915050565b6000806000806080858703121562006e9c5762006e9b62005fad565b5b600062006eac8782880162005fe9565b945050602062006ebf87828801620060f1565b935050604062006ed28782880162006e68565b925050606062006ee58782880162006e68565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b600062006f1a8262006ef1565b62006f26818562006efc565b935062006f38818560208601620067fc565b62006f4381620061c3565b840191505092915050565b6000602082019050818103600083015262006f6a818462006f0d565b905092915050565b600062006f7f8262006278565b9050919050565b62006f918162006f72565b811462006f9d57600080fd5b50565b60008135905062006fb18162006f86565b92915050565b60006060828403121562006fd05762006fcf620061be565b5b62006fdc606062006239565b9050600062006fee8482850162005fe9565b6000830152506020620070048482850162006e68565b60208301525060406200701a8482850162006fa0565b60408301525092915050565b6000606082840312156200703f576200703e62005fad565b5b60006200704f8482850162006fb7565b91505092915050565b62007063816200613a565b82525050565b61016082016000820151620070826000850182620066c7565b50602082015162007097602085018262007058565b506040820151620070ac604085018262006722565b506060820151620070c1606085018262006722565b506080820151620070d6608085018262006722565b5060a0820151620070eb60a085018262006722565b5060c08201516200710060c085018262006722565b5060e08201516200711560e085018262006722565b506101008201516200712c61010085018262006722565b506101208201516200714361012085018262006722565b506101408201516200715a61014085018262006722565b50505050565b60006101608201905062007178600083018462007069565b92915050565b620071898162006462565b82525050565b600082825260208201905092915050565b6000620071ad8262006ef1565b620071b981856200718f565b9350620071cb818560208601620067fc565b620071d681620061c3565b840191505092915050565b620071ec8162006428565b82525050565b60006060830160008301516200720c60008601826200717e565b5060208301518482036020860152620072268282620071a0565b91505060408301516200723d6040860182620071e1565b508091505092915050565b60006020820190508181036000830152620072648184620071f2565b905092915050565b60008060008060c0858703121562007289576200728862005fad565b5b6000620072998782880162005fe9565b9450506020620072ac87828801620062a6565b9350506040620072bf87828801620065ba565b9250506080620072d287828801620065ba565b91505092959194509250565b600080600060608486031215620072fa57620072f962005fad565b5b60006200730a86828701620060f1565b93505060206200731d8682870162006e68565b9250506040620073308682870162006e68565b9150509250925092565b60006200734782620068b5565b9050919050565b62007359816200733a565b82525050565b606082016000820151620073776000850182620066c7565b5060208201516200738c602085018262007058565b506040820151620073a160408501826200734e565b50505050565b6000606082019050620073be60008301846200735f565b92915050565b60008060608385031215620073de57620073dd62005fad565b5b6000620073ee8582860162006372565b92505060206200740185828601620065ba565b9150509250929050565b60006040820190506200742260008301856200609c565b6200743160208301846200609c565b9392505050565b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006200749660218362006efc565b9150620074a38262007438565b604082019050919050565b60006020820190508181036000830152620074c98162007487565b9050919050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b600062007508601b8362006efc565b91506200751582620074d0565b602082019050919050565b600060208201905081810360008301526200753b81620074f9565b9050919050565b600081519050620075538162005fcf565b92915050565b60006020828403121562007572576200757162005fad565b5b6000620075828482850162007542565b91505092915050565b62007596816200603c565b82525050565b6000602082019050620075b360008301846200758b565b92915050565b620075c48162006428565b8114620075d057600080fd5b50565b600081519050620075e481620075b9565b92915050565b60006020828403121562007603576200760262005fad565b5b60006200761384828501620075d3565b91505092915050565b6000620076298262006278565b9050919050565b6200763b816200761c565b81146200764757600080fd5b50565b6000815190506200765b8162007630565b92915050565b6000602082840312156200767a576200767962005fad565b5b60006200768a848285016200764a565b91505092915050565b6000606082019050620076aa600083018662006064565b620076b9602083018562006190565b620076c8604083018462006c31565b949350505050565b600081519050620076e18162006e4e565b92915050565b6000602082840312156200770057620076ff62005fad565b5b60006200771084828501620076d0565b91505092915050565b6000815190506200772a816200628c565b92915050565b60006020828403121562007749576200774862005fad565b5b6000620077598482850162007719565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b60006200779a60178362006efc565b9150620077a78262007762565b602082019050919050565b60006020820190508181036000830152620077cd816200778b565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b60006200780c601f8362006efc565b91506200781982620077d4565b602082019050919050565b600060208201905081810360008301526200783f81620077fd565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b60006200787e601d8362006efc565b91506200788b8262007846565b602082019050919050565b60006020820190508181036000830152620078b1816200786f565b9050919050565b6000606082019050620078cf60008301866200646c565b620078de602083018562006c31565b620078ed604083018462006434565b949350505050565b6000819050919050565b6000620079206200791a6200791484620078f5565b62006032565b620060ca565b9050919050565b6200793281620078ff565b82525050565b60006020820190506200794f600083018462007927565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b6000620079bc601f8362006efc565b9150620079c98262007984565b602082019050919050565b60006020820190508181036000830152620079ef81620079ad565b9050919050565b60008151905062007a0781620060d7565b92915050565b60006020828403121562007a265762007a2562005fad565b5b600062007a3684828501620079f6565b91505092915050565b600060408201905062007a5660008301856200646c565b62007a65602083018462006c31565b9392505050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b600062007aa4601f8362006efc565b915062007ab18262007a6c565b602082019050919050565b6000602082019050818103600083015262007ad78162007a95565b9050919050565b60008151905062007aef8162006f86565b92915050565b60006020828403121562007b0e5762007b0d62005fad565b5b600062007b1e8482850162007ade565b91505092915050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b600062007b5f601a8362006efc565b915062007b6c8262007b27565b602082019050919050565b6000602082019050818103600083015262007b928162007b50565b9050919050565b60008151905062007baa8162006589565b92915050565b60008151905062007bc18162006358565b92915050565b60006040828403121562007be05762007bdf620061be565b5b62007bec604062006239565b9050600062007bfe8482850162007b99565b600083015250602062007c148482850162007bb0565b60208301525092915050565b60006040828403121562007c395762007c3862005fad565b5b600062007c498482850162007bc7565b91505092915050565b62007c5d816200733a565b82525050565b60408201600082015162007c7b600085018262006711565b50602082015162007c90602085018262006722565b50505050565b60006101208201905062007cae600083018a62006064565b62007cbd602083018962006064565b62007ccc604083018862006064565b62007cdb606083018762007c52565b62007cea608083018662006c31565b62007cf960a083018562007c63565b62007d0860e083018462007c63565b98975050505050505050565b600060c08201905062007d2b600083018762006064565b62007d3a602083018662006c31565b62007d49604083018562007c63565b62007d58608083018462007c63565b95945050505050565b6000610160828403121562007d7b5762007d7a620061be565b5b62007d8861016062006239565b9050600062007d9a8482850162007542565b600083015250602062007db084828501620076d0565b602083015250604062007dc68482850162007bb0565b604083015250606062007ddc8482850162007bb0565b606083015250608062007df28482850162007bb0565b60808301525060a062007e088482850162007bb0565b60a08301525060c062007e1e8482850162007bb0565b60c08301525060e062007e348482850162007bb0565b60e08301525061010062007e4b8482850162007bb0565b6101008301525061012062007e638482850162007bb0565b6101208301525061014062007e7b8482850162007bb0565b6101408301525092915050565b6000610160828403121562007ea25762007ea162005fad565b5b600062007eb28482850162007d61565b91505092915050565b7f4552524f523a5452532d3032303a504f4c4943595f554e4b4e4f574e00000000600082015250565b600062007ef3601c8362006efc565b915062007f008262007ebb565b602082019050919050565b6000602082019050818103600083015262007f268162007ee4565b9050919050565b600060608201905062007f44600083018662006c31565b62007f53602083018562006c31565b62007f6260408301846200609c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062007fb257607f821691505b60208210810362007fc85762007fc762007f6a565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006200802c60218362006efc565b9150620080398262007fce565b604082019050919050565b600060208201905081810360008301526200805f816200801d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620080a28262006092565b9150620080af8362006092565b9250828201905080821115620080ca57620080c962008066565b5b92915050565b6000608082019050620080e7600083018762006064565b620080f6602083018662006190565b62008105604083018562006162565b62008114606083018462006162565b95945050505050565b600060608201905062008134600083018662006064565b62008143602083018562006162565b62008152604083018462006162565b949350505050565b600060408201905062008171600083018562006064565b62008180602083018462006190565b9392505050565b7f4552524f523a504c2d3030323a504f4c4943595f554e4b4e4f574e0000000000600082015250565b6000620081bf601b8362006efc565b9150620081cc8262008187565b602082019050919050565b60006020820190508181036000830152620081f281620081b0565b9050919050565b6000815190506200820a8162006558565b92915050565b60006200821d8262006278565b9050919050565b6200822f8162008210565b81146200823b57600080fd5b50565b6000815190506200824f8162008224565b92915050565b600061014082840312156200826f576200826e620061be565b5b6200827c61010062006239565b905060006200828e8482850162007542565b6000830152506020620082a48482850162007542565b6020830152506040620082ba8482850162007542565b6040830152506060620082d084828501620081f9565b6060830152506080620082e6848285016200823e565b60808301525060a0620082fc8482850162007719565b60a08301525060c0620083128482850162007bc7565b60c083015250610100620083298482850162007bc7565b60e08301525092915050565b600061014082840312156200834f576200834e62005fad565b5b60006200835f8482850162008255565b91505092915050565b7f4552524f523a504c2d3030333a50524f445543545f53455455505f4d4953534960008201527f4e47000000000000000000000000000000000000000000000000000000000000602082015250565b6000620083c660228362006efc565b9150620083d38262008368565b604082019050919050565b60006020820190508181036000830152620083f981620083b7565b9050919050565b7f4552524f523a504c2d3030343a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b60006200843860198362006efc565b9150620084458262008400565b602082019050919050565b600060208201905081810360008301526200846b8162008429565b9050919050565b60006200847f8262006092565b91506200848c8362006092565b9250828203905081811115620084a757620084a662008066565b5b92915050565b7f4552524f523a504c2d3030353a43415041434954595f544f4f5f4c4f57000000600082015250565b6000620084e5601d8362006efc565b9150620084f282620084ad565b602082019050919050565b600060208201905081810360008301526200851881620084d6565b9050919050565b60006040820190506200853660008301856200758b565b6200854560208301846200758b565b9392505050565b7f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b600062008584601f8362006efc565b915062008591826200854c565b602082019050919050565b60006020820190508181036000830152620085b78162008575565b9050919050565b600060a08284031215620085d757620085d6620061be565b5b620085e360a062006239565b90506000620085f58482850162007542565b60008301525060206200860b8482850162007542565b60208301525060406200862184828501620079f6565b6040830152506060620086378482850162007719565b60608301525060806200864d8482850162007719565b60808301525092915050565b600060a0828403121562008672576200867162005fad565b5b60006200868284828501620085be565b91505092915050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b6000620086c3601c8362006efc565b9150620086d0826200868b565b602082019050919050565b60006020820190508181036000830152620086f681620086b4565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b600062008735601f8362006efc565b91506200874282620086fd565b602082019050919050565b60006020820190508181036000830152620087688162008726565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000620087cd60218362006efc565b9150620087da826200876f565b604082019050919050565b600060208201905081810360008301526200880081620087be565b9050919050565b620088128162006092565b82525050565b60006020820190506200882f600083018462008807565b92915050565b6000602082840312156200884e576200884d62005fad565b5b60006200885e8482850162007b99565b91505092915050565b6200887281620066e9565b82525050565b60006020820190506200888f600083018462008867565b92915050565b600060208284031215620088ae57620088ad62005fad565b5b6000620088be8482850162007bb0565b91505092915050565b600081519050620088d881620064cc565b92915050565b600060208284031215620088f757620088f662005fad565b5b60006200890784828501620088c7565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620089747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262008935565b62008980868362008935565b95508019841693508086168417925050509392505050565b6000819050919050565b620089ad83620066e9565b620089c5620089bc8262008998565b84845462008942565b825550505050565b600090565b620089dc620089cd565b620089e9818484620089a2565b505050565b5b8181101562008a115762008a05600082620089d2565b600181019050620089ef565b5050565b601f82111562008a605762008a2a8162008910565b62008a358462008925565b8101602085101562008a45578190505b62008a5d62008a548562008925565b830182620089ee565b50505b505050565b600082821c905092915050565b600062008a856000198460080262008a65565b1980831691505092915050565b600062008aa0838362008a72565b9150826002028217905092915050565b62008abb8262006ef1565b67ffffffffffffffff81111562008ad75762008ad6620061d4565b5b62008ae3825462007f99565b62008af082828562008a15565b600060209050601f83116001811462008b28576000841562008b13578287015190505b62008b1f858262008a92565b86555062008b8f565b601f19841662008b388662008910565b60005b8281101562008b625784890151825560018201915060208501945060208101905062008b3b565b8683101562008b82578489015162008b7e601f89168262008a72565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4d6174683a206d756c446976206f766572666c6f770000000000000000000000600082015250565b600062008c2d60158362006efc565b915062008c3a8262008bf5565b602082019050919050565b6000602082019050818103600083015262008c608162008c1e565b905091905056fe608060405234801561001057600080fd5b506040516103e53803806103e5833981810160405281019061003291906100db565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610108565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100a88261007d565b9050919050565b6100b88161009d565b81146100c357600080fd5b50565b6000815190506100d5816100af565b92915050565b6000602082840312156100f1576100f0610078565b5b60006100ff848285016100c6565b91505092915050565b6102ce806101176000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063beabacc814610030575b600080fd5b61004a6004803603810190610045919061018b565b61004c565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8484846040518463ffffffff1660e01b81526004016100a9939291906101fc565b6020604051808303816000875af11580156100c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ec919061026b565b50505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610122826100f7565b9050919050565b61013281610117565b811461013d57600080fd5b50565b60008135905061014f81610129565b92915050565b6000819050919050565b61016881610155565b811461017357600080fd5b50565b6000813590506101858161015f565b92915050565b6000806000606084860312156101a4576101a36100f2565b5b60006101b286828701610140565b93505060206101c386828701610140565b92505060406101d486828701610176565b9150509250925092565b6101e781610117565b82525050565b6101f681610155565b82525050565b600060608201905061021160008301866101de565b61021e60208301856101de565b61022b60408301846101ed565b949350505050565b60008115159050919050565b61024881610233565b811461025357600080fd5b50565b6000815190506102658161023f565b92915050565b600060208284031215610281576102806100f2565b5b600061028f84828501610256565b9150509291505056fea2646970667358221220584830ad6020f92961817dc65ddc7db09473de72e053fbcf657fa124b0863b5764736f6c63430008140033a264697066735822122011b6b8bf36c4608b07a694419b40e86df6783a95c6c67dedff9a6fd43649186d64736f6c63430008140033",
|
1640
|
-
"deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620003f45760003560e01c80637ff826131162000219578063bd7d9d851162000129578063e9e96c7011620000bd578063f174ce191162000087578063f174ce191462000ce5578063f274e87d1462000d07578063fb2cb1011462000d3e578063fc0ae0541462000d6057620003f4565b8063e9e96c701462000c37578063eb71e8c41462000c6d578063eb7f494d1462000c8f578063f0ea17c31462000caf57620003f4565b8063ca38559811620000ff578063ca3855981462000bb7578063d0bb064c1462000bd7578063d547741f1462000bf7578063dc261c3a1462000c1757620003f4565b8063bd7d9d851462000b15578063be409a111462000b4b578063ca15c8731462000b8157620003f4565b80639cad005211620001ad578063b90915521162000177578063b90915521462000a7b578063ba62fbe41462000a9d578063bce395231462000abf578063bd62faf71462000adf57620003f4565b80639cad005214620009a3578063a310e2a314620009d9578063a7f3669b1462000a0f578063af17d38a1462000a4557620003f4565b80638aa03b6b11620001ef5780638aa03b6b14620008f55780639010d07c146200091757806391d14854146200094d57806393865aec146200098357620003f4565b80637ff82613146200089157806383d3331914620008b1578063893d20e814620008d357620003f4565b80633300a8a811620003155780636078a3b211620002a95780636fa2985311620002735780636fa2985314620007f757806379e829d014620008195780637c4a13b1146200083b5780637fec8b31146200085b57620003f4565b80636078a3b2146200075d578063644c45e014620007935780636c137ea914620007b55780636ce5caea14620007d757620003f4565b80634fd077f511620002eb5780634fd077f514620006995780635312fdc214620006cf57806357f80bbf14620007055780635ab1bd53146200073b57620003f4565b80633300a8a8146200061f5780633bc5de3014620006555780634288121d146200067757620003f4565b806322366844116200038d5780632f2ff15d11620003635780632f2ff15d146200059b57806331b62a3b14620005bb57806331e48e3214620005dd57806332e3a6e914620005fd57620003f4565b80632236684414620005215780632a5f6e8514620005435780632b1c7f73146200056557620003f4565b806313f7dcfc11620003cf57806313f7dcfc146200048757806315dae03e14620004a75780631aa3a00814620004c95780632064717e14620004eb57620003f4565b806301ed760414620003f957806302393c41146200042f5780630d3581811462000451575b600080fd5b62000417600480360381019062000411919062006000565b62000d96565b60405162000426919062006075565b60405180910390f35b6200043962000de7565b604051620004489190620060ad565b60405180910390f35b6200046f600480360381019062000469919062006108565b62000df0565b6040516200047e919062006173565b60405180910390f35b620004a560048036038101906200049f919062006000565b62000e20565b005b620004b162000f00565b604051620004c09190620061a1565b60405180910390f35b620004d362000f11565b604051620004e2919062006075565b60405180910390f35b62000509600480360381019062000503919062006389565b6200104a565b60405162000518919062006075565b60405180910390f35b6200052b620014cb565b6040516200053a919062006445565b60405180910390f35b6200054d62001602565b6040516200055c91906200647d565b60405180910390f35b6200058360048036038101906200057d91906200649a565b6200162a565b60405162000592919062006075565b60405180910390f35b620005b96004803603810190620005b39190620064fd565b6200168b565b005b620005c56200195d565b604051620005d4919062006075565b60405180910390f35b620005fb6004803603810190620005f5919062006613565b62001970565b005b6200060762001c47565b6040516200061691906200647d565b60405180910390f35b6200063d600480360381019062000637919062006000565b62001c6f565b6040516200064c9190620067c3565b60405180910390f35b6200065f62001d9e565b6040516200066e919062006869565b60405180910390f35b6200068162001dc8565b604051620006909190620068ee565b60405180910390f35b620006b76004803603810190620006b1919062006000565b62001df2565b604051620006c6919062006a08565b60405180910390f35b620006ed6004803603810190620006e7919062006a26565b6200204a565b604051620006fc91906200647d565b60405180910390f35b6200072360048036038101906200071d919062006000565b62002075565b60405162000732919062006aa0565b60405180910390f35b6200074562002112565b60405162000754919062006ae2565b60405180910390f35b6200077b600480360381019062000775919062006b44565b6200213b565b6040516200078a919062006075565b60405180910390f35b6200079d62002df7565b604051620007ac919062006075565b60405180910390f35b620007bf62002e9e565b604051620007ce91906200647d565b60405180910390f35b620007f56004803603810190620007ef919062006b76565b62002ec6565b005b6200080162003504565b60405162000810919062006be2565b60405180910390f35b620008236200352e565b60405162000832919062006445565b60405180910390f35b62000859600480360381019062000853919062006bff565b62003537565b005b62000879600480360381019062000873919062006a26565b62003764565b60405162000888919062006075565b60405180910390f35b620008af6004803603810190620008a9919062006000565b620037b2565b005b620008bb62003987565b604051620008ca9190620060ad565b60405180910390f35b620008dd62003994565b604051620008ec919062006c42565b60405180910390f35b620008ff62003b3f565b6040516200090e9190620060ad565b60405180910390f35b6200093560048036038101906200092f919062006c5f565b62003b44565b60405162000944919062006c42565b60405180910390f35b6200096b6004803603810190620009659190620064fd565b62003b75565b6040516200097a919062006445565b60405180910390f35b620009a160048036038101906200099b919062006ca6565b62003bdd565b005b620009c16004803603810190620009bb919062006dcf565b62003c4e565b604051620009d091906200647d565b60405180910390f35b620009f76004803603810190620009f1919062006000565b62003c80565b60405162000a06919062006e31565b60405180910390f35b62000a2d600480360381019062000a27919062006e7f565b62003cdc565b60405162000a3c919062006173565b60405180910390f35b62000a63600480360381019062000a5d919062006dcf565b62003f21565b60405162000a7291906200647d565b60405180910390f35b62000a8562004017565b60405162000a94919062006f4e565b60405180910390f35b62000aa762004050565b60405162000ab69190620060ad565b60405180910390f35b62000add600480360381019062000ad7919062006b76565b6200405d565b005b62000afd600480360381019062000af7919062007026565b6200440e565b60405162000b0c919062006075565b60405180910390f35b62000b33600480360381019062000b2d919062006000565b62004918565b60405162000b42919062007160565b60405180910390f35b62000b69600480360381019062000b63919062006bff565b62004a19565b60405162000b78919062007248565b60405180910390f35b62000b9f600480360381019062000b99919062006bff565b62004b07565b60405162000bae9190620060ad565b60405180910390f35b62000bd5600480360381019062000bcf919062006000565b62004b2d565b005b62000bf5600480360381019062000bef91906200726c565b62004cf5565b005b62000c15600480360381019062000c0f9190620064fd565b62004e2e565b005b62000c35600480360381019062000c2f919062006ca6565b62005000565b005b62000c55600480360381019062000c4f9190620072de565b62005071565b60405162000c64919062006445565b60405180910390f35b62000c77620050d1565b60405162000c86919062006f4e565b60405180910390f35b62000cad600480360381019062000ca7919062006bff565b6200510a565b005b62000ccd600480360381019062000cc7919062006000565b62005337565b60405162000cdc9190620073a7565b60405180910390f35b62000cef62005433565b60405162000cfe919062006f4e565b60405180910390f35b62000d25600480360381019062000d1f9190620073c4565b6200546c565b60405162000d359291906200740b565b60405180910390f35b62000d48620055a7565b60405162000d57919062006c42565b60405180910390f35b62000d7e600480360381019062000d78919062006108565b620055d1565b60405162000d8d91906200647d565b60405180910390f35b600060116000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b6402540be40081565b6000600660008360ff1660ff16815260200190815260200160002060009054906101000a900460ff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000eb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eaa90620074ae565b60405180910390fd5b600060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050806002015481600301819055504281600601819055505050565b600062000f0c62005798565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000fa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f9b9062007520565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000fff919062006c42565b6020604051808303816000875af11580156200101f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001045919062007559565b905090565b60003373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620010df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010d690620074ae565b60405180910390fd5b816bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016200112891906200759c565b602060405180830381865af415801562001146573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200116c9190620075ea565b503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620011b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011df919062007661565b73ffffffffffffffffffffffffffffffffffffffff16631d1b0cac886000015162001209620057ab565b896040518463ffffffff1660e01b81526004016200122a9392919062007693565b6020604051808303816000875af11580156200124a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001270919062007559565b9050604051806101600160405280826bffffffffffffffffffffffff168152602001601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d358181620012da620057ab565b6040518263ffffffff1660e01b8152600401620012f89190620061a1565b602060405180830381865afa15801562001316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200133c9190620076e7565b60ff168152602001868152602001858152602001600081526020018481526020014281526020014281526020016000815260200160008152602001600081525060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010155606082015181600201556080820151816003015560a0820151816004015560c0820151816005015560e082015181600601556101008201518160070155610120820151816008015561014082015181600901559050508160116000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509695505050505050565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040162001529919062006c42565b602060405180830381865afa15801562001547573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200156d919062007559565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401620015b891906200759c565b602060405180830381865af4158015620015d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015fc9190620075ea565b91505090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620016d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620016fd919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200176490620077b2565b60405180910390fd5b81600260008481526020019081526020016000206000015414620017c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620017bf9062007824565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff166200182e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620018259062007896565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620018be8160056000858152602001908152602001600020620057be90919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166040516200195193929190620078b8565b60405180910390a15050565b60006200196b6000620057f0565b905090565b600084604051620019819062005d56565b6200198d919062006c42565b604051809103906000f080158015620019aa573d6000803e3d6000fd5b509050604051806101000160405280896bffffffffffffffffffffffff168152602001886bffffffffffffffffffffffff168152602001876bffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815250601960008a6bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555060408201518160010160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550606082015181600101600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060a08201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c0820151816004016000820151816000015560208201518160010155505060e082015181600601600082015181600001556020820151816001015550509050505050505050505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b62001c7962005d64565b601b6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182016040518060400160405290816000820154815260200160018201548152505081526020016003820160405180604001604052908160008201548152602001600182015481525050815250509050919050565b6060600060405160200162001db4919062007938565b604051602081830303815290604052905090565b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62001dfc62005dc0565b60196000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016001820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160018201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600482016040518060400160405290816000820154815260200160018201548152505081526020016006820160405180604001604052908160008201548152602001600182015481525050815250509050919050565b60006003828154811062002063576200206262007955565b5b90600052602060002001549050919050565b6200207f62005e81565b60146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001600182015481526020016002820154815250509050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620021d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620021c790620079d4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200221e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002244919062007a0d565b905060006200225382620055d1565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828673ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015620022be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022e4919062007730565b6040518363ffffffff1660e01b81526004016200230392919062007a3f565b602060405180830381865afa15801562002321573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023479190620075ea565b62002389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620023809062007abc565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620023d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023fb919062007661565b73ffffffffffffffffffffffffffffffffffffffff16634420e486856040518263ffffffff1660e01b815260040162002435919062006c42565b6020604051808303816000875af115801562002455573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200247b919062007559565b925060008473ffffffffffffffffffffffffffffffffffffffff166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa158015620024cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620024f1919062007af5565b905060008573ffffffffffffffffffffffffffffffffffffffff1663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002541573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002567919062007730565b90506040518060600160405280866bffffffffffffffffffffffff168152602001600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630d358181876040518263ffffffff1660e01b8152600401620025e59190620061a1565b602060405180830381865afa15801562002603573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026299190620076e7565b60ff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681525060086000876bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550905050620027a28673ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200276c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002792919062007a0d565b6200279c620057fa565b6200580d565b1562002a8657600086905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015620027fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002821919062007559565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016200286c91906200759c565b602060405180830381865af41580156200288a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028b09190620075ea565b620028f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620028e99062007b77565b60405180910390fd5b6000620028fe62005820565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166331e48e3289838589898973ffffffffffffffffffffffffffffffffffffffff1663bc74aab06040518163ffffffff1660e01b81526004016040805180830381865afa1580156200298e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029b4919062007c20565b8a73ffffffffffffffffffffffffffffffffffffffff1663daafed406040518163ffffffff1660e01b81526004016040805180830381865afa158015620029ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a25919062007c20565b6040518863ffffffff1660e01b815260040162002a49979695949392919062007c96565b600060405180830381600087803b15801562002a6457600080fd5b505af115801562002a79573d6000803e3d6000fd5b5050505050505062002d22565b62002b0c8673ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002ad6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002afc919062007a0d565b62002b0662005825565b6200580d565b1562002d21576000869050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ca385598876040518263ffffffff1660e01b815260040162002b74919062006075565b600060405180830381600087803b15801562002b8f57600080fd5b505af115801562002ba4573d6000803e3d6000fd5b50505050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0bb064c87848473ffffffffffffffffffffffffffffffffffffffff16634b270a466040518163ffffffff1660e01b81526004016040805180830381865afa15801562002c33573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002c59919062007c20565b8573ffffffffffffffffffffffffffffffffffffffff1663235c36036040518163ffffffff1660e01b81526004016040805180830381865afa15801562002ca4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002cca919062007c20565b6040518563ffffffff1660e01b815260040162002ceb949392919062007d14565b600060405180830381600087803b15801562002d0657600080fd5b505af115801562002d1b573d6000803e3d6000fd5b50505050505b5b84600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550600a859080600181540180825580915050600190039060005260206000209060029182820401919006600c029091909190916101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040162002e55919062006c42565b602060405180830381865afa15801562002e73573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e99919062007559565b905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85846040518263ffffffff1660e01b815260040162002f25919062006075565b61016060405180830381865afa15801562002f44573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002f6a919062007e88565b905062002f7c81600001518462005838565b62002fbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162002fb59062007f0b565b60405180910390fd5b600060196000846bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020016001820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160018201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016003820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160048201604051806040016040529081600082015481526020016001820154815250508152602001600682016040518060400160405290816000820154815260200160018201548152505081525050905060008160800151905060003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003260573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003286919062007661565b73ffffffffffffffffffffffffffffffffffffffff1663df33330b876040518263ffffffff1660e01b8152600401620032c0919062006075565b602060405180830381865afa158015620032de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003304919062007730565b90506000601b600085604001516bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050620033708460c0015162005861565b15620033f3578273ffffffffffffffffffffffffffffffffffffffff1663beabacc8838388606001516040518463ffffffff1660e01b8152600401620033b99392919062007f2d565b600060405180830381600087803b158015620033d457600080fd5b505af1158015620033e9573d6000803e3d6000fd5b50505050620034fb565b6000806200340a87606001518760c001516200546c565b915091508473ffffffffffffffffffffffffffffffffffffffff1663beabacc8858860a00151856040518463ffffffff1660e01b8152600401620034519392919062007f2d565b600060405180830381600087803b1580156200346c57600080fd5b505af115801562003481573d6000803e3d6000fd5b505050508473ffffffffffffffffffffffffffffffffffffffff1663beabacc88585846040518463ffffffff1660e01b8152600401620034c49392919062007f2d565b600060405180830381600087803b158015620034df57600080fd5b505af1158015620034f4573d6000803e3d6000fd5b5050505050505b50505050505050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003583573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035a9919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462003619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200361090620077b2565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054620036559062007f99565b80601f0160208091040260200160405190810160405280929190818152602001828054620036839062007f99565b8015620036d45780601f10620036a857610100808354040283529160200191620036d4565b820191906000526020600020905b815481529060010190602001808311620036b657829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511462003743576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200373a9062008044565b60405180910390fd5b60008160400190151590811515815250506200375f8162005882565b505050565b6000600a82815481106200377d576200377c62007955565b5b9060005260206000209060029182820401919006600c029054906101000a90046bffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462003845576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200383c90620074ae565b60405180910390fd5b600060106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020905042816007018190555080600401544262003893919062008095565b8160080181905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a7f3669b83620038e4620057ab565b84600001600c9054906101000a900460ff166200390062005939565b6040518563ffffffff1660e01b8152600401620039219493929190620080d0565b6020604051808303816000875af115801562003941573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039679190620076e7565b81600001600c6101000a81548160ff021916908360ff1602179055505050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401620039f2919062006c42565b602060405180830381865afa15801562003a10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003a36919062007559565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b815260040162003a93919062006075565b602060405180830381865afa15801562003ab1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ad7919062007730565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362003b3757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662003b39565b815b91505090565b600081565b600062003b6d82600560008681526020019081526020016000206200594c90919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601b6000856bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050828160010160008201518160000155602082015181600101559050508181600301600082015181600001556020820151816001015590505050505050565b60008160405160200162003c63919062006f4e565b604051602081830303815290604052805190602001209050919050565b600060196000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600760008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060008360ff1660ff16815260200190815260200160002060009054906101000a900460ff1662003d7d57848484846040517f33760ddc00000000000000000000000000000000000000000000000000000000815260040162003d749493929190620080d0565b60405180910390fd5b62003d928462003d8c620057ab565b6200580d565b1562003ddb577f3453c320908f5844705a0f2acbb230412df911a60544eca9236d16f5f9f1f6f685848460405162003dcd939291906200811d565b60405180910390a162003f16565b62003df08462003dea62005968565b6200580d565b1562003e39577f92e25bf636cb4bfa6edf8b4fa57c0d64b6d959e3c6376d17c9bcc168fe36be1985848460405162003e2b939291906200811d565b60405180910390a162003f15565b62003e4e8462003e48620057fa565b6200580d565b8062003e6b575062003e6a8462003e646200597b565b6200580d565b5b8062003e88575062003e878462003e8162005825565b6200580d565b5b1562003ed3577fcc75054af33cdb7ef0c6dd9d4cb6f22e1dc2d22204db49d769d5da19579fb84e8585858560405162003ec59493929190620080d0565b60405180910390a162003f14565b84846040517f092b31d400000000000000000000000000000000000000000000000000000000815260040162003f0b9291906200815a565b60405180910390fd5b5b5b819050949350505050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003f6f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003f95919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462004005576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162003ffc90620077b2565b60405180910390fd5b62004010826200598e565b9050919050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600a80549050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620040f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620040e790620074ae565b60405180910390fd5b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85846040518263ffffffff1660e01b81526004016200414f919062006075565b61016060405180830381865afa1580156200416e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004194919062007e88565b9050620041a681600001518462005838565b620041e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620041df90620081d7565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634fd077f5846040518263ffffffff1660e01b815260040162004247919062006075565b61014060405180830381865afa15801562004266573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200428c919062008335565b90506200429e81600001518462005838565b620042e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620042d790620083de565b60405180910390fd5b600081604001519050600060146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050620043448160000160009054906101000a90046bffffffffffffffffffffffff168362005838565b62004386576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200437d9062008450565b60405180910390fd5b836040015181600201548260010154620043a1919062008472565b1015620043e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620043dc90620084fd565b60405180910390fd5b8360400151816002016000828254620043ff919062008095565b92505081905550505050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620044a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200449a90620079d4565b60405180910390fd5b81600001519050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401620044f391906200759c565b602060405180830381865af415801562004511573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620045379190620075ea565b801562004619575060086000826bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__63c4cade9d9091836040518363ffffffff1660e01b8152600401620045d49291906200851f565b602060405180830381865af4158015620045f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620046189190620075ea565b5b6200465b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004652906200859c565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620046a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620046cf919062007661565b73ffffffffffffffffffffffffffffffffffffffff16634c3371cd836040518263ffffffff1660e01b815260040162004709919062006075565b60a060405180830381865afa15801562004727573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200474d919062008659565b604001519050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a7f3669b838360086000876bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020600001600c9054906101000a900460ff1687602001516040518563ffffffff1660e01b8152600401620047f99493929190620080d0565b6020604051808303816000875af115801562004819573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200483f9190620076e7565b508260086000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360ff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505050919050565b6200492262005eb0565b60106000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff1660ff1660ff16815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820154815250509050919050565b62004a2362005f1b565b600260008381526020019081526020016000206040518060600160405290816000820154815260200160018201805462004a5d9062007f99565b80601f016020809104026020016040519081016040528092919081815260200182805462004a8b9062007f99565b801562004adc5780601f1062004ab05761010080835404028352916020019162004adc565b820191906000526020600020905b81548152906001019060200180831162004abe57829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b600062004b2660056000848152602001908152602001600020620059c7565b9050919050565b60146000826bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6352694ee890916040518263ffffffff1660e01b815260040162004bc091906200759c565b602060405180830381865af415801562004bde573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004c049190620075ea565b62004c46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004c3d90620086db565b60405180910390fd5b6040518060600160405280826bffffffffffffffffffffffff1681526020016402540be4008152602001600081525060146000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600101556040820151816002015590505050565b6040518060800160405280856bffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815250601b6000866bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600101600082015181600001556020820151816001015550506060820151816003016000820151816000015560208201518160010155505090505050505050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562004e7a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004ea0919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161462004f10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004f0790620077b2565b60405180910390fd5b8160026000848152602001908152602001600020600001541462004f6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162004f62906200874d565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062004ffb8160056000858152602001908152602001600020620059de90919063ffffffff16565b505050565b600060196000856bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000209050828160040160008201518160000155602082015181600101559050508181600601600082015181600001556020820151816001015590505050505050565b6000600760008560ff1660ff16815260200190815260200160002060008460ff1660ff16815260200190815260200160002060008360ff1660ff16815260200190815260200160002060009054906101000a900460ff1690509392505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562005156573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200517c919062007730565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620051ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620051e390620077b2565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054620052289062007f99565b80601f0160208091040260200160405190810160405280929190818152602001828054620052569062007f99565b8015620052a75780601f106200527b57610100808354040283529160200191620052a7565b820191906000526020600020905b8154815290600101906020018083116200528957829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511462005316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200530d90620087e5565b60405180910390fd5b6001816040019015159081151581525050620053328162005882565b505050565b6200534162005f41565b60086000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff1660ff1660ff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250509050919050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000806000620054fd73__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__6392ae8ce0876040518263ffffffff1660e01b8152600401620054ae919062008818565b602060405180830381865af4158015620054cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620054f2919062008835565b856000015162005a10565b9050836020015173__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__63d05b0452836040518263ffffffff1660e01b81526004016200553d919062008878565b602060405180830381865af41580156200555b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062005581919062008895565b6200558d919062008095565b925082856200559d919062008472565b9150509250929050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620055e882620055e2620057fa565b6200580d565b1562005668573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200563a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620056609190620088de565b905062005793565b6200567d826200567762005825565b6200580d565b15620056fd573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa158015620056cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620056f59190620088de565b905062005793565b62005712826200570c6200597b565b6200580d565b1562005792573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa15801562005764573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200578a9190620088de565b905062005793565b5b919050565b6000620057a6603262005a2f565b905090565b6000620057b9605a62005a2f565b905090565b6000620057e8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62005a39565b905092915050565b6000819050919050565b600062005808603c62005a2f565b905090565b60008160ff168360ff1614905092915050565b600090565b600062005833605062005a2f565b905090565b6000816bffffffffffffffffffffffff16836bffffffffffffffffffffffff1614905092915050565b60008082602001511480156200587b575060008260000151145b9050919050565b6000816000015190506000801b8103620058db57620058a5826020015162003c4e565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908162005910919062008ab0565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b600062005947606462005aad565b905090565b60006200595d836000018362005ab7565b60001c905092915050565b600062005976605162005a2f565b905090565b600062005989604662005a2f565b905090565b60008060405180606001604052806000801b8152602001848152602001600115158152509050620059bf8162005882565b915050919050565b6000620059d78260000162005ae5565b9050919050565b600062005a08836000018373ffffffffffffffffffffffffffffffffffffffff1660001b62005af6565b905092915050565b600062005a278383670de0b6b3a764000062005c1a565b905092915050565b6000819050919050565b600062005a47838362005d33565b62005aa257826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062005aa7565b600090505b92915050565b6000819050919050565b600082600001828154811062005ad25762005ad162007955565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b6000808360010160008481526020019081526020016000205490506000811462005c0e57600060018262005b2b919062008472565b905060006001866000018054905062005b45919062008472565b905081811462005bbb57600086600001828154811062005b6a5762005b6962007955565b5b906000526020600020015490508087600001848154811062005b915762005b9062007955565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548062005bd25762005bd162008b97565b5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062005c14565b60009150505b92915050565b600080600080198587098587029250828110838203039150506000810362005c5a5783828162005c4f5762005c4e62008bc6565b5b049250505062005d2c565b80841162005c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162005c969062008c45565b60405180910390fd5b60008486880990508281118203915080830392506000600186190186169050808604955080840493506001818260000304019050808302841793506000600287600302189050808702600203810290508087026002038102905080870260020381029050808702600203810290508087026002038102905080870260020381029050808502955050505050505b9392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6103e58062008c6883390190565b604051806080016040528060006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200162005dab62005f89565b815260200162005dba62005f89565b81525090565b60405180610100016040528060006bffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff16815260200160006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200162005e6c62005f89565b815260200162005e7b62005f89565b81525090565b604051806060016040528060006bffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610160016040528060006bffffffffffffffffffffffff168152602001600060ff1681526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b604051806060016040528060006bffffffffffffffffffffffff168152602001600060ff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b604051806040016040528060008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60006bffffffffffffffffffffffff82169050919050565b62005fda8162005fb7565b811462005fe657600080fd5b50565b60008135905062005ffa8162005fcf565b92915050565b60006020828403121562006019576200601862005fad565b5b6000620060298482850162005fe9565b91505092915050565b6000819050919050565b60006200605d62006057620060518462005fb7565b62006032565b62005fb7565b9050919050565b6200606f816200603c565b82525050565b60006020820190506200608c600083018462006064565b92915050565b6000819050919050565b620060a78162006092565b82525050565b6000602082019050620060c460008301846200609c565b92915050565b600060ff82169050919050565b620060e281620060ca565b8114620060ee57600080fd5b50565b6000813590506200610281620060d7565b92915050565b60006020828403121562006121576200612062005fad565b5b60006200613184828501620060f1565b91505092915050565b60006200615b620061556200614f84620060ca565b62006032565b620060ca565b9050919050565b6200616d816200613a565b82525050565b60006020820190506200618a600083018462006162565b92915050565b6200619b816200613a565b82525050565b6000602082019050620061b8600083018462006190565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200620e82620061c3565b810181811067ffffffffffffffff8211171562006230576200622f620061d4565b5b80604052505050565b60006200624562005fa3565b905062006253828262006203565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620062858262006258565b9050919050565b620062978162006278565b8114620062a357600080fd5b50565b600081359050620062b7816200628c565b92915050565b600060a08284031215620062d657620062d5620061be565b5b620062e260a062006239565b90506000620062f48482850162005fe9565b60008301525060206200630a8482850162005fe9565b60208301525060406200632084828501620060f1565b60408301525060606200633684828501620062a6565b60608301525060806200634c84828501620062a6565b60808301525092915050565b620063638162006092565b81146200636f57600080fd5b50565b600081359050620063838162006358565b92915050565b6000806000806000806101408789031215620063aa57620063a962005fad565b5b6000620063ba89828a01620062bd565b96505060a0620063cd89828a01620062a6565b95505060c0620063e089828a0162006372565b94505060e0620063f389828a0162006372565b9350506101006200640789828a0162006372565b9250506101206200641b89828a0162005fe9565b9150509295509295509295565b60008115159050919050565b6200643f8162006428565b82525050565b60006020820190506200645c600083018462006434565b92915050565b6000819050919050565b620064778162006462565b82525050565b60006020820190506200649460008301846200646c565b92915050565b600060208284031215620064b357620064b262005fad565b5b6000620064c384828501620062a6565b91505092915050565b620064d78162006462565b8114620064e357600080fd5b50565b600081359050620064f781620064cc565b92915050565b6000806040838503121562006517576200651662005fad565b5b60006200652785828601620064e6565b92505060206200653a85828601620062a6565b9150509250929050565b6000620065518262006278565b9050919050565b620065638162006544565b81146200656f57600080fd5b50565b600081359050620065838162006558565b92915050565b620065948162006092565b8114620065a057600080fd5b50565b600081359050620065b48162006589565b92915050565b600060408284031215620065d357620065d2620061be565b5b620065df604062006239565b90506000620065f184828501620065a3565b6000830152506020620066078482850162006372565b60208301525092915050565b6000806000806000806000610120888a03121562006636576200663562005fad565b5b6000620066468a828b0162005fe9565b9750506020620066598a828b0162005fe9565b96505060406200666c8a828b0162005fe9565b95505060606200667f8a828b0162006572565b9450506080620066928a828b01620062a6565b93505060a0620066a58a828b01620065ba565b92505060e0620066b88a828b01620065ba565b91505092959891949750929550565b620066d2816200603c565b82525050565b620066e38162006278565b82525050565b60006200670a62006704620066fe8462006092565b62006032565b62006092565b9050919050565b6200671c81620066e9565b82525050565b6200672d8162006092565b82525050565b6040820160008201516200674b600085018262006711565b50602082015162006760602085018262006722565b50505050565b60c0820160008201516200677e6000850182620066c7565b506020820151620067936020850182620066d8565b506040820151620067a8604085018262006733565b506060820151620067bd608085018262006733565b50505050565b600060c082019050620067da600083018462006766565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200681c578082015181840152602081019050620067ff565b60008484015250505050565b60006200683582620067e0565b620068418185620067eb565b935062006853818560208601620067fc565b6200685e81620061c3565b840191505092915050565b6000602082019050818103600083015262006885818462006828565b905092915050565b6000620068ae620068a8620068a28462006258565b62006032565b62006258565b9050919050565b6000620068c2826200688d565b9050919050565b6000620068d682620068b5565b9050919050565b620068e881620068c9565b82525050565b6000602082019050620069056000830184620068dd565b92915050565b60006200691882620068b5565b9050919050565b6200692a816200690b565b82525050565b60006200693d82620068b5565b9050919050565b6200694f8162006930565b82525050565b610140820160008201516200696e6000850182620066c7565b506020820151620069836020850182620066c7565b506040820151620069986040850182620066c7565b506060820151620069ad60608501826200691f565b506080820151620069c2608085018262006944565b5060a0820151620069d760a0850182620066d8565b5060c0820151620069ec60c085018262006733565b5060e082015162006a0261010085018262006733565b50505050565b60006101408201905062006a20600083018462006955565b92915050565b60006020828403121562006a3f5762006a3e62005fad565b5b600062006a4f8482850162006372565b91505092915050565b60608201600082015162006a706000850182620066c7565b50602082015162006a85602085018262006722565b50604082015162006a9a604085018262006722565b50505050565b600060608201905062006ab7600083018462006a58565b92915050565b600062006aca82620068b5565b9050919050565b62006adc8162006abd565b82525050565b600060208201905062006af9600083018462006ad1565b92915050565b600062006b0c8262006278565b9050919050565b62006b1e8162006aff565b811462006b2a57600080fd5b50565b60008135905062006b3e8162006b13565b92915050565b60006020828403121562006b5d5762006b5c62005fad565b5b600062006b6d8482850162006b2d565b91505092915050565b6000806040838503121562006b905762006b8f62005fad565b5b600062006ba08582860162005fe9565b925050602062006bb38582860162005fe9565b9150509250929050565b600062006bca82620068b5565b9050919050565b62006bdc8162006bbd565b82525050565b600060208201905062006bf9600083018462006bd1565b92915050565b60006020828403121562006c185762006c1762005fad565b5b600062006c2884828501620064e6565b91505092915050565b62006c3c8162006278565b82525050565b600060208201905062006c59600083018462006c31565b92915050565b6000806040838503121562006c795762006c7862005fad565b5b600062006c8985828601620064e6565b925050602062006c9c8582860162006372565b9150509250929050565b600080600060a0848603121562006cc25762006cc162005fad565b5b600062006cd28682870162005fe9565b935050602062006ce586828701620065ba565b925050606062006cf886828701620065ba565b9150509250925092565b600080fd5b600080fd5b600067ffffffffffffffff82111562006d2a5762006d29620061d4565b5b62006d3582620061c3565b9050602081019050919050565b82818337600083830152505050565b600062006d6862006d628462006d0c565b62006239565b90508281526020810184848401111562006d875762006d8662006d07565b5b62006d9484828562006d42565b509392505050565b600082601f83011262006db45762006db362006d02565b5b813562006dc684826020860162006d51565b91505092915050565b60006020828403121562006de85762006de762005fad565b5b600082013567ffffffffffffffff81111562006e095762006e0862005fb2565b5b62006e178482850162006d9c565b91505092915050565b62006e2b8162006930565b82525050565b600060208201905062006e48600083018462006e20565b92915050565b62006e5981620060ca565b811462006e6557600080fd5b50565b60008135905062006e798162006e4e565b92915050565b6000806000806080858703121562006e9c5762006e9b62005fad565b5b600062006eac8782880162005fe9565b945050602062006ebf87828801620060f1565b935050604062006ed28782880162006e68565b925050606062006ee58782880162006e68565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b600062006f1a8262006ef1565b62006f26818562006efc565b935062006f38818560208601620067fc565b62006f4381620061c3565b840191505092915050565b6000602082019050818103600083015262006f6a818462006f0d565b905092915050565b600062006f7f8262006278565b9050919050565b62006f918162006f72565b811462006f9d57600080fd5b50565b60008135905062006fb18162006f86565b92915050565b60006060828403121562006fd05762006fcf620061be565b5b62006fdc606062006239565b9050600062006fee8482850162005fe9565b6000830152506020620070048482850162006e68565b60208301525060406200701a8482850162006fa0565b60408301525092915050565b6000606082840312156200703f576200703e62005fad565b5b60006200704f8482850162006fb7565b91505092915050565b62007063816200613a565b82525050565b61016082016000820151620070826000850182620066c7565b50602082015162007097602085018262007058565b506040820151620070ac604085018262006722565b506060820151620070c1606085018262006722565b506080820151620070d6608085018262006722565b5060a0820151620070eb60a085018262006722565b5060c08201516200710060c085018262006722565b5060e08201516200711560e085018262006722565b506101008201516200712c61010085018262006722565b506101208201516200714361012085018262006722565b506101408201516200715a61014085018262006722565b50505050565b60006101608201905062007178600083018462007069565b92915050565b620071898162006462565b82525050565b600082825260208201905092915050565b6000620071ad8262006ef1565b620071b981856200718f565b9350620071cb818560208601620067fc565b620071d681620061c3565b840191505092915050565b620071ec8162006428565b82525050565b60006060830160008301516200720c60008601826200717e565b5060208301518482036020860152620072268282620071a0565b91505060408301516200723d6040860182620071e1565b508091505092915050565b60006020820190508181036000830152620072648184620071f2565b905092915050565b60008060008060c0858703121562007289576200728862005fad565b5b6000620072998782880162005fe9565b9450506020620072ac87828801620062a6565b9350506040620072bf87828801620065ba565b9250506080620072d287828801620065ba565b91505092959194509250565b600080600060608486031215620072fa57620072f962005fad565b5b60006200730a86828701620060f1565b93505060206200731d8682870162006e68565b9250506040620073308682870162006e68565b9150509250925092565b60006200734782620068b5565b9050919050565b62007359816200733a565b82525050565b606082016000820151620073776000850182620066c7565b5060208201516200738c602085018262007058565b506040820151620073a160408501826200734e565b50505050565b6000606082019050620073be60008301846200735f565b92915050565b60008060608385031215620073de57620073dd62005fad565b5b6000620073ee8582860162006372565b92505060206200740185828601620065ba565b9150509250929050565b60006040820190506200742260008301856200609c565b6200743160208301846200609c565b9392505050565b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006200749660218362006efc565b9150620074a38262007438565b604082019050919050565b60006020820190508181036000830152620074c98162007487565b9050919050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b600062007508601b8362006efc565b91506200751582620074d0565b602082019050919050565b600060208201905081810360008301526200753b81620074f9565b9050919050565b600081519050620075538162005fcf565b92915050565b60006020828403121562007572576200757162005fad565b5b6000620075828482850162007542565b91505092915050565b62007596816200603c565b82525050565b6000602082019050620075b360008301846200758b565b92915050565b620075c48162006428565b8114620075d057600080fd5b50565b600081519050620075e481620075b9565b92915050565b60006020828403121562007603576200760262005fad565b5b60006200761384828501620075d3565b91505092915050565b6000620076298262006278565b9050919050565b6200763b816200761c565b81146200764757600080fd5b50565b6000815190506200765b8162007630565b92915050565b6000602082840312156200767a576200767962005fad565b5b60006200768a848285016200764a565b91505092915050565b6000606082019050620076aa600083018662006064565b620076b9602083018562006190565b620076c8604083018462006c31565b949350505050565b600081519050620076e18162006e4e565b92915050565b6000602082840312156200770057620076ff62005fad565b5b60006200771084828501620076d0565b91505092915050565b6000815190506200772a816200628c565b92915050565b60006020828403121562007749576200774862005fad565b5b6000620077598482850162007719565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b60006200779a60178362006efc565b9150620077a78262007762565b602082019050919050565b60006020820190508181036000830152620077cd816200778b565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b60006200780c601f8362006efc565b91506200781982620077d4565b602082019050919050565b600060208201905081810360008301526200783f81620077fd565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b60006200787e601d8362006efc565b91506200788b8262007846565b602082019050919050565b60006020820190508181036000830152620078b1816200786f565b9050919050565b6000606082019050620078cf60008301866200646c565b620078de602083018562006c31565b620078ed604083018462006434565b949350505050565b6000819050919050565b6000620079206200791a6200791484620078f5565b62006032565b620060ca565b9050919050565b6200793281620078ff565b82525050565b60006020820190506200794f600083018462007927565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b6000620079bc601f8362006efc565b9150620079c98262007984565b602082019050919050565b60006020820190508181036000830152620079ef81620079ad565b9050919050565b60008151905062007a0781620060d7565b92915050565b60006020828403121562007a265762007a2562005fad565b5b600062007a3684828501620079f6565b91505092915050565b600060408201905062007a5660008301856200646c565b62007a65602083018462006c31565b9392505050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b600062007aa4601f8362006efc565b915062007ab18262007a6c565b602082019050919050565b6000602082019050818103600083015262007ad78162007a95565b9050919050565b60008151905062007aef8162006f86565b92915050565b60006020828403121562007b0e5762007b0d62005fad565b5b600062007b1e8482850162007ade565b91505092915050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b600062007b5f601a8362006efc565b915062007b6c8262007b27565b602082019050919050565b6000602082019050818103600083015262007b928162007b50565b9050919050565b60008151905062007baa8162006589565b92915050565b60008151905062007bc18162006358565b92915050565b60006040828403121562007be05762007bdf620061be565b5b62007bec604062006239565b9050600062007bfe8482850162007b99565b600083015250602062007c148482850162007bb0565b60208301525092915050565b60006040828403121562007c395762007c3862005fad565b5b600062007c498482850162007bc7565b91505092915050565b62007c5d816200733a565b82525050565b60408201600082015162007c7b600085018262006711565b50602082015162007c90602085018262006722565b50505050565b60006101208201905062007cae600083018a62006064565b62007cbd602083018962006064565b62007ccc604083018862006064565b62007cdb606083018762007c52565b62007cea608083018662006c31565b62007cf960a083018562007c63565b62007d0860e083018462007c63565b98975050505050505050565b600060c08201905062007d2b600083018762006064565b62007d3a602083018662006c31565b62007d49604083018562007c63565b62007d58608083018462007c63565b95945050505050565b6000610160828403121562007d7b5762007d7a620061be565b5b62007d8861016062006239565b9050600062007d9a8482850162007542565b600083015250602062007db084828501620076d0565b602083015250604062007dc68482850162007bb0565b604083015250606062007ddc8482850162007bb0565b606083015250608062007df28482850162007bb0565b60808301525060a062007e088482850162007bb0565b60a08301525060c062007e1e8482850162007bb0565b60c08301525060e062007e348482850162007bb0565b60e08301525061010062007e4b8482850162007bb0565b6101008301525061012062007e638482850162007bb0565b6101208301525061014062007e7b8482850162007bb0565b6101408301525092915050565b6000610160828403121562007ea25762007ea162005fad565b5b600062007eb28482850162007d61565b91505092915050565b7f4552524f523a5452532d3032303a504f4c4943595f554e4b4e4f574e00000000600082015250565b600062007ef3601c8362006efc565b915062007f008262007ebb565b602082019050919050565b6000602082019050818103600083015262007f268162007ee4565b9050919050565b600060608201905062007f44600083018662006c31565b62007f53602083018562006c31565b62007f6260408301846200609c565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062007fb257607f821691505b60208210810362007fc85762007fc762007f6a565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006200802c60218362006efc565b9150620080398262007fce565b604082019050919050565b600060208201905081810360008301526200805f816200801d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620080a28262006092565b9150620080af8362006092565b9250828201905080821115620080ca57620080c962008066565b5b92915050565b6000608082019050620080e7600083018762006064565b620080f6602083018662006190565b62008105604083018562006162565b62008114606083018462006162565b95945050505050565b600060608201905062008134600083018662006064565b62008143602083018562006162565b62008152604083018462006162565b949350505050565b600060408201905062008171600083018562006064565b62008180602083018462006190565b9392505050565b7f4552524f523a504c2d3030323a504f4c4943595f554e4b4e4f574e0000000000600082015250565b6000620081bf601b8362006efc565b9150620081cc8262008187565b602082019050919050565b60006020820190508181036000830152620081f281620081b0565b9050919050565b6000815190506200820a8162006558565b92915050565b60006200821d8262006278565b9050919050565b6200822f8162008210565b81146200823b57600080fd5b50565b6000815190506200824f8162008224565b92915050565b600061014082840312156200826f576200826e620061be565b5b6200827c61010062006239565b905060006200828e8482850162007542565b6000830152506020620082a48482850162007542565b6020830152506040620082ba8482850162007542565b6040830152506060620082d084828501620081f9565b6060830152506080620082e6848285016200823e565b60808301525060a0620082fc8482850162007719565b60a08301525060c0620083128482850162007bc7565b60c083015250610100620083298482850162007bc7565b60e08301525092915050565b600061014082840312156200834f576200834e62005fad565b5b60006200835f8482850162008255565b91505092915050565b7f4552524f523a504c2d3030333a50524f445543545f53455455505f4d4953534960008201527f4e47000000000000000000000000000000000000000000000000000000000000602082015250565b6000620083c660228362006efc565b9150620083d38262008368565b604082019050919050565b60006020820190508181036000830152620083f981620083b7565b9050919050565b7f4552524f523a504c2d3030343a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b60006200843860198362006efc565b9150620084458262008400565b602082019050919050565b600060208201905081810360008301526200846b8162008429565b9050919050565b60006200847f8262006092565b91506200848c8362006092565b9250828203905081811115620084a757620084a662008066565b5b92915050565b7f4552524f523a504c2d3030353a43415041434954595f544f4f5f4c4f57000000600082015250565b6000620084e5601d8362006efc565b9150620084f282620084ad565b602082019050919050565b600060208201905081810360008301526200851881620084d6565b9050919050565b60006040820190506200853660008301856200758b565b6200854560208301846200758b565b9392505050565b7f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b600062008584601f8362006efc565b915062008591826200854c565b602082019050919050565b60006020820190508181036000830152620085b78162008575565b9050919050565b600060a08284031215620085d757620085d6620061be565b5b620085e360a062006239565b90506000620085f58482850162007542565b60008301525060206200860b8482850162007542565b60208301525060406200862184828501620079f6565b6040830152506060620086378482850162007719565b60608301525060806200864d8482850162007719565b60808301525092915050565b600060a0828403121562008672576200867162005fad565b5b60006200868284828501620085be565b91505092915050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b6000620086c3601c8362006efc565b9150620086d0826200868b565b602082019050919050565b60006020820190508181036000830152620086f681620086b4565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b600062008735601f8362006efc565b91506200874282620086fd565b602082019050919050565b60006020820190508181036000830152620087688162008726565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000620087cd60218362006efc565b9150620087da826200876f565b604082019050919050565b600060208201905081810360008301526200880081620087be565b9050919050565b620088128162006092565b82525050565b60006020820190506200882f600083018462008807565b92915050565b6000602082840312156200884e576200884d62005fad565b5b60006200885e8482850162007b99565b91505092915050565b6200887281620066e9565b82525050565b60006020820190506200888f600083018462008867565b92915050565b600060208284031215620088ae57620088ad62005fad565b5b6000620088be8482850162007bb0565b91505092915050565b600081519050620088d881620064cc565b92915050565b600060208284031215620088f757620088f662005fad565b5b60006200890784828501620088c7565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620089747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262008935565b62008980868362008935565b95508019841693508086168417925050509392505050565b6000819050919050565b620089ad83620066e9565b620089c5620089bc8262008998565b84845462008942565b825550505050565b600090565b620089dc620089cd565b620089e9818484620089a2565b505050565b5b8181101562008a115762008a05600082620089d2565b600181019050620089ef565b5050565b601f82111562008a605762008a2a8162008910565b62008a358462008925565b8101602085101562008a45578190505b62008a5d62008a548562008925565b830182620089ee565b50505b505050565b600082821c905092915050565b600062008a856000198460080262008a65565b1980831691505092915050565b600062008aa0838362008a72565b9150826002028217905092915050565b62008abb8262006ef1565b67ffffffffffffffff81111562008ad75762008ad6620061d4565b5b62008ae3825462007f99565b62008af082828562008a15565b600060209050601f83116001811462008b28576000841562008b13578287015190505b62008b1f858262008a92565b86555062008b8f565b601f19841662008b388662008910565b60005b8281101562008b625784890151825560018201915060208501945060208101905062008b3b565b8683101562008b82578489015162008b7e601f89168262008a72565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4d6174683a206d756c446976206f766572666c6f770000000000000000000000600082015250565b600062008c2d60158362006efc565b915062008c3a8262008bf5565b602082019050919050565b6000602082019050818103600083015262008c608162008c1e565b905091905056fe608060405234801561001057600080fd5b506040516103e53803806103e5833981810160405281019061003291906100db565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610108565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100a88261007d565b9050919050565b6100b88161009d565b81146100c357600080fd5b50565b6000815190506100d5816100af565b92915050565b6000602082840312156100f1576100f0610078565b5b60006100ff848285016100c6565b91505092915050565b6102ce806101176000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063beabacc814610030575b600080fd5b61004a6004803603810190610045919061018b565b61004c565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8484846040518463ffffffff1660e01b81526004016100a9939291906101fc565b6020604051808303816000875af11580156100c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100ec919061026b565b50505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610122826100f7565b9050919050565b61013281610117565b811461013d57600080fd5b50565b60008135905061014f81610129565b92915050565b6000819050919050565b61016881610155565b811461017357600080fd5b50565b6000813590506101858161015f565b92915050565b6000806000606084860312156101a4576101a36100f2565b5b60006101b286828701610140565b93505060206101c386828701610140565b92505060406101d486828701610176565b9150509250925092565b6101e781610117565b82525050565b6101f681610155565b82525050565b600060608201905061021160008301866101de565b61021e60208301856101de565b61022b60408301846101ed565b949350505050565b60008115159050919050565b61024881610233565b811461025357600080fd5b50565b6000815190506102658161023f565b92915050565b600060208284031215610281576102806100f2565b5b600061028f84828501610256565b9150509291505056fea2646970667358221220584830ad6020f92961817dc65ddc7db09473de72e053fbcf657fa124b0863b5764736f6c63430008140033a264697066735822122011b6b8bf36c4608b07a694419b40e86df6783a95c6c67dedff9a6fd43649186d64736f6c63430008140033",
|
3130
|
+
"bytecode": "0x60806040523480156200001157600080fd5b50604051620071c0380380620071c08339810160408190526200003491620017c9565b826200004081620000d4565b506200004b62000153565b620000556200030a565b6200005f62000444565b62000069620006b1565b6301ffc9a760e01b60005260046020527f9fe05126d2d9ecf60592e254dead906a4b2e492f36cca727682c38e9008c6ac1805460ff19166001179055600680546001600160a01b03191633908117909155620000cb90849084908490620007f8565b50505062001b28565b60005460ff1615620001385760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b60648201526084015b60405180910390fd5b620001438162000a53565b506000805460ff19166001179055565b60dc6000908152600160208190527f81c2bf9f7c6e8ac9bd8bcd9d323e94b867d2f5054aff8759d884773c680ec1ec805460ff19166064179055906002906200019a60dc90565b60ff1660ff1681526020019081526020016000206000620001c062000aaf60201b60201c565b60ff1660ff1681526020019081526020016000206000620001e662000ab460201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200021a60dc90565b60ff1660ff16815260200190815260200160002060006200024062000ab460201b60201c565b60ff1660ff16815260200190815260200160002060006200026662000aaf60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200029a60dc90565b60ff1660ff1681526020019081526020016000206000620002c062000ab460201b60201c565b60ff1660ff1681526020019081526020016000206000620002e662000ab960201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c128054606460ff1991821681179092557f879b65b464eb639409179c76c21acf6fbada740970e2300d47ea857d08cacd3c8054909116600190811790915560009182526002602052907f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a906200039e606e90565b60ff1660ff1681526020019081526020016000206000620003c462000aaf60201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600290620003f8606490565b60ff1660ff16815260200190815260200160002060006200041e62000ab460201b60201c565b60ff1660ff1681526020019081526020016000206000620002e662000abe60201b60201c565b60d26000908152600160208190527fcfa08e49dd9e66a4af3cdf0c2ef56f411154768307cac6dc23ee77c0386825be805460ff1916600a179055906002906200048b60d290565b60ff1660ff1681526020019081526020016000206000620004b162000ac360201b60201c565b60ff1660ff1681526020019081526020016000206000620004d762000ac860201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200050b60d290565b60ff1660ff16815260200190815260200160002060006200053162000ac360201b60201c565b60ff1660ff16815260200190815260200160002060006200055762000acd60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200058b60d290565b60ff1660ff1681526020019081526020016000206000620005b162000ac360201b60201c565b60ff1660ff1681526020019081526020016000206000620005d762000ad260201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200060b60d290565b60ff1660ff16815260200190815260200160002060006200063162000ad260201b60201c565b60ff1660ff16815260200190815260200160002060006200065762000aaf60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200068b60d290565b60ff1660ff1681526020019081526020016000206000620002c062000aaf60201b60201c565b60c86000908152600160208190527f345f7c6c888721344af4147de0834159e0b302300ba13c4e7b6c0b60d8f2314e805460ff1916606417905590600290620006f860c890565b60ff1660ff16815260200190815260200160002060006200071e62000aaf60201b60201c565b60ff1660ff16815260200190815260200160002060006200074462000ab460201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200077860c890565b60ff1660ff16815260200190815260200160002060006200079e62000ab460201b60201c565b60ff1660ff1681526020019081526020016000206000620007c462000aaf60201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600290620003f860c890565b600654600160a01b900460ff16156200086b5760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b60648201526084016200012f565b600b80546001600160a01b0319166001600160a01b0386161790556040516368aebf7b60e01b8152600060048201526200092b9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015620008dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000902919062001823565b60408051808201909152600981526841646d696e526f6c6560b81b602082015260008062000ad7565b6040516368aebf7b60e01b81526001600160401b036004820152620009d79073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801562000987573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009ad919062001823565b60408051808201909152600a8152695075626c6963526f6c6560b01b602082015260008062000ad7565b620009fe838360466000856040518060200160405280600081525062000bbd60201b60201c565b6342e19e5f60e01b60005260046020527f643d55d460d5a1aae86a570cc022b7d04a019a39b894c5b0832a60546fd6598d805460ff1916600117905550506006805460ff60a01b1916600160a01b1790555050565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b606490565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b602890565b801562000aee5762000aeb84848462000c8e565b50505b600062000afd85858562000f18565b8051600090815260076020526040812080546001600160401b0319166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a928302199093169102179055905062000bb662000b878662000f54565b604080518451602080830191909152850151151581830152815180820383018152606090910190915262000fdc565b5050505050565b62000bc9828762000fec565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d01000000000000000000000000008615150217815590506001810162000c488382620018fa565b506303fb044760e21b60005260046020527f91a409085efa2cad9dad64790cb14ef1d9b61e9173e901d74242d27ef0ced4a1805460ff1916600117905550505050505050565b6000808062000c9d8662000f54565b905062000caa8162001012565b9250821562000cdf5762000cbe81620010a0565b80602001905181019062000cd39190620019d7565b60200151915062000ce3565b8391505b856001600160401b038116158062000d0357506001600160401b03818116145b1562000d2e5760405163981bf42160e01b81526001600160401b03881660048201526024016200012f565b82801562000d4657506127106001600160401b038216105b1562000d7157604051633119b9df60e21b81526001600160401b03881660048201526024016200012f565b82801562000d8a57506127106001600160401b03821610155b1562000db55760405163094fb39160e01b81526001600160401b03881660048201526024016200012f565b600062000dc2876200114d565b905062000dcf8162001190565b60000362000dfc576040516321ab17ab60e01b81526001600160401b03891660048201526024016200012f565b60008181526007602090815260409182902054825163bc1b392d60e01b8152925162000ea3936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af415801562000e6b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e91919062001823565b6001600160401b039081169116141590565b801562000eca57506000818152600760205260409020546001600160401b03898116911614155b1562000f0d5760008181526007602052604090819020549051631660fb9360e21b81526001600160401b039091166004820152602481018290526044016200012f565b505050935093915050565b604080518082018252600080825260208201528151808301909252908062000f40856200114d565b815260200183151581525090509392505050565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af415801562000fb0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fd6919062001a30565b92915050565b62000fe88282620011b9565b5050565b600680546001600160a01b0319166001600160a01b03841617905562000fe881620015f1565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156200107a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fd6919062001a4a565b6000818152600360205260409020600101805460609190620010c2906200186b565b80601f0160208091040260200160405190810160405280929190818152602001828054620010f0906200186b565b8015620011415780601f10620011155761010080835404028352916020019162001141565b820191906000526020600020905b8154815290600101906020018083116200112357829003601f168201915b50505050509050919050565b600080829050601f815111156200117b578260405163305a27a960e01b81526004016200012f919062001a68565b8051620011888262001ab8565b179392505050565b600060ff8216601f81111562000fd657604051632cd44ac360e21b815260040160405180910390fd5b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156200120d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001233919062001add565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af415801562001289573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012af919062001a4a565b620012fd5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e45440000000060448201526064016200012f565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af415801562001367573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200138d919062001a4a565b620013db5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f4352454154454400000060448201526064016200012f565b33436000620013ea856200175e565b620013f75760646200140d565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600360205260409020909150600101620014998782620018fa565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156200150d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001533919062001add565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801562001584573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015aa919062001b02565b6040805160ff938416815260ff19929092166020830152918416818301526001600160a01b038616606082015232608082015290519081900360a00190a150505050505050565b6005546001600160a01b0316156200162c5760055460405163fcdbf2d960e01b81526001600160a01b0390911660048201526024016200012f565b6001600160a01b038116620016545760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036200168c5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200012f565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263aadfd86760e01b60048201526301ffc9a790602401602060405180830381865afa92505050801562001709575060408051601f3d908101601f19168201909252620017069181019062001a4a565b60015b620017335760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200012f565b8062000fe85760405163fdeac91f60e01b81526001600160a01b03831660048201526024016200012f565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016200105c565b80516001600160a01b0381168114620017c457600080fd5b919050565b600080600060608486031215620017df57600080fd5b620017ea84620017ac565b9250620017fa60208501620017ac565b60408501519092506001600160601b03811681146200181857600080fd5b809150509250925092565b6000602082840312156200183657600080fd5b81516001600160401b03811681146200184e57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200188057607f821691505b602082108103620018a157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620018f557600081815260208120601f850160051c81016020861015620018d05750805b601f850160051c820191505b81811015620018f157828155600101620018dc565b5050505b505050565b81516001600160401b0381111562001916576200191662001855565b6200192e816200192784546200186b565b84620018a7565b602080601f8311600181146200196657600084156200194d5750858301515b600019600386901b1c1916600185901b178555620018f1565b600085815260208120601f198616915b82811015620019975788860151825594840194600190910190840162001976565b5085821015620019b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80518015158114620017c457600080fd5b600060408284031215620019ea57600080fd5b604080519081016001600160401b038111828210171562001a0f5762001a0f62001855565b6040528251815262001a2460208401620019c6565b60208201529392505050565b60006020828403121562001a4357600080fd5b5051919050565b60006020828403121562001a5d57600080fd5b6200184e82620019c6565b600060208083528351808285015260005b8181101562001a975785810183015185820160400152820162001a79565b506000604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620018a15760001960209190910360031b1b16919050565b60006020828403121562001af057600080fd5b815160ff811681146200184e57600080fd5b60006020828403121562001b1557600080fd5b815160ff19811681146200184e57600080fd5b6156888062001b386000396000f3fe608060405234801561001057600080fd5b50600436106104805760003560e01c806382f65adb11610257578063b68ec14611610146578063d2f21a29116100c3578063e9e96c7011610087578063e9e96c7014610ac2578063f48016ce14610b00578063f7bc431c14610b13578063f8b648ac1461065f578063fe1f18d614610b2657600080fd5b8063d2f21a2914610a89578063d5b221bd146105d9578063d78a83b114610a9c578063dee3262314610aaf578063e8951ee6146105ab57600080fd5b8063bf1db3f91161010a578063bf1db3f914610a3a578063bf7e214f14610a4d578063c2f1a2d2146105d9578063c4d66de814610a63578063cd50b97e14610a7657600080fd5b8063b68ec1461461065f578063b7d2b162146109ee578063bc8d400014610a01578063bd4fe04e14610a14578063bd5947e314610a2757600080fd5b8063954fab2c116101d4578063a13df2ab11610198578063a13df2ab146108f1578063a5961b4c14610904578063a76ee018146109b5578063a8989675146109c8578063b428b0b0146109db57600080fd5b8063954fab2c146108a5578063976b0a77146108b85780639a960d52146108cb5780639d7421f4146108de5780639df0280b146105ab57600080fd5b80638d4eae9d1161021b5780638d4eae9d1461083e5780638dc77f42146105ab5780638eaa6ac0146108515780638fb3603714610871578063950ad70b1461089257600080fd5b806382f65adb1461065f578063835933c9146107f057806386f0c47b146108035780638793a9ac14610823578063893d20e81461083657600080fd5b806338a699a4116103735780635dfa73db116102f057806375b238fc116102b457806375b238fc146107af57806375c82776146107b75780637a415802146105d95780637a9e5e4b146107ca5780637cef4842146107dd57600080fd5b80635dfa73db1461074d578063644c45e01461075657806364c55d9c146107815780636fa2985314610794578063735391271461079c57600080fd5b8063468a186711610337578063468a1867146106f657806354f6127f1461070957806357f96805146107295780635ab1bd531461073c5780635d4345cc146105ab57600080fd5b806338a699a4146106a2578063392f5f64146106b55780633ca7c02a146106bd5780633fd85561146106e357806340529b0f146105ab57600080fd5b8063167bd395116104015780632f61088a116103c55780632f61088a1461063957806331d311a71461064c57806333bb0a971461065f57806337f135d714610672578063384c9a571461068f57600080fd5b8063167bd395146105c65780631c45fe7a146105d95780631e23a2f5146105ec5780631eff4b22146105ff57806322f46b841461062657600080fd5b80630d358181116104485780630d3581811461055c5780630f526f7d146105825780630fec111c1461059557806310203d2c146105ab578063138461e0146105be57600080fd5b806301ffc9a71461048557806302cd3071146104c757806303014974146104ec57806309648a9d1461050d5780630b24cf5f14610547575b600080fd5b6104b2610493366004613c93565b6001600160e01b03191660009081526004602052604090205460ff1690565b60405190151581526020015b60405180910390f35b600c546001600160a01b03165b6040516001600160a01b0390911681526020016104be565b6104ff6104fa366004613cd2565b610b39565b6040519081526020016104be565b61053561051b366004613cef565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020016104be565b61055a610555366004613ef9565b610b60565b005b61053561056a366004613f3e565b60ff9081166000908152600160205260409020541690565b61055a610590366004613f5b565b610ba4565b61059d610bc1565b6040516104be929190613fe4565b61055a6105b9366004613f5b565b610d43565b61055a610d58565b61055a6105d436600461408b565b610f7a565b61055a6105e73660046141e1565b611022565b61055a6105fa366004614255565b611063565b6104ff7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61055a6106343660046142b6565b611089565b61055a610647366004614380565b61109f565b6104ff61065a3660046143c5565b61113a565b61055a61066d3660046143e2565b6111cb565b61067a600081565b60405163ffffffff90911681526020016104be565b6104b261069d366004613cd2565b6111f6565b6104b26106b0366004613cef565b61138c565b6009546104ff565b6106cb6001600160401b0381565b6040516001600160401b0390911681526020016104be565b6106cb6106f1366004613cef565b611417565b6104ff610704366004614443565b61145c565b61071c610717366004613cef565b6114b9565b6040516104be9190614460565b61055a610737366004614516565b61155e565b6005546001600160a01b03166104d4565b6106cb61271081565b600554600160a01b90046001600160601b03166040516001600160601b0390911681526020016104be565b61055a61078f366004614616565b611586565b6104d46115ae565b61055a6107aa366004614662565b611650565b6106cb600081565b61055a6107c53660046146d3565b611678565b61055a6107d83660046143c5565b61169e565b61055a6107eb36600461472b565b611719565b6104ff6107fe366004613cd2565b6117a3565b610816610811366004613cd2565b6117e6565b6040516104be9190614749565b61055a610831366004614762565b61188b565b6104d46118a0565b61055a61084c366004614821565b61197d565b61086461085f366004613cef565b6119a3565b6040516104be91906148b0565b610879611ae4565b6040516001600160e01b031990911681526020016104be565b61055a6108a03660046148e4565b611b08565b61055a6108b336600461493c565b611b6a565b61055a6108c6366004614983565b611b90565b61055a6108d9366004614b2b565b611daf565b61055a6108ec366004614b72565b611dd5565b6104ff6108ff366004614443565b611dfb565b6109a8610912366004613cef565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260036020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104be9190614bc9565b61055a6109c3366004614bd7565b611e28565b61055a6109d6366004614c1e565b611ec3565b6104b26109e9366004614c5e565b611fb4565b6104b26109fc366004614c5e565b6121a8565b61055a610a0f366004614c8c565b612333565b61055a610a22366004614cd1565b612359565b61055a610a35366004614d12565b612381565b6104b2610a48366004613f3e565b6123a9565b60005461010090046001600160a01b03166104d4565b61055a610a713660046143c5565b6123f6565b61055a610a843660046142b6565b61246d565b61055a610a97366004613f5b565b612484565b6104d4610aaa366004614d52565b61249b565b61055a610abd366004613f5b565b6124c4565b6104b2610ad0366004614c1e565b60ff9283166000908152600260209081526040808320948616835293815283822092851682529190915220541690565b6104ff610b0e366004614d8e565b6124db565b61055a610b213660046143c5565b61255f565b61055a610b34366004613f5b565b6125db565b6001600160401b0381166000908152600860205260408120610b5a906125f0565b92915050565b610b6d335b6000366125fa565b610ba0610b7b83607861270d565b82604051602001610b8c9190614dbc565b604051602081830303815290604052612759565b5050565b610bad33610b65565b610ba0610bbb83608c61270d565b82612763565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610c446005546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610c8c6118a0565b6001600160a01b03168152602001826001018054610ca990614e1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd590614e1c565b8015610d225780601f10610cf757610100808354040283529160200191610d22565b820191906000526020600020905b815481529060010190602001808311610d0557829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b610d4c33610b65565b610ba0610bbb8361145c565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dde9190614e56565b15610e25576005546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6005546001600160a01b0316610e4e5760405163cf29926160e01b815260040160405180910390fd5b60055460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190614e56565b610ee3576040516372657a5160e01b81526001600160a01b0382166004820152602401610e1c565b600554604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610f2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f519190614e73565b600560146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610f8333610b65565b610f8f6106b08361113a565b610fb7576040516325b6f39560e21b81526001600160a01b0383166004820152602401610e1c565b600b5460405163167bd39560e01b81526001600160a01b03848116600483015283151560248301529091169063167bd39590604401600060405180830381600087803b15801561100657600080fd5b505af115801561101a573d6000803e3d6000fd5b505050505050565b61102b33610b65565b61105d6110378561145c565b836040516020016110489190614e90565b6040516020818303038152906040528361276d565b50505050565b61106c33610b65565b610ba06110788361113a565b82604051602001610b8c9190614749565b61109233610b65565b610ba08282600180612778565b6110a833610b65565b6040516355ee627560e01b81526001600160c01b031983166004820152610ba09073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111299190614ee3565b82604051602001610b8c9190614efc565b604051637a400b6760e11b8152601e6004820152606082901b6bffffffffffffffffffffffff1916602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156111a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614ee3565b6111d433610b65565b6111f16111e08461145c565b82604051602001610b8c9190614e90565b505050565b60003381611203846117a3565b905061120e8161138c565b61123557604051627a416f60e01b81526001600160401b0385166004820152602401610e1c565b6001600160401b03841660009081526008602052604090206112579083612821565b1561138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063fe0776f59073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed9190614f2a565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0385166024820152604401600060405180830381600087803b15801561133d57600080fd5b505af1158015611351573d6000803e3d6000fd5b5050506001600160401b0385166000908152600860205260409020611377915083612843565b506001949350505050565b5060009392505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614e56565b60006009828154811061142c5761142c614f47565b90600052602060002090600491828204019190066008029054906101000a90046001600160401b03169050919050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d25b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff16602482015260440161118a565b60008181526003602052604090206001018054606091906114d990614e1c565b80601f016020809104026020016040519081016040528092919081815260200182805461150590614e1c565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b50505050509050919050565b61156733610b65565b610ba061157583608c61270d565b82604051602001610b8c9190614f5d565b61158f33610b65565b6111f161159d84606e61270d565b836040516020016110489190615000565b6005546040805163a3bcd81d60e01b815260048101919091526015604482015274436f6d706f6e656e744f776e65725365727669636560581b6064820152600360248201526000916001600160a01b03169063a3bcd81d906084015b602060405180830381865afa158015611627573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164b9190615102565b905090565b61165933610b65565b610ba061166783606e61270d565b82604051602001610b8c9190615000565b61168133610b65565b61105d61168d8561145c565b83604051602001611048919061511f565b600054339061010090046001600160a01b031681146116da5760405162d1953b60e31b81526001600160a01b0382166004820152602401610e1c565b816001600160a01b03163b600003611710576040516361798f2f60e11b81526001600160a01b0383166004820152602401610e1c565b610ba082612858565b61172233610b65565b6040516355ee627560e01b81526001600160c01b031983166004820152610ba09073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561177f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb9190614ee3565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f09060240161118a565b604080518082018252600080825260208201529051630f37f38f60e41b81526001600160401b03831660048201526118789073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af4158015611854573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107179190614ee3565b806020019051810190610b5a919061514f565b61189433610b65565b610ba0610bbb836117a3565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611905573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119299190614e56565b1561196d57600554604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a9060240161160a565b506006546001600160a01b031690565b61198633610b65565b610ba061199283611dfb565b82604051602001610b8c9190615187565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260036020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611a5b90614e1c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8790614e1c565b8015611ad45780601f10611aa957610100808354040283529160200191611ad4565b820191906000526020600020905b815481529060010190602001808311611ab757829003601f168201915b5050505050815250509050919050565b60008054600160a81b900460ff16611afc5750600090565b50638fb3603760e01b90565b611b1133610b65565b6000611b1f848460006128b4565b5090506000611b2f858584612b1f565b9050611b63611b3d866117a3565b82604051602001611b4e9190614749565b6040516020818303038152906040528561276d565b5050505050565b611b7333610b65565b6111f1611b7f84611dfb565b836040516020016110489190615187565b600654600160a01b900460ff1615611c015760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610e1c565b600b80546001600160a01b0319166001600160a01b0386161790556040516368aebf7b60e01b815260006004820152611cbe9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c949190614f2a565b6040518060400160405280600981526020016841646d696e526f6c6560b81b815250600080612778565b6040516368aebf7b60e01b81526001600160401b036004820152611d679073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611d18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3c9190614f2a565b6040518060400160405280600a8152602001695075626c6963526f6c6560b01b815250600080612778565b611d868383604660008560405180602001604052806000815250612b5b565b611d966342e19e5f60e01b612bef565b50506006805460ff60a01b1916600160a01b1790555050565b611db833610b65565b6111f1611dc48461145c565b83604051602001611048919061522c565b611dde33610b65565b6111f1611dea8461145c565b82604051602001610b8c919061511f565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc611485565b611e3133610b65565b6040516355ee627560e01b81526001600160c01b0319841660048201526111f19073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb29190614ee3565b836040516020016110489190614efc565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611f28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4c9190614e56565b15611f5657505050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054166111f157604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610e1c565b6000611fbf33610b65565b6000611fca846117a3565b9050611fd58161138c565b611ffd57604051636777365b60e01b81526001600160401b0385166004820152602401610e1c565b60008181526003602052604090205461202c90610100900460ff16612020606490565b60ff9081169116141590565b156120555760405163fe229d5d60e01b81526001600160401b0385166004820152602401610e1c565b6001600160401b03841660009081526008602052604090206120779084612821565b61138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b03909116906325c471a09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156120e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210c9190614f2a565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038616602482015260006044820152606401600060405180830381600087803b15801561216357600080fd5b505af1158015612177573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061219d915084612c14565b506001915050610b5a565b60006121b333610b65565b60006121be846117a3565b90506121c98161138c565b6121f157604051634cee277360e11b81526001600160401b0385166004820152602401610e1c565b6001600160401b03841660009081526008602052604090206122139084612821565b1561138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a99190614f2a565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0386166024820152604401600060405180830381600087803b1580156122f957600080fd5b505af115801561230d573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061219d915084612843565b61233c33610b65565b610ba06123488361145c565b82604051602001610b8c919061522c565b61236233610b65565b6111f161237084608c61270d565b836040516020016110489190614f5d565b61238a33610b65565b6111f161239884607861270d565b836040516020016110489190614dbc565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113d6565b60005460ff16156124545760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b6064820152608401610e1c565b61245d81612858565b506000805460ff19166001179055565b61247633610b65565b610ba0828260006001612778565b61248d33610b65565b610ba0610bbb83607861270d565b6001600160401b03821660009081526008602052604081206124bd9083612c29565b9392505050565b6124cd33610b65565b610ba0610bbb83606e61270d565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af415801561253b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124bd9190614ee3565b61256833610b65565b600c546001600160a01b0316156125b95760405162461bcd60e51b8152602060048201526015602482015274125b9cdd185b98d954995859195c881a5cc81cd95d605a1b6044820152606401610e1c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6125e433610b65565b610ba0610bbb83611dfb565b6000610b5a825490565b6000806126366126186000546001600160a01b036101009091041690565b863061262860046000898b615383565b612631916153ad565b612c35565b9150915081611b635763ffffffff8116156126ea576000805460ff60a81b1916600160a81b1790556126766000546001600160a01b036101009091041690565b6001600160a01b03166394c7d7ee8686866040518463ffffffff1660e01b81526004016126a5939291906153dd565b600060405180830381600087803b1580156126bf57600080fd5b505af11580156126d3573d6000803e3d6000fd5b50506000805460ff60a81b1916905550611b639050565b60405162d1953b60e31b81526001600160a01b0386166004820152602401610e1c565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440161251e565b610ba08282612d41565b610ba08282613163565b6111f1838383613497565b801561278c576127898484846128b4565b50505b6000612799858585612b1f565b80516000908152600760205260408120805467ffffffffffffffff19166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a9283021990931691021790559050611b63611078866117a3565b6001600160a01b038116600090815260018301602052604081205415156124bd565b60006124bd836001600160a01b038416613932565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60008060006128c2866117a3565b90506128cd8161138c565b925082156128fc576128de816114b9565b8060200190518101906128f1919061514f565b602001519150612900565b8391505b856001600160401b038116158061291f57506001600160401b03818116145b156129485760405163981bf42160e01b81526001600160401b0388166004820152602401610e1c565b82801561295f57506127106001600160401b038216105b1561298857604051633119b9df60e21b81526001600160401b0388166004820152602401610e1c565b8280156129a057506127106001600160401b03821610155b156129c95760405163094fb39160e01b81526001600160401b0388166004820152602401610e1c565b60006129d487613a2c565b90506129df81613a6a565b600003612a0a576040516321ab17ab60e01b81526001600160401b0389166004820152602401610e1c565b60008181526007602090815260409182902054825163bc1b392d60e01b81529251612aad936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af4158015612a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9b9190614f2a565b6001600160401b039081169116141590565b8015612ad357506000818152600760205260409020546001600160401b03898116911614155b15612b145760008181526007602052604090819020549051631660fb9360e21b81526001600160401b03909116600482015260248101829052604401610e1c565b505050935093915050565b60408051808201909152600080825260208201526040518060400160405280612b4785613a2c565b815260200183151581525090509392505050565b612b658287613a92565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101612bd58382615463565b50612be66303fb044760e21b612bef565b50505050505050565b6001600160e01b0319166000908152600460205260409020805460ff19166001179055565b60006124bd836001600160a01b038416613ab6565b60006124bd8383613b05565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612ca49190615522565b600060405180830381855afa9150503d8060008114612cdf576040519150601f19603f3d011682016040523d82523d6000602084013e612ce4565b606091505b50915091508115612d36576040815110612d165780806020019051810190612d0c919061553e565b9094509250612d36565b6020815110612d365780806020019051810190612d339190614e56565b93505b505094509492505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612d94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612db8919061556d565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015612e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e319190614e56565b612e7d5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610e1c565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015612ee6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f0a9190614e56565b612f565760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610e1c565b33436000612f63856123a9565b612f6e576064612f84565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b91909102178555600088815260036020526040902090915060010161300e8782615463565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613081573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a5919061556d565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156130f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613119919061558a565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156131b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131d99190614e56565b6132255760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610e1c565b600082815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613291573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132b59190614e56565b6133015760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610e1c565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166133454390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156133d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fb919061556d565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561344b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061346f919061558a565b878686328760405161348797969594939291906155a7565b60405180910390a1505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156134e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061350d9190614e56565b6135595760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610e1c565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156135c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135e99190614e56565b6136355760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610e1c565b60008581526003602052604090206001016136508582615463565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166136954390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374b919061556d565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561379b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137bf919061558a565b87868632876040516137d797969594939291906155a7565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613851573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613875919061556d565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156138c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e9919061558a565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c001613152565b60008181526001830160205260408120548015613a1b5760006139566001836155f7565b855490915060009061396a906001906155f7565b90508082146139cf57600086600001828154811061398a5761398a614f47565b90600052602060002001549050808760000184815481106139ad576139ad614f47565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806139e0576139e0615618565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b5a565b6000915050610b5a565b5092915050565b600080829050601f81511115613a57578260405163305a27a960e01b8152600401610e1c9190614460565b8051613a628261562e565b179392505050565b600060ff8216601f811115610b5a57604051632cd44ac360e21b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b038416179055610ba081613b2f565b6000818152600183016020526040812054613afd57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b5a565b506000610b5a565b6000826000018281548110613b1c57613b1c614f47565b9060005260206000200154905092915050565b6005546001600160a01b031615613b685760055460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610e1c565b6001600160a01b038116613b8f5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003613bc55760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e1c565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263aadfd86760e01b60048201526301ffc9a790602401602060405180830381865afa925050508015613c3f575060408051601f3d908101601f19168201909252613c3c91810190614e56565b60015b613c675760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e1c565b80610ba05760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610e1c565b50565b600060208284031215613ca557600080fd5b81356001600160e01b0319811681146124bd57600080fd5b6001600160401b0381168114613c9057600080fd5b600060208284031215613ce457600080fd5b81356124bd81613cbd565b600060208284031215613d0157600080fd5b5035919050565b6001600160601b0381168114613c9057600080fd5b8035613d2881613d08565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613d6557613d65613d2d565b60405290565b604051608081016001600160401b0381118282101715613d6557613d65613d2d565b60405161010081016001600160401b0381118282101715613d6557613d65613d2d565b60405161014081016001600160401b0381118282101715613d6557613d65613d2d565b60405161020081016001600160401b0381118282101715613d6557613d65613d2d565b6001600160a01b0381168114613c9057600080fd5b8035613d2881613df6565b600060408284031215613e2857600080fd5b613e30613d43565b9050813581526020820135602082015292915050565b8015158114613c9057600080fd5b8035613d2881613e46565b600060c08284031215613e7157600080fd5b60405160a081018181106001600160401b0382111715613e9357613e93613d2d565b6040529050808235613ea481613d08565b81526020830135613eb481613df6565b6020820152613ec68460408501613e16565b60408201526080830135613ed981613e46565b606082015260a0830135613eec81613df6565b6080919091015292915050565b60008060e08385031215613f0c57600080fd5b8235613f1781613d08565b9150613f268460208501613e5f565b90509250929050565b60ff81168114613c9057600080fd5b600060208284031215613f5057600080fd5b81356124bd81613f2f565b60008060408385031215613f6e57600080fd5b8235613f7981613d08565b91506020830135613f8981613f2f565b809150509250929050565b60005b83811015613faf578181015183820152602001613f97565b50506000910152565b60008151808452613fd0816020860160208601613f94565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161402860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261406e610120840182613fb8565b905082810360208401526140828185613fb8565b95945050505050565b6000806040838503121561409e57600080fd5b82356140a981613df6565b91506020830135613f8981613e46565b63ffffffff81168114613c9057600080fd5b600082601f8301126140dc57600080fd5b81356001600160401b03808211156140f6576140f6613d2d565b604051601f8301601f19908116603f0116810190828211818310171561411e5761411e613d2d565b8160405283815286602085880101111561413757600080fd5b836020870160208301376000602085830101528094505050505092915050565b803564ffffffffff81168114613d2857600080fd5b60006080828403121561417e57600080fd5b614186613d6b565b90508135614193816140b9565b81526020828101359082015260408201356001600160401b038111156141b857600080fd5b6141c4848285016140cb565b6040830152506141d660608301614157565b606082015292915050565b600080600080608085870312156141f757600080fd5b843561420281613d08565b93506020850135614212816140b9565b925060408501356001600160401b0381111561422d57600080fd5b6142398782880161416c565b925050606085013561424a81613f2f565b939692955090935050565b600080828403606081121561426957600080fd5b833561427481613df6565b92506040601f198201121561428857600080fd5b50614291613d43565b6020840135815260408401356142a681613e46565b6020820152919491935090915050565b600080604083850312156142c957600080fd5b82356142d481613cbd565b915060208301356001600160401b038111156142ef57600080fd5b6142fb858286016140cb565b9150509250929050565b6001600160c01b031981168114613c9057600080fd5b8035613d2881614305565b60006040828403121561433857600080fd5b614340613d43565b9050813561434d81613d08565b815260208201356001600160401b0381111561436857600080fd5b614374848285016140cb565b60208301525092915050565b6000806040838503121561439357600080fd5b823561439e81614305565b915060208301356001600160401b038111156143b957600080fd5b6142fb85828601614326565b6000602082840312156143d757600080fd5b81356124bd81613df6565b6000806000606084860312156143f757600080fd5b833561440281613d08565b92506020840135614412816140b9565b915060408401356001600160401b0381111561442d57600080fd5b6144398682870161416c565b9150509250925092565b60006020828403121561445557600080fd5b81356124bd81613d08565b6020815260006124bd6020830184613fb8565b6000610160828403121561448657600080fd5b61448e613d8d565b905061449982613d1d565b81526144a760208301613e0b565b6020820152604082013560408201526144c38360608401613e16565b60608201526144d58360a08401613e16565b60808201526144e78360e08401613e16565b60a08201526144f96101208301613e54565b60c082015261450b6101408301613e0b565b60e082015292915050565b600080610180838503121561452a57600080fd5b823561453581613d08565b9150613f268460208501614473565b6000610200828403121561455757600080fd5b61455f613db0565b905061456a82613e0b565b815261457860208301613e0b565b602082015261458960408301613d1d565b604082015261459a60608301613d1d565b60608201526145ac8360808401613e16565b60808201526145be8360c08401613e16565b60a08201526101006145d284828501613e16565b60c08301526145e5846101408501613e16565b60e08301526145f8846101808501613e16565b9082015261460a836101c08401613e16565b61012082015292915050565b6000806000610240848603121561462c57600080fd5b833561463781613d08565b92506146468560208601614544565b915061022084013561465781613f2f565b809150509250925092565b600080610220838503121561467657600080fd5b823561468181613d08565b9150613f268460208501614544565b6000608082840312156146a257600080fd5b6146aa613d6b565b9050813581526020820135602082015260408201356001600160401b038111156141b857600080fd5b600080600080608085870312156146e957600080fd5b84356146f481613d08565b93506020850135614704816140b9565b925060408501356001600160401b0381111561471f57600080fd5b61423987828801614690565b6000806040838503121561473e57600080fd5b8235613f7981614305565b8151815260208083015115159082015260408101610b5a565b6000806040838503121561477557600080fd5b8235613f7981613cbd565b6000610120828403121561479357600080fd5b61479b613d8d565b90506147a682613d1d565b81526147b58360208401613e16565b602082015260608201356001600160401b038111156147d357600080fd5b6147df848285016140cb565b6040830152506080820135606082015260a0820135608082015260c082013560a082015261480f60e08301614157565b60c082015261450b6101008301614157565b6000806040838503121561483457600080fd5b823561483f81613d08565b915060208301356001600160401b0381111561485a57600080fd5b6142fb85828601614780565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b602081526148c2602082018351614866565b6000602083015160c0808401526148dc60e0840182613fb8565b949350505050565b6000806000606084860312156148f957600080fd5b833561490481613cbd565b925060208401356001600160401b0381111561491f57600080fd5b61492b868287016140cb565b925050604084013561465781613f2f565b60008060006060848603121561495157600080fd5b833561495c81613d08565b925060208401356001600160401b0381111561497757600080fd5b61492b86828701614780565b6000806000806080858703121561499957600080fd5b84356149a481613df6565b935060208501356149b481613df6565b925060408501356149c481613d08565b9150606085013561424a81613df6565b803561ffff81168114613d2857600080fd5b600061020082840312156149f957600080fd5b614a01613dd3565b9050614a0c82613d1d565b8152614a1a60208301613d1d565b6020820152614a2b6040830161431b565b6040820152614a3c6060830161431b565b60608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e0820152610100808301356001600160401b0380821115614a8557600080fd5b614a91868387016140cb565b83850152610120925082850135915080821115614aad57600080fd5b50614aba858286016140cb565b828401525050610140614ace8184016149d4565b90820152610160614ae08382016149d4565b9082015261018082810135908201526101a0614afd818401614157565b908201526101c0614b0f838201614157565b908201526101e0614b21838201614157565b9082015292915050565b600080600060608486031215614b4057600080fd5b8335614b4b81613d08565b925060208401356001600160401b03811115614b6657600080fd5b61492b868287016149e6565b600080600060608486031215614b8757600080fd5b8335614b9281613d08565b92506020840135614ba2816140b9565b915060408401356001600160401b03811115614bbd57600080fd5b61443986828701614690565b60a08101610b5a8284614866565b600080600060608486031215614bec57600080fd5b8335614bf781614305565b925060208401356001600160401b03811115614c1257600080fd5b61492b86828701614326565b600080600060608486031215614c3357600080fd5b8335614c3e81613f2f565b92506020840135614c4e81613f2f565b9150604084013561465781613f2f565b60008060408385031215614c7157600080fd5b8235614c7c81613cbd565b91506020830135613f8981613df6565b60008060408385031215614c9f57600080fd5b8235614caa81613d08565b915060208301356001600160401b03811115614cc557600080fd5b6142fb858286016149e6565b60008060006101a08486031215614ce757600080fd5b8335614cf281613d08565b9250614d018560208601614473565b915061018084013561465781613f2f565b60008060006101008486031215614d2857600080fd5b8335614d3381613d08565b9250614d428560208601613e5f565b915060e084013561465781613f2f565b60008060408385031215614d6557600080fd5b8235614d7081613cbd565b946020939093013593505050565b60ff1981168114613c9057600080fd5b60008060408385031215614da157600080fd5b8235614dac81613f2f565b91506020830135613f8981614d7e565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b600181811c90821680614e3057607f821691505b602082108103614e5057634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215614e6857600080fd5b81516124bd81613e46565b600060208284031215614e8557600080fd5b81516124bd81613d08565b6020815263ffffffff8251166020820152602082015160408201526000604083015160806060840152614ec660a0840182613fb8565b905064ffffffffff60608501511660808401528091505092915050565b600060208284031215614ef557600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526148dc6060840182613fb8565b600060208284031215614f3c57600080fd5b81516124bd81613cbd565b634e487b7160e01b600052603260045260246000fd5b81516001600160601b031681526020808301516001600160a01b03169082015260408083015190820152606080830151610160830191614fa99084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151151561012083015260e08301516001600160a01b038116610140840152613a25565b81516001600160a01b031681526102008101602083015161502c60208401826001600160a01b03169052565b50604083015161504760408401826001600160601b03169052565b50606083015161506260608401826001600160601b03169052565b50608083015161507f608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006150b58185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a085015261012085015180516101c0860152908101516101e08501529050613a25565b60006020828403121561511457600080fd5b81516124bd81613df6565b6020815281516020820152602082015160408201526000604083015160806060840152614ec660a0840182613fb8565b60006040828403121561516157600080fd5b615169613d43565b82518152602083015161517b81613e46565b60208201529392505050565b602081526001600160601b038251166020820152600060208301516151b9604084018280518252602090810151910152565b5060408301516101208060808501526151d6610140850183613fb8565b9150606085015160a0850152608085015160c085015260a085015160e085015260c085015161520f61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b602081526152466020820183516001600160601b03169052565b6000602083015161526260408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e083015161010081818501528085015191505061020061012081818601526152da610220860184613fb8565b9250808601519050610140601f1986850301818701526152fa8483613fb8565b9350808701519150506101606153158187018361ffff169052565b860151905061018061532c8682018361ffff169052565b8601516101a08681019190915286015190506101c06153538187018364ffffffffff169052565b86015190506101e061536d8682018364ffffffffff169052565b86015164ffffffffff8116838701529050615222565b6000808585111561539357600080fd5b838611156153a057600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156153d55780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f8211156111f157600081815260208120601f850160051c810160208610156154445750805b601f850160051c820191505b8181101561101a57828155600101615450565b81516001600160401b0381111561547c5761547c613d2d565b6154908161548a8454614e1c565b8461541d565b602080601f8311600181146154c557600084156154ad5750858301515b600019600386901b1c1916600185901b17855561101a565b600085815260208120601f198616915b828110156154f4578886015182559484019460019091019084016154d5565b50858210156155125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008251615534818460208701613f94565b9190910192915050565b6000806040838503121561555157600080fd5b825161555c81613e46565b6020840151909250613f89816140b9565b60006020828403121561557f57600080fd5b81516124bd81613f2f565b60006020828403121561559c57600080fd5b81516124bd81614d7e565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e00190565b81810381811115610b5a57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b80516020808301519190811015614e505760001960209190910360031b1b1691905056fea264697066735822122006394f4fc98259e1edb0e1266241283631f3ad3cabc9bf98683497bd1bfb3bc164736f6c63430008140033",
|
3131
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106104805760003560e01c806382f65adb11610257578063b68ec14611610146578063d2f21a29116100c3578063e9e96c7011610087578063e9e96c7014610ac2578063f48016ce14610b00578063f7bc431c14610b13578063f8b648ac1461065f578063fe1f18d614610b2657600080fd5b8063d2f21a2914610a89578063d5b221bd146105d9578063d78a83b114610a9c578063dee3262314610aaf578063e8951ee6146105ab57600080fd5b8063bf1db3f91161010a578063bf1db3f914610a3a578063bf7e214f14610a4d578063c2f1a2d2146105d9578063c4d66de814610a63578063cd50b97e14610a7657600080fd5b8063b68ec1461461065f578063b7d2b162146109ee578063bc8d400014610a01578063bd4fe04e14610a14578063bd5947e314610a2757600080fd5b8063954fab2c116101d4578063a13df2ab11610198578063a13df2ab146108f1578063a5961b4c14610904578063a76ee018146109b5578063a8989675146109c8578063b428b0b0146109db57600080fd5b8063954fab2c146108a5578063976b0a77146108b85780639a960d52146108cb5780639d7421f4146108de5780639df0280b146105ab57600080fd5b80638d4eae9d1161021b5780638d4eae9d1461083e5780638dc77f42146105ab5780638eaa6ac0146108515780638fb3603714610871578063950ad70b1461089257600080fd5b806382f65adb1461065f578063835933c9146107f057806386f0c47b146108035780638793a9ac14610823578063893d20e81461083657600080fd5b806338a699a4116103735780635dfa73db116102f057806375b238fc116102b457806375b238fc146107af57806375c82776146107b75780637a415802146105d95780637a9e5e4b146107ca5780637cef4842146107dd57600080fd5b80635dfa73db1461074d578063644c45e01461075657806364c55d9c146107815780636fa2985314610794578063735391271461079c57600080fd5b8063468a186711610337578063468a1867146106f657806354f6127f1461070957806357f96805146107295780635ab1bd531461073c5780635d4345cc146105ab57600080fd5b806338a699a4146106a2578063392f5f64146106b55780633ca7c02a146106bd5780633fd85561146106e357806340529b0f146105ab57600080fd5b8063167bd395116104015780632f61088a116103c55780632f61088a1461063957806331d311a71461064c57806333bb0a971461065f57806337f135d714610672578063384c9a571461068f57600080fd5b8063167bd395146105c65780631c45fe7a146105d95780631e23a2f5146105ec5780631eff4b22146105ff57806322f46b841461062657600080fd5b80630d358181116104485780630d3581811461055c5780630f526f7d146105825780630fec111c1461059557806310203d2c146105ab578063138461e0146105be57600080fd5b806301ffc9a71461048557806302cd3071146104c757806303014974146104ec57806309648a9d1461050d5780630b24cf5f14610547575b600080fd5b6104b2610493366004613c93565b6001600160e01b03191660009081526004602052604090205460ff1690565b60405190151581526020015b60405180910390f35b600c546001600160a01b03165b6040516001600160a01b0390911681526020016104be565b6104ff6104fa366004613cd2565b610b39565b6040519081526020016104be565b61053561051b366004613cef565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020016104be565b61055a610555366004613ef9565b610b60565b005b61053561056a366004613f3e565b60ff9081166000908152600160205260409020541690565b61055a610590366004613f5b565b610ba4565b61059d610bc1565b6040516104be929190613fe4565b61055a6105b9366004613f5b565b610d43565b61055a610d58565b61055a6105d436600461408b565b610f7a565b61055a6105e73660046141e1565b611022565b61055a6105fa366004614255565b611063565b6104ff7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61055a6106343660046142b6565b611089565b61055a610647366004614380565b61109f565b6104ff61065a3660046143c5565b61113a565b61055a61066d3660046143e2565b6111cb565b61067a600081565b60405163ffffffff90911681526020016104be565b6104b261069d366004613cd2565b6111f6565b6104b26106b0366004613cef565b61138c565b6009546104ff565b6106cb6001600160401b0381565b6040516001600160401b0390911681526020016104be565b6106cb6106f1366004613cef565b611417565b6104ff610704366004614443565b61145c565b61071c610717366004613cef565b6114b9565b6040516104be9190614460565b61055a610737366004614516565b61155e565b6005546001600160a01b03166104d4565b6106cb61271081565b600554600160a01b90046001600160601b03166040516001600160601b0390911681526020016104be565b61055a61078f366004614616565b611586565b6104d46115ae565b61055a6107aa366004614662565b611650565b6106cb600081565b61055a6107c53660046146d3565b611678565b61055a6107d83660046143c5565b61169e565b61055a6107eb36600461472b565b611719565b6104ff6107fe366004613cd2565b6117a3565b610816610811366004613cd2565b6117e6565b6040516104be9190614749565b61055a610831366004614762565b61188b565b6104d46118a0565b61055a61084c366004614821565b61197d565b61086461085f366004613cef565b6119a3565b6040516104be91906148b0565b610879611ae4565b6040516001600160e01b031990911681526020016104be565b61055a6108a03660046148e4565b611b08565b61055a6108b336600461493c565b611b6a565b61055a6108c6366004614983565b611b90565b61055a6108d9366004614b2b565b611daf565b61055a6108ec366004614b72565b611dd5565b6104ff6108ff366004614443565b611dfb565b6109a8610912366004613cef565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260036020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104be9190614bc9565b61055a6109c3366004614bd7565b611e28565b61055a6109d6366004614c1e565b611ec3565b6104b26109e9366004614c5e565b611fb4565b6104b26109fc366004614c5e565b6121a8565b61055a610a0f366004614c8c565b612333565b61055a610a22366004614cd1565b612359565b61055a610a35366004614d12565b612381565b6104b2610a48366004613f3e565b6123a9565b60005461010090046001600160a01b03166104d4565b61055a610a713660046143c5565b6123f6565b61055a610a843660046142b6565b61246d565b61055a610a97366004613f5b565b612484565b6104d4610aaa366004614d52565b61249b565b61055a610abd366004613f5b565b6124c4565b6104b2610ad0366004614c1e565b60ff9283166000908152600260209081526040808320948616835293815283822092851682529190915220541690565b6104ff610b0e366004614d8e565b6124db565b61055a610b213660046143c5565b61255f565b61055a610b34366004613f5b565b6125db565b6001600160401b0381166000908152600860205260408120610b5a906125f0565b92915050565b610b6d335b6000366125fa565b610ba0610b7b83607861270d565b82604051602001610b8c9190614dbc565b604051602081830303815290604052612759565b5050565b610bad33610b65565b610ba0610bbb83608c61270d565b82612763565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610c446005546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610c8c6118a0565b6001600160a01b03168152602001826001018054610ca990614e1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd590614e1c565b8015610d225780601f10610cf757610100808354040283529160200191610d22565b820191906000526020600020905b815481529060010190602001808311610d0557829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b610d4c33610b65565b610ba0610bbb8361145c565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dde9190614e56565b15610e25576005546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6005546001600160a01b0316610e4e5760405163cf29926160e01b815260040160405180910390fd5b60055460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190614e56565b610ee3576040516372657a5160e01b81526001600160a01b0382166004820152602401610e1c565b600554604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610f2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f519190614e73565b600560146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610f8333610b65565b610f8f6106b08361113a565b610fb7576040516325b6f39560e21b81526001600160a01b0383166004820152602401610e1c565b600b5460405163167bd39560e01b81526001600160a01b03848116600483015283151560248301529091169063167bd39590604401600060405180830381600087803b15801561100657600080fd5b505af115801561101a573d6000803e3d6000fd5b505050505050565b61102b33610b65565b61105d6110378561145c565b836040516020016110489190614e90565b6040516020818303038152906040528361276d565b50505050565b61106c33610b65565b610ba06110788361113a565b82604051602001610b8c9190614749565b61109233610b65565b610ba08282600180612778565b6110a833610b65565b6040516355ee627560e01b81526001600160c01b031983166004820152610ba09073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111299190614ee3565b82604051602001610b8c9190614efc565b604051637a400b6760e11b8152601e6004820152606082901b6bffffffffffffffffffffffff1916602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156111a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614ee3565b6111d433610b65565b6111f16111e08461145c565b82604051602001610b8c9190614e90565b505050565b60003381611203846117a3565b905061120e8161138c565b61123557604051627a416f60e01b81526001600160401b0385166004820152602401610e1c565b6001600160401b03841660009081526008602052604090206112579083612821565b1561138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063fe0776f59073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed9190614f2a565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0385166024820152604401600060405180830381600087803b15801561133d57600080fd5b505af1158015611351573d6000803e3d6000fd5b5050506001600160401b0385166000908152600860205260409020611377915083612843565b506001949350505050565b5060009392505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614e56565b60006009828154811061142c5761142c614f47565b90600052602060002090600491828204019190066008029054906101000a90046001600160401b03169050919050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d25b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff16602482015260440161118a565b60008181526003602052604090206001018054606091906114d990614e1c565b80601f016020809104026020016040519081016040528092919081815260200182805461150590614e1c565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b50505050509050919050565b61156733610b65565b610ba061157583608c61270d565b82604051602001610b8c9190614f5d565b61158f33610b65565b6111f161159d84606e61270d565b836040516020016110489190615000565b6005546040805163a3bcd81d60e01b815260048101919091526015604482015274436f6d706f6e656e744f776e65725365727669636560581b6064820152600360248201526000916001600160a01b03169063a3bcd81d906084015b602060405180830381865afa158015611627573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164b9190615102565b905090565b61165933610b65565b610ba061166783606e61270d565b82604051602001610b8c9190615000565b61168133610b65565b61105d61168d8561145c565b83604051602001611048919061511f565b600054339061010090046001600160a01b031681146116da5760405162d1953b60e31b81526001600160a01b0382166004820152602401610e1c565b816001600160a01b03163b600003611710576040516361798f2f60e11b81526001600160a01b0383166004820152602401610e1c565b610ba082612858565b61172233610b65565b6040516355ee627560e01b81526001600160c01b031983166004820152610ba09073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561177f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb9190614ee3565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f09060240161118a565b604080518082018252600080825260208201529051630f37f38f60e41b81526001600160401b03831660048201526118789073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af4158015611854573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107179190614ee3565b806020019051810190610b5a919061514f565b61189433610b65565b610ba0610bbb836117a3565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611905573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119299190614e56565b1561196d57600554604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a9060240161160a565b506006546001600160a01b031690565b61198633610b65565b610ba061199283611dfb565b82604051602001610b8c9190615187565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260036020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611a5b90614e1c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8790614e1c565b8015611ad45780601f10611aa957610100808354040283529160200191611ad4565b820191906000526020600020905b815481529060010190602001808311611ab757829003601f168201915b5050505050815250509050919050565b60008054600160a81b900460ff16611afc5750600090565b50638fb3603760e01b90565b611b1133610b65565b6000611b1f848460006128b4565b5090506000611b2f858584612b1f565b9050611b63611b3d866117a3565b82604051602001611b4e9190614749565b6040516020818303038152906040528561276d565b5050505050565b611b7333610b65565b6111f1611b7f84611dfb565b836040516020016110489190615187565b600654600160a01b900460ff1615611c015760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610e1c565b600b80546001600160a01b0319166001600160a01b0386161790556040516368aebf7b60e01b815260006004820152611cbe9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c949190614f2a565b6040518060400160405280600981526020016841646d696e526f6c6560b81b815250600080612778565b6040516368aebf7b60e01b81526001600160401b036004820152611d679073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611d18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3c9190614f2a565b6040518060400160405280600a8152602001695075626c6963526f6c6560b01b815250600080612778565b611d868383604660008560405180602001604052806000815250612b5b565b611d966342e19e5f60e01b612bef565b50506006805460ff60a01b1916600160a01b1790555050565b611db833610b65565b6111f1611dc48461145c565b83604051602001611048919061522c565b611dde33610b65565b6111f1611dea8461145c565b82604051602001610b8c919061511f565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc611485565b611e3133610b65565b6040516355ee627560e01b81526001600160c01b0319841660048201526111f19073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb29190614ee3565b836040516020016110489190614efc565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611f28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4c9190614e56565b15611f5657505050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054166111f157604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610e1c565b6000611fbf33610b65565b6000611fca846117a3565b9050611fd58161138c565b611ffd57604051636777365b60e01b81526001600160401b0385166004820152602401610e1c565b60008181526003602052604090205461202c90610100900460ff16612020606490565b60ff9081169116141590565b156120555760405163fe229d5d60e01b81526001600160401b0385166004820152602401610e1c565b6001600160401b03841660009081526008602052604090206120779084612821565b61138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b03909116906325c471a09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156120e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210c9190614f2a565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038616602482015260006044820152606401600060405180830381600087803b15801561216357600080fd5b505af1158015612177573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061219d915084612c14565b506001915050610b5a565b60006121b333610b65565b60006121be846117a3565b90506121c98161138c565b6121f157604051634cee277360e11b81526001600160401b0385166004820152602401610e1c565b6001600160401b03841660009081526008602052604090206122139084612821565b1561138257600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a99190614f2a565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0386166024820152604401600060405180830381600087803b1580156122f957600080fd5b505af115801561230d573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061219d915084612843565b61233c33610b65565b610ba06123488361145c565b82604051602001610b8c919061522c565b61236233610b65565b6111f161237084608c61270d565b836040516020016110489190614f5d565b61238a33610b65565b6111f161239884607861270d565b836040516020016110489190614dbc565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113d6565b60005460ff16156124545760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b6064820152608401610e1c565b61245d81612858565b506000805460ff19166001179055565b61247633610b65565b610ba0828260006001612778565b61248d33610b65565b610ba0610bbb83607861270d565b6001600160401b03821660009081526008602052604081206124bd9083612c29565b9392505050565b6124cd33610b65565b610ba0610bbb83606e61270d565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af415801561253b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124bd9190614ee3565b61256833610b65565b600c546001600160a01b0316156125b95760405162461bcd60e51b8152602060048201526015602482015274125b9cdd185b98d954995859195c881a5cc81cd95d605a1b6044820152606401610e1c565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6125e433610b65565b610ba0610bbb83611dfb565b6000610b5a825490565b6000806126366126186000546001600160a01b036101009091041690565b863061262860046000898b615383565b612631916153ad565b612c35565b9150915081611b635763ffffffff8116156126ea576000805460ff60a81b1916600160a81b1790556126766000546001600160a01b036101009091041690565b6001600160a01b03166394c7d7ee8686866040518463ffffffff1660e01b81526004016126a5939291906153dd565b600060405180830381600087803b1580156126bf57600080fd5b505af11580156126d3573d6000803e3d6000fd5b50506000805460ff60a81b1916905550611b639050565b60405162d1953b60e31b81526001600160a01b0386166004820152602401610e1c565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440161251e565b610ba08282612d41565b610ba08282613163565b6111f1838383613497565b801561278c576127898484846128b4565b50505b6000612799858585612b1f565b80516000908152600760205260408120805467ffffffffffffffff19166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a9283021990931691021790559050611b63611078866117a3565b6001600160a01b038116600090815260018301602052604081205415156124bd565b60006124bd836001600160a01b038416613932565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60008060006128c2866117a3565b90506128cd8161138c565b925082156128fc576128de816114b9565b8060200190518101906128f1919061514f565b602001519150612900565b8391505b856001600160401b038116158061291f57506001600160401b03818116145b156129485760405163981bf42160e01b81526001600160401b0388166004820152602401610e1c565b82801561295f57506127106001600160401b038216105b1561298857604051633119b9df60e21b81526001600160401b0388166004820152602401610e1c565b8280156129a057506127106001600160401b03821610155b156129c95760405163094fb39160e01b81526001600160401b0388166004820152602401610e1c565b60006129d487613a2c565b90506129df81613a6a565b600003612a0a576040516321ab17ab60e01b81526001600160401b0389166004820152602401610e1c565b60008181526007602090815260409182902054825163bc1b392d60e01b81529251612aad936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af4158015612a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9b9190614f2a565b6001600160401b039081169116141590565b8015612ad357506000818152600760205260409020546001600160401b03898116911614155b15612b145760008181526007602052604090819020549051631660fb9360e21b81526001600160401b03909116600482015260248101829052604401610e1c565b505050935093915050565b60408051808201909152600080825260208201526040518060400160405280612b4785613a2c565b815260200183151581525090509392505050565b612b658287613a92565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101612bd58382615463565b50612be66303fb044760e21b612bef565b50505050505050565b6001600160e01b0319166000908152600460205260409020805460ff19166001179055565b60006124bd836001600160a01b038416613ab6565b60006124bd8383613b05565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612ca49190615522565b600060405180830381855afa9150503d8060008114612cdf576040519150601f19603f3d011682016040523d82523d6000602084013e612ce4565b606091505b50915091508115612d36576040815110612d165780806020019051810190612d0c919061553e565b9094509250612d36565b6020815110612d365780806020019051810190612d339190614e56565b93505b505094509492505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612d94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612db8919061556d565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015612e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e319190614e56565b612e7d5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610e1c565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015612ee6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f0a9190614e56565b612f565760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610e1c565b33436000612f63856123a9565b612f6e576064612f84565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b91909102178555600088815260036020526040902090915060010161300e8782615463565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613081573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a5919061556d565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156130f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613119919061558a565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156131b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131d99190614e56565b6132255760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610e1c565b600082815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613291573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132b59190614e56565b6133015760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610e1c565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166133454390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156133d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fb919061556d565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561344b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061346f919061558a565b878686328760405161348797969594939291906155a7565b60405180910390a1505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156134e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061350d9190614e56565b6135595760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610e1c565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156135c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135e99190614e56565b6136355760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610e1c565b60008581526003602052604090206001016136508582615463565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166136954390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374b919061556d565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561379b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137bf919061558a565b87868632876040516137d797969594939291906155a7565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613851573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613875919061556d565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156138c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e9919061558a565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c001613152565b60008181526001830160205260408120548015613a1b5760006139566001836155f7565b855490915060009061396a906001906155f7565b90508082146139cf57600086600001828154811061398a5761398a614f47565b90600052602060002001549050808760000184815481106139ad576139ad614f47565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806139e0576139e0615618565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b5a565b6000915050610b5a565b5092915050565b600080829050601f81511115613a57578260405163305a27a960e01b8152600401610e1c9190614460565b8051613a628261562e565b179392505050565b600060ff8216601f811115610b5a57604051632cd44ac360e21b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b038416179055610ba081613b2f565b6000818152600183016020526040812054613afd57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b5a565b506000610b5a565b6000826000018281548110613b1c57613b1c614f47565b9060005260206000200154905092915050565b6005546001600160a01b031615613b685760055460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610e1c565b6001600160a01b038116613b8f5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003613bc55760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e1c565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263aadfd86760e01b60048201526301ffc9a790602401602060405180830381865afa925050508015613c3f575060408051601f3d908101601f19168201909252613c3c91810190614e56565b60015b613c675760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e1c565b80610ba05760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610e1c565b50565b600060208284031215613ca557600080fd5b81356001600160e01b0319811681146124bd57600080fd5b6001600160401b0381168114613c9057600080fd5b600060208284031215613ce457600080fd5b81356124bd81613cbd565b600060208284031215613d0157600080fd5b5035919050565b6001600160601b0381168114613c9057600080fd5b8035613d2881613d08565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613d6557613d65613d2d565b60405290565b604051608081016001600160401b0381118282101715613d6557613d65613d2d565b60405161010081016001600160401b0381118282101715613d6557613d65613d2d565b60405161014081016001600160401b0381118282101715613d6557613d65613d2d565b60405161020081016001600160401b0381118282101715613d6557613d65613d2d565b6001600160a01b0381168114613c9057600080fd5b8035613d2881613df6565b600060408284031215613e2857600080fd5b613e30613d43565b9050813581526020820135602082015292915050565b8015158114613c9057600080fd5b8035613d2881613e46565b600060c08284031215613e7157600080fd5b60405160a081018181106001600160401b0382111715613e9357613e93613d2d565b6040529050808235613ea481613d08565b81526020830135613eb481613df6565b6020820152613ec68460408501613e16565b60408201526080830135613ed981613e46565b606082015260a0830135613eec81613df6565b6080919091015292915050565b60008060e08385031215613f0c57600080fd5b8235613f1781613d08565b9150613f268460208501613e5f565b90509250929050565b60ff81168114613c9057600080fd5b600060208284031215613f5057600080fd5b81356124bd81613f2f565b60008060408385031215613f6e57600080fd5b8235613f7981613d08565b91506020830135613f8981613f2f565b809150509250929050565b60005b83811015613faf578181015183820152602001613f97565b50506000910152565b60008151808452613fd0816020860160208601613f94565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161402860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261406e610120840182613fb8565b905082810360208401526140828185613fb8565b95945050505050565b6000806040838503121561409e57600080fd5b82356140a981613df6565b91506020830135613f8981613e46565b63ffffffff81168114613c9057600080fd5b600082601f8301126140dc57600080fd5b81356001600160401b03808211156140f6576140f6613d2d565b604051601f8301601f19908116603f0116810190828211818310171561411e5761411e613d2d565b8160405283815286602085880101111561413757600080fd5b836020870160208301376000602085830101528094505050505092915050565b803564ffffffffff81168114613d2857600080fd5b60006080828403121561417e57600080fd5b614186613d6b565b90508135614193816140b9565b81526020828101359082015260408201356001600160401b038111156141b857600080fd5b6141c4848285016140cb565b6040830152506141d660608301614157565b606082015292915050565b600080600080608085870312156141f757600080fd5b843561420281613d08565b93506020850135614212816140b9565b925060408501356001600160401b0381111561422d57600080fd5b6142398782880161416c565b925050606085013561424a81613f2f565b939692955090935050565b600080828403606081121561426957600080fd5b833561427481613df6565b92506040601f198201121561428857600080fd5b50614291613d43565b6020840135815260408401356142a681613e46565b6020820152919491935090915050565b600080604083850312156142c957600080fd5b82356142d481613cbd565b915060208301356001600160401b038111156142ef57600080fd5b6142fb858286016140cb565b9150509250929050565b6001600160c01b031981168114613c9057600080fd5b8035613d2881614305565b60006040828403121561433857600080fd5b614340613d43565b9050813561434d81613d08565b815260208201356001600160401b0381111561436857600080fd5b614374848285016140cb565b60208301525092915050565b6000806040838503121561439357600080fd5b823561439e81614305565b915060208301356001600160401b038111156143b957600080fd5b6142fb85828601614326565b6000602082840312156143d757600080fd5b81356124bd81613df6565b6000806000606084860312156143f757600080fd5b833561440281613d08565b92506020840135614412816140b9565b915060408401356001600160401b0381111561442d57600080fd5b6144398682870161416c565b9150509250925092565b60006020828403121561445557600080fd5b81356124bd81613d08565b6020815260006124bd6020830184613fb8565b6000610160828403121561448657600080fd5b61448e613d8d565b905061449982613d1d565b81526144a760208301613e0b565b6020820152604082013560408201526144c38360608401613e16565b60608201526144d58360a08401613e16565b60808201526144e78360e08401613e16565b60a08201526144f96101208301613e54565b60c082015261450b6101408301613e0b565b60e082015292915050565b600080610180838503121561452a57600080fd5b823561453581613d08565b9150613f268460208501614473565b6000610200828403121561455757600080fd5b61455f613db0565b905061456a82613e0b565b815261457860208301613e0b565b602082015261458960408301613d1d565b604082015261459a60608301613d1d565b60608201526145ac8360808401613e16565b60808201526145be8360c08401613e16565b60a08201526101006145d284828501613e16565b60c08301526145e5846101408501613e16565b60e08301526145f8846101808501613e16565b9082015261460a836101c08401613e16565b61012082015292915050565b6000806000610240848603121561462c57600080fd5b833561463781613d08565b92506146468560208601614544565b915061022084013561465781613f2f565b809150509250925092565b600080610220838503121561467657600080fd5b823561468181613d08565b9150613f268460208501614544565b6000608082840312156146a257600080fd5b6146aa613d6b565b9050813581526020820135602082015260408201356001600160401b038111156141b857600080fd5b600080600080608085870312156146e957600080fd5b84356146f481613d08565b93506020850135614704816140b9565b925060408501356001600160401b0381111561471f57600080fd5b61423987828801614690565b6000806040838503121561473e57600080fd5b8235613f7981614305565b8151815260208083015115159082015260408101610b5a565b6000806040838503121561477557600080fd5b8235613f7981613cbd565b6000610120828403121561479357600080fd5b61479b613d8d565b90506147a682613d1d565b81526147b58360208401613e16565b602082015260608201356001600160401b038111156147d357600080fd5b6147df848285016140cb565b6040830152506080820135606082015260a0820135608082015260c082013560a082015261480f60e08301614157565b60c082015261450b6101008301614157565b6000806040838503121561483457600080fd5b823561483f81613d08565b915060208301356001600160401b0381111561485a57600080fd5b6142fb85828601614780565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b602081526148c2602082018351614866565b6000602083015160c0808401526148dc60e0840182613fb8565b949350505050565b6000806000606084860312156148f957600080fd5b833561490481613cbd565b925060208401356001600160401b0381111561491f57600080fd5b61492b868287016140cb565b925050604084013561465781613f2f565b60008060006060848603121561495157600080fd5b833561495c81613d08565b925060208401356001600160401b0381111561497757600080fd5b61492b86828701614780565b6000806000806080858703121561499957600080fd5b84356149a481613df6565b935060208501356149b481613df6565b925060408501356149c481613d08565b9150606085013561424a81613df6565b803561ffff81168114613d2857600080fd5b600061020082840312156149f957600080fd5b614a01613dd3565b9050614a0c82613d1d565b8152614a1a60208301613d1d565b6020820152614a2b6040830161431b565b6040820152614a3c6060830161431b565b60608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e0820152610100808301356001600160401b0380821115614a8557600080fd5b614a91868387016140cb565b83850152610120925082850135915080821115614aad57600080fd5b50614aba858286016140cb565b828401525050610140614ace8184016149d4565b90820152610160614ae08382016149d4565b9082015261018082810135908201526101a0614afd818401614157565b908201526101c0614b0f838201614157565b908201526101e0614b21838201614157565b9082015292915050565b600080600060608486031215614b4057600080fd5b8335614b4b81613d08565b925060208401356001600160401b03811115614b6657600080fd5b61492b868287016149e6565b600080600060608486031215614b8757600080fd5b8335614b9281613d08565b92506020840135614ba2816140b9565b915060408401356001600160401b03811115614bbd57600080fd5b61443986828701614690565b60a08101610b5a8284614866565b600080600060608486031215614bec57600080fd5b8335614bf781614305565b925060208401356001600160401b03811115614c1257600080fd5b61492b86828701614326565b600080600060608486031215614c3357600080fd5b8335614c3e81613f2f565b92506020840135614c4e81613f2f565b9150604084013561465781613f2f565b60008060408385031215614c7157600080fd5b8235614c7c81613cbd565b91506020830135613f8981613df6565b60008060408385031215614c9f57600080fd5b8235614caa81613d08565b915060208301356001600160401b03811115614cc557600080fd5b6142fb858286016149e6565b60008060006101a08486031215614ce757600080fd5b8335614cf281613d08565b9250614d018560208601614473565b915061018084013561465781613f2f565b60008060006101008486031215614d2857600080fd5b8335614d3381613d08565b9250614d428560208601613e5f565b915060e084013561465781613f2f565b60008060408385031215614d6557600080fd5b8235614d7081613cbd565b946020939093013593505050565b60ff1981168114613c9057600080fd5b60008060408385031215614da157600080fd5b8235614dac81613f2f565b91506020830135613f8981614d7e565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b600181811c90821680614e3057607f821691505b602082108103614e5057634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215614e6857600080fd5b81516124bd81613e46565b600060208284031215614e8557600080fd5b81516124bd81613d08565b6020815263ffffffff8251166020820152602082015160408201526000604083015160806060840152614ec660a0840182613fb8565b905064ffffffffff60608501511660808401528091505092915050565b600060208284031215614ef557600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526148dc6060840182613fb8565b600060208284031215614f3c57600080fd5b81516124bd81613cbd565b634e487b7160e01b600052603260045260246000fd5b81516001600160601b031681526020808301516001600160a01b03169082015260408083015190820152606080830151610160830191614fa99084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151151561012083015260e08301516001600160a01b038116610140840152613a25565b81516001600160a01b031681526102008101602083015161502c60208401826001600160a01b03169052565b50604083015161504760408401826001600160601b03169052565b50606083015161506260608401826001600160601b03169052565b50608083015161507f608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006150b58185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a085015261012085015180516101c0860152908101516101e08501529050613a25565b60006020828403121561511457600080fd5b81516124bd81613df6565b6020815281516020820152602082015160408201526000604083015160806060840152614ec660a0840182613fb8565b60006040828403121561516157600080fd5b615169613d43565b82518152602083015161517b81613e46565b60208201529392505050565b602081526001600160601b038251166020820152600060208301516151b9604084018280518252602090810151910152565b5060408301516101208060808501526151d6610140850183613fb8565b9150606085015160a0850152608085015160c085015260a085015160e085015260c085015161520f61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b602081526152466020820183516001600160601b03169052565b6000602083015161526260408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e083015161010081818501528085015191505061020061012081818601526152da610220860184613fb8565b9250808601519050610140601f1986850301818701526152fa8483613fb8565b9350808701519150506101606153158187018361ffff169052565b860151905061018061532c8682018361ffff169052565b8601516101a08681019190915286015190506101c06153538187018364ffffffffff169052565b86015190506101e061536d8682018364ffffffffff169052565b86015164ffffffffff8116838701529050615222565b6000808585111561539357600080fd5b838611156153a057600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156153d55780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f8211156111f157600081815260208120601f850160051c810160208610156154445750805b601f850160051c820191505b8181101561101a57828155600101615450565b81516001600160401b0381111561547c5761547c613d2d565b6154908161548a8454614e1c565b8461541d565b602080601f8311600181146154c557600084156154ad5750858301515b600019600386901b1c1916600185901b17855561101a565b600085815260208120601f198616915b828110156154f4578886015182559484019460019091019084016154d5565b50858210156155125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008251615534818460208701613f94565b9190910192915050565b6000806040838503121561555157600080fd5b825161555c81613e46565b6020840151909250613f89816140b9565b60006020828403121561557f57600080fd5b81516124bd81613f2f565b60006020828403121561559c57600080fd5b81516124bd81614d7e565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e00190565b81810381811115610b5a57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b80516020808301519190811015614e505760001960209190910360031b1b1691905056fea264697066735822122006394f4fc98259e1edb0e1266241283631f3ad3cabc9bf98683497bd1bfb3bc164736f6c63430008140033",
|
1641
3132
|
"linkReferences": {
|
3133
|
+
"contracts/types/Key32.sol": {
|
3134
|
+
"Key32Lib": [
|
3135
|
+
{
|
3136
|
+
"length": 20,
|
3137
|
+
"start": 4562
|
3138
|
+
},
|
3139
|
+
{
|
3140
|
+
"length": 20,
|
3141
|
+
"start": 5330
|
3142
|
+
},
|
3143
|
+
{
|
3144
|
+
"length": 20,
|
3145
|
+
"start": 5449
|
3146
|
+
},
|
3147
|
+
{
|
3148
|
+
"length": 20,
|
3149
|
+
"start": 11428
|
3150
|
+
},
|
3151
|
+
{
|
3152
|
+
"length": 20,
|
3153
|
+
"start": 16440
|
3154
|
+
},
|
3155
|
+
{
|
3156
|
+
"length": 20,
|
3157
|
+
"start": 18578
|
3158
|
+
},
|
3159
|
+
{
|
3160
|
+
"length": 20,
|
3161
|
+
"start": 19327
|
3162
|
+
},
|
3163
|
+
{
|
3164
|
+
"length": 20,
|
3165
|
+
"start": 19443
|
3166
|
+
},
|
3167
|
+
{
|
3168
|
+
"length": 20,
|
3169
|
+
"start": 20181
|
3170
|
+
},
|
3171
|
+
{
|
3172
|
+
"length": 20,
|
3173
|
+
"start": 20297
|
3174
|
+
},
|
3175
|
+
{
|
3176
|
+
"length": 20,
|
3177
|
+
"start": 21029
|
3178
|
+
},
|
3179
|
+
{
|
3180
|
+
"length": 20,
|
3181
|
+
"start": 21145
|
3182
|
+
},
|
3183
|
+
{
|
3184
|
+
"length": 20,
|
3185
|
+
"start": 21327
|
3186
|
+
},
|
3187
|
+
{
|
3188
|
+
"length": 20,
|
3189
|
+
"start": 21443
|
3190
|
+
}
|
3191
|
+
]
|
3192
|
+
},
|
1642
3193
|
"contracts/types/NftId.sol": {
|
1643
3194
|
"NftIdLib": [
|
1644
3195
|
{
|
1645
3196
|
"length": 20,
|
1646
|
-
"start":
|
3197
|
+
"start": 10424
|
3198
|
+
},
|
3199
|
+
{
|
3200
|
+
"length": 20,
|
3201
|
+
"start": 12184
|
3202
|
+
},
|
3203
|
+
{
|
3204
|
+
"length": 20,
|
3205
|
+
"start": 13315
|
3206
|
+
},
|
3207
|
+
{
|
3208
|
+
"length": 20,
|
3209
|
+
"start": 14647
|
3210
|
+
},
|
3211
|
+
{
|
3212
|
+
"length": 20,
|
3213
|
+
"start": 17007
|
3214
|
+
}
|
3215
|
+
]
|
3216
|
+
},
|
3217
|
+
"contracts/types/ObjectType.sol": {
|
3218
|
+
"ObjectTypeLib": [
|
3219
|
+
{
|
3220
|
+
"length": 20,
|
3221
|
+
"start": 4686
|
3222
|
+
},
|
3223
|
+
{
|
3224
|
+
"length": 20,
|
3225
|
+
"start": 18699
|
3226
|
+
}
|
3227
|
+
]
|
3228
|
+
},
|
3229
|
+
"contracts/types/RiskId.sol": {
|
3230
|
+
"RiskIdLib": [
|
3231
|
+
{
|
3232
|
+
"length": 20,
|
3233
|
+
"start": 11267
|
3234
|
+
},
|
3235
|
+
{
|
3236
|
+
"length": 20,
|
3237
|
+
"start": 12925
|
3238
|
+
},
|
3239
|
+
{
|
3240
|
+
"length": 20,
|
3241
|
+
"start": 14732
|
3242
|
+
}
|
3243
|
+
]
|
3244
|
+
},
|
3245
|
+
"contracts/types/RoleId.sol": {
|
3246
|
+
"RoleIdLib": [
|
3247
|
+
{
|
3248
|
+
"length": 20,
|
3249
|
+
"start": 2209
|
3250
|
+
},
|
3251
|
+
{
|
3252
|
+
"length": 20,
|
3253
|
+
"start": 2380
|
3254
|
+
},
|
3255
|
+
{
|
3256
|
+
"length": 20,
|
3257
|
+
"start": 3632
|
3258
|
+
},
|
3259
|
+
{
|
3260
|
+
"length": 20,
|
3261
|
+
"start": 3957
|
1647
3262
|
},
|
1648
3263
|
{
|
1649
3264
|
"length": 20,
|
1650
|
-
"start":
|
3265
|
+
"start": 11719
|
1651
3266
|
},
|
1652
3267
|
{
|
1653
3268
|
"length": 20,
|
1654
|
-
"start":
|
3269
|
+
"start": 13052
|
1655
3270
|
},
|
1656
3271
|
{
|
1657
3272
|
"length": 20,
|
1658
|
-
"start":
|
3273
|
+
"start": 13138
|
1659
3274
|
},
|
1660
3275
|
{
|
1661
3276
|
"length": 20,
|
1662
|
-
"start":
|
3277
|
+
"start": 14190
|
1663
3278
|
},
|
1664
3279
|
{
|
1665
3280
|
"length": 20,
|
1666
|
-
"start":
|
3281
|
+
"start": 14358
|
3282
|
+
},
|
3283
|
+
{
|
3284
|
+
"length": 20,
|
3285
|
+
"start": 15334
|
3286
|
+
},
|
3287
|
+
{
|
3288
|
+
"length": 20,
|
3289
|
+
"start": 15747
|
3290
|
+
},
|
3291
|
+
{
|
3292
|
+
"length": 20,
|
3293
|
+
"start": 17781
|
1667
3294
|
}
|
1668
3295
|
]
|
1669
3296
|
},
|
1670
|
-
"contracts/types/
|
1671
|
-
"
|
3297
|
+
"contracts/types/StateId.sol": {
|
3298
|
+
"StateIdLib": [
|
3299
|
+
{
|
3300
|
+
"length": 20,
|
3301
|
+
"start": 4158
|
3302
|
+
},
|
3303
|
+
{
|
3304
|
+
"length": 20,
|
3305
|
+
"start": 4908
|
3306
|
+
},
|
3307
|
+
{
|
3308
|
+
"length": 20,
|
3309
|
+
"start": 6025
|
3310
|
+
},
|
3311
|
+
{
|
3312
|
+
"length": 20,
|
3313
|
+
"start": 12016
|
3314
|
+
},
|
3315
|
+
{
|
3316
|
+
"length": 20,
|
3317
|
+
"start": 14886
|
3318
|
+
},
|
3319
|
+
{
|
3320
|
+
"length": 20,
|
3321
|
+
"start": 16140
|
3322
|
+
},
|
3323
|
+
{
|
3324
|
+
"length": 20,
|
3325
|
+
"start": 18916
|
3326
|
+
},
|
3327
|
+
{
|
3328
|
+
"length": 20,
|
3329
|
+
"start": 19635
|
3330
|
+
},
|
3331
|
+
{
|
3332
|
+
"length": 20,
|
3333
|
+
"start": 19855
|
3334
|
+
},
|
1672
3335
|
{
|
1673
3336
|
"length": 20,
|
1674
|
-
"start":
|
3337
|
+
"start": 20455
|
1675
3338
|
},
|
1676
3339
|
{
|
1677
3340
|
"length": 20,
|
1678
|
-
"start":
|
3341
|
+
"start": 20675
|
1679
3342
|
}
|
1680
3343
|
]
|
1681
3344
|
}
|
1682
3345
|
},
|
1683
3346
|
"deployedLinkReferences": {
|
3347
|
+
"contracts/types/Key32.sol": {
|
3348
|
+
"Key32Lib": [
|
3349
|
+
{
|
3350
|
+
"length": 20,
|
3351
|
+
"start": 4460
|
3352
|
+
},
|
3353
|
+
{
|
3354
|
+
"length": 20,
|
3355
|
+
"start": 9472
|
3356
|
+
},
|
3357
|
+
{
|
3358
|
+
"length": 20,
|
3359
|
+
"start": 11610
|
3360
|
+
},
|
3361
|
+
{
|
3362
|
+
"length": 20,
|
3363
|
+
"start": 12359
|
3364
|
+
},
|
3365
|
+
{
|
3366
|
+
"length": 20,
|
3367
|
+
"start": 12475
|
3368
|
+
},
|
3369
|
+
{
|
3370
|
+
"length": 20,
|
3371
|
+
"start": 13213
|
3372
|
+
},
|
3373
|
+
{
|
3374
|
+
"length": 20,
|
3375
|
+
"start": 13329
|
3376
|
+
},
|
3377
|
+
{
|
3378
|
+
"length": 20,
|
3379
|
+
"start": 14061
|
3380
|
+
},
|
3381
|
+
{
|
3382
|
+
"length": 20,
|
3383
|
+
"start": 14177
|
3384
|
+
},
|
3385
|
+
{
|
3386
|
+
"length": 20,
|
3387
|
+
"start": 14359
|
3388
|
+
},
|
3389
|
+
{
|
3390
|
+
"length": 20,
|
3391
|
+
"start": 14475
|
3392
|
+
}
|
3393
|
+
]
|
3394
|
+
},
|
1684
3395
|
"contracts/types/NftId.sol": {
|
1685
3396
|
"NftIdLib": [
|
1686
3397
|
{
|
1687
3398
|
"length": 20,
|
1688
|
-
"start":
|
3399
|
+
"start": 3456
|
3400
|
+
},
|
3401
|
+
{
|
3402
|
+
"length": 20,
|
3403
|
+
"start": 5216
|
3404
|
+
},
|
3405
|
+
{
|
3406
|
+
"length": 20,
|
3407
|
+
"start": 6347
|
3408
|
+
},
|
3409
|
+
{
|
3410
|
+
"length": 20,
|
3411
|
+
"start": 7679
|
3412
|
+
},
|
3413
|
+
{
|
3414
|
+
"length": 20,
|
3415
|
+
"start": 10039
|
3416
|
+
}
|
3417
|
+
]
|
3418
|
+
},
|
3419
|
+
"contracts/types/ObjectType.sol": {
|
3420
|
+
"ObjectTypeLib": [
|
3421
|
+
{
|
3422
|
+
"length": 20,
|
3423
|
+
"start": 11731
|
3424
|
+
}
|
3425
|
+
]
|
3426
|
+
},
|
3427
|
+
"contracts/types/RiskId.sol": {
|
3428
|
+
"RiskIdLib": [
|
3429
|
+
{
|
3430
|
+
"length": 20,
|
3431
|
+
"start": 4299
|
3432
|
+
},
|
3433
|
+
{
|
3434
|
+
"length": 20,
|
3435
|
+
"start": 5957
|
1689
3436
|
},
|
1690
3437
|
{
|
1691
3438
|
"length": 20,
|
1692
|
-
"start":
|
3439
|
+
"start": 7764
|
3440
|
+
}
|
3441
|
+
]
|
3442
|
+
},
|
3443
|
+
"contracts/types/RoleId.sol": {
|
3444
|
+
"RoleIdLib": [
|
3445
|
+
{
|
3446
|
+
"length": 20,
|
3447
|
+
"start": 4751
|
3448
|
+
},
|
3449
|
+
{
|
3450
|
+
"length": 20,
|
3451
|
+
"start": 6084
|
1693
3452
|
},
|
1694
3453
|
{
|
1695
3454
|
"length": 20,
|
1696
|
-
"start":
|
3455
|
+
"start": 6170
|
1697
3456
|
},
|
1698
3457
|
{
|
1699
3458
|
"length": 20,
|
1700
|
-
"start":
|
3459
|
+
"start": 7222
|
1701
3460
|
},
|
1702
3461
|
{
|
1703
3462
|
"length": 20,
|
1704
|
-
"start":
|
3463
|
+
"start": 7390
|
1705
3464
|
},
|
1706
3465
|
{
|
1707
3466
|
"length": 20,
|
1708
|
-
"start":
|
3467
|
+
"start": 8366
|
3468
|
+
},
|
3469
|
+
{
|
3470
|
+
"length": 20,
|
3471
|
+
"start": 8779
|
3472
|
+
},
|
3473
|
+
{
|
3474
|
+
"length": 20,
|
3475
|
+
"start": 10813
|
1709
3476
|
}
|
1710
3477
|
]
|
1711
3478
|
},
|
1712
|
-
"contracts/types/
|
1713
|
-
"
|
3479
|
+
"contracts/types/StateId.sol": {
|
3480
|
+
"StateIdLib": [
|
3481
|
+
{
|
3482
|
+
"length": 20,
|
3483
|
+
"start": 5048
|
3484
|
+
},
|
3485
|
+
{
|
3486
|
+
"length": 20,
|
3487
|
+
"start": 7918
|
3488
|
+
},
|
3489
|
+
{
|
3490
|
+
"length": 20,
|
3491
|
+
"start": 9172
|
3492
|
+
},
|
3493
|
+
{
|
3494
|
+
"length": 20,
|
3495
|
+
"start": 11948
|
3496
|
+
},
|
3497
|
+
{
|
3498
|
+
"length": 20,
|
3499
|
+
"start": 12667
|
3500
|
+
},
|
3501
|
+
{
|
3502
|
+
"length": 20,
|
3503
|
+
"start": 12887
|
3504
|
+
},
|
1714
3505
|
{
|
1715
3506
|
"length": 20,
|
1716
|
-
"start":
|
3507
|
+
"start": 13487
|
1717
3508
|
},
|
1718
3509
|
{
|
1719
3510
|
"length": 20,
|
1720
|
-
"start":
|
3511
|
+
"start": 13707
|
1721
3512
|
}
|
1722
3513
|
]
|
1723
3514
|
}
|