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