@etherisc/gif-next 0.0.2-ed4dd55 → 0.0.2-efef0ea-320
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +178 -6
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → BaseComponent.sol/BaseComponent.json} +55 -60
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +405 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/IComponent.sol/IComponentContract.json → components/IBaseComponent.sol/IBaseComponent.json} +54 -59
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → components/IDistributionComponent.sol/IDistributionComponent.json} +164 -151
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +487 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +370 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +417 -34
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +273 -42
- 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/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1427 -271
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1827 -364
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +387 -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 +560 -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/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IService.sol/IService.json +341 -0
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +463 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +710 -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/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +387 -0
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +297 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +297 -0
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +117 -0
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +117 -0
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +10 -0
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +284 -0
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +284 -0
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +144 -0
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +144 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +113 -0
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +131 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +511 -0
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +511 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +618 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +507 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +405 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +366 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +481 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +671 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +630 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +945 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +65 -2
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +115 -89
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +244 -77
- package/artifacts/contracts/registry/RegistryUpgradeable.sol/RegistryUpgradeable.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryUpgradeable.sol/RegistryUpgradeable.json +724 -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/IOwnable.sol/IOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegisterable.sol}/IRegisterable.json +22 -67
- 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/Proxy.sol/ProxyDeployer.dbg.json +4 -0
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +248 -0
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +4 -0
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +129 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +23 -68
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +251 -0
- package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.dbg.json +4 -0
- package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.json +228 -0
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +405 -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/TestPool.sol/TestPool.dbg.json +4 -0
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +578 -0
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +575 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -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 +466 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -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 +293 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -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/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 +111 -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 +10 -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/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -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 +30 -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 +236 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.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 +30 -0
- package/contracts/components/BaseComponent.sol +94 -0
- package/contracts/components/Distribution.sol +132 -0
- package/contracts/components/IBaseComponent.sol +19 -0
- package/contracts/components/IDistributionComponent.sol +47 -0
- package/contracts/components/IPoolComponent.sol +71 -0
- package/contracts/components/IProductComponent.sol +38 -0
- package/contracts/components/Pool.sol +222 -16
- package/contracts/components/Product.sol +195 -33
- 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/README.md +112 -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/IInstance.sol +41 -8
- package/contracts/instance/IInstanceLinked.sol +8 -0
- package/contracts/instance/Instance.sol +54 -43
- package/contracts/instance/base/ComponentServiceBase.sol +42 -0
- package/contracts/instance/base/IInstanceBase.sol +22 -0
- package/contracts/instance/base/IKeyValueStore.sol +50 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/IService.sol +15 -0
- package/contracts/instance/base/InstanceBase.sol +91 -0
- package/contracts/instance/base/KeyValueStore.sol +161 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/base/ModuleBase.sol +57 -0
- package/contracts/instance/base/ServiceBase.sol +37 -0
- package/contracts/instance/module/access/Access.sol +149 -0
- package/contracts/instance/module/access/IAccess.sol +53 -0
- package/contracts/instance/module/bundle/BundleModule.sol +134 -0
- package/contracts/instance/module/bundle/IBundle.sol +53 -0
- package/contracts/instance/module/component/ComponentModule.sol +70 -0
- package/contracts/instance/module/component/IComponent.sol +28 -0
- package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
- package/contracts/instance/module/distribution/IDistribution.sol +10 -0
- package/contracts/instance/module/policy/IPolicy.sol +63 -0
- package/contracts/instance/module/policy/PolicyModule.sol +91 -0
- package/contracts/instance/module/pool/IPoolModule.sol +40 -0
- package/contracts/instance/module/pool/PoolModule.sol +90 -0
- package/contracts/instance/module/risk/IRisk.sol +26 -0
- package/contracts/instance/module/risk/RiskModule.sol +62 -0
- package/contracts/instance/module/treasury/ITreasury.sol +82 -0
- package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
- package/contracts/instance/module/treasury/TreasuryModule.sol +138 -0
- package/contracts/instance/service/ComponentOwnerService.sol +157 -0
- package/contracts/instance/service/DistributionService.sol +59 -0
- package/contracts/instance/service/IComponentOwnerService.sol +22 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPoolService.sol +37 -0
- package/contracts/instance/service/IProductService.sol +107 -0
- package/contracts/instance/service/PoolService.sol +149 -0
- package/contracts/instance/service/ProductService.sol +509 -0
- package/contracts/registry/ChainNft.sol +80 -94
- package/contracts/registry/IChainNft.sol +10 -7
- package/contracts/registry/IRegistry.sol +40 -51
- package/contracts/registry/IRegistryLinked.sol +8 -0
- package/contracts/registry/Registry.sol +312 -107
- package/contracts/registry/RegistryUpgradeable.sol +488 -0
- package/contracts/shared/ERC165.sol +21 -0
- package/contracts/shared/IOwnable.sol +6 -0
- package/contracts/shared/IRegisterable.sol +24 -0
- package/contracts/shared/IVersionable.sol +65 -0
- package/contracts/shared/Proxy.sol +94 -0
- package/contracts/shared/Registerable.sol +86 -0
- package/contracts/shared/Versionable.sol +99 -0
- package/contracts/shared/VersionableUpgradeable.sol +136 -0
- package/contracts/test/TestDistribution.sol +21 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestPool.sol +25 -0
- package/contracts/test/TestProduct.sol +72 -0
- package/contracts/test/TestRegisterable.sol +19 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +32 -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/Fee.sol +56 -0
- package/contracts/types/Key32.sol +45 -0
- package/contracts/types/NftId.sol +55 -8
- package/contracts/types/NftIdSet.sol +60 -0
- package/contracts/types/ObjectType.sol +131 -0
- package/contracts/types/ReferralId.sol +48 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +38 -0
- package/contracts/types/StateId.sol +101 -0
- package/contracts/types/Timestamp.sol +123 -0
- package/contracts/types/UFixed.sol +209 -0
- package/contracts/types/Version.sol +103 -0
- package/package.json +19 -5
- 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/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/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/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -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/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/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/pool/PoolModule.sol/PoolModule.json +0 -162
- 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/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- 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/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
@@ -11,27 +11,64 @@
|
|
11
11
|
"type": "address"
|
12
12
|
},
|
13
13
|
{
|
14
|
-
"internalType": "
|
15
|
-
"name": "
|
16
|
-
"type": "
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"internalType": "address",
|
20
|
-
"name": "productService",
|
21
|
-
"type": "address"
|
14
|
+
"internalType": "NftId",
|
15
|
+
"name": "registryNftId",
|
16
|
+
"type": "uint96"
|
22
17
|
}
|
23
18
|
],
|
24
19
|
"stateMutability": "nonpayable",
|
25
20
|
"type": "constructor"
|
26
21
|
},
|
22
|
+
{
|
23
|
+
"inputs": [],
|
24
|
+
"name": "InvalidInitialization",
|
25
|
+
"type": "error"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"inputs": [],
|
29
|
+
"name": "NotInitializing",
|
30
|
+
"type": "error"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"anonymous": false,
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"indexed": false,
|
37
|
+
"internalType": "uint64",
|
38
|
+
"name": "version",
|
39
|
+
"type": "uint64"
|
40
|
+
}
|
41
|
+
],
|
42
|
+
"name": "Initialized",
|
43
|
+
"type": "event"
|
44
|
+
},
|
27
45
|
{
|
28
46
|
"anonymous": false,
|
29
47
|
"inputs": [
|
30
48
|
{
|
31
49
|
"indexed": false,
|
32
|
-
"internalType": "
|
50
|
+
"internalType": "RoleId",
|
33
51
|
"name": "role",
|
34
|
-
"type": "
|
52
|
+
"type": "bytes8"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"indexed": false,
|
56
|
+
"internalType": "string",
|
57
|
+
"name": "roleName",
|
58
|
+
"type": "string"
|
59
|
+
}
|
60
|
+
],
|
61
|
+
"name": "LogAccessRoleCreated",
|
62
|
+
"type": "event"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"anonymous": false,
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"indexed": false,
|
69
|
+
"internalType": "RoleId",
|
70
|
+
"name": "role",
|
71
|
+
"type": "bytes8"
|
35
72
|
},
|
36
73
|
{
|
37
74
|
"indexed": false,
|
@@ -54,181 +91,226 @@
|
|
54
91
|
"inputs": [
|
55
92
|
{
|
56
93
|
"indexed": false,
|
57
|
-
"internalType": "
|
58
|
-
"name": "
|
59
|
-
"type": "
|
94
|
+
"internalType": "RoleId",
|
95
|
+
"name": "role",
|
96
|
+
"type": "bytes8"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"indexed": false,
|
100
|
+
"internalType": "bool",
|
101
|
+
"name": "active",
|
102
|
+
"type": "bool"
|
103
|
+
}
|
104
|
+
],
|
105
|
+
"name": "LogAccessRoleStateSet",
|
106
|
+
"type": "event"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"anonymous": false,
|
110
|
+
"inputs": [
|
111
|
+
{
|
112
|
+
"indexed": false,
|
113
|
+
"internalType": "Version",
|
114
|
+
"name": "version",
|
115
|
+
"type": "uint24"
|
60
116
|
},
|
61
117
|
{
|
62
118
|
"indexed": false,
|
63
119
|
"internalType": "address",
|
64
|
-
"name": "
|
120
|
+
"name": "implementation",
|
65
121
|
"type": "address"
|
66
122
|
},
|
67
123
|
{
|
68
124
|
"indexed": false,
|
69
|
-
"internalType": "
|
70
|
-
"name": "
|
71
|
-
"type": "
|
125
|
+
"internalType": "address",
|
126
|
+
"name": "activatedBy",
|
127
|
+
"type": "address"
|
72
128
|
}
|
73
129
|
],
|
74
|
-
"name": "
|
130
|
+
"name": "LogVersionableActivated",
|
75
131
|
"type": "event"
|
76
132
|
},
|
77
133
|
{
|
78
|
-
"inputs": [
|
79
|
-
"name": "INITIAL_CAPITAL",
|
80
|
-
"outputs": [
|
134
|
+
"inputs": [
|
81
135
|
{
|
82
|
-
"internalType": "
|
83
|
-
"name": "",
|
84
|
-
"type": "
|
85
|
-
}
|
86
|
-
],
|
87
|
-
"stateMutability": "view",
|
88
|
-
"type": "function"
|
89
|
-
},
|
90
|
-
{
|
91
|
-
"inputs": [],
|
92
|
-
"name": "ORACLE_OWNER",
|
93
|
-
"outputs": [
|
136
|
+
"internalType": "address",
|
137
|
+
"name": "implementation",
|
138
|
+
"type": "address"
|
139
|
+
},
|
94
140
|
{
|
95
|
-
"internalType": "
|
96
|
-
"name": "",
|
97
|
-
"type": "
|
98
|
-
}
|
99
|
-
],
|
100
|
-
"stateMutability": "view",
|
101
|
-
"type": "function"
|
102
|
-
},
|
103
|
-
{
|
104
|
-
"inputs": [],
|
105
|
-
"name": "ORACLE_OWNER_ROLE",
|
106
|
-
"outputs": [
|
141
|
+
"internalType": "address",
|
142
|
+
"name": "activatedBy",
|
143
|
+
"type": "address"
|
144
|
+
},
|
107
145
|
{
|
108
|
-
"internalType": "
|
109
|
-
"name": "
|
110
|
-
"type": "
|
146
|
+
"internalType": "bytes",
|
147
|
+
"name": "activatinData",
|
148
|
+
"type": "bytes"
|
111
149
|
}
|
112
150
|
],
|
113
|
-
"
|
151
|
+
"name": "activate",
|
152
|
+
"outputs": [],
|
153
|
+
"stateMutability": "nonpayable",
|
114
154
|
"type": "function"
|
115
155
|
},
|
116
156
|
{
|
117
|
-
"inputs": [
|
118
|
-
"name": "POOL_OWNER",
|
119
|
-
"outputs": [
|
157
|
+
"inputs": [
|
120
158
|
{
|
121
|
-
"internalType": "
|
159
|
+
"internalType": "NftId",
|
160
|
+
"name": "bundleNftId",
|
161
|
+
"type": "uint96"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"internalType": "NftId",
|
165
|
+
"name": "poolNftId",
|
166
|
+
"type": "uint96"
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"internalType": "uint256",
|
122
170
|
"name": "",
|
123
|
-
"type": "
|
171
|
+
"type": "uint256"
|
124
172
|
}
|
125
173
|
],
|
126
|
-
"
|
174
|
+
"name": "addBundleToPool",
|
175
|
+
"outputs": [],
|
176
|
+
"stateMutability": "nonpayable",
|
127
177
|
"type": "function"
|
128
178
|
},
|
129
179
|
{
|
130
|
-
"inputs": [
|
131
|
-
"name": "POOL_OWNER_ROLE",
|
132
|
-
"outputs": [
|
180
|
+
"inputs": [
|
133
181
|
{
|
134
|
-
"internalType": "
|
135
|
-
"name": "
|
136
|
-
"type": "
|
137
|
-
}
|
138
|
-
],
|
139
|
-
"stateMutability": "view",
|
140
|
-
"type": "function"
|
141
|
-
},
|
142
|
-
{
|
143
|
-
"inputs": [],
|
144
|
-
"name": "PRODUCT_OWNER",
|
145
|
-
"outputs": [
|
182
|
+
"internalType": "uint256",
|
183
|
+
"name": "amount",
|
184
|
+
"type": "uint256"
|
185
|
+
},
|
146
186
|
{
|
147
|
-
"
|
148
|
-
|
149
|
-
|
187
|
+
"components": [
|
188
|
+
{
|
189
|
+
"internalType": "UFixed",
|
190
|
+
"name": "fractionalFee",
|
191
|
+
"type": "uint256"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"internalType": "uint256",
|
195
|
+
"name": "fixedFee",
|
196
|
+
"type": "uint256"
|
197
|
+
}
|
198
|
+
],
|
199
|
+
"internalType": "struct Fee",
|
200
|
+
"name": "fee",
|
201
|
+
"type": "tuple"
|
150
202
|
}
|
151
203
|
],
|
152
|
-
"
|
153
|
-
"type": "function"
|
154
|
-
},
|
155
|
-
{
|
156
|
-
"inputs": [],
|
157
|
-
"name": "PRODUCT_OWNER_ROLE",
|
204
|
+
"name": "calculateFeeAmount",
|
158
205
|
"outputs": [
|
159
206
|
{
|
160
|
-
"internalType": "
|
161
|
-
"name": "
|
162
|
-
"type": "
|
163
|
-
}
|
164
|
-
],
|
165
|
-
"stateMutability": "view",
|
166
|
-
"type": "function"
|
167
|
-
},
|
168
|
-
{
|
169
|
-
"inputs": [
|
207
|
+
"internalType": "uint256",
|
208
|
+
"name": "feeAmount",
|
209
|
+
"type": "uint256"
|
210
|
+
},
|
170
211
|
{
|
171
212
|
"internalType": "uint256",
|
172
|
-
"name": "
|
213
|
+
"name": "netAmount",
|
173
214
|
"type": "uint256"
|
174
215
|
}
|
175
216
|
],
|
176
|
-
"
|
177
|
-
"outputs": [],
|
178
|
-
"stateMutability": "nonpayable",
|
217
|
+
"stateMutability": "pure",
|
179
218
|
"type": "function"
|
180
219
|
},
|
181
220
|
{
|
182
|
-
"inputs": [
|
183
|
-
|
184
|
-
|
221
|
+
"inputs": [
|
222
|
+
{
|
223
|
+
"internalType": "NftId",
|
224
|
+
"name": "bundleNftId",
|
225
|
+
"type": "uint96"
|
226
|
+
},
|
227
|
+
{
|
228
|
+
"internalType": "NftId",
|
229
|
+
"name": "policyNftId",
|
230
|
+
"type": "uint96"
|
231
|
+
},
|
185
232
|
{
|
186
233
|
"internalType": "uint256",
|
187
|
-
"name": "
|
234
|
+
"name": "collateralAmount",
|
188
235
|
"type": "uint256"
|
189
236
|
}
|
190
237
|
],
|
191
|
-
"
|
238
|
+
"name": "collateralizePolicy",
|
239
|
+
"outputs": [],
|
240
|
+
"stateMutability": "nonpayable",
|
192
241
|
"type": "function"
|
193
242
|
},
|
194
243
|
{
|
195
244
|
"inputs": [
|
245
|
+
{
|
246
|
+
"internalType": "NftId",
|
247
|
+
"name": "bundleNftId",
|
248
|
+
"type": "uint96"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"internalType": "NftId",
|
252
|
+
"name": "poolNftId",
|
253
|
+
"type": "uint96"
|
254
|
+
},
|
196
255
|
{
|
197
256
|
"components": [
|
198
257
|
{
|
199
|
-
"internalType": "
|
200
|
-
"name": "
|
201
|
-
"type": "uint256"
|
202
|
-
},
|
203
|
-
{
|
204
|
-
"internalType": "uint256",
|
205
|
-
"name": "parentNftId",
|
258
|
+
"internalType": "UFixed",
|
259
|
+
"name": "fractionalFee",
|
206
260
|
"type": "uint256"
|
207
261
|
},
|
208
262
|
{
|
209
263
|
"internalType": "uint256",
|
210
|
-
"name": "
|
264
|
+
"name": "fixedFee",
|
211
265
|
"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
266
|
}
|
223
267
|
],
|
224
|
-
"internalType": "struct
|
225
|
-
"name": "
|
268
|
+
"internalType": "struct Fee",
|
269
|
+
"name": "fee",
|
226
270
|
"type": "tuple"
|
227
271
|
},
|
228
272
|
{
|
229
|
-
"internalType": "
|
230
|
-
"name": "
|
231
|
-
"type": "
|
273
|
+
"internalType": "uint256",
|
274
|
+
"name": "amount",
|
275
|
+
"type": "uint256"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"internalType": "uint256",
|
279
|
+
"name": "lifetime",
|
280
|
+
"type": "uint256"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"internalType": "bytes",
|
284
|
+
"name": "filter",
|
285
|
+
"type": "bytes"
|
286
|
+
}
|
287
|
+
],
|
288
|
+
"name": "createBundleInfo",
|
289
|
+
"outputs": [],
|
290
|
+
"stateMutability": "nonpayable",
|
291
|
+
"type": "function"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"inputs": [
|
295
|
+
{
|
296
|
+
"internalType": "NftId",
|
297
|
+
"name": "policyNftId",
|
298
|
+
"type": "uint96"
|
299
|
+
},
|
300
|
+
{
|
301
|
+
"internalType": "NftId",
|
302
|
+
"name": "productNftId",
|
303
|
+
"type": "uint96"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"internalType": "ReferralId",
|
307
|
+
"name": "referralId",
|
308
|
+
"type": "bytes8"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"internalType": "RiskId",
|
312
|
+
"name": "riskId",
|
313
|
+
"type": "bytes8"
|
232
314
|
},
|
233
315
|
{
|
234
316
|
"internalType": "uint256",
|
@@ -246,41 +328,35 @@
|
|
246
328
|
"type": "uint256"
|
247
329
|
},
|
248
330
|
{
|
249
|
-
"internalType": "
|
331
|
+
"internalType": "NftId",
|
250
332
|
"name": "bundleNftId",
|
251
|
-
"type": "
|
252
|
-
}
|
253
|
-
],
|
254
|
-
"name": "createApplication",
|
255
|
-
"outputs": [
|
256
|
-
{
|
257
|
-
"internalType": "uint256",
|
258
|
-
"name": "nftId",
|
259
|
-
"type": "uint256"
|
333
|
+
"type": "uint96"
|
260
334
|
}
|
261
335
|
],
|
336
|
+
"name": "createPolicyInfo",
|
337
|
+
"outputs": [],
|
262
338
|
"stateMutability": "nonpayable",
|
263
339
|
"type": "function"
|
264
340
|
},
|
265
341
|
{
|
266
342
|
"inputs": [
|
267
343
|
{
|
268
|
-
"internalType": "
|
269
|
-
"name": "
|
270
|
-
"type": "
|
344
|
+
"internalType": "RiskId",
|
345
|
+
"name": "riskId",
|
346
|
+
"type": "bytes8"
|
271
347
|
},
|
272
348
|
{
|
273
|
-
"internalType": "
|
274
|
-
"name": "
|
275
|
-
"type": "
|
349
|
+
"internalType": "NftId",
|
350
|
+
"name": "productNftId",
|
351
|
+
"type": "uint96"
|
276
352
|
},
|
277
353
|
{
|
278
|
-
"internalType": "
|
279
|
-
"name": "
|
280
|
-
"type": "
|
354
|
+
"internalType": "bytes",
|
355
|
+
"name": "data",
|
356
|
+
"type": "bytes"
|
281
357
|
}
|
282
358
|
],
|
283
|
-
"name": "
|
359
|
+
"name": "createRisk",
|
284
360
|
"outputs": [],
|
285
361
|
"stateMutability": "nonpayable",
|
286
362
|
"type": "function"
|
@@ -296,9 +372,9 @@
|
|
296
372
|
"name": "createRole",
|
297
373
|
"outputs": [
|
298
374
|
{
|
299
|
-
"internalType": "
|
375
|
+
"internalType": "RoleId",
|
300
376
|
"name": "role",
|
301
|
-
"type": "
|
377
|
+
"type": "bytes8"
|
302
378
|
}
|
303
379
|
],
|
304
380
|
"stateMutability": "nonpayable",
|
@@ -307,61 +383,126 @@
|
|
307
383
|
{
|
308
384
|
"inputs": [
|
309
385
|
{
|
310
|
-
"internalType": "
|
311
|
-
"name": "
|
312
|
-
"type": "
|
386
|
+
"internalType": "NftId",
|
387
|
+
"name": "poolNftId",
|
388
|
+
"type": "uint96"
|
313
389
|
}
|
314
390
|
],
|
315
|
-
"name": "
|
316
|
-
"outputs": [
|
317
|
-
|
391
|
+
"name": "getBundleCount",
|
392
|
+
"outputs": [
|
393
|
+
{
|
394
|
+
"internalType": "uint256",
|
395
|
+
"name": "bundleCount",
|
396
|
+
"type": "uint256"
|
397
|
+
}
|
398
|
+
],
|
399
|
+
"stateMutability": "view",
|
318
400
|
"type": "function"
|
319
401
|
},
|
320
402
|
{
|
321
403
|
"inputs": [
|
322
404
|
{
|
323
|
-
"internalType": "
|
324
|
-
"name": "
|
325
|
-
"type": "
|
405
|
+
"internalType": "NftId",
|
406
|
+
"name": "bundleNftId",
|
407
|
+
"type": "uint96"
|
326
408
|
}
|
327
409
|
],
|
328
|
-
"name": "
|
329
|
-
"outputs": [
|
330
|
-
|
410
|
+
"name": "getBundleInfo",
|
411
|
+
"outputs": [
|
412
|
+
{
|
413
|
+
"components": [
|
414
|
+
{
|
415
|
+
"internalType": "NftId",
|
416
|
+
"name": "poolNftId",
|
417
|
+
"type": "uint96"
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"components": [
|
421
|
+
{
|
422
|
+
"internalType": "UFixed",
|
423
|
+
"name": "fractionalFee",
|
424
|
+
"type": "uint256"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"internalType": "uint256",
|
428
|
+
"name": "fixedFee",
|
429
|
+
"type": "uint256"
|
430
|
+
}
|
431
|
+
],
|
432
|
+
"internalType": "struct Fee",
|
433
|
+
"name": "fee",
|
434
|
+
"type": "tuple"
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"internalType": "bytes",
|
438
|
+
"name": "filter",
|
439
|
+
"type": "bytes"
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"internalType": "uint256",
|
443
|
+
"name": "capitalAmount",
|
444
|
+
"type": "uint256"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"internalType": "uint256",
|
448
|
+
"name": "lockedAmount",
|
449
|
+
"type": "uint256"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"internalType": "uint256",
|
453
|
+
"name": "balanceAmount",
|
454
|
+
"type": "uint256"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"internalType": "Timestamp",
|
458
|
+
"name": "expiredAt",
|
459
|
+
"type": "uint40"
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"internalType": "Timestamp",
|
463
|
+
"name": "closedAt",
|
464
|
+
"type": "uint40"
|
465
|
+
}
|
466
|
+
],
|
467
|
+
"internalType": "struct IBundle.BundleInfo",
|
468
|
+
"name": "bundleInfo",
|
469
|
+
"type": "tuple"
|
470
|
+
}
|
471
|
+
],
|
472
|
+
"stateMutability": "view",
|
331
473
|
"type": "function"
|
332
474
|
},
|
333
475
|
{
|
334
476
|
"inputs": [
|
477
|
+
{
|
478
|
+
"internalType": "NftId",
|
479
|
+
"name": "poolNftId",
|
480
|
+
"type": "uint96"
|
481
|
+
},
|
335
482
|
{
|
336
483
|
"internalType": "uint256",
|
337
|
-
"name": "
|
484
|
+
"name": "index",
|
338
485
|
"type": "uint256"
|
339
486
|
}
|
340
487
|
],
|
341
|
-
"name": "
|
488
|
+
"name": "getBundleNftId",
|
342
489
|
"outputs": [
|
343
490
|
{
|
344
|
-
"internalType": "
|
345
|
-
"name": "
|
346
|
-
"type": "
|
491
|
+
"internalType": "NftId",
|
492
|
+
"name": "bundleNftId",
|
493
|
+
"type": "uint96"
|
347
494
|
}
|
348
495
|
],
|
349
496
|
"stateMutability": "view",
|
350
497
|
"type": "function"
|
351
498
|
},
|
352
499
|
{
|
353
|
-
"inputs": [
|
354
|
-
|
355
|
-
"internalType": "address",
|
356
|
-
"name": "componentAddress",
|
357
|
-
"type": "address"
|
358
|
-
}
|
359
|
-
],
|
360
|
-
"name": "getComponentId",
|
500
|
+
"inputs": [],
|
501
|
+
"name": "getComponentCount",
|
361
502
|
"outputs": [
|
362
503
|
{
|
363
504
|
"internalType": "uint256",
|
364
|
-
"name": "
|
505
|
+
"name": "numberOfCompnents",
|
365
506
|
"type": "uint256"
|
366
507
|
}
|
367
508
|
],
|
@@ -379,9 +520,22 @@
|
|
379
520
|
"name": "getComponentId",
|
380
521
|
"outputs": [
|
381
522
|
{
|
382
|
-
"internalType": "
|
383
|
-
"name": "
|
384
|
-
"type": "
|
523
|
+
"internalType": "NftId",
|
524
|
+
"name": "componentNftId",
|
525
|
+
"type": "uint96"
|
526
|
+
}
|
527
|
+
],
|
528
|
+
"stateMutability": "view",
|
529
|
+
"type": "function"
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"inputs": [],
|
533
|
+
"name": "getComponentOwnerService",
|
534
|
+
"outputs": [
|
535
|
+
{
|
536
|
+
"internalType": "contract IComponentOwnerService",
|
537
|
+
"name": "service",
|
538
|
+
"type": "address"
|
385
539
|
}
|
386
540
|
],
|
387
541
|
"stateMutability": "view",
|
@@ -390,29 +544,17 @@
|
|
390
544
|
{
|
391
545
|
"inputs": [
|
392
546
|
{
|
393
|
-
"internalType": "
|
394
|
-
"name": "
|
395
|
-
"type": "
|
547
|
+
"internalType": "NftId",
|
548
|
+
"name": "nftId",
|
549
|
+
"type": "uint96"
|
396
550
|
}
|
397
551
|
],
|
398
|
-
"name": "
|
552
|
+
"name": "getComponentToken",
|
399
553
|
"outputs": [
|
400
554
|
{
|
401
|
-
"
|
402
|
-
|
403
|
-
|
404
|
-
"name": "nftId",
|
405
|
-
"type": "uint256"
|
406
|
-
},
|
407
|
-
{
|
408
|
-
"internalType": "enum IComponent.CState",
|
409
|
-
"name": "state",
|
410
|
-
"type": "uint8"
|
411
|
-
}
|
412
|
-
],
|
413
|
-
"internalType": "struct IComponent.ComponentInfo",
|
414
|
-
"name": "",
|
415
|
-
"type": "tuple"
|
555
|
+
"internalType": "contract IERC20Metadata",
|
556
|
+
"name": "token",
|
557
|
+
"type": "address"
|
416
558
|
}
|
417
559
|
],
|
418
560
|
"stateMutability": "view",
|
@@ -421,16 +563,16 @@
|
|
421
563
|
{
|
422
564
|
"inputs": [
|
423
565
|
{
|
424
|
-
"internalType": "
|
425
|
-
"name": "
|
426
|
-
"type": "
|
566
|
+
"internalType": "NftId",
|
567
|
+
"name": "nftId",
|
568
|
+
"type": "uint96"
|
427
569
|
}
|
428
570
|
],
|
429
|
-
"name": "
|
571
|
+
"name": "getComponentWallet",
|
430
572
|
"outputs": [
|
431
573
|
{
|
432
574
|
"internalType": "address",
|
433
|
-
"name": "
|
575
|
+
"name": "wallet",
|
434
576
|
"type": "address"
|
435
577
|
}
|
436
578
|
],
|
@@ -439,25 +581,74 @@
|
|
439
581
|
},
|
440
582
|
{
|
441
583
|
"inputs": [],
|
442
|
-
"name": "
|
584
|
+
"name": "getData",
|
443
585
|
"outputs": [
|
444
586
|
{
|
445
|
-
"internalType": "
|
446
|
-
"name": "",
|
587
|
+
"internalType": "bytes",
|
588
|
+
"name": "data",
|
589
|
+
"type": "bytes"
|
590
|
+
}
|
591
|
+
],
|
592
|
+
"stateMutability": "view",
|
593
|
+
"type": "function"
|
594
|
+
},
|
595
|
+
{
|
596
|
+
"inputs": [],
|
597
|
+
"name": "getDistributionService",
|
598
|
+
"outputs": [
|
599
|
+
{
|
600
|
+
"internalType": "contract IDistributionService",
|
601
|
+
"name": "service",
|
447
602
|
"type": "address"
|
448
603
|
}
|
449
604
|
],
|
450
605
|
"stateMutability": "view",
|
451
606
|
"type": "function"
|
452
607
|
},
|
608
|
+
{
|
609
|
+
"inputs": [
|
610
|
+
{
|
611
|
+
"internalType": "UFixed",
|
612
|
+
"name": "fractionalFee",
|
613
|
+
"type": "uint256"
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"internalType": "uint256",
|
617
|
+
"name": "fixedFee",
|
618
|
+
"type": "uint256"
|
619
|
+
}
|
620
|
+
],
|
621
|
+
"name": "getFee",
|
622
|
+
"outputs": [
|
623
|
+
{
|
624
|
+
"components": [
|
625
|
+
{
|
626
|
+
"internalType": "UFixed",
|
627
|
+
"name": "fractionalFee",
|
628
|
+
"type": "uint256"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"internalType": "uint256",
|
632
|
+
"name": "fixedFee",
|
633
|
+
"type": "uint256"
|
634
|
+
}
|
635
|
+
],
|
636
|
+
"internalType": "struct Fee",
|
637
|
+
"name": "fee",
|
638
|
+
"type": "tuple"
|
639
|
+
}
|
640
|
+
],
|
641
|
+
"stateMutability": "pure",
|
642
|
+
"type": "function"
|
643
|
+
},
|
453
644
|
{
|
454
645
|
"inputs": [],
|
455
|
-
"name": "
|
646
|
+
"name": "getInitializedVersion",
|
456
647
|
"outputs": [
|
457
648
|
{
|
458
|
-
"internalType": "
|
459
|
-
"name": "
|
460
|
-
"type": "
|
649
|
+
"internalType": "uint64",
|
650
|
+
"name": "",
|
651
|
+
"type": "uint64"
|
461
652
|
}
|
462
653
|
],
|
463
654
|
"stateMutability": "view",
|
@@ -465,11 +656,11 @@
|
|
465
656
|
},
|
466
657
|
{
|
467
658
|
"inputs": [],
|
468
|
-
"name": "
|
659
|
+
"name": "getKeyValueStore",
|
469
660
|
"outputs": [
|
470
661
|
{
|
471
|
-
"internalType": "
|
472
|
-
"name": "
|
662
|
+
"internalType": "contract IKeyValueStore",
|
663
|
+
"name": "keyValueStore",
|
473
664
|
"type": "address"
|
474
665
|
}
|
475
666
|
],
|
@@ -481,9 +672,9 @@
|
|
481
672
|
"name": "getNftId",
|
482
673
|
"outputs": [
|
483
674
|
{
|
484
|
-
"internalType": "
|
485
|
-
"name": "
|
486
|
-
"type": "
|
675
|
+
"internalType": "NftId",
|
676
|
+
"name": "nftId",
|
677
|
+
"type": "uint96"
|
487
678
|
}
|
488
679
|
],
|
489
680
|
"stateMutability": "view",
|
@@ -507,9 +698,9 @@
|
|
507
698
|
"name": "getParentNftId",
|
508
699
|
"outputs": [
|
509
700
|
{
|
510
|
-
"internalType": "
|
511
|
-
"name": "",
|
512
|
-
"type": "
|
701
|
+
"internalType": "NftId",
|
702
|
+
"name": "nftId",
|
703
|
+
"type": "uint96"
|
513
704
|
}
|
514
705
|
],
|
515
706
|
"stateMutability": "view",
|
@@ -518,9 +709,9 @@
|
|
518
709
|
{
|
519
710
|
"inputs": [
|
520
711
|
{
|
521
|
-
"internalType": "
|
712
|
+
"internalType": "NftId",
|
522
713
|
"name": "nftId",
|
523
|
-
"type": "
|
714
|
+
"type": "uint96"
|
524
715
|
}
|
525
716
|
],
|
526
717
|
"name": "getPolicyInfo",
|
@@ -528,14 +719,29 @@
|
|
528
719
|
{
|
529
720
|
"components": [
|
530
721
|
{
|
531
|
-
"internalType": "
|
532
|
-
"name": "
|
533
|
-
"type": "
|
722
|
+
"internalType": "NftId",
|
723
|
+
"name": "productNftId",
|
724
|
+
"type": "uint96"
|
725
|
+
},
|
726
|
+
{
|
727
|
+
"internalType": "NftId",
|
728
|
+
"name": "bundleNftId",
|
729
|
+
"type": "uint96"
|
730
|
+
},
|
731
|
+
{
|
732
|
+
"internalType": "ReferralId",
|
733
|
+
"name": "referralId",
|
734
|
+
"type": "bytes8"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"internalType": "address",
|
738
|
+
"name": "beneficiary",
|
739
|
+
"type": "address"
|
534
740
|
},
|
535
741
|
{
|
536
|
-
"internalType": "
|
537
|
-
"name": "
|
538
|
-
"type": "
|
742
|
+
"internalType": "RiskId",
|
743
|
+
"name": "riskId",
|
744
|
+
"type": "bytes8"
|
539
745
|
},
|
540
746
|
{
|
541
747
|
"internalType": "uint256",
|
@@ -549,28 +755,38 @@
|
|
549
755
|
},
|
550
756
|
{
|
551
757
|
"internalType": "uint256",
|
552
|
-
"name": "
|
758
|
+
"name": "premiumPaidAmount",
|
553
759
|
"type": "uint256"
|
554
760
|
},
|
555
761
|
{
|
556
762
|
"internalType": "uint256",
|
557
|
-
"name": "
|
763
|
+
"name": "lifetime",
|
558
764
|
"type": "uint256"
|
559
765
|
},
|
560
766
|
{
|
561
|
-
"internalType": "
|
767
|
+
"internalType": "bytes",
|
768
|
+
"name": "applicationData",
|
769
|
+
"type": "bytes"
|
770
|
+
},
|
771
|
+
{
|
772
|
+
"internalType": "bytes",
|
773
|
+
"name": "policyData",
|
774
|
+
"type": "bytes"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"internalType": "Timestamp",
|
562
778
|
"name": "activatedAt",
|
563
|
-
"type": "
|
779
|
+
"type": "uint40"
|
564
780
|
},
|
565
781
|
{
|
566
|
-
"internalType": "
|
782
|
+
"internalType": "Timestamp",
|
567
783
|
"name": "expiredAt",
|
568
|
-
"type": "
|
784
|
+
"type": "uint40"
|
569
785
|
},
|
570
786
|
{
|
571
|
-
"internalType": "
|
787
|
+
"internalType": "Timestamp",
|
572
788
|
"name": "closedAt",
|
573
|
-
"type": "
|
789
|
+
"type": "uint40"
|
574
790
|
}
|
575
791
|
],
|
576
792
|
"internalType": "struct IPolicy.PolicyInfo",
|
@@ -584,9 +800,9 @@
|
|
584
800
|
{
|
585
801
|
"inputs": [
|
586
802
|
{
|
587
|
-
"internalType": "
|
803
|
+
"internalType": "NftId",
|
588
804
|
"name": "nftId",
|
589
|
-
"type": "
|
805
|
+
"type": "uint96"
|
590
806
|
}
|
591
807
|
],
|
592
808
|
"name": "getPoolInfo",
|
@@ -594,28 +810,13 @@
|
|
594
810
|
{
|
595
811
|
"components": [
|
596
812
|
{
|
597
|
-
"internalType": "
|
598
|
-
"name": "
|
599
|
-
"type": "
|
600
|
-
},
|
601
|
-
{
|
602
|
-
"internalType": "address",
|
603
|
-
"name": "wallet",
|
604
|
-
"type": "address"
|
605
|
-
},
|
606
|
-
{
|
607
|
-
"internalType": "address",
|
608
|
-
"name": "token",
|
609
|
-
"type": "address"
|
610
|
-
},
|
611
|
-
{
|
612
|
-
"internalType": "uint256",
|
613
|
-
"name": "capital",
|
614
|
-
"type": "uint256"
|
813
|
+
"internalType": "bool",
|
814
|
+
"name": "isVerifying",
|
815
|
+
"type": "bool"
|
615
816
|
},
|
616
817
|
{
|
617
|
-
"internalType": "
|
618
|
-
"name": "
|
818
|
+
"internalType": "UFixed",
|
819
|
+
"name": "collateralizationLevel",
|
619
820
|
"type": "uint256"
|
620
821
|
}
|
621
822
|
],
|
@@ -627,20 +828,33 @@
|
|
627
828
|
"stateMutability": "view",
|
628
829
|
"type": "function"
|
629
830
|
},
|
831
|
+
{
|
832
|
+
"inputs": [],
|
833
|
+
"name": "getPoolService",
|
834
|
+
"outputs": [
|
835
|
+
{
|
836
|
+
"internalType": "contract IPoolService",
|
837
|
+
"name": "service",
|
838
|
+
"type": "address"
|
839
|
+
}
|
840
|
+
],
|
841
|
+
"stateMutability": "view",
|
842
|
+
"type": "function"
|
843
|
+
},
|
630
844
|
{
|
631
845
|
"inputs": [
|
632
846
|
{
|
633
|
-
"internalType": "
|
634
|
-
"name": "
|
635
|
-
"type": "
|
847
|
+
"internalType": "NftId",
|
848
|
+
"name": "componentNftId",
|
849
|
+
"type": "uint96"
|
636
850
|
}
|
637
851
|
],
|
638
|
-
"name": "
|
852
|
+
"name": "getProductNftId",
|
639
853
|
"outputs": [
|
640
854
|
{
|
641
|
-
"internalType": "
|
642
|
-
"name": "
|
643
|
-
"type": "
|
855
|
+
"internalType": "NftId",
|
856
|
+
"name": "productNftId",
|
857
|
+
"type": "uint96"
|
644
858
|
}
|
645
859
|
],
|
646
860
|
"stateMutability": "view",
|
@@ -652,7 +866,7 @@
|
|
652
866
|
"outputs": [
|
653
867
|
{
|
654
868
|
"internalType": "contract IProductService",
|
655
|
-
"name": "",
|
869
|
+
"name": "service",
|
656
870
|
"type": "address"
|
657
871
|
}
|
658
872
|
],
|
@@ -672,6 +886,37 @@
|
|
672
886
|
"stateMutability": "view",
|
673
887
|
"type": "function"
|
674
888
|
},
|
889
|
+
{
|
890
|
+
"inputs": [
|
891
|
+
{
|
892
|
+
"internalType": "RiskId",
|
893
|
+
"name": "riskId",
|
894
|
+
"type": "bytes8"
|
895
|
+
}
|
896
|
+
],
|
897
|
+
"name": "getRiskInfo",
|
898
|
+
"outputs": [
|
899
|
+
{
|
900
|
+
"components": [
|
901
|
+
{
|
902
|
+
"internalType": "NftId",
|
903
|
+
"name": "productNftId",
|
904
|
+
"type": "uint96"
|
905
|
+
},
|
906
|
+
{
|
907
|
+
"internalType": "bytes",
|
908
|
+
"name": "data",
|
909
|
+
"type": "bytes"
|
910
|
+
}
|
911
|
+
],
|
912
|
+
"internalType": "struct IRisk.RiskInfo",
|
913
|
+
"name": "info",
|
914
|
+
"type": "tuple"
|
915
|
+
}
|
916
|
+
],
|
917
|
+
"stateMutability": "view",
|
918
|
+
"type": "function"
|
919
|
+
},
|
675
920
|
{
|
676
921
|
"inputs": [
|
677
922
|
{
|
@@ -683,9 +928,9 @@
|
|
683
928
|
"name": "getRole",
|
684
929
|
"outputs": [
|
685
930
|
{
|
686
|
-
"internalType": "
|
931
|
+
"internalType": "RoleId",
|
687
932
|
"name": "role",
|
688
|
-
"type": "
|
933
|
+
"type": "bytes8"
|
689
934
|
}
|
690
935
|
],
|
691
936
|
"stateMutability": "view",
|
@@ -712,12 +957,12 @@
|
|
712
957
|
"type": "string"
|
713
958
|
}
|
714
959
|
],
|
715
|
-
"name": "
|
960
|
+
"name": "getRoleId",
|
716
961
|
"outputs": [
|
717
962
|
{
|
718
|
-
"internalType": "
|
963
|
+
"internalType": "RoleId",
|
719
964
|
"name": "role",
|
720
|
-
"type": "
|
965
|
+
"type": "bytes8"
|
721
966
|
}
|
722
967
|
],
|
723
968
|
"stateMutability": "pure",
|
@@ -726,28 +971,9 @@
|
|
726
971
|
{
|
727
972
|
"inputs": [
|
728
973
|
{
|
729
|
-
"internalType": "
|
730
|
-
"name": "cType",
|
731
|
-
"type": "uint256"
|
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": [
|
747
|
-
{
|
748
|
-
"internalType": "bytes32",
|
974
|
+
"internalType": "RoleId",
|
749
975
|
"name": "role",
|
750
|
-
"type": "
|
976
|
+
"type": "bytes8"
|
751
977
|
}
|
752
978
|
],
|
753
979
|
"name": "getRoleInfo",
|
@@ -755,9 +981,9 @@
|
|
755
981
|
{
|
756
982
|
"components": [
|
757
983
|
{
|
758
|
-
"internalType": "
|
984
|
+
"internalType": "RoleId",
|
759
985
|
"name": "id",
|
760
|
-
"type": "
|
986
|
+
"type": "bytes8"
|
761
987
|
},
|
762
988
|
{
|
763
989
|
"internalType": "string",
|
@@ -781,9 +1007,9 @@
|
|
781
1007
|
{
|
782
1008
|
"inputs": [
|
783
1009
|
{
|
784
|
-
"internalType": "
|
1010
|
+
"internalType": "RoleId",
|
785
1011
|
"name": "role",
|
786
|
-
"type": "
|
1012
|
+
"type": "bytes8"
|
787
1013
|
},
|
788
1014
|
{
|
789
1015
|
"internalType": "uint256",
|
@@ -805,9 +1031,9 @@
|
|
805
1031
|
{
|
806
1032
|
"inputs": [
|
807
1033
|
{
|
808
|
-
"internalType": "
|
1034
|
+
"internalType": "RoleId",
|
809
1035
|
"name": "role",
|
810
|
-
"type": "
|
1036
|
+
"type": "bytes8"
|
811
1037
|
}
|
812
1038
|
],
|
813
1039
|
"name": "getRoleMemberCount",
|
@@ -822,13 +1048,19 @@
|
|
822
1048
|
"type": "function"
|
823
1049
|
},
|
824
1050
|
{
|
825
|
-
"inputs": [
|
826
|
-
|
1051
|
+
"inputs": [
|
1052
|
+
{
|
1053
|
+
"internalType": "Key32",
|
1054
|
+
"name": "key",
|
1055
|
+
"type": "bytes32"
|
1056
|
+
}
|
1057
|
+
],
|
1058
|
+
"name": "getState",
|
827
1059
|
"outputs": [
|
828
1060
|
{
|
829
|
-
"internalType": "
|
830
|
-
"name": "
|
831
|
-
"type": "
|
1061
|
+
"internalType": "StateId",
|
1062
|
+
"name": "state",
|
1063
|
+
"type": "uint8"
|
832
1064
|
}
|
833
1065
|
],
|
834
1066
|
"stateMutability": "view",
|
@@ -837,53 +1069,211 @@
|
|
837
1069
|
{
|
838
1070
|
"inputs": [
|
839
1071
|
{
|
840
|
-
"internalType": "
|
841
|
-
"name": "
|
842
|
-
"type": "
|
843
|
-
}
|
1072
|
+
"internalType": "NftId",
|
1073
|
+
"name": "componentNftId",
|
1074
|
+
"type": "uint96"
|
1075
|
+
}
|
1076
|
+
],
|
1077
|
+
"name": "getTokenHandler",
|
1078
|
+
"outputs": [
|
844
1079
|
{
|
845
|
-
"internalType": "
|
846
|
-
"name": "
|
1080
|
+
"internalType": "contract TokenHandler",
|
1081
|
+
"name": "tokenHandler",
|
847
1082
|
"type": "address"
|
848
1083
|
}
|
849
1084
|
],
|
850
|
-
"
|
851
|
-
"outputs": [],
|
852
|
-
"stateMutability": "nonpayable",
|
1085
|
+
"stateMutability": "view",
|
853
1086
|
"type": "function"
|
854
1087
|
},
|
855
1088
|
{
|
856
1089
|
"inputs": [
|
857
1090
|
{
|
858
|
-
"internalType": "
|
859
|
-
"name": "
|
860
|
-
"type": "
|
1091
|
+
"internalType": "NftId",
|
1092
|
+
"name": "productNftId",
|
1093
|
+
"type": "uint96"
|
1094
|
+
}
|
1095
|
+
],
|
1096
|
+
"name": "getTreasuryInfo",
|
1097
|
+
"outputs": [
|
1098
|
+
{
|
1099
|
+
"components": [
|
1100
|
+
{
|
1101
|
+
"internalType": "NftId",
|
1102
|
+
"name": "poolNftId",
|
1103
|
+
"type": "uint96"
|
1104
|
+
},
|
1105
|
+
{
|
1106
|
+
"internalType": "NftId",
|
1107
|
+
"name": "distributionNftId",
|
1108
|
+
"type": "uint96"
|
1109
|
+
},
|
1110
|
+
{
|
1111
|
+
"internalType": "contract IERC20Metadata",
|
1112
|
+
"name": "token",
|
1113
|
+
"type": "address"
|
1114
|
+
},
|
1115
|
+
{
|
1116
|
+
"components": [
|
1117
|
+
{
|
1118
|
+
"internalType": "UFixed",
|
1119
|
+
"name": "fractionalFee",
|
1120
|
+
"type": "uint256"
|
1121
|
+
},
|
1122
|
+
{
|
1123
|
+
"internalType": "uint256",
|
1124
|
+
"name": "fixedFee",
|
1125
|
+
"type": "uint256"
|
1126
|
+
}
|
1127
|
+
],
|
1128
|
+
"internalType": "struct Fee",
|
1129
|
+
"name": "productFee",
|
1130
|
+
"type": "tuple"
|
1131
|
+
},
|
1132
|
+
{
|
1133
|
+
"components": [
|
1134
|
+
{
|
1135
|
+
"internalType": "UFixed",
|
1136
|
+
"name": "fractionalFee",
|
1137
|
+
"type": "uint256"
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
"internalType": "uint256",
|
1141
|
+
"name": "fixedFee",
|
1142
|
+
"type": "uint256"
|
1143
|
+
}
|
1144
|
+
],
|
1145
|
+
"internalType": "struct Fee",
|
1146
|
+
"name": "processingFee",
|
1147
|
+
"type": "tuple"
|
1148
|
+
},
|
1149
|
+
{
|
1150
|
+
"components": [
|
1151
|
+
{
|
1152
|
+
"internalType": "UFixed",
|
1153
|
+
"name": "fractionalFee",
|
1154
|
+
"type": "uint256"
|
1155
|
+
},
|
1156
|
+
{
|
1157
|
+
"internalType": "uint256",
|
1158
|
+
"name": "fixedFee",
|
1159
|
+
"type": "uint256"
|
1160
|
+
}
|
1161
|
+
],
|
1162
|
+
"internalType": "struct Fee",
|
1163
|
+
"name": "poolFee",
|
1164
|
+
"type": "tuple"
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
"components": [
|
1168
|
+
{
|
1169
|
+
"internalType": "UFixed",
|
1170
|
+
"name": "fractionalFee",
|
1171
|
+
"type": "uint256"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"internalType": "uint256",
|
1175
|
+
"name": "fixedFee",
|
1176
|
+
"type": "uint256"
|
1177
|
+
}
|
1178
|
+
],
|
1179
|
+
"internalType": "struct Fee",
|
1180
|
+
"name": "stakingFee",
|
1181
|
+
"type": "tuple"
|
1182
|
+
},
|
1183
|
+
{
|
1184
|
+
"components": [
|
1185
|
+
{
|
1186
|
+
"internalType": "UFixed",
|
1187
|
+
"name": "fractionalFee",
|
1188
|
+
"type": "uint256"
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"internalType": "uint256",
|
1192
|
+
"name": "fixedFee",
|
1193
|
+
"type": "uint256"
|
1194
|
+
}
|
1195
|
+
],
|
1196
|
+
"internalType": "struct Fee",
|
1197
|
+
"name": "performanceFee",
|
1198
|
+
"type": "tuple"
|
1199
|
+
},
|
1200
|
+
{
|
1201
|
+
"components": [
|
1202
|
+
{
|
1203
|
+
"internalType": "UFixed",
|
1204
|
+
"name": "fractionalFee",
|
1205
|
+
"type": "uint256"
|
1206
|
+
},
|
1207
|
+
{
|
1208
|
+
"internalType": "uint256",
|
1209
|
+
"name": "fixedFee",
|
1210
|
+
"type": "uint256"
|
1211
|
+
}
|
1212
|
+
],
|
1213
|
+
"internalType": "struct Fee",
|
1214
|
+
"name": "distributionFee",
|
1215
|
+
"type": "tuple"
|
1216
|
+
}
|
1217
|
+
],
|
1218
|
+
"internalType": "struct ITreasury.TreasuryInfo",
|
1219
|
+
"name": "info",
|
1220
|
+
"type": "tuple"
|
1221
|
+
}
|
1222
|
+
],
|
1223
|
+
"stateMutability": "view",
|
1224
|
+
"type": "function"
|
1225
|
+
},
|
1226
|
+
{
|
1227
|
+
"inputs": [],
|
1228
|
+
"name": "getType",
|
1229
|
+
"outputs": [
|
1230
|
+
{
|
1231
|
+
"internalType": "ObjectType",
|
1232
|
+
"name": "objectType",
|
1233
|
+
"type": "uint8"
|
1234
|
+
}
|
1235
|
+
],
|
1236
|
+
"stateMutability": "pure",
|
1237
|
+
"type": "function"
|
1238
|
+
},
|
1239
|
+
{
|
1240
|
+
"inputs": [
|
1241
|
+
{
|
1242
|
+
"internalType": "uint256",
|
1243
|
+
"name": "a",
|
1244
|
+
"type": "uint256"
|
861
1245
|
},
|
862
1246
|
{
|
863
|
-
"internalType": "
|
864
|
-
"name": "
|
865
|
-
"type": "
|
1247
|
+
"internalType": "int8",
|
1248
|
+
"name": "exp",
|
1249
|
+
"type": "int8"
|
866
1250
|
}
|
867
1251
|
],
|
868
|
-
"name": "
|
1252
|
+
"name": "getUFixed",
|
869
1253
|
"outputs": [
|
870
1254
|
{
|
871
|
-
"internalType": "
|
1255
|
+
"internalType": "UFixed",
|
872
1256
|
"name": "",
|
873
|
-
"type": "
|
1257
|
+
"type": "uint256"
|
874
1258
|
}
|
875
1259
|
],
|
876
|
-
"stateMutability": "
|
1260
|
+
"stateMutability": "pure",
|
877
1261
|
"type": "function"
|
878
1262
|
},
|
879
1263
|
{
|
880
|
-
"inputs": [
|
881
|
-
|
1264
|
+
"inputs": [
|
1265
|
+
{
|
1266
|
+
"internalType": "uint256",
|
1267
|
+
"name": "a",
|
1268
|
+
"type": "uint256"
|
1269
|
+
}
|
1270
|
+
],
|
1271
|
+
"name": "getUFixed",
|
882
1272
|
"outputs": [
|
883
1273
|
{
|
884
|
-
"internalType": "
|
1274
|
+
"internalType": "UFixed",
|
885
1275
|
"name": "",
|
886
|
-
"type": "
|
1276
|
+
"type": "uint256"
|
887
1277
|
}
|
888
1278
|
],
|
889
1279
|
"stateMutability": "pure",
|
@@ -891,12 +1281,31 @@
|
|
891
1281
|
},
|
892
1282
|
{
|
893
1283
|
"inputs": [],
|
894
|
-
"name": "
|
1284
|
+
"name": "getVersion",
|
895
1285
|
"outputs": [
|
896
1286
|
{
|
897
|
-
"internalType": "
|
1287
|
+
"internalType": "Version",
|
898
1288
|
"name": "",
|
899
|
-
"type": "
|
1289
|
+
"type": "uint24"
|
1290
|
+
}
|
1291
|
+
],
|
1292
|
+
"stateMutability": "pure",
|
1293
|
+
"type": "function"
|
1294
|
+
},
|
1295
|
+
{
|
1296
|
+
"inputs": [
|
1297
|
+
{
|
1298
|
+
"internalType": "uint256",
|
1299
|
+
"name": "idx",
|
1300
|
+
"type": "uint256"
|
1301
|
+
}
|
1302
|
+
],
|
1303
|
+
"name": "getVersion",
|
1304
|
+
"outputs": [
|
1305
|
+
{
|
1306
|
+
"internalType": "Version",
|
1307
|
+
"name": "",
|
1308
|
+
"type": "uint24"
|
900
1309
|
}
|
901
1310
|
],
|
902
1311
|
"stateMutability": "view",
|
@@ -904,42 +1313,112 @@
|
|
904
1313
|
},
|
905
1314
|
{
|
906
1315
|
"inputs": [],
|
907
|
-
"name": "
|
1316
|
+
"name": "getVersionCount",
|
908
1317
|
"outputs": [
|
909
1318
|
{
|
910
1319
|
"internalType": "uint256",
|
911
|
-
"name": "
|
1320
|
+
"name": "",
|
912
1321
|
"type": "uint256"
|
913
1322
|
}
|
914
1323
|
],
|
915
|
-
"stateMutability": "
|
1324
|
+
"stateMutability": "view",
|
916
1325
|
"type": "function"
|
917
1326
|
},
|
918
1327
|
{
|
919
1328
|
"inputs": [
|
920
1329
|
{
|
921
|
-
"internalType": "
|
922
|
-
"name": "
|
923
|
-
"type": "
|
1330
|
+
"internalType": "Version",
|
1331
|
+
"name": "_version",
|
1332
|
+
"type": "uint24"
|
924
1333
|
}
|
925
1334
|
],
|
926
|
-
"name": "
|
1335
|
+
"name": "getVersionInfo",
|
927
1336
|
"outputs": [
|
928
1337
|
{
|
929
|
-
"
|
930
|
-
|
931
|
-
|
1338
|
+
"components": [
|
1339
|
+
{
|
1340
|
+
"internalType": "Version",
|
1341
|
+
"name": "version",
|
1342
|
+
"type": "uint24"
|
1343
|
+
},
|
1344
|
+
{
|
1345
|
+
"internalType": "address",
|
1346
|
+
"name": "implementation",
|
1347
|
+
"type": "address"
|
1348
|
+
},
|
1349
|
+
{
|
1350
|
+
"internalType": "address",
|
1351
|
+
"name": "activatedBy",
|
1352
|
+
"type": "address"
|
1353
|
+
},
|
1354
|
+
{
|
1355
|
+
"internalType": "Timestamp",
|
1356
|
+
"name": "activatedAt",
|
1357
|
+
"type": "uint40"
|
1358
|
+
},
|
1359
|
+
{
|
1360
|
+
"internalType": "Blocknumber",
|
1361
|
+
"name": "activatedIn",
|
1362
|
+
"type": "uint32"
|
1363
|
+
}
|
1364
|
+
],
|
1365
|
+
"internalType": "struct IVersionable.VersionInfo",
|
1366
|
+
"name": "",
|
1367
|
+
"type": "tuple"
|
1368
|
+
}
|
1369
|
+
],
|
1370
|
+
"stateMutability": "view",
|
1371
|
+
"type": "function"
|
1372
|
+
},
|
1373
|
+
{
|
1374
|
+
"inputs": [],
|
1375
|
+
"name": "getZeroFee",
|
1376
|
+
"outputs": [
|
1377
|
+
{
|
1378
|
+
"components": [
|
1379
|
+
{
|
1380
|
+
"internalType": "UFixed",
|
1381
|
+
"name": "fractionalFee",
|
1382
|
+
"type": "uint256"
|
1383
|
+
},
|
1384
|
+
{
|
1385
|
+
"internalType": "uint256",
|
1386
|
+
"name": "fixedFee",
|
1387
|
+
"type": "uint256"
|
1388
|
+
}
|
1389
|
+
],
|
1390
|
+
"internalType": "struct Fee",
|
1391
|
+
"name": "fee",
|
1392
|
+
"type": "tuple"
|
1393
|
+
}
|
1394
|
+
],
|
1395
|
+
"stateMutability": "view",
|
1396
|
+
"type": "function"
|
1397
|
+
},
|
1398
|
+
{
|
1399
|
+
"inputs": [
|
1400
|
+
{
|
1401
|
+
"internalType": "RoleId",
|
1402
|
+
"name": "role",
|
1403
|
+
"type": "bytes8"
|
1404
|
+
},
|
1405
|
+
{
|
1406
|
+
"internalType": "address",
|
1407
|
+
"name": "member",
|
1408
|
+
"type": "address"
|
932
1409
|
}
|
933
1410
|
],
|
1411
|
+
"name": "grantRole",
|
1412
|
+
"outputs": [],
|
934
1413
|
"stateMutability": "nonpayable",
|
935
1414
|
"type": "function"
|
936
1415
|
},
|
937
1416
|
{
|
938
1417
|
"inputs": [
|
939
1418
|
{
|
940
|
-
"internalType": "
|
1419
|
+
"internalType": "RoleId",
|
941
1420
|
"name": "role",
|
942
|
-
"type": "
|
1421
|
+
"type": "bytes8"
|
943
1422
|
},
|
944
1423
|
{
|
945
1424
|
"internalType": "address",
|
@@ -947,7 +1426,55 @@
|
|
947
1426
|
"type": "address"
|
948
1427
|
}
|
949
1428
|
],
|
950
|
-
"name": "
|
1429
|
+
"name": "hasRole",
|
1430
|
+
"outputs": [
|
1431
|
+
{
|
1432
|
+
"internalType": "bool",
|
1433
|
+
"name": "",
|
1434
|
+
"type": "bool"
|
1435
|
+
}
|
1436
|
+
],
|
1437
|
+
"stateMutability": "view",
|
1438
|
+
"type": "function"
|
1439
|
+
},
|
1440
|
+
{
|
1441
|
+
"inputs": [
|
1442
|
+
{
|
1443
|
+
"internalType": "NftId",
|
1444
|
+
"name": "productNftId",
|
1445
|
+
"type": "uint96"
|
1446
|
+
}
|
1447
|
+
],
|
1448
|
+
"name": "hasTreasuryInfo",
|
1449
|
+
"outputs": [
|
1450
|
+
{
|
1451
|
+
"internalType": "bool",
|
1452
|
+
"name": "hasInfo",
|
1453
|
+
"type": "bool"
|
1454
|
+
}
|
1455
|
+
],
|
1456
|
+
"stateMutability": "view",
|
1457
|
+
"type": "function"
|
1458
|
+
},
|
1459
|
+
{
|
1460
|
+
"inputs": [
|
1461
|
+
{
|
1462
|
+
"internalType": "address",
|
1463
|
+
"name": "implementation",
|
1464
|
+
"type": "address"
|
1465
|
+
},
|
1466
|
+
{
|
1467
|
+
"internalType": "address",
|
1468
|
+
"name": "activatedBy",
|
1469
|
+
"type": "address"
|
1470
|
+
},
|
1471
|
+
{
|
1472
|
+
"internalType": "bytes",
|
1473
|
+
"name": "initializationData",
|
1474
|
+
"type": "bytes"
|
1475
|
+
}
|
1476
|
+
],
|
1477
|
+
"name": "initialize",
|
951
1478
|
"outputs": [],
|
952
1479
|
"stateMutability": "nonpayable",
|
953
1480
|
"type": "function"
|
@@ -955,29 +1482,30 @@
|
|
955
1482
|
{
|
956
1483
|
"inputs": [
|
957
1484
|
{
|
958
|
-
"
|
959
|
-
|
960
|
-
|
961
|
-
"name": "nftId",
|
962
|
-
"type": "uint256"
|
963
|
-
},
|
964
|
-
{
|
965
|
-
"internalType": "enum IComponent.CState",
|
966
|
-
"name": "state",
|
967
|
-
"type": "uint8"
|
968
|
-
}
|
969
|
-
],
|
970
|
-
"internalType": "struct IComponent.ComponentInfo",
|
971
|
-
"name": "info",
|
972
|
-
"type": "tuple"
|
1485
|
+
"internalType": "Version",
|
1486
|
+
"name": "_version",
|
1487
|
+
"type": "uint24"
|
973
1488
|
}
|
974
1489
|
],
|
975
|
-
"name": "
|
1490
|
+
"name": "isActivated",
|
976
1491
|
"outputs": [
|
977
1492
|
{
|
978
|
-
"internalType": "
|
1493
|
+
"internalType": "bool",
|
1494
|
+
"name": "",
|
1495
|
+
"type": "bool"
|
1496
|
+
}
|
1497
|
+
],
|
1498
|
+
"stateMutability": "view",
|
1499
|
+
"type": "function"
|
1500
|
+
},
|
1501
|
+
{
|
1502
|
+
"inputs": [],
|
1503
|
+
"name": "register",
|
1504
|
+
"outputs": [
|
1505
|
+
{
|
1506
|
+
"internalType": "NftId",
|
979
1507
|
"name": "nftId",
|
980
|
-
"type": "
|
1508
|
+
"type": "uint96"
|
981
1509
|
}
|
982
1510
|
],
|
983
1511
|
"stateMutability": "nonpayable",
|
@@ -986,24 +1514,959 @@
|
|
986
1514
|
{
|
987
1515
|
"inputs": [
|
988
1516
|
{
|
989
|
-
"internalType": "
|
990
|
-
"name": "
|
991
|
-
"type": "
|
1517
|
+
"internalType": "NftId",
|
1518
|
+
"name": "nftId",
|
1519
|
+
"type": "uint96"
|
992
1520
|
},
|
993
1521
|
{
|
994
|
-
"internalType": "
|
995
|
-
"name": "
|
996
|
-
"type": "
|
1522
|
+
"internalType": "contract IERC20Metadata",
|
1523
|
+
"name": "token",
|
1524
|
+
"type": "address"
|
1525
|
+
},
|
1526
|
+
{
|
1527
|
+
"internalType": "address",
|
1528
|
+
"name": "wallet",
|
1529
|
+
"type": "address"
|
997
1530
|
}
|
998
1531
|
],
|
999
|
-
"name": "
|
1532
|
+
"name": "registerComponent",
|
1000
1533
|
"outputs": [],
|
1001
1534
|
"stateMutability": "nonpayable",
|
1002
1535
|
"type": "function"
|
1003
|
-
}
|
1536
|
+
},
|
1537
|
+
{
|
1538
|
+
"inputs": [
|
1539
|
+
{
|
1540
|
+
"internalType": "NftId",
|
1541
|
+
"name": "nftId",
|
1542
|
+
"type": "uint96"
|
1543
|
+
},
|
1544
|
+
{
|
1545
|
+
"internalType": "bool",
|
1546
|
+
"name": "isVerifying",
|
1547
|
+
"type": "bool"
|
1548
|
+
},
|
1549
|
+
{
|
1550
|
+
"internalType": "UFixed",
|
1551
|
+
"name": "collateralizationRate",
|
1552
|
+
"type": "uint256"
|
1553
|
+
}
|
1554
|
+
],
|
1555
|
+
"name": "registerPool",
|
1556
|
+
"outputs": [],
|
1557
|
+
"stateMutability": "nonpayable",
|
1558
|
+
"type": "function"
|
1559
|
+
},
|
1560
|
+
{
|
1561
|
+
"inputs": [
|
1562
|
+
{
|
1563
|
+
"internalType": "contract IProductComponent",
|
1564
|
+
"name": "product",
|
1565
|
+
"type": "address"
|
1566
|
+
},
|
1567
|
+
{
|
1568
|
+
"internalType": "contract IPoolComponent",
|
1569
|
+
"name": "pool",
|
1570
|
+
"type": "address"
|
1571
|
+
},
|
1572
|
+
{
|
1573
|
+
"internalType": "contract IDistributionComponent",
|
1574
|
+
"name": "distribution",
|
1575
|
+
"type": "address"
|
1576
|
+
}
|
1577
|
+
],
|
1578
|
+
"name": "registerProductSetup",
|
1579
|
+
"outputs": [],
|
1580
|
+
"stateMutability": "nonpayable",
|
1581
|
+
"type": "function"
|
1582
|
+
},
|
1583
|
+
{
|
1584
|
+
"inputs": [
|
1585
|
+
{
|
1586
|
+
"internalType": "NftId",
|
1587
|
+
"name": "bundleNftId",
|
1588
|
+
"type": "uint96"
|
1589
|
+
},
|
1590
|
+
{
|
1591
|
+
"internalType": "NftId",
|
1592
|
+
"name": "policyNftId",
|
1593
|
+
"type": "uint96"
|
1594
|
+
}
|
1595
|
+
],
|
1596
|
+
"name": "releasePolicy",
|
1597
|
+
"outputs": [
|
1598
|
+
{
|
1599
|
+
"internalType": "uint256",
|
1600
|
+
"name": "collateralAmount",
|
1601
|
+
"type": "uint256"
|
1602
|
+
}
|
1603
|
+
],
|
1604
|
+
"stateMutability": "nonpayable",
|
1605
|
+
"type": "function"
|
1606
|
+
},
|
1607
|
+
{
|
1608
|
+
"inputs": [
|
1609
|
+
{
|
1610
|
+
"internalType": "RoleId",
|
1611
|
+
"name": "role",
|
1612
|
+
"type": "bytes8"
|
1613
|
+
},
|
1614
|
+
{
|
1615
|
+
"internalType": "address",
|
1616
|
+
"name": "member",
|
1617
|
+
"type": "address"
|
1618
|
+
}
|
1619
|
+
],
|
1620
|
+
"name": "revokeRole",
|
1621
|
+
"outputs": [],
|
1622
|
+
"stateMutability": "nonpayable",
|
1623
|
+
"type": "function"
|
1624
|
+
},
|
1625
|
+
{
|
1626
|
+
"inputs": [
|
1627
|
+
{
|
1628
|
+
"internalType": "RoleId",
|
1629
|
+
"name": "role",
|
1630
|
+
"type": "bytes8"
|
1631
|
+
}
|
1632
|
+
],
|
1633
|
+
"name": "roleExists",
|
1634
|
+
"outputs": [
|
1635
|
+
{
|
1636
|
+
"internalType": "bool",
|
1637
|
+
"name": "",
|
1638
|
+
"type": "bool"
|
1639
|
+
}
|
1640
|
+
],
|
1641
|
+
"stateMutability": "view",
|
1642
|
+
"type": "function"
|
1643
|
+
},
|
1644
|
+
{
|
1645
|
+
"inputs": [
|
1646
|
+
{
|
1647
|
+
"internalType": "NftId",
|
1648
|
+
"name": "bundleNftId",
|
1649
|
+
"type": "uint96"
|
1650
|
+
},
|
1651
|
+
{
|
1652
|
+
"components": [
|
1653
|
+
{
|
1654
|
+
"internalType": "NftId",
|
1655
|
+
"name": "poolNftId",
|
1656
|
+
"type": "uint96"
|
1657
|
+
},
|
1658
|
+
{
|
1659
|
+
"components": [
|
1660
|
+
{
|
1661
|
+
"internalType": "UFixed",
|
1662
|
+
"name": "fractionalFee",
|
1663
|
+
"type": "uint256"
|
1664
|
+
},
|
1665
|
+
{
|
1666
|
+
"internalType": "uint256",
|
1667
|
+
"name": "fixedFee",
|
1668
|
+
"type": "uint256"
|
1669
|
+
}
|
1670
|
+
],
|
1671
|
+
"internalType": "struct Fee",
|
1672
|
+
"name": "fee",
|
1673
|
+
"type": "tuple"
|
1674
|
+
},
|
1675
|
+
{
|
1676
|
+
"internalType": "bytes",
|
1677
|
+
"name": "filter",
|
1678
|
+
"type": "bytes"
|
1679
|
+
},
|
1680
|
+
{
|
1681
|
+
"internalType": "uint256",
|
1682
|
+
"name": "capitalAmount",
|
1683
|
+
"type": "uint256"
|
1684
|
+
},
|
1685
|
+
{
|
1686
|
+
"internalType": "uint256",
|
1687
|
+
"name": "lockedAmount",
|
1688
|
+
"type": "uint256"
|
1689
|
+
},
|
1690
|
+
{
|
1691
|
+
"internalType": "uint256",
|
1692
|
+
"name": "balanceAmount",
|
1693
|
+
"type": "uint256"
|
1694
|
+
},
|
1695
|
+
{
|
1696
|
+
"internalType": "Timestamp",
|
1697
|
+
"name": "expiredAt",
|
1698
|
+
"type": "uint40"
|
1699
|
+
},
|
1700
|
+
{
|
1701
|
+
"internalType": "Timestamp",
|
1702
|
+
"name": "closedAt",
|
1703
|
+
"type": "uint40"
|
1704
|
+
}
|
1705
|
+
],
|
1706
|
+
"internalType": "struct IBundle.BundleInfo",
|
1707
|
+
"name": "info",
|
1708
|
+
"type": "tuple"
|
1709
|
+
}
|
1710
|
+
],
|
1711
|
+
"name": "setBundleInfo",
|
1712
|
+
"outputs": [],
|
1713
|
+
"stateMutability": "nonpayable",
|
1714
|
+
"type": "function"
|
1715
|
+
},
|
1716
|
+
{
|
1717
|
+
"inputs": [
|
1718
|
+
{
|
1719
|
+
"internalType": "NftId",
|
1720
|
+
"name": "policyNftId",
|
1721
|
+
"type": "uint96"
|
1722
|
+
},
|
1723
|
+
{
|
1724
|
+
"components": [
|
1725
|
+
{
|
1726
|
+
"internalType": "NftId",
|
1727
|
+
"name": "productNftId",
|
1728
|
+
"type": "uint96"
|
1729
|
+
},
|
1730
|
+
{
|
1731
|
+
"internalType": "NftId",
|
1732
|
+
"name": "bundleNftId",
|
1733
|
+
"type": "uint96"
|
1734
|
+
},
|
1735
|
+
{
|
1736
|
+
"internalType": "ReferralId",
|
1737
|
+
"name": "referralId",
|
1738
|
+
"type": "bytes8"
|
1739
|
+
},
|
1740
|
+
{
|
1741
|
+
"internalType": "address",
|
1742
|
+
"name": "beneficiary",
|
1743
|
+
"type": "address"
|
1744
|
+
},
|
1745
|
+
{
|
1746
|
+
"internalType": "RiskId",
|
1747
|
+
"name": "riskId",
|
1748
|
+
"type": "bytes8"
|
1749
|
+
},
|
1750
|
+
{
|
1751
|
+
"internalType": "uint256",
|
1752
|
+
"name": "sumInsuredAmount",
|
1753
|
+
"type": "uint256"
|
1754
|
+
},
|
1755
|
+
{
|
1756
|
+
"internalType": "uint256",
|
1757
|
+
"name": "premiumAmount",
|
1758
|
+
"type": "uint256"
|
1759
|
+
},
|
1760
|
+
{
|
1761
|
+
"internalType": "uint256",
|
1762
|
+
"name": "premiumPaidAmount",
|
1763
|
+
"type": "uint256"
|
1764
|
+
},
|
1765
|
+
{
|
1766
|
+
"internalType": "uint256",
|
1767
|
+
"name": "lifetime",
|
1768
|
+
"type": "uint256"
|
1769
|
+
},
|
1770
|
+
{
|
1771
|
+
"internalType": "bytes",
|
1772
|
+
"name": "applicationData",
|
1773
|
+
"type": "bytes"
|
1774
|
+
},
|
1775
|
+
{
|
1776
|
+
"internalType": "bytes",
|
1777
|
+
"name": "policyData",
|
1778
|
+
"type": "bytes"
|
1779
|
+
},
|
1780
|
+
{
|
1781
|
+
"internalType": "Timestamp",
|
1782
|
+
"name": "activatedAt",
|
1783
|
+
"type": "uint40"
|
1784
|
+
},
|
1785
|
+
{
|
1786
|
+
"internalType": "Timestamp",
|
1787
|
+
"name": "expiredAt",
|
1788
|
+
"type": "uint40"
|
1789
|
+
},
|
1790
|
+
{
|
1791
|
+
"internalType": "Timestamp",
|
1792
|
+
"name": "closedAt",
|
1793
|
+
"type": "uint40"
|
1794
|
+
}
|
1795
|
+
],
|
1796
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
1797
|
+
"name": "info",
|
1798
|
+
"type": "tuple"
|
1799
|
+
}
|
1800
|
+
],
|
1801
|
+
"name": "setPolicyInfo",
|
1802
|
+
"outputs": [],
|
1803
|
+
"stateMutability": "nonpayable",
|
1804
|
+
"type": "function"
|
1805
|
+
},
|
1806
|
+
{
|
1807
|
+
"inputs": [
|
1808
|
+
{
|
1809
|
+
"internalType": "RiskId",
|
1810
|
+
"name": "riskId",
|
1811
|
+
"type": "bytes8"
|
1812
|
+
},
|
1813
|
+
{
|
1814
|
+
"components": [
|
1815
|
+
{
|
1816
|
+
"internalType": "NftId",
|
1817
|
+
"name": "productNftId",
|
1818
|
+
"type": "uint96"
|
1819
|
+
},
|
1820
|
+
{
|
1821
|
+
"internalType": "bytes",
|
1822
|
+
"name": "data",
|
1823
|
+
"type": "bytes"
|
1824
|
+
}
|
1825
|
+
],
|
1826
|
+
"internalType": "struct IRisk.RiskInfo",
|
1827
|
+
"name": "info",
|
1828
|
+
"type": "tuple"
|
1829
|
+
}
|
1830
|
+
],
|
1831
|
+
"name": "setRiskInfo",
|
1832
|
+
"outputs": [],
|
1833
|
+
"stateMutability": "nonpayable",
|
1834
|
+
"type": "function"
|
1835
|
+
},
|
1836
|
+
{
|
1837
|
+
"inputs": [
|
1838
|
+
{
|
1839
|
+
"internalType": "RoleId",
|
1840
|
+
"name": "role",
|
1841
|
+
"type": "bytes8"
|
1842
|
+
},
|
1843
|
+
{
|
1844
|
+
"internalType": "bool",
|
1845
|
+
"name": "active",
|
1846
|
+
"type": "bool"
|
1847
|
+
}
|
1848
|
+
],
|
1849
|
+
"name": "setRoleState",
|
1850
|
+
"outputs": [],
|
1851
|
+
"stateMutability": "nonpayable",
|
1852
|
+
"type": "function"
|
1853
|
+
},
|
1854
|
+
{
|
1855
|
+
"inputs": [
|
1856
|
+
{
|
1857
|
+
"internalType": "NftId",
|
1858
|
+
"name": "productNftId",
|
1859
|
+
"type": "uint96"
|
1860
|
+
},
|
1861
|
+
{
|
1862
|
+
"components": [
|
1863
|
+
{
|
1864
|
+
"internalType": "NftId",
|
1865
|
+
"name": "poolNftId",
|
1866
|
+
"type": "uint96"
|
1867
|
+
},
|
1868
|
+
{
|
1869
|
+
"internalType": "NftId",
|
1870
|
+
"name": "distributionNftId",
|
1871
|
+
"type": "uint96"
|
1872
|
+
},
|
1873
|
+
{
|
1874
|
+
"internalType": "contract IERC20Metadata",
|
1875
|
+
"name": "token",
|
1876
|
+
"type": "address"
|
1877
|
+
},
|
1878
|
+
{
|
1879
|
+
"components": [
|
1880
|
+
{
|
1881
|
+
"internalType": "UFixed",
|
1882
|
+
"name": "fractionalFee",
|
1883
|
+
"type": "uint256"
|
1884
|
+
},
|
1885
|
+
{
|
1886
|
+
"internalType": "uint256",
|
1887
|
+
"name": "fixedFee",
|
1888
|
+
"type": "uint256"
|
1889
|
+
}
|
1890
|
+
],
|
1891
|
+
"internalType": "struct Fee",
|
1892
|
+
"name": "productFee",
|
1893
|
+
"type": "tuple"
|
1894
|
+
},
|
1895
|
+
{
|
1896
|
+
"components": [
|
1897
|
+
{
|
1898
|
+
"internalType": "UFixed",
|
1899
|
+
"name": "fractionalFee",
|
1900
|
+
"type": "uint256"
|
1901
|
+
},
|
1902
|
+
{
|
1903
|
+
"internalType": "uint256",
|
1904
|
+
"name": "fixedFee",
|
1905
|
+
"type": "uint256"
|
1906
|
+
}
|
1907
|
+
],
|
1908
|
+
"internalType": "struct Fee",
|
1909
|
+
"name": "processingFee",
|
1910
|
+
"type": "tuple"
|
1911
|
+
},
|
1912
|
+
{
|
1913
|
+
"components": [
|
1914
|
+
{
|
1915
|
+
"internalType": "UFixed",
|
1916
|
+
"name": "fractionalFee",
|
1917
|
+
"type": "uint256"
|
1918
|
+
},
|
1919
|
+
{
|
1920
|
+
"internalType": "uint256",
|
1921
|
+
"name": "fixedFee",
|
1922
|
+
"type": "uint256"
|
1923
|
+
}
|
1924
|
+
],
|
1925
|
+
"internalType": "struct Fee",
|
1926
|
+
"name": "poolFee",
|
1927
|
+
"type": "tuple"
|
1928
|
+
},
|
1929
|
+
{
|
1930
|
+
"components": [
|
1931
|
+
{
|
1932
|
+
"internalType": "UFixed",
|
1933
|
+
"name": "fractionalFee",
|
1934
|
+
"type": "uint256"
|
1935
|
+
},
|
1936
|
+
{
|
1937
|
+
"internalType": "uint256",
|
1938
|
+
"name": "fixedFee",
|
1939
|
+
"type": "uint256"
|
1940
|
+
}
|
1941
|
+
],
|
1942
|
+
"internalType": "struct Fee",
|
1943
|
+
"name": "stakingFee",
|
1944
|
+
"type": "tuple"
|
1945
|
+
},
|
1946
|
+
{
|
1947
|
+
"components": [
|
1948
|
+
{
|
1949
|
+
"internalType": "UFixed",
|
1950
|
+
"name": "fractionalFee",
|
1951
|
+
"type": "uint256"
|
1952
|
+
},
|
1953
|
+
{
|
1954
|
+
"internalType": "uint256",
|
1955
|
+
"name": "fixedFee",
|
1956
|
+
"type": "uint256"
|
1957
|
+
}
|
1958
|
+
],
|
1959
|
+
"internalType": "struct Fee",
|
1960
|
+
"name": "performanceFee",
|
1961
|
+
"type": "tuple"
|
1962
|
+
},
|
1963
|
+
{
|
1964
|
+
"components": [
|
1965
|
+
{
|
1966
|
+
"internalType": "UFixed",
|
1967
|
+
"name": "fractionalFee",
|
1968
|
+
"type": "uint256"
|
1969
|
+
},
|
1970
|
+
{
|
1971
|
+
"internalType": "uint256",
|
1972
|
+
"name": "fixedFee",
|
1973
|
+
"type": "uint256"
|
1974
|
+
}
|
1975
|
+
],
|
1976
|
+
"internalType": "struct Fee",
|
1977
|
+
"name": "distributionFee",
|
1978
|
+
"type": "tuple"
|
1979
|
+
}
|
1980
|
+
],
|
1981
|
+
"internalType": "struct ITreasury.TreasuryInfo",
|
1982
|
+
"name": "info",
|
1983
|
+
"type": "tuple"
|
1984
|
+
}
|
1985
|
+
],
|
1986
|
+
"name": "setTreasuryInfo",
|
1987
|
+
"outputs": [],
|
1988
|
+
"stateMutability": "nonpayable",
|
1989
|
+
"type": "function"
|
1990
|
+
},
|
1991
|
+
{
|
1992
|
+
"inputs": [
|
1993
|
+
{
|
1994
|
+
"internalType": "bytes4",
|
1995
|
+
"name": "interfaceId",
|
1996
|
+
"type": "bytes4"
|
1997
|
+
}
|
1998
|
+
],
|
1999
|
+
"name": "supportsInterface",
|
2000
|
+
"outputs": [
|
2001
|
+
{
|
2002
|
+
"internalType": "bool",
|
2003
|
+
"name": "",
|
2004
|
+
"type": "bool"
|
2005
|
+
}
|
2006
|
+
],
|
2007
|
+
"stateMutability": "view",
|
2008
|
+
"type": "function"
|
2009
|
+
},
|
2010
|
+
{
|
2011
|
+
"inputs": [
|
2012
|
+
{
|
2013
|
+
"internalType": "NftId",
|
2014
|
+
"name": "bundleNftId",
|
2015
|
+
"type": "uint96"
|
2016
|
+
},
|
2017
|
+
{
|
2018
|
+
"internalType": "StateId",
|
2019
|
+
"name": "state",
|
2020
|
+
"type": "uint8"
|
2021
|
+
}
|
2022
|
+
],
|
2023
|
+
"name": "updateBundleState",
|
2024
|
+
"outputs": [],
|
2025
|
+
"stateMutability": "nonpayable",
|
2026
|
+
"type": "function"
|
2027
|
+
},
|
2028
|
+
{
|
2029
|
+
"inputs": [
|
2030
|
+
{
|
2031
|
+
"internalType": "NftId",
|
2032
|
+
"name": "bundleNftId",
|
2033
|
+
"type": "uint96"
|
2034
|
+
},
|
2035
|
+
{
|
2036
|
+
"internalType": "StateId",
|
2037
|
+
"name": "state",
|
2038
|
+
"type": "uint8"
|
2039
|
+
}
|
2040
|
+
],
|
2041
|
+
"name": "updatePolicyState",
|
2042
|
+
"outputs": [],
|
2043
|
+
"stateMutability": "nonpayable",
|
2044
|
+
"type": "function"
|
2045
|
+
},
|
2046
|
+
{
|
2047
|
+
"inputs": [
|
2048
|
+
{
|
2049
|
+
"internalType": "RiskId",
|
2050
|
+
"name": "riskId",
|
2051
|
+
"type": "bytes8"
|
2052
|
+
},
|
2053
|
+
{
|
2054
|
+
"internalType": "StateId",
|
2055
|
+
"name": "state",
|
2056
|
+
"type": "uint8"
|
2057
|
+
}
|
2058
|
+
],
|
2059
|
+
"name": "updateRiskState",
|
2060
|
+
"outputs": [],
|
2061
|
+
"stateMutability": "nonpayable",
|
2062
|
+
"type": "function"
|
2063
|
+
},
|
2064
|
+
{
|
2065
|
+
"inputs": [
|
2066
|
+
{
|
2067
|
+
"internalType": "Key32",
|
2068
|
+
"name": "key",
|
2069
|
+
"type": "bytes32"
|
2070
|
+
},
|
2071
|
+
{
|
2072
|
+
"internalType": "StateId",
|
2073
|
+
"name": "state",
|
2074
|
+
"type": "uint8"
|
2075
|
+
}
|
2076
|
+
],
|
2077
|
+
"name": "updateState",
|
2078
|
+
"outputs": [],
|
2079
|
+
"stateMutability": "nonpayable",
|
2080
|
+
"type": "function"
|
2081
|
+
},
|
2082
|
+
{
|
2083
|
+
"inputs": [
|
2084
|
+
{
|
2085
|
+
"internalType": "address",
|
2086
|
+
"name": "implementation",
|
2087
|
+
"type": "address"
|
2088
|
+
},
|
2089
|
+
{
|
2090
|
+
"internalType": "address",
|
2091
|
+
"name": "activatedBy",
|
2092
|
+
"type": "address"
|
2093
|
+
},
|
2094
|
+
{
|
2095
|
+
"internalType": "bytes",
|
2096
|
+
"name": "upgradeData",
|
2097
|
+
"type": "bytes"
|
2098
|
+
}
|
2099
|
+
],
|
2100
|
+
"name": "upgrade",
|
2101
|
+
"outputs": [],
|
2102
|
+
"stateMutability": "nonpayable",
|
2103
|
+
"type": "function"
|
2104
|
+
}
|
1004
2105
|
],
|
1005
|
-
"bytecode": "0x60e06040523480156200001157600080fd5b5060405162005edb38038062005edb833981810160405281019062000037919062000450565b808182848680806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620001066040518060400160405280600c81526020017f50726f647563744f776e65720000000000000000000000000000000000000000815250620002b860201b60201c565b60808181525050620001536040518060400160405280600b81526020017f4f7261636c654f776e6572000000000000000000000000000000000000000000815250620002b860201b60201c565b60a08181525050620001a06040518060400160405280600981526020017f506f6f6c4f776e65720000000000000000000000000000000000000000000000815250620002b860201b60201c565b60c0818152505080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620008c0565b60008060405180606001604052806000801b8152602001848152602001600115158152509050620002ef81620002f760201b60201c565b915050919050565b6000816000015190506000801b81036200035657620003208260200151620003b460201b60201c565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b81600260008381526020019081526020016000206000820151816000015560208201518160010190816200038b919062000726565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b600081604051602001620003c991906200089c565b604051602081830303815290604052805190602001209050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200041882620003eb565b9050919050565b6200042a816200040b565b81146200043657600080fd5b50565b6000815190506200044a816200041f565b92915050565b6000806000606084860312156200046c576200046b620003e6565b5b60006200047c8682870162000439565b93505060206200048f8682870162000439565b9250506040620004a28682870162000439565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052e57607f821691505b602082108103620005445762000543620004e6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056f565b620005ba86836200056f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200060762000601620005fb84620005d2565b620005dc565b620005d2565b9050919050565b6000819050919050565b6200062383620005e6565b6200063b62000632826200060e565b8484546200057c565b825550505050565b600090565b6200065262000643565b6200065f81848462000618565b505050565b5b8181101562000687576200067b60008262000648565b60018101905062000665565b5050565b601f821115620006d657620006a0816200054a565b620006ab846200055f565b81016020851015620006bb578190505b620006d3620006ca856200055f565b83018262000664565b50505b505050565b600082821c905092915050565b6000620006fb60001984600802620006db565b1980831691505092915050565b6000620007168383620006e8565b9150826002028217905092915050565b6200073182620004ac565b67ffffffffffffffff8111156200074d576200074c620004b7565b5b62000759825462000515565b620007668282856200068b565b600060209050601f8311600181146200079e576000841562000789578287015190505b62000795858262000708565b86555062000805565b601f198416620007ae866200054a565b60005b82811015620007d857848901518255600182019150602085019450602081019050620007b1565b86831015620007f85784890151620007f4601f891682620006e8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b60005b838110156200083e57808201518184015260208101905062000821565b60008484015250505050565b6000601f19601f8301169050919050565b60006200086882620004ac565b6200087481856200080d565b9350620008868185602086016200081e565b62000891816200084a565b840191505092915050565b60006020820190508181036000830152620008b881846200085b565b905092915050565b60805160a05160c0516155eb620008f0600039600061109a01526000610c6b0152600061237401526155eb6000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80636fa2985311610167578063af17d38a116100ce578063d4b0a5ac11610087578063d4b0a5ac146108a2578063d547741f146108d2578063eb71e8c4146108ee578063eb7f494d1461090c578063f174ce1914610928578063fb2cb1011461094657610295565b8063af17d38a146107ba578063b260c42a146107ea578063b909155214610806578063ba62fbe414610824578063be409a1114610842578063ca15c8731461087257610295565b8063893d20e811610120578063893d20e8146106c05780639010d07c146106de57806391d148541461070e5780639588d85b1461073e5780639cad00521461076e578063a41d8a8f1461079e57610295565b80636fa29853146105ea57806379e829d0146106085780637ab4253a146106265780637c4a13b1146106565780637fec8b311461067257806383d33319146106a257610295565b806332e3a6e91161020b5780636078a3b2116101c45780636078a3b214610502578063644c45e0146105325780636b34608a146105505780636c137ea9146105805780636c1ddffa1461059e5780636f5db1e3146105ba57610295565b806332e3a6e91461042a5780633bc5de30146104485780634288121d146104665780635312fdc2146104845780635ab1bd53146104b45780635ede3c2f146104d257610295565b80632a3d616e1161025d5780632a3d616e146103425780632a5f6e85146103725780632b1c7f73146103905780632f2ff15d146103c05780632f380b35146103dc57806331b62a3b1461040c57610295565b806302393c411461029a578063105bdcb2146102b857806315dae03e146102e85780631aa3a008146103065780632236684414610324575b600080fd5b6102a2610964565b6040516102af9190613a4e565b60405180910390f35b6102d260048036038101906102cd9190613aa9565b61096d565b6040516102df9190613a4e565b60405180910390f35b6102f061098a565b6040516102fd9190613a4e565b60405180910390f35b61030e610a21565b60405161031b9190613a4e565b60405180910390f35b61032c610b52565b6040516103399190613af1565b60405180910390f35b61035c60048036038101906103579190613aa9565b610bf5565b6040516103699190613bc1565b60405180910390f35b61037a610c67565b6040516103879190613bf5565b60405180910390f35b6103aa60048036038101906103a59190613c6e565b610c8f565b6040516103b79190613a4e565b60405180910390f35b6103da60048036038101906103d59190613cc7565b610cd8565b005b6103f660048036038101906103f19190613aa9565b610f9a565b6040516104039190613d7e565b60405180910390f35b610414611091565b6040516104219190613a4e565b60405180910390f35b610432611096565b60405161043f9190613bf5565b60405180910390f35b6104506110be565b60405161045d9190613e29565b60405180910390f35b61046e6110e6565b60405161047b9190613eaa565b60405180910390f35b61049e60048036038101906104999190613aa9565b611110565b6040516104ab9190613bf5565b60405180910390f35b6104bc611138565b6040516104c99190613ee6565b60405180910390f35b6104ec60048036038101906104e7919061400d565b611161565b6040516104f99190613a4e565b60405180910390f35b61051c600480360381019061051791906140db565b6116ba565b6040516105299190613a4e565b60405180910390f35b61053a611ebb565b6040516105479190613a4e565b60405180910390f35b61056a60048036038101906105659190613aa9565b611f5d565b6040516105779190613bf5565b60405180910390f35b610588612370565b6040516105959190613bf5565b60405180910390f35b6105b860048036038101906105b39190614108565b612398565b005b6105d460048036038101906105cf9190613aa9565b612589565b6040516105e19190613a4e565b60405180910390f35b6105f26125a6565b6040516105ff9190614169565b60405180910390f35b6106106125d0565b60405161061d9190613af1565b60405180910390f35b610640600480360381019061063b91906141f9565b6125d9565b60405161064d9190613a4e565b60405180910390f35b610670600480360381019061066b9190614226565b61272f565b005b61068c60048036038101906106879190613aa9565b612949565b6040516106999190613a4e565b60405180910390f35b6106aa612971565b6040516106b79190613a4e565b60405180910390f35b6106c861297e565b6040516106d59190614262565b60405180910390f35b6106f860048036038101906106f3919061427d565b612b1d565b6040516107059190614262565b60405180910390f35b61072860048036038101906107239190613cc7565b612b4c565b6040516107359190613af1565b60405180910390f35b61075860048036038101906107539190613aa9565b612bb4565b60405161076591906143bc565b60405180910390f35b61078860048036038101906107839190614492565b612c6d565b6040516107959190613bf5565b60405180910390f35b6107b860048036038101906107b391906144db565b612c9d565b005b6107d460048036038101906107cf9190614492565b612e16565b6040516107e19190613bf5565b60405180910390f35b61080460048036038101906107ff9190613aa9565b612f04565b005b61080e612ffd565b60405161081b9190614583565b60405180910390f35b61082c613036565b6040516108399190613a4e565b60405180910390f35b61085c60048036038101906108579190614226565b613043565b604051610869919061465d565b60405180910390f35b61088c60048036038101906108879190614226565b613127565b6040516108999190613a4e565b60405180910390f35b6108bc60048036038101906108b79190613aa9565b61314b565b6040516108c99190614262565b60405180910390f35b6108ec60048036038101906108e79190613cc7565b613152565b005b6108f6613319565b6040516109039190614583565b60405180910390f35b61092660048036038101906109219190614226565b613352565b005b61093061356c565b60405161093d9190614583565b60405180910390f35b61094e6135a5565b60405161095b9190614262565b60405180910390f35b6402540be40081565b6000600d6000838152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1c9190614694565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa89061470d565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401610b0a9190614262565b6020604051808303816000875af1158015610b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4d9190614694565b905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401610bae9190614262565b602060405180830381865afa158015610bcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bef9190614694565b11905090565b610bfd61392a565b60066000838152602001908152602001600020604051806040016040529081600082015481526020016001820160009054906101000a900460ff166002811115610c4a57610c49613b1b565b5b6002811115610c5c57610c5b613b1b565b5b815250509050919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d479190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab906147bb565b60405180910390fd5b81600260008481526020019081526020016000206000015414610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390614827565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff16610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690614893565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610efd81600560008581526020019081526020016000206135cf90919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051610f8e939291906148b3565b60405180910390a15050565b610fa2613956565b600f60008381526020019081526020016000206040518060a0016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481526020016004820154815250509050919050565b600090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b606060006040516020016110d29190614932565b604051602081830303815290604052905090565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600382815481106111265761112561494d565b5b90600052602060002001549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906149ee565b60405180910390fd5b60008211156113db5760003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611249573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126d9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16631a3cd59a846040518263ffffffff1660e01b81526004016112a59190613a4e565b60a060405180830381865afa1580156112c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e69190614b05565b905060003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113599190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16631a3cd59a83602001516040518263ffffffff1660e01b81526004016113959190613a4e565b60a060405180830381865afa1580156113b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d69190614b05565b905050505b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144a9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff1663ab10b8ec88600001513073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d99190614a4c565b73ffffffffffffffffffffffffffffffffffffffff1663dadbccee6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611523573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115479190614694565b896040518463ffffffff1660e01b815260040161156693929190614b32565b6020604051808303816000875af1158015611585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a99190614694565b9050604051806101200160405280828152602001600160048111156115d1576115d0613b1b565b5b815260200186815260200185815260200184815260200142815260200160008152602001600081526020016000815250600c60008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083600481111561164957611648613b1b565b5b021790555060408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070155610100820151816008015590505081600d6000838152602001908152602001600020819055509695505050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614bb5565b60405180910390fd5b60006117c58373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561179c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c09190614694565b611f5d565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828573ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa15801561182f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118539190614742565b6040518363ffffffff1660e01b8152600401611870929190614bd5565b602060405180830381865afa15801561188d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b19190614c2a565b6118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614ca3565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561193b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195f9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16634420e486846040518263ffffffff1660e01b81526004016119979190614262565b6020604051808303816000875af11580156119b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119da9190614694565b9150604051806040016040528083815260200160016002811115611a0157611a00613b1b565b5b815250600660008481526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff02191690836002811115611a4c57611a4b613b1b565b5b02179055509050503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac39190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b319190614694565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba09190614694565b03611c7f57600083905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1b9190614694565b905060008111611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614d0f565b60405180910390fd5b8060076000868152602001908152602001600020819055505050611e48565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cee9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c9190614694565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcb9190614694565b03611e475760003090508073ffffffffffffffffffffffffffffffffffffffff1663a41d8a8f848660006040518463ffffffff1660e01b8152600401611e1393929190614d2f565b600060405180830381600087803b158015611e2d57600080fd5b505af1158015611e41573d6000803e3d6000fd5b50505050505b5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600982908060018154018082558091505060019003906000526020600020016000909190919091505550919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401611f179190614262565b602060405180830381865afa158015611f34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f589190614694565b905090565b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fce9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015612018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203c9190614694565b82036120b8573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa15801561208d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b19190614d7b565b905061236b565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612103573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121279190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015612171573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121959190614694565b8203612211573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220a9190614d7b565b905061236b565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561225c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122809190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166338013f026040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190614694565b820361236a573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa15801561233f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123639190614d7b565b905061236b565b5b919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f906149ee565b60405180910390fd5b6000600f6000848152602001908152602001600020905082816000015414612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614df4565b60405180910390fd5b600030905060008173ffffffffffffffffffffffffffffffffffffffff16639588d85b856040518263ffffffff1660e01b81526004016124c59190613a4e565b61012060405180830381865afa1580156124e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125079190614f19565b90508060400151836004015484600301546125229190614f76565b1015612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a90614ff6565b60405180910390fd5b806040015183600401600082825461257b9190615016565b925050819055505050505050565b600060076000838152602001908152602001600020549050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290614bb5565b60405180910390fd5b6000826000015190506000811180156126995750806006600083815260200190815260200160002060000154145b6126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf90615096565b60405180910390fd5b82600660008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083600281111561272157612720613b1b565b5b021790555090505050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561277a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279e9190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906147bb565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054612845906150e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612871906150e5565b80156128be5780601f10612893576101008083540402835291602001916128be565b820191906000526020600020905b8154815290600101906020018083116128a157829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511461292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190615188565b60405180910390fd5b6000816040019015159081151581525050612944816135ff565b505050565b60006009828154811061295f5761295e61494d565b5b90600052602060002001549050919050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b81526004016129da9190614262565b602060405180830381865afa1580156129f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1b9190614694565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c41a360a826040518263ffffffff1660e01b8152600401612a769190613a4e565b602060405180830381865afa158015612a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab79190614742565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b1557600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612b17565b815b91505090565b6000612b4482600560008681526020019081526020016000206136b190919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bbc6139b1565b600c600083815260200190815260200160002060405180610120016040529081600082015481526020016001820160009054906101000a900460ff166004811115612c0a57612c09613b1b565b5b6004811115612c1c57612c1b613b1b565b5b81526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815250509050919050565b600081604051602001612c809190614583565b604051602081830303815290604052805190602001209050919050565b6000600f60008581526020019081526020016000206000015414612cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ced906151f4565b60405180910390fd5b6040518060a001604052808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020016402540be40081526020016000815250600f60008581526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816003015560808201518160040155905050505050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e879190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb906147bb565b60405180910390fd5b612efd826136cb565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8b906149ee565b60405180910390fd5b6000600c60008381526020019081526020016000209050428160060181905550806004015442612fc49190615016565b816007018190555060038160010160006101000a81548160ff02191690836004811115612ff457612ff3613b1b565b5b02179055505050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600980549050905090565b61304b613a0f565b6002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054613083906150e5565b80601f01602080910402602001604051908101604052809291908181526020018280546130af906150e5565b80156130fc5780601f106130d1576101008083540402835291602001916130fc565b820191906000526020600020905b8154815290600101906020018083116130df57829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b600061314460056000848152602001908152602001600020613702565b9050919050565b6000919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561319d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131c19190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461322e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613225906147bb565b60405180910390fd5b81600260008481526020019081526020016000206000015414613286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327d90615260565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613314816005600085815260200190815260200160002061371790919063ffffffff16565b505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561339d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133c19190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461342e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613425906147bb565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054613468906150e5565b80601f0160208091040260200160405190810160405280929190818152602001828054613494906150e5565b80156134e15780601f106134b6576101008083540402835291602001916134e1565b820191906000526020600020905b8154815290600101906020018083116134c457829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511461354d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613544906152f2565b60405180910390fd5b6001816040019015159081151581525050613567816135ff565b505050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006135f7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613747565b905092915050565b6000816000015190506000801b81036136555761361f8260200151612c6d565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908161368891906154b4565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b60006136c083600001836137b7565b60001c905092915050565b60008060405180606001604052806000801b81526020018481526020016001151581525090506136fa816135ff565b915050919050565b6000613710826000016137e2565b9050919050565b600061373f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137f3565b905092915050565b60006137538383613907565b6137ac5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506137b1565b600090505b92915050565b60008260000182815481106137cf576137ce61494d565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020549050600081146138fb5760006001826138259190614f76565b905060006001866000018054905061383d9190614f76565b90508181146138ac57600086600001828154811061385e5761385d61494d565b5b90600052602060002001549050808760000184815481106138825761388161494d565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806138c0576138bf615586565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613901565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b604051806040016040528060008152602001600060028111156139505761394f613b1b565b5b81525090565b6040518060a0016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610120016040528060008152602001600060048111156139d8576139d7613b1b565b5b8152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b6000819050919050565b613a4881613a35565b82525050565b6000602082019050613a636000830184613a3f565b92915050565b6000604051905090565b600080fd5b600080fd5b613a8681613a35565b8114613a9157600080fd5b50565b600081359050613aa381613a7d565b92915050565b600060208284031215613abf57613abe613a73565b5b6000613acd84828501613a94565b91505092915050565b60008115159050919050565b613aeb81613ad6565b82525050565b6000602082019050613b066000830184613ae2565b92915050565b613b1581613a35565b82525050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613b5b57613b5a613b1b565b5b50565b6000819050613b6c82613b4a565b919050565b6000613b7c82613b5e565b9050919050565b613b8c81613b71565b82525050565b604082016000820151613ba86000850182613b0c565b506020820151613bbb6020850182613b83565b50505050565b6000604082019050613bd66000830184613b92565b92915050565b6000819050919050565b613bef81613bdc565b82525050565b6000602082019050613c0a6000830184613be6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3b82613c10565b9050919050565b613c4b81613c30565b8114613c5657600080fd5b50565b600081359050613c6881613c42565b92915050565b600060208284031215613c8457613c83613a73565b5b6000613c9284828501613c59565b91505092915050565b613ca481613bdc565b8114613caf57600080fd5b50565b600081359050613cc181613c9b565b92915050565b60008060408385031215613cde57613cdd613a73565b5b6000613cec85828601613cb2565b9250506020613cfd85828601613c59565b9150509250929050565b613d1081613c30565b82525050565b60a082016000820151613d2c6000850182613b0c565b506020820151613d3f6020850182613d07565b506040820151613d526040850182613d07565b506060820151613d656060850182613b0c565b506080820151613d786080850182613b0c565b50505050565b600060a082019050613d936000830184613d16565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd3578082015181840152602081019050613db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000613dfb82613d99565b613e058185613da4565b9350613e15818560208601613db5565b613e1e81613ddf565b840191505092915050565b60006020820190508181036000830152613e438184613df0565b905092915050565b6000819050919050565b6000613e70613e6b613e6684613c10565b613e4b565b613c10565b9050919050565b6000613e8282613e55565b9050919050565b6000613e9482613e77565b9050919050565b613ea481613e89565b82525050565b6000602082019050613ebf6000830184613e9b565b92915050565b6000613ed082613e77565b9050919050565b613ee081613ec5565b82525050565b6000602082019050613efb6000830184613ed7565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3e82613ddf565b810181811067ffffffffffffffff82111715613f5d57613f5c613f06565b5b80604052505050565b6000613f70613a69565b9050613f7c8282613f35565b919050565b600060a08284031215613f9757613f96613f01565b5b613fa160a0613f66565b90506000613fb184828501613a94565b6000830152506020613fc584828501613a94565b6020830152506040613fd984828501613a94565b6040830152506060613fed84828501613c59565b606083015250608061400184828501613c59565b60808301525092915050565b600080600080600080610140878903121561402b5761402a613a73565b5b600061403989828a01613f81565b96505060a061404a89828a01613c59565b95505060c061405b89828a01613a94565b94505060e061406c89828a01613a94565b93505061010061407e89828a01613a94565b92505061012061409089828a01613a94565b9150509295509295509295565b60006140a882613c30565b9050919050565b6140b88161409d565b81146140c357600080fd5b50565b6000813590506140d5816140af565b92915050565b6000602082840312156140f1576140f0613a73565b5b60006140ff848285016140c6565b91505092915050565b6000806040838503121561411f5761411e613a73565b5b600061412d85828601613a94565b925050602061413e85828601613a94565b9150509250929050565b600061415382613e77565b9050919050565b61416381614148565b82525050565b600060208201905061417e600083018461415a565b92915050565b6003811061419157600080fd5b50565b6000813590506141a381614184565b92915050565b6000604082840312156141bf576141be613f01565b5b6141c96040613f66565b905060006141d984828501613a94565b60008301525060206141ed84828501614194565b60208301525092915050565b60006040828403121561420f5761420e613a73565b5b600061421d848285016141a9565b91505092915050565b60006020828403121561423c5761423b613a73565b5b600061424a84828501613cb2565b91505092915050565b61425c81613c30565b82525050565b60006020820190506142776000830184614253565b92915050565b6000806040838503121561429457614293613a73565b5b60006142a285828601613cb2565b92505060206142b385828601613a94565b9150509250929050565b600581106142ce576142cd613b1b565b5b50565b60008190506142df826142bd565b919050565b60006142ef826142d1565b9050919050565b6142ff816142e4565b82525050565b6101208201600082015161431c6000850182613b0c565b50602082015161432f60208501826142f6565b5060408201516143426040850182613b0c565b5060608201516143556060850182613b0c565b5060808201516143686080850182613b0c565b5060a082015161437b60a0850182613b0c565b5060c082015161438e60c0850182613b0c565b5060e08201516143a160e0850182613b0c565b506101008201516143b6610100850182613b0c565b50505050565b6000610120820190506143d26000830184614305565b92915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156143fd576143fc613f06565b5b61440682613ddf565b9050602081019050919050565b82818337600083830152505050565b6000614435614430846143e2565b613f66565b905082815260208101848484011115614451576144506143dd565b5b61445c848285614413565b509392505050565b600082601f830112614479576144786143d8565b5b8135614489848260208601614422565b91505092915050565b6000602082840312156144a8576144a7613a73565b5b600082013567ffffffffffffffff8111156144c6576144c5613a78565b5b6144d284828501614464565b91505092915050565b6000806000606084860312156144f4576144f3613a73565b5b600061450286828701613a94565b935050602061451386828701613c59565b925050604061452486828701613c59565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60006145558261452e565b61455f8185614539565b935061456f818560208601613db5565b61457881613ddf565b840191505092915050565b6000602082019050818103600083015261459d818461454a565b905092915050565b6145ae81613bdc565b82525050565b600082825260208201905092915050565b60006145d08261452e565b6145da81856145b4565b93506145ea818560208601613db5565b6145f381613ddf565b840191505092915050565b61460781613ad6565b82525050565b600060608301600083015161462560008601826145a5565b506020830151848203602086015261463d82826145c5565b915050604083015161465260408601826145fe565b508091505092915050565b60006020820190508181036000830152614677818461460d565b905092915050565b60008151905061468e81613a7d565b92915050565b6000602082840312156146aa576146a9613a73565b5b60006146b88482850161467f565b91505092915050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b60006146f7601b83614539565b9150614702826146c1565b602082019050919050565b60006020820190508181036000830152614726816146ea565b9050919050565b60008151905061473c81613c42565b92915050565b60006020828403121561475857614757613a73565b5b60006147668482850161472d565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b60006147a5601783614539565b91506147b08261476f565b602082019050919050565b600060208201905081810360008301526147d481614798565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b6000614811601f83614539565b915061481c826147db565b602082019050919050565b6000602082019050818103600083015261484081614804565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b600061487d601d83614539565b915061488882614847565b602082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b60006060820190506148c86000830186613be6565b6148d56020830185614253565b6148e26040830184613ae2565b949350505050565b6000819050919050565b600060ff82169050919050565b600061491c614917614912846148ea565b613e4b565b6148f4565b9050919050565b61492c81614901565b82525050565b60006020820190506149476000830184614923565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006149d8602183614539565b91506149e38261497c565b604082019050919050565b60006020820190508181036000830152614a07816149cb565b9050919050565b6000614a1982613c30565b9050919050565b614a2981614a0e565b8114614a3457600080fd5b50565b600081519050614a4681614a20565b92915050565b600060208284031215614a6257614a61613a73565b5b6000614a7084828501614a37565b91505092915050565b600060a08284031215614a8f57614a8e613f01565b5b614a9960a0613f66565b90506000614aa98482850161467f565b6000830152506020614abd8482850161467f565b6020830152506040614ad18482850161467f565b6040830152506060614ae58482850161472d565b6060830152506080614af98482850161472d565b60808301525092915050565b600060a08284031215614b1b57614b1a613a73565b5b6000614b2984828501614a79565b91505092915050565b6000606082019050614b476000830186613a3f565b614b546020830185613a3f565b614b616040830184614253565b949350505050565b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b6000614b9f601f83614539565b9150614baa82614b69565b602082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b6000604082019050614bea6000830185613be6565b614bf76020830184614253565b9392505050565b614c0781613ad6565b8114614c1257600080fd5b50565b600081519050614c2481614bfe565b92915050565b600060208284031215614c4057614c3f613a73565b5b6000614c4e84828501614c15565b91505092915050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b6000614c8d601f83614539565b9150614c9882614c57565b602082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b6000614cf9601a83614539565b9150614d0482614cc3565b602082019050919050565b60006020820190508181036000830152614d2881614cec565b9050919050565b6000606082019050614d446000830186613a3f565b614d516020830185614253565b614d5e6040830184614253565b949350505050565b600081519050614d7581613c9b565b92915050565b600060208284031215614d9157614d90613a73565b5b6000614d9f84828501614d66565b91505092915050565b7f4552524f523a504c2d3030323a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b6000614dde601983614539565b9150614de982614da8565b602082019050919050565b60006020820190508181036000830152614e0d81614dd1565b9050919050565b60058110614e2157600080fd5b50565b600081519050614e3381614e14565b92915050565b60006101208284031215614e5057614e4f613f01565b5b614e5b610120613f66565b90506000614e6b8482850161467f565b6000830152506020614e7f84828501614e24565b6020830152506040614e938482850161467f565b6040830152506060614ea78482850161467f565b6060830152506080614ebb8482850161467f565b60808301525060a0614ecf8482850161467f565b60a08301525060c0614ee38482850161467f565b60c08301525060e0614ef78482850161467f565b60e083015250610100614f0c8482850161467f565b6101008301525092915050565b60006101208284031215614f3057614f2f613a73565b5b6000614f3e84828501614e39565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614f8182613a35565b9150614f8c83613a35565b9250828203905081811115614fa457614fa3614f47565b5b92915050565b7f4552524f523a504c2d3030333a43415041434954595f544f4f5f4c4f57000000600082015250565b6000614fe0601d83614539565b9150614feb82614faa565b602082019050919050565b6000602082019050818103600083015261500f81614fd3565b9050919050565b600061502182613a35565b915061502c83613a35565b925082820190508082111561504457615043614f47565b5b92915050565b7f4552524f523a434d502d3030353a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000615080601f83614539565b915061508b8261504a565b602082019050919050565b600060208201905081810360008301526150af81615073565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806150fd57607f821691505b6020821081036151105761510f6150b6565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615172602183614539565b915061517d82615116565b604082019050919050565b600060208201905081810360008301526151a181615165565b9050919050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b60006151de601c83614539565b91506151e9826151a8565b602082019050919050565b6000602082019050818103600083015261520d816151d1565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b600061524a601f83614539565b915061525582615214565b602082019050919050565b600060208201905081810360008301526152798161523d565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006152dc602183614539565b91506152e782615280565b604082019050919050565b6000602082019050818103600083015261530b816152cf565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026153747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615337565b61537e8683615337565b95508019841693508086168417925050509392505050565b60006153b16153ac6153a784613a35565b613e4b565b613a35565b9050919050565b6000819050919050565b6153cb83615396565b6153df6153d7826153b8565b848454615344565b825550505050565b600090565b6153f46153e7565b6153ff8184846153c2565b505050565b5b81811015615423576154186000826153ec565b600181019050615405565b5050565b601f8211156154685761543981615312565b61544284615327565b81016020851015615451578190505b61546561545d85615327565b830182615404565b50505b505050565b600082821c905092915050565b600061548b6000198460080261546d565b1980831691505092915050565b60006154a4838361547a565b9150826002028217905092915050565b6154bd8261452e565b67ffffffffffffffff8111156154d6576154d5613f06565b5b6154e082546150e5565b6154eb828285615427565b600060209050601f83116001811461551e576000841561550c578287015190505b6155168582615498565b86555061557e565b601f19841661552c86615312565b60005b828110156155545784890151825560018201915060208501945060208101905061552f565b86831015615571578489015161556d601f89168261547a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220fe8d3469c34dbd7367481af69396594319bd9d664588206722c44a96e1fb592964736f6c63430008140033",
|
1006
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102955760003560e01c80636fa2985311610167578063af17d38a116100ce578063d4b0a5ac11610087578063d4b0a5ac146108a2578063d547741f146108d2578063eb71e8c4146108ee578063eb7f494d1461090c578063f174ce1914610928578063fb2cb1011461094657610295565b8063af17d38a146107ba578063b260c42a146107ea578063b909155214610806578063ba62fbe414610824578063be409a1114610842578063ca15c8731461087257610295565b8063893d20e811610120578063893d20e8146106c05780639010d07c146106de57806391d148541461070e5780639588d85b1461073e5780639cad00521461076e578063a41d8a8f1461079e57610295565b80636fa29853146105ea57806379e829d0146106085780637ab4253a146106265780637c4a13b1146106565780637fec8b311461067257806383d33319146106a257610295565b806332e3a6e91161020b5780636078a3b2116101c45780636078a3b214610502578063644c45e0146105325780636b34608a146105505780636c137ea9146105805780636c1ddffa1461059e5780636f5db1e3146105ba57610295565b806332e3a6e91461042a5780633bc5de30146104485780634288121d146104665780635312fdc2146104845780635ab1bd53146104b45780635ede3c2f146104d257610295565b80632a3d616e1161025d5780632a3d616e146103425780632a5f6e85146103725780632b1c7f73146103905780632f2ff15d146103c05780632f380b35146103dc57806331b62a3b1461040c57610295565b806302393c411461029a578063105bdcb2146102b857806315dae03e146102e85780631aa3a008146103065780632236684414610324575b600080fd5b6102a2610964565b6040516102af9190613a4e565b60405180910390f35b6102d260048036038101906102cd9190613aa9565b61096d565b6040516102df9190613a4e565b60405180910390f35b6102f061098a565b6040516102fd9190613a4e565b60405180910390f35b61030e610a21565b60405161031b9190613a4e565b60405180910390f35b61032c610b52565b6040516103399190613af1565b60405180910390f35b61035c60048036038101906103579190613aa9565b610bf5565b6040516103699190613bc1565b60405180910390f35b61037a610c67565b6040516103879190613bf5565b60405180910390f35b6103aa60048036038101906103a59190613c6e565b610c8f565b6040516103b79190613a4e565b60405180910390f35b6103da60048036038101906103d59190613cc7565b610cd8565b005b6103f660048036038101906103f19190613aa9565b610f9a565b6040516104039190613d7e565b60405180910390f35b610414611091565b6040516104219190613a4e565b60405180910390f35b610432611096565b60405161043f9190613bf5565b60405180910390f35b6104506110be565b60405161045d9190613e29565b60405180910390f35b61046e6110e6565b60405161047b9190613eaa565b60405180910390f35b61049e60048036038101906104999190613aa9565b611110565b6040516104ab9190613bf5565b60405180910390f35b6104bc611138565b6040516104c99190613ee6565b60405180910390f35b6104ec60048036038101906104e7919061400d565b611161565b6040516104f99190613a4e565b60405180910390f35b61051c600480360381019061051791906140db565b6116ba565b6040516105299190613a4e565b60405180910390f35b61053a611ebb565b6040516105479190613a4e565b60405180910390f35b61056a60048036038101906105659190613aa9565b611f5d565b6040516105779190613bf5565b60405180910390f35b610588612370565b6040516105959190613bf5565b60405180910390f35b6105b860048036038101906105b39190614108565b612398565b005b6105d460048036038101906105cf9190613aa9565b612589565b6040516105e19190613a4e565b60405180910390f35b6105f26125a6565b6040516105ff9190614169565b60405180910390f35b6106106125d0565b60405161061d9190613af1565b60405180910390f35b610640600480360381019061063b91906141f9565b6125d9565b60405161064d9190613a4e565b60405180910390f35b610670600480360381019061066b9190614226565b61272f565b005b61068c60048036038101906106879190613aa9565b612949565b6040516106999190613a4e565b60405180910390f35b6106aa612971565b6040516106b79190613a4e565b60405180910390f35b6106c861297e565b6040516106d59190614262565b60405180910390f35b6106f860048036038101906106f3919061427d565b612b1d565b6040516107059190614262565b60405180910390f35b61072860048036038101906107239190613cc7565b612b4c565b6040516107359190613af1565b60405180910390f35b61075860048036038101906107539190613aa9565b612bb4565b60405161076591906143bc565b60405180910390f35b61078860048036038101906107839190614492565b612c6d565b6040516107959190613bf5565b60405180910390f35b6107b860048036038101906107b391906144db565b612c9d565b005b6107d460048036038101906107cf9190614492565b612e16565b6040516107e19190613bf5565b60405180910390f35b61080460048036038101906107ff9190613aa9565b612f04565b005b61080e612ffd565b60405161081b9190614583565b60405180910390f35b61082c613036565b6040516108399190613a4e565b60405180910390f35b61085c60048036038101906108579190614226565b613043565b604051610869919061465d565b60405180910390f35b61088c60048036038101906108879190614226565b613127565b6040516108999190613a4e565b60405180910390f35b6108bc60048036038101906108b79190613aa9565b61314b565b6040516108c99190614262565b60405180910390f35b6108ec60048036038101906108e79190613cc7565b613152565b005b6108f6613319565b6040516109039190614583565b60405180910390f35b61092660048036038101906109219190614226565b613352565b005b61093061356c565b60405161093d9190614583565b60405180910390f35b61094e6135a5565b60405161095b9190614262565b60405180910390f35b6402540be40081565b6000600d6000838152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1c9190614694565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa89061470d565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401610b0a9190614262565b6020604051808303816000875af1158015610b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4d9190614694565b905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401610bae9190614262565b602060405180830381865afa158015610bcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bef9190614694565b11905090565b610bfd61392a565b60066000838152602001908152602001600020604051806040016040529081600082015481526020016001820160009054906101000a900460ff166002811115610c4a57610c49613b1b565b5b6002811115610c5c57610c5b613b1b565b5b815250509050919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d479190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab906147bb565b60405180910390fd5b81600260008481526020019081526020016000206000015414610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390614827565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff16610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690614893565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610efd81600560008581526020019081526020016000206135cf90919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051610f8e939291906148b3565b60405180910390a15050565b610fa2613956565b600f60008381526020019081526020016000206040518060a0016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481526020016004820154815250509050919050565b600090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b606060006040516020016110d29190614932565b604051602081830303815290604052905090565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600382815481106111265761112561494d565b5b90600052602060002001549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906149ee565b60405180910390fd5b60008211156113db5760003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611249573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126d9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16631a3cd59a846040518263ffffffff1660e01b81526004016112a59190613a4e565b60a060405180830381865afa1580156112c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e69190614b05565b905060003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113599190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16631a3cd59a83602001516040518263ffffffff1660e01b81526004016113959190613a4e565b60a060405180830381865afa1580156113b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d69190614b05565b905050505b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144a9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff1663ab10b8ec88600001513073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d99190614a4c565b73ffffffffffffffffffffffffffffffffffffffff1663dadbccee6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611523573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115479190614694565b896040518463ffffffff1660e01b815260040161156693929190614b32565b6020604051808303816000875af1158015611585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a99190614694565b9050604051806101200160405280828152602001600160048111156115d1576115d0613b1b565b5b815260200186815260200185815260200184815260200142815260200160008152602001600081526020016000815250600c60008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083600481111561164957611648613b1b565b5b021790555060408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070155610100820151816008015590505081600d6000838152602001908152602001600020819055509695505050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614bb5565b60405180910390fd5b60006117c58373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561179c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c09190614694565b611f5d565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828573ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa15801561182f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118539190614742565b6040518363ffffffff1660e01b8152600401611870929190614bd5565b602060405180830381865afa15801561188d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b19190614c2a565b6118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614ca3565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561193b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195f9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16634420e486846040518263ffffffff1660e01b81526004016119979190614262565b6020604051808303816000875af11580156119b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119da9190614694565b9150604051806040016040528083815260200160016002811115611a0157611a00613b1b565b5b815250600660008481526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff02191690836002811115611a4c57611a4b613b1b565b5b02179055509050503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac39190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b319190614694565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba09190614694565b03611c7f57600083905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1b9190614694565b905060008111611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614d0f565b60405180910390fd5b8060076000868152602001908152602001600020819055505050611e48565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cee9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c9190614694565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcb9190614694565b03611e475760003090508073ffffffffffffffffffffffffffffffffffffffff1663a41d8a8f848660006040518463ffffffff1660e01b8152600401611e1393929190614d2f565b600060405180830381600087803b158015611e2d57600080fd5b505af1158015611e41573d6000803e3d6000fd5b50505050505b5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600982908060018154018082558091505060019003906000526020600020016000909190919091505550919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401611f179190614262565b602060405180830381865afa158015611f34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f589190614694565b905090565b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fce9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015612018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203c9190614694565b82036120b8573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa15801561208d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b19190614d7b565b905061236b565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612103573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121279190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015612171573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121959190614694565b8203612211573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220a9190614d7b565b905061236b565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561225c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122809190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166338013f026040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190614694565b820361236a573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa15801561233f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123639190614d7b565b905061236b565b5b919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f906149ee565b60405180910390fd5b6000600f6000848152602001908152602001600020905082816000015414612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614df4565b60405180910390fd5b600030905060008173ffffffffffffffffffffffffffffffffffffffff16639588d85b856040518263ffffffff1660e01b81526004016124c59190613a4e565b61012060405180830381865afa1580156124e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125079190614f19565b90508060400151836004015484600301546125229190614f76565b1015612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a90614ff6565b60405180910390fd5b806040015183600401600082825461257b9190615016565b925050819055505050505050565b600060076000838152602001908152602001600020549050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290614bb5565b60405180910390fd5b6000826000015190506000811180156126995750806006600083815260200190815260200160002060000154145b6126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf90615096565b60405180910390fd5b82600660008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083600281111561272157612720613b1b565b5b021790555090505050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561277a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279e9190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906147bb565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054612845906150e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612871906150e5565b80156128be5780601f10612893576101008083540402835291602001916128be565b820191906000526020600020905b8154815290600101906020018083116128a157829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511461292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190615188565b60405180910390fd5b6000816040019015159081151581525050612944816135ff565b505050565b60006009828154811061295f5761295e61494d565b5b90600052602060002001549050919050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b81526004016129da9190614262565b602060405180830381865afa1580156129f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1b9190614694565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c41a360a826040518263ffffffff1660e01b8152600401612a769190613a4e565b602060405180830381865afa158015612a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab79190614742565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b1557600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612b17565b815b91505090565b6000612b4482600560008681526020019081526020016000206136b190919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bbc6139b1565b600c600083815260200190815260200160002060405180610120016040529081600082015481526020016001820160009054906101000a900460ff166004811115612c0a57612c09613b1b565b5b6004811115612c1c57612c1b613b1b565b5b81526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815250509050919050565b600081604051602001612c809190614583565b604051602081830303815290604052805190602001209050919050565b6000600f60008581526020019081526020016000206000015414612cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ced906151f4565b60405180910390fd5b6040518060a001604052808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020016402540be40081526020016000815250600f60008581526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816003015560808201518160040155905050505050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e879190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb906147bb565b60405180910390fd5b612efd826136cb565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8b906149ee565b60405180910390fd5b6000600c60008381526020019081526020016000209050428160060181905550806004015442612fc49190615016565b816007018190555060038160010160006101000a81548160ff02191690836004811115612ff457612ff3613b1b565b5b02179055505050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600980549050905090565b61304b613a0f565b6002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054613083906150e5565b80601f01602080910402602001604051908101604052809291908181526020018280546130af906150e5565b80156130fc5780601f106130d1576101008083540402835291602001916130fc565b820191906000526020600020905b8154815290600101906020018083116130df57829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b600061314460056000848152602001908152602001600020613702565b9050919050565b6000919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561319d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131c19190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461322e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613225906147bb565b60405180910390fd5b81600260008481526020019081526020016000206000015414613286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327d90615260565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613314816005600085815260200190815260200160002061371790919063ffffffff16565b505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561339d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133c19190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461342e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613425906147bb565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054613468906150e5565b80601f0160208091040260200160405190810160405280929190818152602001828054613494906150e5565b80156134e15780601f106134b6576101008083540402835291602001916134e1565b820191906000526020600020905b8154815290600101906020018083116134c457829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511461354d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613544906152f2565b60405180910390fd5b6001816040019015159081151581525050613567816135ff565b505050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006135f7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613747565b905092915050565b6000816000015190506000801b81036136555761361f8260200151612c6d565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908161368891906154b4565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b60006136c083600001836137b7565b60001c905092915050565b60008060405180606001604052806000801b81526020018481526020016001151581525090506136fa816135ff565b915050919050565b6000613710826000016137e2565b9050919050565b600061373f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137f3565b905092915050565b60006137538383613907565b6137ac5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506137b1565b600090505b92915050565b60008260000182815481106137cf576137ce61494d565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020549050600081146138fb5760006001826138259190614f76565b905060006001866000018054905061383d9190614f76565b90508181146138ac57600086600001828154811061385e5761385d61494d565b5b90600052602060002001549050808760000184815481106138825761388161494d565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806138c0576138bf615586565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613901565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b604051806040016040528060008152602001600060028111156139505761394f613b1b565b5b81525090565b6040518060a0016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610120016040528060008152602001600060048111156139d8576139d7613b1b565b5b8152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b6000819050919050565b613a4881613a35565b82525050565b6000602082019050613a636000830184613a3f565b92915050565b6000604051905090565b600080fd5b600080fd5b613a8681613a35565b8114613a9157600080fd5b50565b600081359050613aa381613a7d565b92915050565b600060208284031215613abf57613abe613a73565b5b6000613acd84828501613a94565b91505092915050565b60008115159050919050565b613aeb81613ad6565b82525050565b6000602082019050613b066000830184613ae2565b92915050565b613b1581613a35565b82525050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613b5b57613b5a613b1b565b5b50565b6000819050613b6c82613b4a565b919050565b6000613b7c82613b5e565b9050919050565b613b8c81613b71565b82525050565b604082016000820151613ba86000850182613b0c565b506020820151613bbb6020850182613b83565b50505050565b6000604082019050613bd66000830184613b92565b92915050565b6000819050919050565b613bef81613bdc565b82525050565b6000602082019050613c0a6000830184613be6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3b82613c10565b9050919050565b613c4b81613c30565b8114613c5657600080fd5b50565b600081359050613c6881613c42565b92915050565b600060208284031215613c8457613c83613a73565b5b6000613c9284828501613c59565b91505092915050565b613ca481613bdc565b8114613caf57600080fd5b50565b600081359050613cc181613c9b565b92915050565b60008060408385031215613cde57613cdd613a73565b5b6000613cec85828601613cb2565b9250506020613cfd85828601613c59565b9150509250929050565b613d1081613c30565b82525050565b60a082016000820151613d2c6000850182613b0c565b506020820151613d3f6020850182613d07565b506040820151613d526040850182613d07565b506060820151613d656060850182613b0c565b506080820151613d786080850182613b0c565b50505050565b600060a082019050613d936000830184613d16565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd3578082015181840152602081019050613db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000613dfb82613d99565b613e058185613da4565b9350613e15818560208601613db5565b613e1e81613ddf565b840191505092915050565b60006020820190508181036000830152613e438184613df0565b905092915050565b6000819050919050565b6000613e70613e6b613e6684613c10565b613e4b565b613c10565b9050919050565b6000613e8282613e55565b9050919050565b6000613e9482613e77565b9050919050565b613ea481613e89565b82525050565b6000602082019050613ebf6000830184613e9b565b92915050565b6000613ed082613e77565b9050919050565b613ee081613ec5565b82525050565b6000602082019050613efb6000830184613ed7565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3e82613ddf565b810181811067ffffffffffffffff82111715613f5d57613f5c613f06565b5b80604052505050565b6000613f70613a69565b9050613f7c8282613f35565b919050565b600060a08284031215613f9757613f96613f01565b5b613fa160a0613f66565b90506000613fb184828501613a94565b6000830152506020613fc584828501613a94565b6020830152506040613fd984828501613a94565b6040830152506060613fed84828501613c59565b606083015250608061400184828501613c59565b60808301525092915050565b600080600080600080610140878903121561402b5761402a613a73565b5b600061403989828a01613f81565b96505060a061404a89828a01613c59565b95505060c061405b89828a01613a94565b94505060e061406c89828a01613a94565b93505061010061407e89828a01613a94565b92505061012061409089828a01613a94565b9150509295509295509295565b60006140a882613c30565b9050919050565b6140b88161409d565b81146140c357600080fd5b50565b6000813590506140d5816140af565b92915050565b6000602082840312156140f1576140f0613a73565b5b60006140ff848285016140c6565b91505092915050565b6000806040838503121561411f5761411e613a73565b5b600061412d85828601613a94565b925050602061413e85828601613a94565b9150509250929050565b600061415382613e77565b9050919050565b61416381614148565b82525050565b600060208201905061417e600083018461415a565b92915050565b6003811061419157600080fd5b50565b6000813590506141a381614184565b92915050565b6000604082840312156141bf576141be613f01565b5b6141c96040613f66565b905060006141d984828501613a94565b60008301525060206141ed84828501614194565b60208301525092915050565b60006040828403121561420f5761420e613a73565b5b600061421d848285016141a9565b91505092915050565b60006020828403121561423c5761423b613a73565b5b600061424a84828501613cb2565b91505092915050565b61425c81613c30565b82525050565b60006020820190506142776000830184614253565b92915050565b6000806040838503121561429457614293613a73565b5b60006142a285828601613cb2565b92505060206142b385828601613a94565b9150509250929050565b600581106142ce576142cd613b1b565b5b50565b60008190506142df826142bd565b919050565b60006142ef826142d1565b9050919050565b6142ff816142e4565b82525050565b6101208201600082015161431c6000850182613b0c565b50602082015161432f60208501826142f6565b5060408201516143426040850182613b0c565b5060608201516143556060850182613b0c565b5060808201516143686080850182613b0c565b5060a082015161437b60a0850182613b0c565b5060c082015161438e60c0850182613b0c565b5060e08201516143a160e0850182613b0c565b506101008201516143b6610100850182613b0c565b50505050565b6000610120820190506143d26000830184614305565b92915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156143fd576143fc613f06565b5b61440682613ddf565b9050602081019050919050565b82818337600083830152505050565b6000614435614430846143e2565b613f66565b905082815260208101848484011115614451576144506143dd565b5b61445c848285614413565b509392505050565b600082601f830112614479576144786143d8565b5b8135614489848260208601614422565b91505092915050565b6000602082840312156144a8576144a7613a73565b5b600082013567ffffffffffffffff8111156144c6576144c5613a78565b5b6144d284828501614464565b91505092915050565b6000806000606084860312156144f4576144f3613a73565b5b600061450286828701613a94565b935050602061451386828701613c59565b925050604061452486828701613c59565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60006145558261452e565b61455f8185614539565b935061456f818560208601613db5565b61457881613ddf565b840191505092915050565b6000602082019050818103600083015261459d818461454a565b905092915050565b6145ae81613bdc565b82525050565b600082825260208201905092915050565b60006145d08261452e565b6145da81856145b4565b93506145ea818560208601613db5565b6145f381613ddf565b840191505092915050565b61460781613ad6565b82525050565b600060608301600083015161462560008601826145a5565b506020830151848203602086015261463d82826145c5565b915050604083015161465260408601826145fe565b508091505092915050565b60006020820190508181036000830152614677818461460d565b905092915050565b60008151905061468e81613a7d565b92915050565b6000602082840312156146aa576146a9613a73565b5b60006146b88482850161467f565b91505092915050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b60006146f7601b83614539565b9150614702826146c1565b602082019050919050565b60006020820190508181036000830152614726816146ea565b9050919050565b60008151905061473c81613c42565b92915050565b60006020828403121561475857614757613a73565b5b60006147668482850161472d565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b60006147a5601783614539565b91506147b08261476f565b602082019050919050565b600060208201905081810360008301526147d481614798565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b6000614811601f83614539565b915061481c826147db565b602082019050919050565b6000602082019050818103600083015261484081614804565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b600061487d601d83614539565b915061488882614847565b602082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b60006060820190506148c86000830186613be6565b6148d56020830185614253565b6148e26040830184613ae2565b949350505050565b6000819050919050565b600060ff82169050919050565b600061491c614917614912846148ea565b613e4b565b6148f4565b9050919050565b61492c81614901565b82525050565b60006020820190506149476000830184614923565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006149d8602183614539565b91506149e38261497c565b604082019050919050565b60006020820190508181036000830152614a07816149cb565b9050919050565b6000614a1982613c30565b9050919050565b614a2981614a0e565b8114614a3457600080fd5b50565b600081519050614a4681614a20565b92915050565b600060208284031215614a6257614a61613a73565b5b6000614a7084828501614a37565b91505092915050565b600060a08284031215614a8f57614a8e613f01565b5b614a9960a0613f66565b90506000614aa98482850161467f565b6000830152506020614abd8482850161467f565b6020830152506040614ad18482850161467f565b6040830152506060614ae58482850161472d565b6060830152506080614af98482850161472d565b60808301525092915050565b600060a08284031215614b1b57614b1a613a73565b5b6000614b2984828501614a79565b91505092915050565b6000606082019050614b476000830186613a3f565b614b546020830185613a3f565b614b616040830184614253565b949350505050565b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b6000614b9f601f83614539565b9150614baa82614b69565b602082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b6000604082019050614bea6000830185613be6565b614bf76020830184614253565b9392505050565b614c0781613ad6565b8114614c1257600080fd5b50565b600081519050614c2481614bfe565b92915050565b600060208284031215614c4057614c3f613a73565b5b6000614c4e84828501614c15565b91505092915050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b6000614c8d601f83614539565b9150614c9882614c57565b602082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b6000614cf9601a83614539565b9150614d0482614cc3565b602082019050919050565b60006020820190508181036000830152614d2881614cec565b9050919050565b6000606082019050614d446000830186613a3f565b614d516020830185614253565b614d5e6040830184614253565b949350505050565b600081519050614d7581613c9b565b92915050565b600060208284031215614d9157614d90613a73565b5b6000614d9f84828501614d66565b91505092915050565b7f4552524f523a504c2d3030323a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b6000614dde601983614539565b9150614de982614da8565b602082019050919050565b60006020820190508181036000830152614e0d81614dd1565b9050919050565b60058110614e2157600080fd5b50565b600081519050614e3381614e14565b92915050565b60006101208284031215614e5057614e4f613f01565b5b614e5b610120613f66565b90506000614e6b8482850161467f565b6000830152506020614e7f84828501614e24565b6020830152506040614e938482850161467f565b6040830152506060614ea78482850161467f565b6060830152506080614ebb8482850161467f565b60808301525060a0614ecf8482850161467f565b60a08301525060c0614ee38482850161467f565b60c08301525060e0614ef78482850161467f565b60e083015250610100614f0c8482850161467f565b6101008301525092915050565b60006101208284031215614f3057614f2f613a73565b5b6000614f3e84828501614e39565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614f8182613a35565b9150614f8c83613a35565b9250828203905081811115614fa457614fa3614f47565b5b92915050565b7f4552524f523a504c2d3030333a43415041434954595f544f4f5f4c4f57000000600082015250565b6000614fe0601d83614539565b9150614feb82614faa565b602082019050919050565b6000602082019050818103600083015261500f81614fd3565b9050919050565b600061502182613a35565b915061502c83613a35565b925082820190508082111561504457615043614f47565b5b92915050565b7f4552524f523a434d502d3030353a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000615080601f83614539565b915061508b8261504a565b602082019050919050565b600060208201905081810360008301526150af81615073565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806150fd57607f821691505b6020821081036151105761510f6150b6565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615172602183614539565b915061517d82615116565b604082019050919050565b600060208201905081810360008301526151a181615165565b9050919050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b60006151de601c83614539565b91506151e9826151a8565b602082019050919050565b6000602082019050818103600083015261520d816151d1565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b600061524a601f83614539565b915061525582615214565b602082019050919050565b600060208201905081810360008301526152798161523d565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006152dc602183614539565b91506152e782615280565b604082019050919050565b6000602082019050818103600083015261530b816152cf565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026153747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615337565b61537e8683615337565b95508019841693508086168417925050509392505050565b60006153b16153ac6153a784613a35565b613e4b565b613a35565b9050919050565b6000819050919050565b6153cb83615396565b6153df6153d7826153b8565b848454615344565b825550505050565b600090565b6153f46153e7565b6153ff8184846153c2565b505050565b5b81811015615423576154186000826153ec565b600181019050615405565b5050565b601f8211156154685761543981615312565b61544284615327565b81016020851015615451578190505b61546561545d85615327565b830182615404565b50505b505050565b600082821c905092915050565b600061548b6000198460080261546d565b1980831691505092915050565b60006154a4838361547a565b9150826002028217905092915050565b6154bd8261452e565b67ffffffffffffffff8111156154d6576154d5613f06565b5b6154e082546150e5565b6154eb828285615427565b600060209050601f83116001811461551e576000841561550c578287015190505b6155168582615498565b86555061557e565b601f19841661552c86615312565b60005b828110156155545784890151825560018201915060208501945060208101905061552f565b86831015615571578489015161556d601f89168261547a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220fe8d3469c34dbd7367481af69396594319bd9d664588206722c44a96e1fb592964736f6c63430008140033",
|
1007
|
-
"linkReferences": {
|
1008
|
-
|
2106
|
+
"bytecode": "0x60e06040523480156200001157600080fd5b50604051620091cd380380620091cd833981016040819052620000349162000ea0565b81818181620000456000336200046f565b6301ffc9a760e01b60005260026020527f71203db6a8b906f8e7c7701ea536708e3d7c6018d3ad50e5680c3241edacce17805460ff191660011790556001600160a01b038216620000dd5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040516301ffc9a760e01b81526306ecd8ef60e01b60048201526301ffc9a790602401602060405180830381865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000153919062000ee8565b620001a15760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620000d4565b6001600160601b03811660a081905260805160405163e74d052f60e01b815260048101929092526001600160a01b03169063e74d052f90602401602060405180830381865afa158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f919062000ee8565b620002795760405162461bcd60e51b815260206004820152602360248201527f4552524f523a5247422d3031323a504152454e545f4e4f545f5245474953544560448201526214915160ea1b6064820152608401620000d4565b3360c052631dfba64760e11b60005260026020527ffc5164b528507fb56c225cc68864b8f0ef1e129250403b69e252bd0b2789bfea805460ff191660011790555050604051620002c99062000e75565b604051809103906000f080158015620002e6573d6000803e3d6000fd5b50600380546001600160a01b0319166001600160a01b0392909216919091179055630de7806f60e41b60005260026020527fb7a5bd31c9701672db9f727cc86f4464d7714e74fe637c779c9647bf979b2c39805460ff191660011790556200034d62000746565b506200039890506200035e62000939565b60408051808201909152601581527f446973747269627574696f6e4f776e6572526f6c6500000000000000000000006020820152620009e6565b620003d2620003a662000a4b565b60408051808201909152600f81526e4f7261636c654f776e6572526f6c6560881b6020820152620009e6565b6200040a620003e062000aa6565b60408051808201909152600d81526c506f6f6c4f776e6572526f6c6560981b6020820152620009e6565b620004456200041862000aff565b60408051808201909152601081526f50726f647563744f776e6572526f6c6560801b6020820152620009e6565b5050600354600c80546001600160a01b0319166001600160a01b039092169190911790556200120a565b60006200047b62000b5b565b9050620004888162000be3565b15620004e75760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b6064820152608401620000d4565b60015415620005a75760018054600091906200050590829062000f13565b8154811062000518576200051862000f35565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1690506200054b828262000c87565b620005a55760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b6064820152608401620000d4565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101620006304290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990620007399083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b60006200075262000b5b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015620007a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007ce919062000f4b565b9050620008176040518060400160405280601581526020017f436f6d706f6e656e744f776e65725365727669636500000000000000000000008152508262000c9960201b60201c565b600480546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152601381527f446973747269627574696f6e5365727669636500000000000000000000000000602082015262000877908262000c99565b600580546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600e81526d50726f647563745365727669636560901b6020820152620008c8908262000c99565b600680546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600b81526a506f6f6c5365727669636560a81b602082015262000916908262000c99565b600780546001600160a01b0319166001600160a01b039290921691909117905550565b60405163e14787cb60e01b815260206004820152601560248201527f446973747269627574696f6e4f776e6572526f6c650000000000000000000000604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af4158015620009bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009e1919062000f70565b905090565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262000a188162000d6c565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200073992919062000fe4565b60405163e14787cb60e01b815260206004820152600f60248201526e4f7261636c654f776e6572526f6c6560881b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064016200099d565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064016200099d565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064016200099d565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000bbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009e1919062001013565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000c5a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c8091906200103a565b1192915050565b62ffffff808216908316115b92915050565b60805160405163a3bcd81d60e01b81526000916001600160a01b03169063a3bcd81d9062000cce908690869060040162001054565b602060405180830381865afa15801562000cec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d1291906200107b565b90506001600160a01b03811662000c935760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a494e532d3030313a4e4f545f52454749535445524544000000006044820152606401620000d4565b80516001600160c01b031981166000908152600860209081526040909120835181546001600160401b03191660c09190911c17815590830151839190600182019062000db990826200113e565b50604091909101516002909101805460ff191691151591909117905562000de08162000e4a565b62000e4657600980546001810182556000919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af600482040180546001600160401b0360039093166008026101000a928302191660c084901c929092029190911790555b5050565b6001600160c01b0319818116600081815260086020526040812054909260c09190911b161462000c93565b611f94806200723983390190565b80516001600160a01b038116811462000e9b57600080fd5b919050565b6000806040838503121562000eb457600080fd5b62000ebf8362000e83565b60208401519092506001600160601b038116811462000edd57600080fd5b809150509250929050565b60006020828403121562000efb57600080fd5b8151801515811462000f0c57600080fd5b9392505050565b8181038181111562000c9357634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121562000f5e57600080fd5b815160ff8116811462000f0c57600080fd5b60006020828403121562000f8357600080fd5b81516001600160c01b03198116811462000f0c57600080fd5b6000815180845260005b8181101562000fc45760208185018101518683018201520162000fa6565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160c01b0319831681526040602082018190526000906200100b9083018462000f9c565b949350505050565b6000602082840312156200102657600080fd5b815162ffffff8116811462000f0c57600080fd5b6000602082840312156200104d57600080fd5b5051919050565b60408152600062001069604083018562000f9c565b905060ff831660208301529392505050565b6000602082840312156200108e57600080fd5b62000f0c8262000e83565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620010c457607f821691505b602082108103620010e557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200113957600081815260208120601f850160051c81016020861015620011145750805b601f850160051c820191505b81811015620011355782815560010162001120565b5050505b505050565b81516001600160401b038111156200115a576200115a62001099565b62001172816200116b8454620010af565b84620010eb565b602080601f831160018114620011aa5760008415620011915750858301515b600019600386901b1c1916600185901b17855562001135565b600085815260208120601f198616915b82811015620011db57888601518255948401946001909101908401620011ba565b5085821015620011fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c051615fe3620012566000396000613c9001526000610600015260008181610810015281816112990152818161148501528181613c0f0152613cd30152615fe36000f3fe60806040523480156200001157600080fd5b5060043610620004755760003560e01c8063893d20e81162000259578063bd7d9d851162000149578063e1f64d7711620000c7578063ee0fdf711162000092578063ee0fdf711462000c8d578063f274e87d1462000ca4578063f2b246c31462000cd1578063fd143c761462000cf7578063fe1f18d61462000d0e57600080fd5b8063e1f64d771462000c31578063e26b857b1462000c48578063e79597401462000c5f578063ea5fa54b1462000c7657600080fd5b8063cf7a1d771162000114578063cf7a1d771462000bbe578063d250185c1462000bd5578063dad73bed1462000bec578063db70354c1462000c03578063e03eeb851462000c1a57600080fd5b8063bd7d9d851462000b49578063c2bf7d261462000b6f578063ca600b1c1462000b86578063cf5ccedb1462000b9857600080fd5b8063a5a4fbbc11620001d7578063b3c6501511620001a2578063b3c650151462000aca578063b88da7591462000aed578063b89010821462000b04578063b8c510671462000b1b578063b9f36dde1462000b3257600080fd5b8063a5a4fbbc1462000a85578063a745e3df1462000835578063a90be9071462000a9c578063af17d38a1462000ab357600080fd5b80639845743711620002245780639845743714620009ab57806399fd467714620009c25780639ae31ff51462000a0a578063a238accd1462000a39578063a310e2a31462000a5057600080fd5b8063893d20e8146200096a5780638d5d536e1462000974578063946dfcfe146200098b5780639675513d146200099457600080fd5b80634793b4ab116200037557806369a44a1b11620002f35780637fec8b3111620002be5780637fec8b3114620008cf5780638125ea9214620008e657806383d3331914620008f057806387c5658614620008f9578063887b1fa9146200093157600080fd5b806369a44a1b14620008835780636b9bf08b146200089a5780636fa2985314620008ac5780637cef484214620008be57600080fd5b80635ab1bd5311620003405780635ab1bd53146200080e5780635b5b48f514620008355780635d4345cc146200084b578063644c45e01462000862578063674d0ccf146200086c57600080fd5b80634793b4ab14620006715780634d459c9014620006975780635312fdc214620007a857806357f80bbf14620007d957600080fd5b806315dae03e116200040357806331b62a3b11620003ce57806331b62a3b14620005fe578063349195f914620006255780633bc5de30146200062e578063423eb9fa146200064a5780634288121d146200065f57600080fd5b806315dae03e146200058c5780631a91887614620005945780631aa3a00814620005c4578063278b381b14620005e757600080fd5b80630abd843411620004445780630abd843414620005195780630d0ccc5b14620005305780630d8e6e2c14620005565780630d9b998d146200057557600080fd5b806301ffc9a7146200047a57806306a5298b14620004bf57806307af0dc014620004d857806309648a9d14620004ef575b600080fd5b620004aa6200048b366004620043de565b6001600160e01b03191660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b620004d6620004d03660046200456c565b62000d25565b005b620004d6620004e936600462004742565b62000d54565b6200050662000500366004620048c4565b62000e11565b60405160ff9091168152602001620004b6565b620004aa6200052a366004620048f0565b62000e88565b620005476200054136600462004910565b62000f2c565b604051908152602001620004b6565b6200056062000fb5565b60405162ffffff9091168152602001620004b6565b620004d66200058636600462004948565b62001042565b603262000506565b620005ab620005a5366004620049e1565b620011e5565b6040516001600160a01b039091168152602001620004b6565b620005ce62001216565b6040516001600160601b039091168152602001620004b6565b620004aa620005f8366004620049e1565b62001311565b7f0000000000000000000000000000000000000000000000000000000000000000620005ce565b600f5462000547565b60408051602081018252600081529051620004b6919062004a55565b620004d66200065b36600462004a6a565b5050565b6006546001600160a01b0316620005ab565b6200068862000682366004620049e1565b62001320565b604051620004b6919062004b0a565b6200074a620006a8366004620048f0565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff90811660009081526020818152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001620004b6565b620007bf620007b9366004620048c4565b6200134d565b6040516001600160c01b03199091168152602001620004b6565b620007f0620007ea366004620049e1565b6200138f565b604080518251151581526020928301519281019290925201620004b6565b7f0000000000000000000000000000000000000000000000000000000000000000620005ab565b620004d66200084636600462004bb3565b505050565b620004d66200085c36600462004c2c565b620013c4565b620005ce6200146d565b620005476200087d36600462004c5f565b620014d5565b6200054762000894366004620049e1565b620014f9565b6007546001600160a01b0316620005ab565b6004546001600160a01b0316620005ab565b620004d66200065b36600462004c7f565b620005ce620008e0366004620048c4565b6200158a565b620005ab620015d2565b60095462000547565b604080518082018252600080825260209182015281518083019092526013548252601454908201525b604051620004b6919062004ca0565b6200095b6200094236600462004c5f565b5060408051808201909152600081526060602082015290565b604051620004b6919062004cb8565b620005ab620015ec565b620004d66200098536600462004cf0565b620015f8565b60015462000547565b62000547620009a536600462004db7565b620017f5565b620004d6620009bc36600462004dea565b6200195f565b620004aa620009d336600462004e30565b6001600160c01b031982166000908152600a602090815260408083206001600160a01b038516845290915290205460ff1692915050565b620005ce62000a1b366004620049e1565b6001600160601b039081166000908152601160205260409020541690565b620004d662000a4a36600462004e63565b62001adf565b620005ab62000a61366004620049e1565b6001600160601b03166000908152601260205260409020546001600160a01b031690565b620005ab62000a96366004620049e1565b62001b4c565b6200054762000aad366004620048c4565b62001b78565b620007bf62000ac436600462004e8b565b62001bb4565b62000ad462001d3d565b6040516001600160401b039091168152602001620004b6565b6200056062000afe366004620048c4565b62001d71565b620004d662000b1536600462004ed8565b62001db5565b620007bf62000b2c36600462004e8b565b62001e86565b620004d662000b4336600462004e30565b62001f06565b62000b6062000b5a366004620049e1565b6200206f565b604051620004b6919062004f0d565b620004d662000b8036600462004e30565b62002100565b6005546001600160a01b0316620005ab565b62000baf62000ba936600462004c5f565b62002300565b604051620004b691906200504c565b620004d662000bcf36600462004bb3565b620023fe565b6200092262000be636600462005095565b6200240a565b620004d662000bfd366004620050c7565b62002499565b620005ce62000c14366004620050fa565b620026b7565b620004d662000c2b36600462005129565b6200274e565b620004d662000c4236600462004dea565b6200278b565b620004d662000c593660046200515e565b620028d9565b620005ab62000c70366004620051b0565b620031e4565b620004d662000c87366004620051d1565b62003209565b620004aa62000c9e36600462004c5f565b62003389565b62000cbb62000cb5366004620051f4565b620033b4565b60408051928352602083019190915201620004b6565b62000ce862000ce2366004620049e1565b6200344b565b604051620004b6919062005224565b620004d662000d083660046200530d565b6200350f565b620004d662000d1f36600462004c2c565b62003687565b6200065b6065838360405160200162000d3f919062005224565b6040516020818303038152906040526200375c565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000d95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dbb919062005405565b6001600160a01b0316336001600160a01b03161462000df75760405162461bcd60e51b815260040162000dee9062005425565b60405180910390fd5b6200065b60d2838360405160200162000d3f919062004f0d565b6003546040516309648a9d60e01b8152600481018390526000916001600160a01b0316906309648a9d90602401602060405180830381865afa15801562000e5c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e82919062005466565b92915050565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000eff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f25919062005486565b1192915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562000f88573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fae919062005486565b9392505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562001017573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200103d9190620054a0565b905090565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001083573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010a9919062005405565b6001600160a01b0316336001600160a01b031614620010dc5760405162461bcd60e51b815260040162000dee9062005425565b6000604051806101c00160405280896001600160601b03168152602001836001600160601b03168152602001886001600160c01b031916815260200160006001600160a01b03168152602001876001600160c01b03191681526020018681526020018581526020016000815260200184815260200160405180602001604052806000815250815260200160405180602001604052806000815250815260200162001184600090565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff1690529050620011da60d28a83604051602001620011c5919062004f0d565b60405160208183030381529060405262003852565b505050505050505050565b600080620011f660645b8462003911565b8060200190518101906200120b9190620054cd565b602001519392505050565b600062001222620015ec565b6001600160a01b0316336001600160a01b031614620012845760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604482015260640162000dee565b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af1158015620012eb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200103d919062005522565b600062000e8260658362003a16565b6200132a62004358565b6200133860dc5b8362003911565b80602001905181019062000e829190620055ce565b600060098281548110620013655762001365620056af565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b6040805180820190915260008082526020820152620013af608c62001331565b80602001905181019062000e829190620056c5565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200142b919062005405565b6001600160a01b0316336001600160a01b0316146200145e5760405162461bcd60e51b815260040162000dee9062005425565b6200065b60d25b838362003b17565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa158015620012eb573d6000803e3d6000fd5b6001600160c01b031981166000908152600b6020526040812062000e829062003be2565b6001600160601b038116600090815260106020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af415801562001564573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e82919062005486565b6000600f8281548110620015a257620015a2620056af565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b60006200103d6003546001600160a01b031690565b919050565b60006200103d62003bed565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001639573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165f919062005405565b6001600160a01b0316336001600160a01b031614620016c15760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000dee565b6000604051806101000160405280886001600160601b0316815260200187815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562001792573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620017b8919062005704565b64ffffffffff168152602001600064ffffffffff1690529050620017eb60dc8983604051602001620011c5919062004b0a565b5050505050505050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001838573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200185e919062005405565b6001600160a01b0316336001600160a01b031614620018915760405162461bcd60e51b815260040162000dee9062005724565b506001600160601b038083166000818152600e602090815260408083209486168352938152838220805490839055928252600d9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d575691620019149186906004019182526001600160601b0316602082015260400190565b602060405180830381865af415801562001932573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001958919062005765565b5092915050565b6001600160601b03828116600090815260106020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af4158015620019d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620019f9919062005765565b1562001a525760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000dee565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562001ab2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ad8919062005765565b5050505050565b60035460405163a238accd60e01b81526004810184905260ff831660248201526001600160a01b039091169063a238accd90604401600060405180830381600087803b15801562001b2f57600080fd5b505af115801562001b44573d6000803e3d6000fd5b505050505050565b60008062001b5b6064620011ef565b80602001905181019062001b709190620054cd565b519392505050565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e9060240162001546565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001bf5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c1b919062005405565b6001600160a01b0316336001600160a01b03161462001c4e5760405162461bcd60e51b815260040162000dee9062005785565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9062001c8790859060040162004a55565b602060405180830381865af415801562001ca5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ccb9190620057c9565b905062001cd88162003389565b1562001d315760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000dee565b620015e7818362003d4f565b60006200103d7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00546001600160401b031690565b60006001828154811062001d895762001d89620056af565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b604080518082019091526001600160601b03831681526020810182905262001e8060c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801562001e32573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e58919062005486565b8360405160200162001e6b919062004cb8565b60405160208183030381529060405262003db4565b50505050565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9062001ec290859060040162004a55565b602060405180830381865af415801562001ee0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e829190620057c9565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b161462001f4a5760405162461bcd60e51b815260040162000dee90620057e9565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001f89573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001faf919062005405565b6001600160a01b0316336001600160a01b03161462001fe25760405162461bcd60e51b815260040162000dee9062005785565b6001600160c01b031983166000818152600a602090815260408083206001600160a01b03871684528252808320805460ff19169055928252600b9052206200202b908362003dea565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620020629392919062005820565b60405180910390a1505050565b604080516101c08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201819052610140820152610160810182905261018081018290526101a0810191909152620020eb60d262001331565b80602001905181019062000e8291906200584d565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b1614620021445760405162461bcd60e51b815260040162000dee90620057e9565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002183573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021a9919062005405565b6001600160a01b0316336001600160a01b031614620021dc5760405162461bcd60e51b815260040162000dee9062005785565b6001600160c01b0319831660009081526008602052604090206002015460ff166200224a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000dee565b6001600160c01b031983166000818152600a602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600b90522062002296908362003e01565b506001600160c01b031983166000908152600a602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d169875453966849162002062918691869160ff9091169062005820565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260088252918590208551938401909552845460c01b909116825260018401805493949293918401916200235f90620059ba565b80601f01602080910402602001604051908101604052809291908181526020018280546200238d90620059ba565b8015620023de5780601f10620023b257610100808354040283529160200191620023de565b820191906000526020600020905b815481529060010190602001808311620023c057829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b62000846838362003e18565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af415801562002473573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fae9190620059f6565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b1614620024dd5760405162461bcd60e51b815260040162000dee90620057e9565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200251c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002542919062005405565b6001600160a01b0316336001600160a01b031614620025755760405162461bcd60e51b815260040162000dee9062005785565b6001600160c01b03198084166000908152600860209081526040808320815160608101909252805460c01b9094168152600184018054939491939192840191620025bf90620059ba565b80601f0160208091040260200160405190810160405280929190818152602001828054620025ed90620059ba565b80156200263e5780601f1062002612576101008083540402835291602001916200263e565b820191906000526020600020905b8154815290600101906020018083116200262057829003601f168201915b50505091835250506002919091015460ff161515602090910152831515604082015290506200266d81620040e9565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b038216600090815260106020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af415801562002728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fae919062005522565b60408051808201825283151580825260208083018581528451918201929092529051928101929092529062001e8090608c908690606001620011c5565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620027cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027f2919062005405565b6001600160a01b0316336001600160a01b031614620028255760405162461bcd60e51b815260040162000dee9062005724565b6001600160601b038381166000818152600e60209081526040808320948716808452948252808320869055928252600d90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620028b3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e80919062005765565b6000836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200291a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002940919062005522565b90506000836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002983573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029a9919062005522565b90506000836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015620029ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a12919062005522565b6040516330b8415f60e01b81526001600160601b038516600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562002a6e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a94919062005765565b62002ae25760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a5452532d3031303a50524f445543545f554e444546494e454400604482015260640162000dee565b6040516330b8415f60e01b81526001600160601b038316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562002b3b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002b61919062005765565b62002baf5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a5452532d3031313a504f4f4c5f554e444546494e454400000000604482015260640162000dee565b6001600160601b0383166000908152601260205260409020546001600160a01b03161562002c375760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000dee565b6001600160601b0382811660009081526011602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af415801562002ca3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002cc9919062005765565b62002d215760405162461bcd60e51b815260206004820152602160248201527f4552524f523a5452532d3031333a504f4f4c5f414c52454144595f4c494e4b456044820152601160fa1b606482015260840162000dee565b6001600160601b0381811660009081526011602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af415801562002d8d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002db3919062005765565b62002e135760405162461bcd60e51b815260206004820152602960248201527f4552524f523a5452532d3031343a434f4d50454e534154494f4e5f414c524541604482015268111657d3125392d15160ba1b606482015260840162000dee565b6000866001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002e54573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e7a919062005405565b9050838160405162002e8c90620043d0565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f08015801562002ec7573d6000803e3d6000fd5b506001600160601b03858116600081815260126020908152604080832080546001600160a01b0319166001600160a01b039788161790558785168084526011835281842080546bffffffffffffffffffffffff199081168717909155958a16808552828520805490971690951790955580516101208101825293845290830193909352848416828401528251631380bf2360e01b815283519194929360608501938d1692631380bf239260048082019392918290030181865afa15801562002f93573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002fb99190620059f6565b8152602001896001600160a01b031663daafed406040518163ffffffff1660e01b81526004016040805180830381865afa15801562002ffc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620030229190620059f6565b8152602001886001600160a01b0316636741fad26040518163ffffffff1660e01b81526004016040805180830381865afa15801562003065573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200308b9190620059f6565b8152602001886001600160a01b0316634b270a466040518163ffffffff1660e01b81526004016040805180830381865afa158015620030ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620030f49190620059f6565b8152602001886001600160a01b031663235c36036040518163ffffffff1660e01b81526004016040805180830381865afa15801562003137573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200315d9190620059f6565b8152602001876001600160a01b0316637c3d51666040518163ffffffff1660e01b81526004016040805180830381865afa158015620031a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620031c69190620059f6565b90529050620017eb60658683604051602001620011c5919062005224565b6001600160c01b031982166000908152600b6020526040812062000fae9083620041c7565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003248573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200326e919062005405565b6001600160a01b0316336001600160a01b031614620032d05760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000dee565b604080518082019091526001600160a01b03838116825282166020820152600f8054600180820183556000929092527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8026002820401805492909116600c026101000a6001600160601b03818102199093169287160291909117905562001e8062003358606490565b8583604051602001620011c5919081516001600160a01b039081168252602092830151169181019190915260400190565b6001600160c01b0319818116600081815260086020526040812054909260c09190911b161462000e82565b60405163012ebd8360e21b8152815160048201526020820151602482015260448101839052600090819073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af41580156200341a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003440919062005a15565b915091509250929050565b620034ee6040805161012081018252600080825260208083018290528284018290528351808501855282815280820183905260608401528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e084015283518085019094528184528301529061010082015290565b620034fa606562001331565b80602001905181019062000e82919062005a3a565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003550573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003576919062005405565b6001600160a01b0316336001600160a01b031614806200360d5750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620035d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035f8919062005405565b6001600160a01b0316336001600160a01b0316145b6200366d5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000dee565b6200065b60dc838360405160200162000d3f919062004b0a565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620036c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620036ee919062005405565b6001600160a01b0316336001600160a01b031614620037505760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000dee565b6200065b60dc62001465565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690636ec3d9409073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620037d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620037f9919062005486565b836040518363ffffffff1660e01b81526004016200381992919062005b0e565b600060405180830381600087803b1580156200383457600080fd5b505af115801562003849573d6000803e3d6000fd5b50505050505050565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690635dee47889073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620038c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038ef919062005486565b85846040518463ffffffff1660e01b8152600401620038199392919062005b29565b600c54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526060916001600160a01b0316906354f6127f9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003989573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039af919062005486565b6040518263ffffffff1660e01b8152600401620039ce91815260200190565b600060405180830381865afa158015620039ec573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000fae919081019062005b56565b600c54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526000916001600160a01b0316906338a699a49073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003a8e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ab4919062005486565b6040518263ffffffff1660e01b815260040162003ad391815260200190565b602060405180830381865afa15801562003af1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fae919062005765565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b039091169063a238accd9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003b8e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003bb4919062005486565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003819565b600062000e82825490565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa15801562003c57573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003c7d919062005522565b90506001600160601b03811662003cb5577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801562003d23573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003d49919062005405565b91505090565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003d8181620040e9565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200206292919062005b8e565b600c54604051630bbdc8f160e31b81526001600160a01b0390911690635dee478890620038199085908790869060040162005b29565b600062000fae836001600160a01b038416620041d5565b600062000fae836001600160a01b038416620042d9565b600062003e2462000fb5565b905062003e318162000e88565b1562003e905760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b606482015260840162000dee565b6001541562003f5757600180546000919062003eae90829062005bb5565b8154811062003ec15762003ec1620056af565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905062003efb828262ffffff90811691161190565b62003f555760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b606482015260840162000dee565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b0380861660208401528416908201526060810162003fe04290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990620020629083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b80516001600160c01b0319811660009081526008602090815260409091208351815467ffffffffffffffff191660c09190911c17815590830151839190600182019062004137908262005c21565b50604091909101516002909101805460ff19169115159190911790556200415e8162003389565b6200065b57600980546001810182556000919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af600482040180546001600160401b0360039093166008026101000a928302191660c09390931c9190910291909117905550565b600062000fae83836200432b565b60008181526001830160205260408120548015620042ce576000620041fc60018362005bb5565b8554909150600090620042129060019062005bb5565b90508181146200427e576000866000018281548110620042365762004236620056af565b90600052602060002001549050808760000184815481106200425c576200425c620056af565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062004292576200429262005ced565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062000e82565b600091505062000e82565b6000818152600183016020526040812054620043225750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000e82565b50600062000e82565b6000826000018281548110620043455762004345620056af565b9060005260206000200154905092915050565b60405180610100016040528060006001600160601b0316815260200162004392604051806040016040528060008152602001600081525090565b815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b6102aa8062005d0483390190565b600060208284031215620043f157600080fd5b81356001600160e01b03198116811462000fae57600080fd5b6001600160601b03811681146200442057600080fd5b50565b8035620015e7816200440a565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156200446b576200446b62004430565b60405290565b60405161012081016001600160401b03811182821017156200446b576200446b62004430565b6040516101c081016001600160401b03811182821017156200446b576200446b62004430565b60405161010081016001600160401b03811182821017156200446b576200446b62004430565b604051601f8201601f191681016001600160401b03811182821017156200450e576200450e62004430565b604052919050565b6001600160a01b03811681146200442057600080fd5b8035620015e78162004516565b6000604082840312156200454c57600080fd5b6200455662004446565b9050813581526020820135602082015292915050565b6000808284036102008112156200458257600080fd5b83356200458f816200440a565b92506101e0601f1982011215620045a557600080fd5b50620045b062004471565b620045be6020850162004423565b8152620045ce6040850162004423565b6020820152620045e1606085016200452c565b6040820152620045f5856080860162004539565b6060820152620046098560c0860162004539565b60808201526101006200461f8682870162004539565b60a08301526200463486610140870162004539565b60c08301526200464986610180870162004539565b60e08301526200465e866101c0870162004539565b90820152919491935090915050565b6001600160c01b0319811681146200442057600080fd5b8035620015e7816200466d565b60006001600160401b03821115620046ad57620046ad62004430565b50601f01601f191660200190565b6000620046d2620046cc8462004691565b620044e3565b9050828152838383011115620046e757600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200471057600080fd5b62000fae83833560208501620046bb565b64ffffffffff811681146200442057600080fd5b8035620015e78162004721565b600080604083850312156200475657600080fd5b823562004763816200440a565b915060208301356001600160401b03808211156200478057600080fd5b908401906101c082870312156200479657600080fd5b620047a062004497565b620047ab8362004423565b8152620047bb6020840162004423565b6020820152620047ce6040840162004684565b6040820152620047e1606084016200452c565b6060820152620047f46080840162004684565b608082015260a083013560a082015260c083013560c082015260e083013560e082015261010080840135818301525061012080840135838111156200483857600080fd5b6200484689828701620046fe565b82840152505061014080840135838111156200486157600080fd5b6200486f89828701620046fe565b82840152505061016091506200488782840162004735565b8282015261018091506200489d82840162004735565b828201526101a09150620048b382840162004735565b828201528093505050509250929050565b600060208284031215620048d757600080fd5b5035919050565b62ffffff811681146200442057600080fd5b6000602082840312156200490357600080fd5b813562000fae81620048de565b600080604083850312156200492457600080fd5b8235915060208301358060000b81146200493d57600080fd5b809150509250929050565b600080600080600080600080610100898b0312156200496657600080fd5b883562004973816200440a565b9750602089013562004985816200440a565b9650604089013562004997816200466d565b95506060890135620049a9816200466d565b94506080890135935060a0890135925060c0890135915060e0890135620049d0816200440a565b809150509295985092959890939650565b600060208284031215620049f457600080fd5b813562000fae816200440a565b60005b8381101562004a1e57818101518382015260200162004a04565b50506000910152565b6000815180845262004a4181602086016020860162004a01565b601f01601f19169290920160200192915050565b60208152600062000fae602083018462004a27565b6000806040838503121562004a7e57600080fd5b823562004a8b816200466d565b915060208301356001600160401b038082111562004aa857600080fd5b908401906040828703121562004abd57600080fd5b62004ac762004446565b823562004ad4816200440a565b815260208301358281111562004ae957600080fd5b62004af788828601620046fe565b6020830152508093505050509250929050565b602081526001600160601b0382511660208201526000602083015162004b3d604084018280518252602090810151910152565b50604083015161012080608085015262004b5c61014085018362004a27565b9150606085015160a0850152608085015160c085015260a085015160e085015260c085015162004b9661010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b60008060006060848603121562004bc957600080fd5b833562004bd68162004516565b9250602084013562004be88162004516565b915060408401356001600160401b0381111562004c0457600080fd5b62004c1286828701620046fe565b9150509250925092565b60ff811681146200442057600080fd5b6000806040838503121562004c4057600080fd5b823562004c4d816200440a565b915060208301356200493d8162004c1c565b60006020828403121562004c7257600080fd5b813562000fae816200466d565b6000806040838503121562004c9357600080fd5b823562004c4d816200466d565b81518152602080830151908201526040810162000e82565b602081526001600160601b0382511660208201526000602083015160408084015262004ce8606084018262004a27565b949350505050565b600080600080600080600060e0888a03121562004d0c57600080fd5b873562004d19816200440a565b9650602088013562004d2b816200440a565b955062004d3c8960408a0162004539565b94506080880135935060a0880135925060c08801356001600160401b038082111562004d6757600080fd5b818a0191508a601f83011262004d7c57600080fd5b81358181111562004d8c57600080fd5b8b602082850101111562004d9f57600080fd5b60208301945080935050505092959891949750929550565b6000806040838503121562004dcb57600080fd5b823562004dd8816200440a565b915060208301356200493d816200440a565b60008060006060848603121562004e0057600080fd5b833562004e0d816200440a565b9250602084013562004e1f816200440a565b929592945050506040919091013590565b6000806040838503121562004e4457600080fd5b823562004e51816200466d565b915060208301356200493d8162004516565b6000806040838503121562004e7757600080fd5b8235915060208301356200493d8162004c1c565b60006020828403121562004e9e57600080fd5b81356001600160401b0381111562004eb557600080fd5b8201601f8101841362004ec757600080fd5b62004ce884823560208401620046bb565b60008060006060848603121562004eee57600080fd5b833562004efb816200466d565b9250602084013562004be8816200440a565b6020815262004f286020820183516001600160601b03169052565b6000602083015162004f4560408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160a01b03811660808401525060808301516001600160c01b0319811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101c0610140818186015262004fd96101e086018462004a27565b9250808601519050610160601f19868503018187015262004ffb848362004a27565b9350808701519150506101806200501a8187018364ffffffffff169052565b86015190506101a0620050358682018364ffffffffff169052565b86015164ffffffffff811683870152905062004ba9565b602080825282516001600160c01b03191682820152820151606060408301526000906200507d608084018262004a27565b90506040840151151560608401528091505092915050565b60008060408385031215620050a957600080fd5b50508035926020909101359150565b80151581146200442057600080fd5b60008060408385031215620050db57600080fd5b8235620050e8816200466d565b915060208301356200493d81620050b8565b600080604083850312156200510e57600080fd5b82356200511b816200440a565b946020939093013593505050565b6000806000606084860312156200513f57600080fd5b83356200514c816200440a565b9250602084013562004e1f81620050b8565b6000806000606084860312156200517457600080fd5b8335620051818162004516565b92506020840135620051938162004516565b91506040840135620051a58162004516565b809150509250925092565b60008060408385031215620051c457600080fd5b82356200511b816200466d565b600080600060608486031215620051e757600080fd5b833562005181816200440a565b600080606083850312156200520857600080fd5b823591506200521b846020850162004539565b90509250929050565b81516001600160601b031681526020808301516101e083019162005252908401826001600160601b03169052565b5060408301516200526e60408401826001600160a01b03169052565b5060608301516200528c606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151805161012084015260208101516101408401525060e0830151805161016084015260208101516101808401525061010083015180516101a084015260208101516101c084015262001958565b600080604083850312156200532157600080fd5b82356200532e816200440a565b915060208301356001600160401b03808211156200534b57600080fd5b9084019061012082870312156200536157600080fd5b6200536b620044bd565b620053768362004423565b815262005387876020850162004539565b60208201526060830135828111156200539f57600080fd5b620053ad88828601620046fe565b6040830152506080830135606082015260a0830135608082015260c083013560a0820152620053df60e0840162004735565b60c0820152620053f3610100840162004735565b60e08201528093505050509250929050565b6000602082840312156200541857600080fd5b815162000fae8162004516565b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200547957600080fd5b815162000fae8162004c1c565b6000602082840312156200549957600080fd5b5051919050565b600060208284031215620054b357600080fd5b815162000fae81620048de565b8051620015e78162004516565b600060408284031215620054e057600080fd5b620054ea62004446565b8251620054f78162004516565b81526020830151620055098162004516565b60208201529392505050565b8051620015e7816200440a565b6000602082840312156200553557600080fd5b815162000fae816200440a565b6000604082840312156200555557600080fd5b6200555f62004446565b9050815181526020820151602082015292915050565b600082601f8301126200558757600080fd5b815162005598620046cc8262004691565b818152846020838601011115620055ae57600080fd5b62004ce882602083016020870162004a01565b8051620015e78162004721565b600060208284031215620055e157600080fd5b81516001600160401b0380821115620055f957600080fd5b9083019061012082860312156200560f57600080fd5b62005619620044bd565b620056248362005515565b815262005635866020850162005542565b60208201526060830151828111156200564d57600080fd5b6200565b8782860162005575565b6040830152506080830151606082015260a0830151608082015260c083015160a08201526200568d60e08401620055c1565b60c0820152620056a16101008401620055c1565b60e082015295945050505050565b634e487b7160e01b600052603260045260246000fd5b600060408284031215620056d857600080fd5b620056e262004446565b8251620056ef81620050b8565b81526020928301519281019290925250919050565b6000602082840312156200571757600080fd5b815162000fae8162004721565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200577857600080fd5b815162000fae81620050b8565b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b8051620015e7816200466d565b600060208284031215620057dc57600080fd5b815162000fae816200466d565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b6000602082840312156200586057600080fd5b81516001600160401b03808211156200587857600080fd5b908301906101c082860312156200588e57600080fd5b6200589862004497565b620058a38362005515565b8152620058b36020840162005515565b6020820152620058c660408401620057bc565b6040820152620058d960608401620054c0565b6060820152620058ec60808401620057bc565b608082015260a083015160a082015260c083015160c082015260e083015160e082015261010080840151818301525061012080840151838111156200593057600080fd5b6200593e8882870162005575565b82840152505061014080840151838111156200595957600080fd5b620059678882870162005575565b82840152505061016091506200597f828401620055c1565b82820152610180915062005995828401620055c1565b828201526101a09150620059ab828401620055c1565b91810191909152949350505050565b600181811c90821680620059cf57607f821691505b602082108103620059f057634e487b7160e01b600052602260045260246000fd5b50919050565b60006040828403121562005a0957600080fd5b62000fae838362005542565b6000806040838503121562005a2957600080fd5b505080516020909101519092909150565b60006101e0828403121562005a4e57600080fd5b62005a5862004471565b62005a638362005515565b815262005a736020840162005515565b602082015262005a8660408401620054c0565b604082015262005a9a846060850162005542565b606082015262005aae8460a0850162005542565b608082015262005ac28460e0850162005542565b60a082015262005ad784610120850162005542565b60c082015262005aec84610160850162005542565b60e082015262005b01846101a0850162005542565b6101008201529392505050565b82815260406020820152600062004ce8604083018462004a27565b83815260ff8316602082015260606040820152600062005b4d606083018462004a27565b95945050505050565b60006020828403121562005b6957600080fd5b81516001600160401b0381111562005b8057600080fd5b62004ce88482850162005575565b6001600160401b0360c01b8316815260406020820152600062004ce8604083018462004a27565b8181038181111562000e8257634e487b7160e01b600052601160045260246000fd5b601f8211156200084657600081815260208120601f850160051c8101602086101562005c005750805b601f850160051c820191505b8181101562001b445782815560010162005c0c565b81516001600160401b0381111562005c3d5762005c3d62004430565b62005c558162005c4e8454620059ba565b8462005bd7565b602080601f83116001811462005c8d576000841562005c745750858301515b600019600386901b1c1916600185901b17855562001b44565b600085815260208120601f198616915b8281101562005cbe5788860151825594840194600190910190840162005c9d565b508582101562005cdd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea264697066735822122098042a25f53a65deabe0e6f542a37f2241e6a3e8502eedd92fc64bb45d25bfc364736f6c63430008140033a264697066735822122007101a5ff351a61864c56bb5eb69adfe617941f84d54a40a40e5d62cd79cfcd564736f6c6343000814003360806040523480156200001157600080fd5b506200001c62000052565b6200002662000206565b620000306200033f565b6200003a620005a7565b600380546001600160a01b031916331790556200071d565b60dc600090815260208190527f5bd290414b404036f9d63146803dd83b59a8e1905062a5bfed8b0154d20a390d805460ff1916606417905560019081906200009860dc90565b60ff1660ff1681526020019081526020016000206000620000be620006eb60201b60201c565b60ff1660ff1681526020019081526020016000206000620000e4620006f560201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200011760dc90565b60ff1660ff16815260200190815260200160002060006200013d620006f560201b60201c565b60ff1660ff168152602001908152602001600020600062000163620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200019660dc90565b60ff1660ff1681526020019081526020016000206000620001bc620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620001e2620006fa60201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f9db7038e59677010ca8f72fa448bad1b4f3c53346b666689163ccac31db467728054606460ff1991821681179092557f1a3062e9a24818c8281fcfb58ec4f3083a2f9a1314ac63f80d8d646661fdc5098054909116600190811790915560009182526020819052907f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c12906200029a606e90565b60ff1660ff1681526020019081526020016000206000620002c0620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001908190620002f3606490565b60ff1660ff168152602001908152602001600020600062000319620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620001e2620006ff60201b60201c565b60d2600090815260208190527fc0d27dadfcf8ee0186a0f6fe9b5805a51e99869050491e4a3040efec012a214f805460ff1916600a17905560019081906200038560d290565b60ff1660ff1681526020019081526020016000206000620003ab6200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620003d16200070960201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200040460d290565b60ff1660ff16815260200190815260200160002060006200042a6200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620004506200070e60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200048360d290565b60ff1660ff1681526020019081526020016000206000620004a96200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620004cf6200071360201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200050260d290565b60ff1660ff1681526020019081526020016000206000620005286200071360201b60201c565b60ff1660ff16815260200190815260200160002060006200054e620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200058160d290565b60ff1660ff1681526020019081526020016000206000620001bc620006eb60201b60201c565b60c8600090815260208190527fc5f2c791ab4e0b1a0b6c600884b07e98575b00ebd7c3166c4272a53bebf71403805460ff191660641790556001908190620005ed60c890565b60ff1660ff168152602001908152602001600020600062000613620006eb60201b60201c565b60ff1660ff168152602001908152602001600020600062000639620006f560201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200066c60c890565b60ff1660ff168152602001908152602001600020600062000692620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620006b8620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001908190620002f360c890565b606490565b905090565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b60006028620006f0565b611867806200072d6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063a238accd11610097578063b24133ec11610066578063b24133ec146102e1578063bf1db3f9146102f4578063e9e96c7014610307578063f48016ce1461034557600080fd5b8063a238accd146101ea578063a4dc7d86146101fd578063a5961b4c1461021d578063a8989675146102ce57600080fd5b806354f6127f116100d357806354f6127f146101825780635dee4788146101a25780636ec3d940146101b75780638eaa6ac0146101ca57600080fd5b806309648a9d146100fa5780630d3581811461013957806338a699a41461015f575b600080fd5b610122610108366004611234565b600090815260026020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b61012261014736600461125f565b60ff9081166000908152602081905260409020541690565b61017261016d366004611234565b610366565b6040519015158152602001610130565b610195610190366004611234565b6103f7565b60405161013091906112c2565b6101b56101b0366004611378565b61049c565b005b6101b56101c53660046113d1565b610771565b6101dd6101d8366004611234565b610927565b6040516101309190611462565b6101b56101f8366004611496565b610a68565b61021061020b366004611234565b610cda565b60405161013091906114dc565b6102c161022b366004611234565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260026020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b60405161013091906114ea565b6101b56102dc3660046114f8565b610d88565b6101b56102ef366004611378565b610e7e565b61017261030236600461125f565b61115d565b6101726103153660046114f8565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b610358610353366004611553565b6111aa565b604051908152602001610130565b60008181526002602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156103cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f19190611581565b92915050565b6000818152600260205260409020600101805460609190610417906115a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610443906115a3565b80156104905780601f1061046557610100808354040283529160200191610490565b820191906000526020600020905b81548152906001019060200180831161047357829003601f168201915b50505050509050919050565b6003546001600160a01b031633146104cf5760405162461bcd60e51b81526004016104c6906115dd565b60405180910390fd5b60405163b2466acf60e01b815260ff8316600482015273__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015610521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105459190611581565b6105915760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e45440000000060448201526064016104c6565b600083815260026020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156105fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061e9190611581565b61066a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f4352454154454400000060448201526064016104c6565b334360006106778661115d565b610682576064610698565b60ff808716600090815260208190526040902054165b845460ff88811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526002602052604090209091506001016107228682611662565b507f0ccdf5d7cd4da66a6894cfa246e02d19253a3f7c4cb3b0daee0bc2bf1a7dd4ff61074d88610cda565b8285326040516107609493929190611722565b60405180910390a150505050505050565b6003546001600160a01b0316331461079b5760405162461bcd60e51b81526004016104c6906115dd565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610807573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082b9190611581565b6108775760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3033303a4e4f545f4558495354494e4700000000000060448201526064016104c6565b60008481526002602052604090206001016108928482611662565b508154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166108c34390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006108ee87610cda565b90507f228147c3bb5d3f2e24432bc0abaa1541c1f3f4208a9ab759bf26567e983fbdb78185853286604051610760959493929190611758565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260026020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c082015292835260018101805491928401916109df906115a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b906115a3565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050815250509050919050565b6003546001600160a01b03163314610a925760405162461bcd60e51b81526004016104c6906115dd565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b089190611581565b610b545760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e454400000060448201526064016104c6565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610bc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be49190611581565b610c305760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416610c744390565b845463ffffffff91909116600160b01b0263ffffffff60b01b199091161784556000610c9f87610cda565b90507feb640fdc9d45826fb47cd85fac116714d3d638f1409790b2b7c0ac824db13b728187868632876040516107609695949392919061179d565b604080518082019091526000808252602082015260405163526e3ec360e11b815260048101839052600090819073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063a4dc7d86906024016040805180830381865af4158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6691906117e9565b6040805180820190915260ff909216825260ff19166020820152949350505050565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e119190611581565b15610e1b57505050565b60ff808416600090815260016020908152604080832086851684528252808320858516845290915290205416610e7957604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016104c6565b505050565b6003546001600160a01b03163314610ea85760405162461bcd60e51b81526004016104c6906115dd565b60405163b2466acf60e01b815260ff8316600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610efa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1e9190611581565b610f6a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e454400000060448201526064016104c6565b600083815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa9190611581565b6110465760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b60008581526002602052604090206001016110618482611662565b508154620100003390810262010000600160b01b031960ff88166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166110a64390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006110d188610cda565b90507feb640fdc9d45826fb47cd85fac116714d3d638f1409790b2b7c0ac824db13b7281888686328760405161110c9695949392919061179d565b60405180910390a17f228147c3bb5d3f2e24432bc0abaa1541c1f3f4208a9ab759bf26567e983fbdb7818885328660405161114b959493929190611758565b60405180910390a15050505050505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016103b0565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce90604401602060405180830381865af4158015611209573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122d9190611818565b9392505050565b60006020828403121561124657600080fd5b5035919050565b60ff8116811461125c57600080fd5b50565b60006020828403121561127157600080fd5b813561122d8161124d565b6000815180845260005b818110156112a257602081850181015186830182015201611286565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061122d602083018461127c565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126112fc57600080fd5b813567ffffffffffffffff80821115611317576113176112d5565b604051601f8301601f19908116603f0116810190828211818310171561133f5761133f6112d5565b8160405283815286602085880101111561135857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561138d57600080fd5b83359250602084013561139f8161124d565b9150604084013567ffffffffffffffff8111156113bb57600080fd5b6113c7868287016112eb565b9150509250925092565b600080604083850312156113e457600080fd5b82359150602083013567ffffffffffffffff81111561140257600080fd5b61140e858286016112eb565b9150509250929050565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152611474602082018351611418565b6000602083015160c08084015261148e60e084018261127c565b949350505050565b600080604083850312156114a957600080fd5b8235915060208301356114bb8161124d565b809150509250929050565b805160ff16825260209081015160ff1916910152565b604081016103f182846114c6565b60a081016103f18284611418565b60008060006060848603121561150d57600080fd5b83356115188161124d565b925060208401356115288161124d565b915060408401356115388161124d565b809150509250925092565b60ff198116811461125c57600080fd5b6000806040838503121561156657600080fd5b82356115718161124d565b915060208301356114bb81611543565b60006020828403121561159357600080fd5b8151801515811461122d57600080fd5b600181811c908216806115b757607f821691505b6020821081036115d757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f4552524f523a4b56532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b601f821115610e7957600081815260208120601f850160051c8101602086101561163b5750805b601f850160051c820191505b8181101561165a57828155600101611647565b505050505050565b815167ffffffffffffffff81111561167c5761167c6112d5565b6116908161168a84546115a3565b84611614565b602080601f8311600181146116c557600084156116ad5750858301515b600019600386901b1c1916600185901b17855561165a565b600085815260208120601f198616915b828110156116f4578886015182559484019460019091019084016116d5565b50858210156117125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60a0810161173082876114c6565b60ff9490941660408201526001600160a01b0392831660608201529116608090910152919050565b60c0810161176682886114c6565b60ff9590951660408201526001600160a01b03938416606082015291909216608082015263ffffffff90911660a090910152919050565b60e081016117ab82896114c6565b60ff96871660408301529490951660608601526001600160a01b039283166080860152911660a084015263ffffffff1660c090920191909152919050565b600080604083850312156117fc57600080fd5b82516118078161124d565b60208401519092506114bb81611543565b60006020828403121561182a57600080fd5b505191905056fea2646970667358221220f939c446d2a8f4e906670f91871af4dbd5d1080e0e33cb50e0e6fc2a596aabeb64736f6c63430008140033",
|
2107
|
+
"deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620004755760003560e01c8063893d20e81162000259578063bd7d9d851162000149578063e1f64d7711620000c7578063ee0fdf711162000092578063ee0fdf711462000c8d578063f274e87d1462000ca4578063f2b246c31462000cd1578063fd143c761462000cf7578063fe1f18d61462000d0e57600080fd5b8063e1f64d771462000c31578063e26b857b1462000c48578063e79597401462000c5f578063ea5fa54b1462000c7657600080fd5b8063cf7a1d771162000114578063cf7a1d771462000bbe578063d250185c1462000bd5578063dad73bed1462000bec578063db70354c1462000c03578063e03eeb851462000c1a57600080fd5b8063bd7d9d851462000b49578063c2bf7d261462000b6f578063ca600b1c1462000b86578063cf5ccedb1462000b9857600080fd5b8063a5a4fbbc11620001d7578063b3c6501511620001a2578063b3c650151462000aca578063b88da7591462000aed578063b89010821462000b04578063b8c510671462000b1b578063b9f36dde1462000b3257600080fd5b8063a5a4fbbc1462000a85578063a745e3df1462000835578063a90be9071462000a9c578063af17d38a1462000ab357600080fd5b80639845743711620002245780639845743714620009ab57806399fd467714620009c25780639ae31ff51462000a0a578063a238accd1462000a39578063a310e2a31462000a5057600080fd5b8063893d20e8146200096a5780638d5d536e1462000974578063946dfcfe146200098b5780639675513d146200099457600080fd5b80634793b4ab116200037557806369a44a1b11620002f35780637fec8b3111620002be5780637fec8b3114620008cf5780638125ea9214620008e657806383d3331914620008f057806387c5658614620008f9578063887b1fa9146200093157600080fd5b806369a44a1b14620008835780636b9bf08b146200089a5780636fa2985314620008ac5780637cef484214620008be57600080fd5b80635ab1bd5311620003405780635ab1bd53146200080e5780635b5b48f514620008355780635d4345cc146200084b578063644c45e01462000862578063674d0ccf146200086c57600080fd5b80634793b4ab14620006715780634d459c9014620006975780635312fdc214620007a857806357f80bbf14620007d957600080fd5b806315dae03e116200040357806331b62a3b11620003ce57806331b62a3b14620005fe578063349195f914620006255780633bc5de30146200062e578063423eb9fa146200064a5780634288121d146200065f57600080fd5b806315dae03e146200058c5780631a91887614620005945780631aa3a00814620005c4578063278b381b14620005e757600080fd5b80630abd843411620004445780630abd843414620005195780630d0ccc5b14620005305780630d8e6e2c14620005565780630d9b998d146200057557600080fd5b806301ffc9a7146200047a57806306a5298b14620004bf57806307af0dc014620004d857806309648a9d14620004ef575b600080fd5b620004aa6200048b366004620043de565b6001600160e01b03191660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b620004d6620004d03660046200456c565b62000d25565b005b620004d6620004e936600462004742565b62000d54565b6200050662000500366004620048c4565b62000e11565b60405160ff9091168152602001620004b6565b620004aa6200052a366004620048f0565b62000e88565b620005476200054136600462004910565b62000f2c565b604051908152602001620004b6565b6200056062000fb5565b60405162ffffff9091168152602001620004b6565b620004d66200058636600462004948565b62001042565b603262000506565b620005ab620005a5366004620049e1565b620011e5565b6040516001600160a01b039091168152602001620004b6565b620005ce62001216565b6040516001600160601b039091168152602001620004b6565b620004aa620005f8366004620049e1565b62001311565b7f0000000000000000000000000000000000000000000000000000000000000000620005ce565b600f5462000547565b60408051602081018252600081529051620004b6919062004a55565b620004d66200065b36600462004a6a565b5050565b6006546001600160a01b0316620005ab565b6200068862000682366004620049e1565b62001320565b604051620004b6919062004b0a565b6200074a620006a8366004620048f0565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff90811660009081526020818152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001620004b6565b620007bf620007b9366004620048c4565b6200134d565b6040516001600160c01b03199091168152602001620004b6565b620007f0620007ea366004620049e1565b6200138f565b604080518251151581526020928301519281019290925201620004b6565b7f0000000000000000000000000000000000000000000000000000000000000000620005ab565b620004d66200084636600462004bb3565b505050565b620004d66200085c36600462004c2c565b620013c4565b620005ce6200146d565b620005476200087d36600462004c5f565b620014d5565b6200054762000894366004620049e1565b620014f9565b6007546001600160a01b0316620005ab565b6004546001600160a01b0316620005ab565b620004d66200065b36600462004c7f565b620005ce620008e0366004620048c4565b6200158a565b620005ab620015d2565b60095462000547565b604080518082018252600080825260209182015281518083019092526013548252601454908201525b604051620004b6919062004ca0565b6200095b6200094236600462004c5f565b5060408051808201909152600081526060602082015290565b604051620004b6919062004cb8565b620005ab620015ec565b620004d66200098536600462004cf0565b620015f8565b60015462000547565b62000547620009a536600462004db7565b620017f5565b620004d6620009bc36600462004dea565b6200195f565b620004aa620009d336600462004e30565b6001600160c01b031982166000908152600a602090815260408083206001600160a01b038516845290915290205460ff1692915050565b620005ce62000a1b366004620049e1565b6001600160601b039081166000908152601160205260409020541690565b620004d662000a4a36600462004e63565b62001adf565b620005ab62000a61366004620049e1565b6001600160601b03166000908152601260205260409020546001600160a01b031690565b620005ab62000a96366004620049e1565b62001b4c565b6200054762000aad366004620048c4565b62001b78565b620007bf62000ac436600462004e8b565b62001bb4565b62000ad462001d3d565b6040516001600160401b039091168152602001620004b6565b6200056062000afe366004620048c4565b62001d71565b620004d662000b1536600462004ed8565b62001db5565b620007bf62000b2c36600462004e8b565b62001e86565b620004d662000b4336600462004e30565b62001f06565b62000b6062000b5a366004620049e1565b6200206f565b604051620004b6919062004f0d565b620004d662000b8036600462004e30565b62002100565b6005546001600160a01b0316620005ab565b62000baf62000ba936600462004c5f565b62002300565b604051620004b691906200504c565b620004d662000bcf36600462004bb3565b620023fe565b6200092262000be636600462005095565b6200240a565b620004d662000bfd366004620050c7565b62002499565b620005ce62000c14366004620050fa565b620026b7565b620004d662000c2b36600462005129565b6200274e565b620004d662000c4236600462004dea565b6200278b565b620004d662000c593660046200515e565b620028d9565b620005ab62000c70366004620051b0565b620031e4565b620004d662000c87366004620051d1565b62003209565b620004aa62000c9e36600462004c5f565b62003389565b62000cbb62000cb5366004620051f4565b620033b4565b60408051928352602083019190915201620004b6565b62000ce862000ce2366004620049e1565b6200344b565b604051620004b6919062005224565b620004d662000d083660046200530d565b6200350f565b620004d662000d1f36600462004c2c565b62003687565b6200065b6065838360405160200162000d3f919062005224565b6040516020818303038152906040526200375c565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000d95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dbb919062005405565b6001600160a01b0316336001600160a01b03161462000df75760405162461bcd60e51b815260040162000dee9062005425565b60405180910390fd5b6200065b60d2838360405160200162000d3f919062004f0d565b6003546040516309648a9d60e01b8152600481018390526000916001600160a01b0316906309648a9d90602401602060405180830381865afa15801562000e5c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e82919062005466565b92915050565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000eff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f25919062005486565b1192915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562000f88573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fae919062005486565b9392505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562001017573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200103d9190620054a0565b905090565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001083573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010a9919062005405565b6001600160a01b0316336001600160a01b031614620010dc5760405162461bcd60e51b815260040162000dee9062005425565b6000604051806101c00160405280896001600160601b03168152602001836001600160601b03168152602001886001600160c01b031916815260200160006001600160a01b03168152602001876001600160c01b03191681526020018681526020018581526020016000815260200184815260200160405180602001604052806000815250815260200160405180602001604052806000815250815260200162001184600090565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff1690529050620011da60d28a83604051602001620011c5919062004f0d565b60405160208183030381529060405262003852565b505050505050505050565b600080620011f660645b8462003911565b8060200190518101906200120b9190620054cd565b602001519392505050565b600062001222620015ec565b6001600160a01b0316336001600160a01b031614620012845760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604482015260640162000dee565b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af1158015620012eb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200103d919062005522565b600062000e8260658362003a16565b6200132a62004358565b6200133860dc5b8362003911565b80602001905181019062000e829190620055ce565b600060098281548110620013655762001365620056af565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b6040805180820190915260008082526020820152620013af608c62001331565b80602001905181019062000e829190620056c5565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001405573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200142b919062005405565b6001600160a01b0316336001600160a01b0316146200145e5760405162461bcd60e51b815260040162000dee9062005425565b6200065b60d25b838362003b17565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa158015620012eb573d6000803e3d6000fd5b6001600160c01b031981166000908152600b6020526040812062000e829062003be2565b6001600160601b038116600090815260106020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af415801562001564573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e82919062005486565b6000600f8281548110620015a257620015a2620056af565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b60006200103d6003546001600160a01b031690565b919050565b60006200103d62003bed565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001639573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200165f919062005405565b6001600160a01b0316336001600160a01b031614620016c15760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000dee565b6000604051806101000160405280886001600160601b0316815260200187815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562001792573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620017b8919062005704565b64ffffffffff168152602001600064ffffffffff1690529050620017eb60dc8983604051602001620011c5919062004b0a565b5050505050505050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001838573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200185e919062005405565b6001600160a01b0316336001600160a01b031614620018915760405162461bcd60e51b815260040162000dee9062005724565b506001600160601b038083166000818152600e602090815260408083209486168352938152838220805490839055928252600d9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d575691620019149186906004019182526001600160601b0316602082015260400190565b602060405180830381865af415801562001932573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001958919062005765565b5092915050565b6001600160601b03828116600090815260106020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af4158015620019d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620019f9919062005765565b1562001a525760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000dee565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562001ab2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ad8919062005765565b5050505050565b60035460405163a238accd60e01b81526004810184905260ff831660248201526001600160a01b039091169063a238accd90604401600060405180830381600087803b15801562001b2f57600080fd5b505af115801562001b44573d6000803e3d6000fd5b505050505050565b60008062001b5b6064620011ef565b80602001905181019062001b709190620054cd565b519392505050565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e9060240162001546565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001bf5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c1b919062005405565b6001600160a01b0316336001600160a01b03161462001c4e5760405162461bcd60e51b815260040162000dee9062005785565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9062001c8790859060040162004a55565b602060405180830381865af415801562001ca5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ccb9190620057c9565b905062001cd88162003389565b1562001d315760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000dee565b620015e7818362003d4f565b60006200103d7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00546001600160401b031690565b60006001828154811062001d895762001d89620056af565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b604080518082019091526001600160601b03831681526020810182905262001e8060c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801562001e32573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e58919062005486565b8360405160200162001e6b919062004cb8565b60405160208183030381529060405262003db4565b50505050565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9062001ec290859060040162004a55565b602060405180830381865af415801562001ee0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e829190620057c9565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b161462001f4a5760405162461bcd60e51b815260040162000dee90620057e9565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001f89573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001faf919062005405565b6001600160a01b0316336001600160a01b03161462001fe25760405162461bcd60e51b815260040162000dee9062005785565b6001600160c01b031983166000818152600a602090815260408083206001600160a01b03871684528252808320805460ff19169055928252600b9052206200202b908362003dea565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620020629392919062005820565b60405180910390a1505050565b604080516101c08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201819052610140820152610160810182905261018081018290526101a0810191909152620020eb60d262001331565b80602001905181019062000e8291906200584d565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b1614620021445760405162461bcd60e51b815260040162000dee90620057e9565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002183573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021a9919062005405565b6001600160a01b0316336001600160a01b031614620021dc5760405162461bcd60e51b815260040162000dee9062005785565b6001600160c01b0319831660009081526008602052604090206002015460ff166200224a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000dee565b6001600160c01b031983166000818152600a602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600b90522062002296908362003e01565b506001600160c01b031983166000908152600a602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d169875453966849162002062918691869160ff9091169062005820565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260088252918590208551938401909552845460c01b909116825260018401805493949293918401916200235f90620059ba565b80601f01602080910402602001604051908101604052809291908181526020018280546200238d90620059ba565b8015620023de5780601f10620023b257610100808354040283529160200191620023de565b820191906000526020600020905b815481529060010190602001808311620023c057829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b62000846838362003e18565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af415801562002473573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fae9190620059f6565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b1614620024dd5760405162461bcd60e51b815260040162000dee90620057e9565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200251c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002542919062005405565b6001600160a01b0316336001600160a01b031614620025755760405162461bcd60e51b815260040162000dee9062005785565b6001600160c01b03198084166000908152600860209081526040808320815160608101909252805460c01b9094168152600184018054939491939192840191620025bf90620059ba565b80601f0160208091040260200160405190810160405280929190818152602001828054620025ed90620059ba565b80156200263e5780601f1062002612576101008083540402835291602001916200263e565b820191906000526020600020905b8154815290600101906020018083116200262057829003601f168201915b50505091835250506002919091015460ff161515602090910152831515604082015290506200266d81620040e9565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b038216600090815260106020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af415801562002728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fae919062005522565b60408051808201825283151580825260208083018581528451918201929092529051928101929092529062001e8090608c908690606001620011c5565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620027cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027f2919062005405565b6001600160a01b0316336001600160a01b031614620028255760405162461bcd60e51b815260040162000dee9062005724565b6001600160601b038381166000818152600e60209081526040808320948716808452948252808320869055928252600d90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620028b3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e80919062005765565b6000836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200291a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002940919062005522565b90506000836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002983573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029a9919062005522565b90506000836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015620029ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a12919062005522565b6040516330b8415f60e01b81526001600160601b038516600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562002a6e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a94919062005765565b62002ae25760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a5452532d3031303a50524f445543545f554e444546494e454400604482015260640162000dee565b6040516330b8415f60e01b81526001600160601b038316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562002b3b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002b61919062005765565b62002baf5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a5452532d3031313a504f4f4c5f554e444546494e454400000000604482015260640162000dee565b6001600160601b0383166000908152601260205260409020546001600160a01b03161562002c375760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000dee565b6001600160601b0382811660009081526011602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af415801562002ca3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002cc9919062005765565b62002d215760405162461bcd60e51b815260206004820152602160248201527f4552524f523a5452532d3031333a504f4f4c5f414c52454144595f4c494e4b456044820152601160fa1b606482015260840162000dee565b6001600160601b0381811660009081526011602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af415801562002d8d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002db3919062005765565b62002e135760405162461bcd60e51b815260206004820152602960248201527f4552524f523a5452532d3031343a434f4d50454e534154494f4e5f414c524541604482015268111657d3125392d15160ba1b606482015260840162000dee565b6000866001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002e54573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e7a919062005405565b9050838160405162002e8c90620043d0565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f08015801562002ec7573d6000803e3d6000fd5b506001600160601b03858116600081815260126020908152604080832080546001600160a01b0319166001600160a01b039788161790558785168084526011835281842080546bffffffffffffffffffffffff199081168717909155958a16808552828520805490971690951790955580516101208101825293845290830193909352848416828401528251631380bf2360e01b815283519194929360608501938d1692631380bf239260048082019392918290030181865afa15801562002f93573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002fb99190620059f6565b8152602001896001600160a01b031663daafed406040518163ffffffff1660e01b81526004016040805180830381865afa15801562002ffc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620030229190620059f6565b8152602001886001600160a01b0316636741fad26040518163ffffffff1660e01b81526004016040805180830381865afa15801562003065573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200308b9190620059f6565b8152602001886001600160a01b0316634b270a466040518163ffffffff1660e01b81526004016040805180830381865afa158015620030ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620030f49190620059f6565b8152602001886001600160a01b031663235c36036040518163ffffffff1660e01b81526004016040805180830381865afa15801562003137573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200315d9190620059f6565b8152602001876001600160a01b0316637c3d51666040518163ffffffff1660e01b81526004016040805180830381865afa158015620031a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620031c69190620059f6565b90529050620017eb60658683604051602001620011c5919062005224565b6001600160c01b031982166000908152600b6020526040812062000fae9083620041c7565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003248573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200326e919062005405565b6001600160a01b0316336001600160a01b031614620032d05760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000dee565b604080518082019091526001600160a01b03838116825282166020820152600f8054600180820183556000929092527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8026002820401805492909116600c026101000a6001600160601b03818102199093169287160291909117905562001e8062003358606490565b8583604051602001620011c5919081516001600160a01b039081168252602092830151169181019190915260400190565b6001600160c01b0319818116600081815260086020526040812054909260c09190911b161462000e82565b60405163012ebd8360e21b8152815160048201526020820151602482015260448101839052600090819073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af41580156200341a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003440919062005a15565b915091509250929050565b620034ee6040805161012081018252600080825260208083018290528284018290528351808501855282815280820183905260608401528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e084015283518085019094528184528301529061010082015290565b620034fa606562001331565b80602001905181019062000e82919062005a3a565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003550573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003576919062005405565b6001600160a01b0316336001600160a01b031614806200360d5750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620035d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035f8919062005405565b6001600160a01b0316336001600160a01b0316145b6200366d5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000dee565b6200065b60dc838360405160200162000d3f919062004b0a565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620036c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620036ee919062005405565b6001600160a01b0316336001600160a01b031614620037505760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000dee565b6200065b60dc62001465565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690636ec3d9409073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620037d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620037f9919062005486565b836040518363ffffffff1660e01b81526004016200381992919062005b0e565b600060405180830381600087803b1580156200383457600080fd5b505af115801562003849573d6000803e3d6000fd5b50505050505050565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690635dee47889073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620038c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038ef919062005486565b85846040518463ffffffff1660e01b8152600401620038199392919062005b29565b600c54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526060916001600160a01b0316906354f6127f9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003989573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039af919062005486565b6040518263ffffffff1660e01b8152600401620039ce91815260200190565b600060405180830381865afa158015620039ec573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000fae919081019062005b56565b600c54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526000916001600160a01b0316906338a699a49073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003a8e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ab4919062005486565b6040518263ffffffff1660e01b815260040162003ad391815260200190565b602060405180830381865afa15801562003af1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fae919062005765565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b039091169063a238accd9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003b8e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003bb4919062005486565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003819565b600062000e82825490565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa15801562003c57573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003c7d919062005522565b90506001600160601b03811662003cb5577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801562003d23573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003d49919062005405565b91505090565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003d8181620040e9565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200206292919062005b8e565b600c54604051630bbdc8f160e31b81526001600160a01b0390911690635dee478890620038199085908790869060040162005b29565b600062000fae836001600160a01b038416620041d5565b600062000fae836001600160a01b038416620042d9565b600062003e2462000fb5565b905062003e318162000e88565b1562003e905760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b606482015260840162000dee565b6001541562003f5757600180546000919062003eae90829062005bb5565b8154811062003ec15762003ec1620056af565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905062003efb828262ffffff90811691161190565b62003f555760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b606482015260840162000dee565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b0380861660208401528416908201526060810162003fe04290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990620020629083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b80516001600160c01b0319811660009081526008602090815260409091208351815467ffffffffffffffff191660c09190911c17815590830151839190600182019062004137908262005c21565b50604091909101516002909101805460ff19169115159190911790556200415e8162003389565b6200065b57600980546001810182556000919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af600482040180546001600160401b0360039093166008026101000a928302191660c09390931c9190910291909117905550565b600062000fae83836200432b565b60008181526001830160205260408120548015620042ce576000620041fc60018362005bb5565b8554909150600090620042129060019062005bb5565b90508181146200427e576000866000018281548110620042365762004236620056af565b90600052602060002001549050808760000184815481106200425c576200425c620056af565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062004292576200429262005ced565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062000e82565b600091505062000e82565b6000818152600183016020526040812054620043225750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000e82565b50600062000e82565b6000826000018281548110620043455762004345620056af565b9060005260206000200154905092915050565b60405180610100016040528060006001600160601b0316815260200162004392604051806040016040528060008152602001600081525090565b815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b6102aa8062005d0483390190565b600060208284031215620043f157600080fd5b81356001600160e01b03198116811462000fae57600080fd5b6001600160601b03811681146200442057600080fd5b50565b8035620015e7816200440a565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156200446b576200446b62004430565b60405290565b60405161012081016001600160401b03811182821017156200446b576200446b62004430565b6040516101c081016001600160401b03811182821017156200446b576200446b62004430565b60405161010081016001600160401b03811182821017156200446b576200446b62004430565b604051601f8201601f191681016001600160401b03811182821017156200450e576200450e62004430565b604052919050565b6001600160a01b03811681146200442057600080fd5b8035620015e78162004516565b6000604082840312156200454c57600080fd5b6200455662004446565b9050813581526020820135602082015292915050565b6000808284036102008112156200458257600080fd5b83356200458f816200440a565b92506101e0601f1982011215620045a557600080fd5b50620045b062004471565b620045be6020850162004423565b8152620045ce6040850162004423565b6020820152620045e1606085016200452c565b6040820152620045f5856080860162004539565b6060820152620046098560c0860162004539565b60808201526101006200461f8682870162004539565b60a08301526200463486610140870162004539565b60c08301526200464986610180870162004539565b60e08301526200465e866101c0870162004539565b90820152919491935090915050565b6001600160c01b0319811681146200442057600080fd5b8035620015e7816200466d565b60006001600160401b03821115620046ad57620046ad62004430565b50601f01601f191660200190565b6000620046d2620046cc8462004691565b620044e3565b9050828152838383011115620046e757600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200471057600080fd5b62000fae83833560208501620046bb565b64ffffffffff811681146200442057600080fd5b8035620015e78162004721565b600080604083850312156200475657600080fd5b823562004763816200440a565b915060208301356001600160401b03808211156200478057600080fd5b908401906101c082870312156200479657600080fd5b620047a062004497565b620047ab8362004423565b8152620047bb6020840162004423565b6020820152620047ce6040840162004684565b6040820152620047e1606084016200452c565b6060820152620047f46080840162004684565b608082015260a083013560a082015260c083013560c082015260e083013560e082015261010080840135818301525061012080840135838111156200483857600080fd5b6200484689828701620046fe565b82840152505061014080840135838111156200486157600080fd5b6200486f89828701620046fe565b82840152505061016091506200488782840162004735565b8282015261018091506200489d82840162004735565b828201526101a09150620048b382840162004735565b828201528093505050509250929050565b600060208284031215620048d757600080fd5b5035919050565b62ffffff811681146200442057600080fd5b6000602082840312156200490357600080fd5b813562000fae81620048de565b600080604083850312156200492457600080fd5b8235915060208301358060000b81146200493d57600080fd5b809150509250929050565b600080600080600080600080610100898b0312156200496657600080fd5b883562004973816200440a565b9750602089013562004985816200440a565b9650604089013562004997816200466d565b95506060890135620049a9816200466d565b94506080890135935060a0890135925060c0890135915060e0890135620049d0816200440a565b809150509295985092959890939650565b600060208284031215620049f457600080fd5b813562000fae816200440a565b60005b8381101562004a1e57818101518382015260200162004a04565b50506000910152565b6000815180845262004a4181602086016020860162004a01565b601f01601f19169290920160200192915050565b60208152600062000fae602083018462004a27565b6000806040838503121562004a7e57600080fd5b823562004a8b816200466d565b915060208301356001600160401b038082111562004aa857600080fd5b908401906040828703121562004abd57600080fd5b62004ac762004446565b823562004ad4816200440a565b815260208301358281111562004ae957600080fd5b62004af788828601620046fe565b6020830152508093505050509250929050565b602081526001600160601b0382511660208201526000602083015162004b3d604084018280518252602090810151910152565b50604083015161012080608085015262004b5c61014085018362004a27565b9150606085015160a0850152608085015160c085015260a085015160e085015260c085015162004b9661010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b60008060006060848603121562004bc957600080fd5b833562004bd68162004516565b9250602084013562004be88162004516565b915060408401356001600160401b0381111562004c0457600080fd5b62004c1286828701620046fe565b9150509250925092565b60ff811681146200442057600080fd5b6000806040838503121562004c4057600080fd5b823562004c4d816200440a565b915060208301356200493d8162004c1c565b60006020828403121562004c7257600080fd5b813562000fae816200466d565b6000806040838503121562004c9357600080fd5b823562004c4d816200466d565b81518152602080830151908201526040810162000e82565b602081526001600160601b0382511660208201526000602083015160408084015262004ce8606084018262004a27565b949350505050565b600080600080600080600060e0888a03121562004d0c57600080fd5b873562004d19816200440a565b9650602088013562004d2b816200440a565b955062004d3c8960408a0162004539565b94506080880135935060a0880135925060c08801356001600160401b038082111562004d6757600080fd5b818a0191508a601f83011262004d7c57600080fd5b81358181111562004d8c57600080fd5b8b602082850101111562004d9f57600080fd5b60208301945080935050505092959891949750929550565b6000806040838503121562004dcb57600080fd5b823562004dd8816200440a565b915060208301356200493d816200440a565b60008060006060848603121562004e0057600080fd5b833562004e0d816200440a565b9250602084013562004e1f816200440a565b929592945050506040919091013590565b6000806040838503121562004e4457600080fd5b823562004e51816200466d565b915060208301356200493d8162004516565b6000806040838503121562004e7757600080fd5b8235915060208301356200493d8162004c1c565b60006020828403121562004e9e57600080fd5b81356001600160401b0381111562004eb557600080fd5b8201601f8101841362004ec757600080fd5b62004ce884823560208401620046bb565b60008060006060848603121562004eee57600080fd5b833562004efb816200466d565b9250602084013562004be8816200440a565b6020815262004f286020820183516001600160601b03169052565b6000602083015162004f4560408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160a01b03811660808401525060808301516001600160c01b0319811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101c0610140818186015262004fd96101e086018462004a27565b9250808601519050610160601f19868503018187015262004ffb848362004a27565b9350808701519150506101806200501a8187018364ffffffffff169052565b86015190506101a0620050358682018364ffffffffff169052565b86015164ffffffffff811683870152905062004ba9565b602080825282516001600160c01b03191682820152820151606060408301526000906200507d608084018262004a27565b90506040840151151560608401528091505092915050565b60008060408385031215620050a957600080fd5b50508035926020909101359150565b80151581146200442057600080fd5b60008060408385031215620050db57600080fd5b8235620050e8816200466d565b915060208301356200493d81620050b8565b600080604083850312156200510e57600080fd5b82356200511b816200440a565b946020939093013593505050565b6000806000606084860312156200513f57600080fd5b83356200514c816200440a565b9250602084013562004e1f81620050b8565b6000806000606084860312156200517457600080fd5b8335620051818162004516565b92506020840135620051938162004516565b91506040840135620051a58162004516565b809150509250925092565b60008060408385031215620051c457600080fd5b82356200511b816200466d565b600080600060608486031215620051e757600080fd5b833562005181816200440a565b600080606083850312156200520857600080fd5b823591506200521b846020850162004539565b90509250929050565b81516001600160601b031681526020808301516101e083019162005252908401826001600160601b03169052565b5060408301516200526e60408401826001600160a01b03169052565b5060608301516200528c606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151805161012084015260208101516101408401525060e0830151805161016084015260208101516101808401525061010083015180516101a084015260208101516101c084015262001958565b600080604083850312156200532157600080fd5b82356200532e816200440a565b915060208301356001600160401b03808211156200534b57600080fd5b9084019061012082870312156200536157600080fd5b6200536b620044bd565b620053768362004423565b815262005387876020850162004539565b60208201526060830135828111156200539f57600080fd5b620053ad88828601620046fe565b6040830152506080830135606082015260a0830135608082015260c083013560a0820152620053df60e0840162004735565b60c0820152620053f3610100840162004735565b60e08201528093505050509250929050565b6000602082840312156200541857600080fd5b815162000fae8162004516565b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200547957600080fd5b815162000fae8162004c1c565b6000602082840312156200549957600080fd5b5051919050565b600060208284031215620054b357600080fd5b815162000fae81620048de565b8051620015e78162004516565b600060408284031215620054e057600080fd5b620054ea62004446565b8251620054f78162004516565b81526020830151620055098162004516565b60208201529392505050565b8051620015e7816200440a565b6000602082840312156200553557600080fd5b815162000fae816200440a565b6000604082840312156200555557600080fd5b6200555f62004446565b9050815181526020820151602082015292915050565b600082601f8301126200558757600080fd5b815162005598620046cc8262004691565b818152846020838601011115620055ae57600080fd5b62004ce882602083016020870162004a01565b8051620015e78162004721565b600060208284031215620055e157600080fd5b81516001600160401b0380821115620055f957600080fd5b9083019061012082860312156200560f57600080fd5b62005619620044bd565b620056248362005515565b815262005635866020850162005542565b60208201526060830151828111156200564d57600080fd5b6200565b8782860162005575565b6040830152506080830151606082015260a0830151608082015260c083015160a08201526200568d60e08401620055c1565b60c0820152620056a16101008401620055c1565b60e082015295945050505050565b634e487b7160e01b600052603260045260246000fd5b600060408284031215620056d857600080fd5b620056e262004446565b8251620056ef81620050b8565b81526020928301519281019290925250919050565b6000602082840312156200571757600080fd5b815162000fae8162004721565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200577857600080fd5b815162000fae81620050b8565b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b8051620015e7816200466d565b600060208284031215620057dc57600080fd5b815162000fae816200466d565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b6000602082840312156200586057600080fd5b81516001600160401b03808211156200587857600080fd5b908301906101c082860312156200588e57600080fd5b6200589862004497565b620058a38362005515565b8152620058b36020840162005515565b6020820152620058c660408401620057bc565b6040820152620058d960608401620054c0565b6060820152620058ec60808401620057bc565b608082015260a083015160a082015260c083015160c082015260e083015160e082015261010080840151818301525061012080840151838111156200593057600080fd5b6200593e8882870162005575565b82840152505061014080840151838111156200595957600080fd5b620059678882870162005575565b82840152505061016091506200597f828401620055c1565b82820152610180915062005995828401620055c1565b828201526101a09150620059ab828401620055c1565b91810191909152949350505050565b600181811c90821680620059cf57607f821691505b602082108103620059f057634e487b7160e01b600052602260045260246000fd5b50919050565b60006040828403121562005a0957600080fd5b62000fae838362005542565b6000806040838503121562005a2957600080fd5b505080516020909101519092909150565b60006101e0828403121562005a4e57600080fd5b62005a5862004471565b62005a638362005515565b815262005a736020840162005515565b602082015262005a8660408401620054c0565b604082015262005a9a846060850162005542565b606082015262005aae8460a0850162005542565b608082015262005ac28460e0850162005542565b60a082015262005ad784610120850162005542565b60c082015262005aec84610160850162005542565b60e082015262005b01846101a0850162005542565b6101008201529392505050565b82815260406020820152600062004ce8604083018462004a27565b83815260ff8316602082015260606040820152600062005b4d606083018462004a27565b95945050505050565b60006020828403121562005b6957600080fd5b81516001600160401b0381111562005b8057600080fd5b62004ce88482850162005575565b6001600160401b0360c01b8316815260406020820152600062004ce8604083018462004a27565b8181038181111562000e8257634e487b7160e01b600052601160045260246000fd5b601f8211156200084657600081815260208120601f850160051c8101602086101562005c005750805b601f850160051c820191505b8181101562001b445782815560010162005c0c565b81516001600160401b0381111562005c3d5762005c3d62004430565b62005c558162005c4e8454620059ba565b8462005bd7565b602080601f83116001811462005c8d576000841562005c745750858301515b600019600386901b1c1916600185901b17855562001b44565b600085815260208120601f198616915b8281101562005cbe5788860151825594840194600190910190840162005c9d565b508582101562005cdd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea264697066735822122098042a25f53a65deabe0e6f542a37f2241e6a3e8502eedd92fc64bb45d25bfc364736f6c63430008140033a264697066735822122007101a5ff351a61864c56bb5eb69adfe617941f84d54a40a40e5d62cd79cfcd564736f6c63430008140033",
|
2108
|
+
"linkReferences": {
|
2109
|
+
"contracts/types/Blocknumber.sol": {
|
2110
|
+
"BlocknumberLib": [
|
2111
|
+
{
|
2112
|
+
"length": 20,
|
2113
|
+
"start": 3103
|
2114
|
+
},
|
2115
|
+
{
|
2116
|
+
"length": 20,
|
2117
|
+
"start": 8474
|
2118
|
+
}
|
2119
|
+
]
|
2120
|
+
},
|
2121
|
+
"contracts/types/Fee.sol": {
|
2122
|
+
"FeeLib": [
|
2123
|
+
{
|
2124
|
+
"length": 20,
|
2125
|
+
"start": 13967
|
2126
|
+
},
|
2127
|
+
{
|
2128
|
+
"length": 20,
|
2129
|
+
"start": 17974
|
2130
|
+
}
|
2131
|
+
]
|
2132
|
+
},
|
2133
|
+
"contracts/types/Key32.sol": {
|
2134
|
+
"Key32Lib": [
|
2135
|
+
{
|
2136
|
+
"length": 20,
|
2137
|
+
"start": 34415
|
2138
|
+
},
|
2139
|
+
{
|
2140
|
+
"length": 20,
|
2141
|
+
"start": 35637
|
2142
|
+
}
|
2143
|
+
]
|
2144
|
+
},
|
2145
|
+
"contracts/types/NftId.sol": {
|
2146
|
+
"NftIdLib": [
|
2147
|
+
{
|
2148
|
+
"length": 20,
|
2149
|
+
"start": 15497
|
2150
|
+
},
|
2151
|
+
{
|
2152
|
+
"length": 20,
|
2153
|
+
"start": 15702
|
2154
|
+
},
|
2155
|
+
{
|
2156
|
+
"length": 20,
|
2157
|
+
"start": 16062
|
2158
|
+
},
|
2159
|
+
{
|
2160
|
+
"length": 20,
|
2161
|
+
"start": 16296
|
2162
|
+
},
|
2163
|
+
{
|
2164
|
+
"length": 20,
|
2165
|
+
"start": 18926
|
2166
|
+
},
|
2167
|
+
{
|
2168
|
+
"length": 20,
|
2169
|
+
"start": 19172
|
2170
|
+
},
|
2171
|
+
{
|
2172
|
+
"length": 20,
|
2173
|
+
"start": 19364
|
2174
|
+
},
|
2175
|
+
{
|
2176
|
+
"length": 20,
|
2177
|
+
"start": 19625
|
2178
|
+
},
|
2179
|
+
{
|
2180
|
+
"length": 20,
|
2181
|
+
"start": 19881
|
2182
|
+
}
|
2183
|
+
]
|
2184
|
+
},
|
2185
|
+
"contracts/types/NftIdSet.sol": {
|
2186
|
+
"LibNftIdSet": [
|
2187
|
+
{
|
2188
|
+
"length": 20,
|
2189
|
+
"start": 10110
|
2190
|
+
},
|
2191
|
+
{
|
2192
|
+
"length": 20,
|
2193
|
+
"start": 11055
|
2194
|
+
},
|
2195
|
+
{
|
2196
|
+
"length": 20,
|
2197
|
+
"start": 11246
|
2198
|
+
},
|
2199
|
+
{
|
2200
|
+
"length": 20,
|
2201
|
+
"start": 11469
|
2202
|
+
},
|
2203
|
+
{
|
2204
|
+
"length": 20,
|
2205
|
+
"start": 14659
|
2206
|
+
},
|
2207
|
+
{
|
2208
|
+
"length": 20,
|
2209
|
+
"start": 15054
|
2210
|
+
}
|
2211
|
+
]
|
2212
|
+
},
|
2213
|
+
"contracts/types/ObjectType.sol": {
|
2214
|
+
"ObjectTypeLib": [
|
2215
|
+
{
|
2216
|
+
"length": 20,
|
2217
|
+
"start": 32333
|
2218
|
+
}
|
2219
|
+
]
|
2220
|
+
},
|
2221
|
+
"contracts/types/RiskId.sol": {
|
2222
|
+
"RiskIdLib": [
|
2223
|
+
{
|
2224
|
+
"length": 20,
|
2225
|
+
"start": 12365
|
2226
|
+
}
|
2227
|
+
]
|
2228
|
+
},
|
2229
|
+
"contracts/types/RoleId.sol": {
|
2230
|
+
"RoleIdLib": [
|
2231
|
+
{
|
2232
|
+
"length": 20,
|
2233
|
+
"start": 2431
|
2234
|
+
},
|
2235
|
+
{
|
2236
|
+
"length": 20,
|
2237
|
+
"start": 2691
|
2238
|
+
},
|
2239
|
+
{
|
2240
|
+
"length": 20,
|
2241
|
+
"start": 2780
|
2242
|
+
},
|
2243
|
+
{
|
2244
|
+
"length": 20,
|
2245
|
+
"start": 2872
|
2246
|
+
},
|
2247
|
+
{
|
2248
|
+
"length": 20,
|
2249
|
+
"start": 11955
|
2250
|
+
},
|
2251
|
+
{
|
2252
|
+
"length": 20,
|
2253
|
+
"start": 12526
|
2254
|
+
}
|
2255
|
+
]
|
2256
|
+
},
|
2257
|
+
"contracts/types/StateId.sol": {
|
2258
|
+
"StateIdLib": [
|
2259
|
+
{
|
2260
|
+
"length": 20,
|
2261
|
+
"start": 31992
|
2262
|
+
},
|
2263
|
+
{
|
2264
|
+
"length": 20,
|
2265
|
+
"start": 32550
|
2266
|
+
},
|
2267
|
+
{
|
2268
|
+
"length": 20,
|
2269
|
+
"start": 33075
|
2270
|
+
},
|
2271
|
+
{
|
2272
|
+
"length": 20,
|
2273
|
+
"start": 33808
|
2274
|
+
},
|
2275
|
+
{
|
2276
|
+
"length": 20,
|
2277
|
+
"start": 34028
|
2278
|
+
},
|
2279
|
+
{
|
2280
|
+
"length": 20,
|
2281
|
+
"start": 34585
|
2282
|
+
},
|
2283
|
+
{
|
2284
|
+
"length": 20,
|
2285
|
+
"start": 34854
|
2286
|
+
},
|
2287
|
+
{
|
2288
|
+
"length": 20,
|
2289
|
+
"start": 35074
|
2290
|
+
},
|
2291
|
+
{
|
2292
|
+
"length": 20,
|
2293
|
+
"start": 35566
|
2294
|
+
}
|
2295
|
+
]
|
2296
|
+
},
|
2297
|
+
"contracts/types/Timestamp.sol": {
|
2298
|
+
"TimestampLib": [
|
2299
|
+
{
|
2300
|
+
"length": 20,
|
2301
|
+
"start": 10669
|
2302
|
+
}
|
2303
|
+
]
|
2304
|
+
},
|
2305
|
+
"contracts/types/UFixed.sol": {
|
2306
|
+
"UFixedMathLib": [
|
2307
|
+
{
|
2308
|
+
"length": 20,
|
2309
|
+
"start": 8611
|
2310
|
+
},
|
2311
|
+
{
|
2312
|
+
"length": 20,
|
2313
|
+
"start": 11751
|
2314
|
+
}
|
2315
|
+
]
|
2316
|
+
},
|
2317
|
+
"contracts/types/Version.sol": {
|
2318
|
+
"VersionLib": [
|
2319
|
+
{
|
2320
|
+
"length": 20,
|
2321
|
+
"start": 1901
|
2322
|
+
},
|
2323
|
+
{
|
2324
|
+
"length": 20,
|
2325
|
+
"start": 2946
|
2326
|
+
},
|
2327
|
+
{
|
2328
|
+
"length": 20,
|
2329
|
+
"start": 8754
|
2330
|
+
}
|
2331
|
+
]
|
2332
|
+
}
|
2333
|
+
},
|
2334
|
+
"deployedLinkReferences": {
|
2335
|
+
"contracts/types/Blocknumber.sol": {
|
2336
|
+
"BlocknumberLib": [
|
2337
|
+
{
|
2338
|
+
"length": 20,
|
2339
|
+
"start": 3780
|
2340
|
+
}
|
2341
|
+
]
|
2342
|
+
},
|
2343
|
+
"contracts/types/Fee.sol": {
|
2344
|
+
"FeeLib": [
|
2345
|
+
{
|
2346
|
+
"length": 20,
|
2347
|
+
"start": 9273
|
2348
|
+
},
|
2349
|
+
{
|
2350
|
+
"length": 20,
|
2351
|
+
"start": 13280
|
2352
|
+
}
|
2353
|
+
]
|
2354
|
+
},
|
2355
|
+
"contracts/types/NftId.sol": {
|
2356
|
+
"NftIdLib": [
|
2357
|
+
{
|
2358
|
+
"length": 20,
|
2359
|
+
"start": 10803
|
2360
|
+
},
|
2361
|
+
{
|
2362
|
+
"length": 20,
|
2363
|
+
"start": 11008
|
2364
|
+
},
|
2365
|
+
{
|
2366
|
+
"length": 20,
|
2367
|
+
"start": 11368
|
2368
|
+
},
|
2369
|
+
{
|
2370
|
+
"length": 20,
|
2371
|
+
"start": 11602
|
2372
|
+
},
|
2373
|
+
{
|
2374
|
+
"length": 20,
|
2375
|
+
"start": 14232
|
2376
|
+
},
|
2377
|
+
{
|
2378
|
+
"length": 20,
|
2379
|
+
"start": 14478
|
2380
|
+
},
|
2381
|
+
{
|
2382
|
+
"length": 20,
|
2383
|
+
"start": 14670
|
2384
|
+
},
|
2385
|
+
{
|
2386
|
+
"length": 20,
|
2387
|
+
"start": 14931
|
2388
|
+
},
|
2389
|
+
{
|
2390
|
+
"length": 20,
|
2391
|
+
"start": 15187
|
2392
|
+
}
|
2393
|
+
]
|
2394
|
+
},
|
2395
|
+
"contracts/types/NftIdSet.sol": {
|
2396
|
+
"LibNftIdSet": [
|
2397
|
+
{
|
2398
|
+
"length": 20,
|
2399
|
+
"start": 5416
|
2400
|
+
},
|
2401
|
+
{
|
2402
|
+
"length": 20,
|
2403
|
+
"start": 6361
|
2404
|
+
},
|
2405
|
+
{
|
2406
|
+
"length": 20,
|
2407
|
+
"start": 6552
|
2408
|
+
},
|
2409
|
+
{
|
2410
|
+
"length": 20,
|
2411
|
+
"start": 6775
|
2412
|
+
},
|
2413
|
+
{
|
2414
|
+
"length": 20,
|
2415
|
+
"start": 9965
|
2416
|
+
},
|
2417
|
+
{
|
2418
|
+
"length": 20,
|
2419
|
+
"start": 10360
|
2420
|
+
}
|
2421
|
+
]
|
2422
|
+
},
|
2423
|
+
"contracts/types/RiskId.sol": {
|
2424
|
+
"RiskIdLib": [
|
2425
|
+
{
|
2426
|
+
"length": 20,
|
2427
|
+
"start": 7671
|
2428
|
+
}
|
2429
|
+
]
|
2430
|
+
},
|
2431
|
+
"contracts/types/RoleId.sol": {
|
2432
|
+
"RoleIdLib": [
|
2433
|
+
{
|
2434
|
+
"length": 20,
|
2435
|
+
"start": 7261
|
2436
|
+
},
|
2437
|
+
{
|
2438
|
+
"length": 20,
|
2439
|
+
"start": 7832
|
2440
|
+
}
|
2441
|
+
]
|
2442
|
+
},
|
2443
|
+
"contracts/types/Timestamp.sol": {
|
2444
|
+
"TimestampLib": [
|
2445
|
+
{
|
2446
|
+
"length": 20,
|
2447
|
+
"start": 5975
|
2448
|
+
}
|
2449
|
+
]
|
2450
|
+
},
|
2451
|
+
"contracts/types/UFixed.sol": {
|
2452
|
+
"UFixedMathLib": [
|
2453
|
+
{
|
2454
|
+
"length": 20,
|
2455
|
+
"start": 3917
|
2456
|
+
},
|
2457
|
+
{
|
2458
|
+
"length": 20,
|
2459
|
+
"start": 7057
|
2460
|
+
}
|
2461
|
+
]
|
2462
|
+
},
|
2463
|
+
"contracts/types/Version.sol": {
|
2464
|
+
"VersionLib": [
|
2465
|
+
{
|
2466
|
+
"length": 20,
|
2467
|
+
"start": 4060
|
2468
|
+
}
|
2469
|
+
]
|
2470
|
+
}
|
2471
|
+
}
|
1009
2472
|
}
|