@etherisc/gif-next 0.0.2-f7be756-963 → 0.0.2-f7eda15-119
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +331 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +491 -40
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +849 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +244 -241
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +648 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +769 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +748 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +760 -118
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +738 -135
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1310 -809
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +586 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2242 -908
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1034 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1381 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1024 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +473 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +603 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1102 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +449 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +772 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +437 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +715 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +441 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +766 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +494 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +531 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1227 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +505 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +806 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +437 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +856 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +437 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +567 -31
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +981 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +644 -74
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1200 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +464 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +394 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +196 -0
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +416 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +171 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +362 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +282 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +476 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +313 -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 +608 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/Component.sol +186 -47
- package/contracts/components/Distribution.sol +150 -0
- package/contracts/components/IComponent.sol +43 -0
- package/contracts/components/IDistributionComponent.sol +47 -0
- package/contracts/components/IPoolComponent.sol +60 -0
- package/contracts/components/IProductComponent.sol +39 -0
- package/contracts/components/Pool.sol +200 -25
- package/contracts/components/Product.sol +222 -46
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +71 -24
- package/contracts/instance/IInstanceService.sol +41 -0
- package/contracts/instance/Instance.sol +248 -51
- package/contracts/instance/InstanceAccessManager.sol +298 -0
- package/contracts/instance/InstanceReader.sol +293 -0
- package/contracts/instance/InstanceService.sol +435 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +172 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/module/IAccess.sol +48 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +46 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/BundleService.sol +293 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +106 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +20 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +538 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +110 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +234 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +129 -62
- package/contracts/registry/IRegistry.sol +72 -41
- package/contracts/registry/IRegistryService.sol +65 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +401 -131
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +262 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +332 -0
- package/contracts/registry/TokenRegistry.sol +112 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +25 -0
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +96 -0
- package/contracts/shared/NftOwnable.sol +139 -0
- package/contracts/shared/ProxyManager.sol +94 -0
- package/contracts/shared/Registerable.sol +86 -0
- package/contracts/shared/Service.sol +60 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +147 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +25 -0
- package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/{mock → test}/Usdc.sol +1 -1
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +44 -20
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +22 -1
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +60 -15
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +90 -0
- package/contracts/types/StateId.sol +18 -4
- package/contracts/types/Timestamp.sol +29 -4
- package/contracts/types/UFixed.sol +138 -23
- package/contracts/types/Version.sol +107 -0
- package/package.json +11 -5
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -299
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
- package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/mock/TestPool.sol +0 -16
- package/contracts/mock/TestProduct.sol +0 -39
- package/contracts/registry/IChainNft.sol +0 -21
@@ -0,0 +1,1200 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "RegistryService",
|
4
|
+
"sourceName": "contracts/registry/RegistryService.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "registry",
|
49
|
+
"type": "address"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"internalType": "NftId",
|
53
|
+
"name": "nftId",
|
54
|
+
"type": "uint96"
|
55
|
+
}
|
56
|
+
],
|
57
|
+
"name": "ErrorAlreadyLinked",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"inputs": [
|
62
|
+
{
|
63
|
+
"internalType": "address",
|
64
|
+
"name": "contractAddress",
|
65
|
+
"type": "address"
|
66
|
+
}
|
67
|
+
],
|
68
|
+
"name": "ErrorContractNotRegistered",
|
69
|
+
"type": "error"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"inputs": [
|
73
|
+
{
|
74
|
+
"internalType": "address",
|
75
|
+
"name": "account",
|
76
|
+
"type": "address"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "ErrorNotOwner",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "registryAddress",
|
87
|
+
"type": "address"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"name": "ErrorNotRegistry",
|
91
|
+
"type": "error"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"inputs": [
|
95
|
+
{
|
96
|
+
"internalType": "address",
|
97
|
+
"name": "registryAddress",
|
98
|
+
"type": "address"
|
99
|
+
}
|
100
|
+
],
|
101
|
+
"name": "ErrorRegisterableNotRegistry",
|
102
|
+
"type": "error"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"inputs": [],
|
106
|
+
"name": "ErrorRegistryAddressZero",
|
107
|
+
"type": "error"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"inputs": [
|
111
|
+
{
|
112
|
+
"internalType": "address",
|
113
|
+
"name": "registry",
|
114
|
+
"type": "address"
|
115
|
+
}
|
116
|
+
],
|
117
|
+
"name": "ErrorRegistryAlreadyInitialized",
|
118
|
+
"type": "error"
|
119
|
+
},
|
120
|
+
{
|
121
|
+
"inputs": [],
|
122
|
+
"name": "ErrorRegistryNotInitialized",
|
123
|
+
"type": "error"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"inputs": [
|
127
|
+
{
|
128
|
+
"internalType": "address",
|
129
|
+
"name": "registerableAddress",
|
130
|
+
"type": "address"
|
131
|
+
}
|
132
|
+
],
|
133
|
+
"name": "InvalidAddress",
|
134
|
+
"type": "error"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"inputs": [
|
138
|
+
{
|
139
|
+
"internalType": "address",
|
140
|
+
"name": "initialOwner",
|
141
|
+
"type": "address"
|
142
|
+
}
|
143
|
+
],
|
144
|
+
"name": "InvalidInitialOwner",
|
145
|
+
"type": "error"
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"inputs": [],
|
149
|
+
"name": "InvalidInitialization",
|
150
|
+
"type": "error"
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"inputs": [],
|
154
|
+
"name": "NotDistribution",
|
155
|
+
"type": "error"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"inputs": [],
|
159
|
+
"name": "NotInitializing",
|
160
|
+
"type": "error"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"inputs": [],
|
164
|
+
"name": "NotInstance",
|
165
|
+
"type": "error"
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"inputs": [],
|
169
|
+
"name": "NotPool",
|
170
|
+
"type": "error"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"inputs": [],
|
174
|
+
"name": "NotProduct",
|
175
|
+
"type": "error"
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"inputs": [
|
179
|
+
{
|
180
|
+
"internalType": "address",
|
181
|
+
"name": "expectedOwner",
|
182
|
+
"type": "address"
|
183
|
+
}
|
184
|
+
],
|
185
|
+
"name": "NotRegisterableOwner",
|
186
|
+
"type": "error"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"inputs": [],
|
190
|
+
"name": "NotRegistryOwner",
|
191
|
+
"type": "error"
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"inputs": [],
|
195
|
+
"name": "NotService",
|
196
|
+
"type": "error"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"inputs": [],
|
200
|
+
"name": "RegisterableOwnerIsRegistered",
|
201
|
+
"type": "error"
|
202
|
+
},
|
203
|
+
{
|
204
|
+
"inputs": [],
|
205
|
+
"name": "RegisterableOwnerIsZero",
|
206
|
+
"type": "error"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"inputs": [],
|
210
|
+
"name": "SelfRegistration",
|
211
|
+
"type": "error"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"inputs": [
|
215
|
+
{
|
216
|
+
"internalType": "ObjectType",
|
217
|
+
"name": "expected",
|
218
|
+
"type": "uint8"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"internalType": "ObjectType",
|
222
|
+
"name": "found",
|
223
|
+
"type": "uint8"
|
224
|
+
}
|
225
|
+
],
|
226
|
+
"name": "UnexpectedRegisterableType",
|
227
|
+
"type": "error"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"anonymous": false,
|
231
|
+
"inputs": [
|
232
|
+
{
|
233
|
+
"indexed": false,
|
234
|
+
"internalType": "address",
|
235
|
+
"name": "authority",
|
236
|
+
"type": "address"
|
237
|
+
}
|
238
|
+
],
|
239
|
+
"name": "AuthorityUpdated",
|
240
|
+
"type": "event"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"anonymous": false,
|
244
|
+
"inputs": [
|
245
|
+
{
|
246
|
+
"indexed": false,
|
247
|
+
"internalType": "uint64",
|
248
|
+
"name": "version",
|
249
|
+
"type": "uint64"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"name": "Initialized",
|
253
|
+
"type": "event"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"anonymous": false,
|
257
|
+
"inputs": [
|
258
|
+
{
|
259
|
+
"indexed": false,
|
260
|
+
"internalType": "Version",
|
261
|
+
"name": "version",
|
262
|
+
"type": "uint24"
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"indexed": false,
|
266
|
+
"internalType": "address",
|
267
|
+
"name": "implementation",
|
268
|
+
"type": "address"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"indexed": false,
|
272
|
+
"internalType": "address",
|
273
|
+
"name": "activatedBy",
|
274
|
+
"type": "address"
|
275
|
+
}
|
276
|
+
],
|
277
|
+
"name": "LogVersionableInitialized",
|
278
|
+
"type": "event"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"inputs": [],
|
282
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
283
|
+
"outputs": [
|
284
|
+
{
|
285
|
+
"internalType": "bytes32",
|
286
|
+
"name": "",
|
287
|
+
"type": "bytes32"
|
288
|
+
}
|
289
|
+
],
|
290
|
+
"stateMutability": "view",
|
291
|
+
"type": "function"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"inputs": [],
|
295
|
+
"name": "REGISTRY_CREATION_CODE_HASH",
|
296
|
+
"outputs": [
|
297
|
+
{
|
298
|
+
"internalType": "bytes32",
|
299
|
+
"name": "",
|
300
|
+
"type": "bytes32"
|
301
|
+
}
|
302
|
+
],
|
303
|
+
"stateMutability": "view",
|
304
|
+
"type": "function"
|
305
|
+
},
|
306
|
+
{
|
307
|
+
"inputs": [],
|
308
|
+
"name": "authority",
|
309
|
+
"outputs": [
|
310
|
+
{
|
311
|
+
"internalType": "address",
|
312
|
+
"name": "",
|
313
|
+
"type": "address"
|
314
|
+
}
|
315
|
+
],
|
316
|
+
"stateMutability": "view",
|
317
|
+
"type": "function"
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"inputs": [],
|
321
|
+
"name": "getDomain",
|
322
|
+
"outputs": [
|
323
|
+
{
|
324
|
+
"internalType": "ObjectType",
|
325
|
+
"name": "serviceDomain",
|
326
|
+
"type": "uint8"
|
327
|
+
}
|
328
|
+
],
|
329
|
+
"stateMutability": "pure",
|
330
|
+
"type": "function"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"inputs": [],
|
334
|
+
"name": "getFunctionConfigs",
|
335
|
+
"outputs": [
|
336
|
+
{
|
337
|
+
"components": [
|
338
|
+
{
|
339
|
+
"internalType": "ObjectType",
|
340
|
+
"name": "serviceDomain",
|
341
|
+
"type": "uint8"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"internalType": "bytes4",
|
345
|
+
"name": "selector",
|
346
|
+
"type": "bytes4"
|
347
|
+
}
|
348
|
+
],
|
349
|
+
"internalType": "struct IRegistryService.FunctionConfig[]",
|
350
|
+
"name": "config",
|
351
|
+
"type": "tuple[]"
|
352
|
+
}
|
353
|
+
],
|
354
|
+
"stateMutability": "pure",
|
355
|
+
"type": "function"
|
356
|
+
},
|
357
|
+
{
|
358
|
+
"inputs": [],
|
359
|
+
"name": "getInitialInfo",
|
360
|
+
"outputs": [
|
361
|
+
{
|
362
|
+
"components": [
|
363
|
+
{
|
364
|
+
"internalType": "NftId",
|
365
|
+
"name": "nftId",
|
366
|
+
"type": "uint96"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"internalType": "NftId",
|
370
|
+
"name": "parentNftId",
|
371
|
+
"type": "uint96"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
"internalType": "ObjectType",
|
375
|
+
"name": "objectType",
|
376
|
+
"type": "uint8"
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"internalType": "bool",
|
380
|
+
"name": "isInterceptor",
|
381
|
+
"type": "bool"
|
382
|
+
},
|
383
|
+
{
|
384
|
+
"internalType": "address",
|
385
|
+
"name": "objectAddress",
|
386
|
+
"type": "address"
|
387
|
+
},
|
388
|
+
{
|
389
|
+
"internalType": "address",
|
390
|
+
"name": "initialOwner",
|
391
|
+
"type": "address"
|
392
|
+
},
|
393
|
+
{
|
394
|
+
"internalType": "bytes",
|
395
|
+
"name": "data",
|
396
|
+
"type": "bytes"
|
397
|
+
}
|
398
|
+
],
|
399
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
400
|
+
"name": "info",
|
401
|
+
"type": "tuple"
|
402
|
+
}
|
403
|
+
],
|
404
|
+
"stateMutability": "view",
|
405
|
+
"type": "function"
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"inputs": [],
|
409
|
+
"name": "getInitialOwner",
|
410
|
+
"outputs": [
|
411
|
+
{
|
412
|
+
"internalType": "address",
|
413
|
+
"name": "",
|
414
|
+
"type": "address"
|
415
|
+
}
|
416
|
+
],
|
417
|
+
"stateMutability": "view",
|
418
|
+
"type": "function"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"inputs": [],
|
422
|
+
"name": "getInitializedVersion",
|
423
|
+
"outputs": [
|
424
|
+
{
|
425
|
+
"internalType": "uint64",
|
426
|
+
"name": "",
|
427
|
+
"type": "uint64"
|
428
|
+
}
|
429
|
+
],
|
430
|
+
"stateMutability": "view",
|
431
|
+
"type": "function"
|
432
|
+
},
|
433
|
+
{
|
434
|
+
"inputs": [],
|
435
|
+
"name": "getMajorVersion",
|
436
|
+
"outputs": [
|
437
|
+
{
|
438
|
+
"internalType": "VersionPart",
|
439
|
+
"name": "majorVersion",
|
440
|
+
"type": "uint8"
|
441
|
+
}
|
442
|
+
],
|
443
|
+
"stateMutability": "view",
|
444
|
+
"type": "function"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"inputs": [],
|
448
|
+
"name": "getNftId",
|
449
|
+
"outputs": [
|
450
|
+
{
|
451
|
+
"internalType": "NftId",
|
452
|
+
"name": "",
|
453
|
+
"type": "uint96"
|
454
|
+
}
|
455
|
+
],
|
456
|
+
"stateMutability": "view",
|
457
|
+
"type": "function"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"inputs": [],
|
461
|
+
"name": "getOwner",
|
462
|
+
"outputs": [
|
463
|
+
{
|
464
|
+
"internalType": "address",
|
465
|
+
"name": "",
|
466
|
+
"type": "address"
|
467
|
+
}
|
468
|
+
],
|
469
|
+
"stateMutability": "view",
|
470
|
+
"type": "function"
|
471
|
+
},
|
472
|
+
{
|
473
|
+
"inputs": [],
|
474
|
+
"name": "getRegistry",
|
475
|
+
"outputs": [
|
476
|
+
{
|
477
|
+
"internalType": "contract IRegistry",
|
478
|
+
"name": "",
|
479
|
+
"type": "address"
|
480
|
+
}
|
481
|
+
],
|
482
|
+
"stateMutability": "view",
|
483
|
+
"type": "function"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"inputs": [],
|
487
|
+
"name": "getVersion",
|
488
|
+
"outputs": [
|
489
|
+
{
|
490
|
+
"internalType": "Version",
|
491
|
+
"name": "",
|
492
|
+
"type": "uint24"
|
493
|
+
}
|
494
|
+
],
|
495
|
+
"stateMutability": "pure",
|
496
|
+
"type": "function"
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"inputs": [
|
500
|
+
{
|
501
|
+
"internalType": "uint256",
|
502
|
+
"name": "idx",
|
503
|
+
"type": "uint256"
|
504
|
+
}
|
505
|
+
],
|
506
|
+
"name": "getVersion",
|
507
|
+
"outputs": [
|
508
|
+
{
|
509
|
+
"internalType": "Version",
|
510
|
+
"name": "",
|
511
|
+
"type": "uint24"
|
512
|
+
}
|
513
|
+
],
|
514
|
+
"stateMutability": "view",
|
515
|
+
"type": "function"
|
516
|
+
},
|
517
|
+
{
|
518
|
+
"inputs": [],
|
519
|
+
"name": "getVersionCount",
|
520
|
+
"outputs": [
|
521
|
+
{
|
522
|
+
"internalType": "uint256",
|
523
|
+
"name": "",
|
524
|
+
"type": "uint256"
|
525
|
+
}
|
526
|
+
],
|
527
|
+
"stateMutability": "view",
|
528
|
+
"type": "function"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"inputs": [
|
532
|
+
{
|
533
|
+
"internalType": "Version",
|
534
|
+
"name": "_version",
|
535
|
+
"type": "uint24"
|
536
|
+
}
|
537
|
+
],
|
538
|
+
"name": "getVersionInfo",
|
539
|
+
"outputs": [
|
540
|
+
{
|
541
|
+
"components": [
|
542
|
+
{
|
543
|
+
"internalType": "Version",
|
544
|
+
"name": "version",
|
545
|
+
"type": "uint24"
|
546
|
+
},
|
547
|
+
{
|
548
|
+
"internalType": "address",
|
549
|
+
"name": "implementation",
|
550
|
+
"type": "address"
|
551
|
+
},
|
552
|
+
{
|
553
|
+
"internalType": "address",
|
554
|
+
"name": "activatedBy",
|
555
|
+
"type": "address"
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"internalType": "Timestamp",
|
559
|
+
"name": "activatedAt",
|
560
|
+
"type": "uint40"
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"internalType": "Blocknumber",
|
564
|
+
"name": "activatedIn",
|
565
|
+
"type": "uint32"
|
566
|
+
}
|
567
|
+
],
|
568
|
+
"internalType": "struct IVersionable.VersionInfo",
|
569
|
+
"name": "",
|
570
|
+
"type": "tuple"
|
571
|
+
}
|
572
|
+
],
|
573
|
+
"stateMutability": "view",
|
574
|
+
"type": "function"
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"inputs": [
|
578
|
+
{
|
579
|
+
"internalType": "address",
|
580
|
+
"name": "implementation",
|
581
|
+
"type": "address"
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"internalType": "address",
|
585
|
+
"name": "activatedBy",
|
586
|
+
"type": "address"
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"internalType": "bytes",
|
590
|
+
"name": "data",
|
591
|
+
"type": "bytes"
|
592
|
+
}
|
593
|
+
],
|
594
|
+
"name": "initialize",
|
595
|
+
"outputs": [],
|
596
|
+
"stateMutability": "nonpayable",
|
597
|
+
"type": "function"
|
598
|
+
},
|
599
|
+
{
|
600
|
+
"inputs": [],
|
601
|
+
"name": "isConsumingScheduledOp",
|
602
|
+
"outputs": [
|
603
|
+
{
|
604
|
+
"internalType": "bytes4",
|
605
|
+
"name": "",
|
606
|
+
"type": "bytes4"
|
607
|
+
}
|
608
|
+
],
|
609
|
+
"stateMutability": "view",
|
610
|
+
"type": "function"
|
611
|
+
},
|
612
|
+
{
|
613
|
+
"inputs": [
|
614
|
+
{
|
615
|
+
"internalType": "Version",
|
616
|
+
"name": "_version",
|
617
|
+
"type": "uint24"
|
618
|
+
}
|
619
|
+
],
|
620
|
+
"name": "isInitialized",
|
621
|
+
"outputs": [
|
622
|
+
{
|
623
|
+
"internalType": "bool",
|
624
|
+
"name": "",
|
625
|
+
"type": "bool"
|
626
|
+
}
|
627
|
+
],
|
628
|
+
"stateMutability": "view",
|
629
|
+
"type": "function"
|
630
|
+
},
|
631
|
+
{
|
632
|
+
"inputs": [],
|
633
|
+
"name": "linkToRegisteredNftId",
|
634
|
+
"outputs": [],
|
635
|
+
"stateMutability": "nonpayable",
|
636
|
+
"type": "function"
|
637
|
+
},
|
638
|
+
{
|
639
|
+
"inputs": [
|
640
|
+
{
|
641
|
+
"components": [
|
642
|
+
{
|
643
|
+
"internalType": "NftId",
|
644
|
+
"name": "nftId",
|
645
|
+
"type": "uint96"
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"internalType": "NftId",
|
649
|
+
"name": "parentNftId",
|
650
|
+
"type": "uint96"
|
651
|
+
},
|
652
|
+
{
|
653
|
+
"internalType": "ObjectType",
|
654
|
+
"name": "objectType",
|
655
|
+
"type": "uint8"
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"internalType": "bool",
|
659
|
+
"name": "isInterceptor",
|
660
|
+
"type": "bool"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"internalType": "address",
|
664
|
+
"name": "objectAddress",
|
665
|
+
"type": "address"
|
666
|
+
},
|
667
|
+
{
|
668
|
+
"internalType": "address",
|
669
|
+
"name": "initialOwner",
|
670
|
+
"type": "address"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"internalType": "bytes",
|
674
|
+
"name": "data",
|
675
|
+
"type": "bytes"
|
676
|
+
}
|
677
|
+
],
|
678
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
679
|
+
"name": "info",
|
680
|
+
"type": "tuple"
|
681
|
+
}
|
682
|
+
],
|
683
|
+
"name": "registerBundle",
|
684
|
+
"outputs": [
|
685
|
+
{
|
686
|
+
"internalType": "NftId",
|
687
|
+
"name": "nftId",
|
688
|
+
"type": "uint96"
|
689
|
+
}
|
690
|
+
],
|
691
|
+
"stateMutability": "nonpayable",
|
692
|
+
"type": "function"
|
693
|
+
},
|
694
|
+
{
|
695
|
+
"inputs": [
|
696
|
+
{
|
697
|
+
"internalType": "contract IComponent",
|
698
|
+
"name": "distribution",
|
699
|
+
"type": "address"
|
700
|
+
},
|
701
|
+
{
|
702
|
+
"internalType": "address",
|
703
|
+
"name": "owner",
|
704
|
+
"type": "address"
|
705
|
+
}
|
706
|
+
],
|
707
|
+
"name": "registerDistribution",
|
708
|
+
"outputs": [
|
709
|
+
{
|
710
|
+
"components": [
|
711
|
+
{
|
712
|
+
"internalType": "NftId",
|
713
|
+
"name": "nftId",
|
714
|
+
"type": "uint96"
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"internalType": "NftId",
|
718
|
+
"name": "parentNftId",
|
719
|
+
"type": "uint96"
|
720
|
+
},
|
721
|
+
{
|
722
|
+
"internalType": "ObjectType",
|
723
|
+
"name": "objectType",
|
724
|
+
"type": "uint8"
|
725
|
+
},
|
726
|
+
{
|
727
|
+
"internalType": "bool",
|
728
|
+
"name": "isInterceptor",
|
729
|
+
"type": "bool"
|
730
|
+
},
|
731
|
+
{
|
732
|
+
"internalType": "address",
|
733
|
+
"name": "objectAddress",
|
734
|
+
"type": "address"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"internalType": "address",
|
738
|
+
"name": "initialOwner",
|
739
|
+
"type": "address"
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"internalType": "bytes",
|
743
|
+
"name": "data",
|
744
|
+
"type": "bytes"
|
745
|
+
}
|
746
|
+
],
|
747
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
748
|
+
"name": "info",
|
749
|
+
"type": "tuple"
|
750
|
+
}
|
751
|
+
],
|
752
|
+
"stateMutability": "nonpayable",
|
753
|
+
"type": "function"
|
754
|
+
},
|
755
|
+
{
|
756
|
+
"inputs": [
|
757
|
+
{
|
758
|
+
"internalType": "contract IRegisterable",
|
759
|
+
"name": "instance",
|
760
|
+
"type": "address"
|
761
|
+
},
|
762
|
+
{
|
763
|
+
"internalType": "address",
|
764
|
+
"name": "owner",
|
765
|
+
"type": "address"
|
766
|
+
}
|
767
|
+
],
|
768
|
+
"name": "registerInstance",
|
769
|
+
"outputs": [
|
770
|
+
{
|
771
|
+
"components": [
|
772
|
+
{
|
773
|
+
"internalType": "NftId",
|
774
|
+
"name": "nftId",
|
775
|
+
"type": "uint96"
|
776
|
+
},
|
777
|
+
{
|
778
|
+
"internalType": "NftId",
|
779
|
+
"name": "parentNftId",
|
780
|
+
"type": "uint96"
|
781
|
+
},
|
782
|
+
{
|
783
|
+
"internalType": "ObjectType",
|
784
|
+
"name": "objectType",
|
785
|
+
"type": "uint8"
|
786
|
+
},
|
787
|
+
{
|
788
|
+
"internalType": "bool",
|
789
|
+
"name": "isInterceptor",
|
790
|
+
"type": "bool"
|
791
|
+
},
|
792
|
+
{
|
793
|
+
"internalType": "address",
|
794
|
+
"name": "objectAddress",
|
795
|
+
"type": "address"
|
796
|
+
},
|
797
|
+
{
|
798
|
+
"internalType": "address",
|
799
|
+
"name": "initialOwner",
|
800
|
+
"type": "address"
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"internalType": "bytes",
|
804
|
+
"name": "data",
|
805
|
+
"type": "bytes"
|
806
|
+
}
|
807
|
+
],
|
808
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
809
|
+
"name": "info",
|
810
|
+
"type": "tuple"
|
811
|
+
}
|
812
|
+
],
|
813
|
+
"stateMutability": "nonpayable",
|
814
|
+
"type": "function"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"inputs": [
|
818
|
+
{
|
819
|
+
"components": [
|
820
|
+
{
|
821
|
+
"internalType": "NftId",
|
822
|
+
"name": "nftId",
|
823
|
+
"type": "uint96"
|
824
|
+
},
|
825
|
+
{
|
826
|
+
"internalType": "NftId",
|
827
|
+
"name": "parentNftId",
|
828
|
+
"type": "uint96"
|
829
|
+
},
|
830
|
+
{
|
831
|
+
"internalType": "ObjectType",
|
832
|
+
"name": "objectType",
|
833
|
+
"type": "uint8"
|
834
|
+
},
|
835
|
+
{
|
836
|
+
"internalType": "bool",
|
837
|
+
"name": "isInterceptor",
|
838
|
+
"type": "bool"
|
839
|
+
},
|
840
|
+
{
|
841
|
+
"internalType": "address",
|
842
|
+
"name": "objectAddress",
|
843
|
+
"type": "address"
|
844
|
+
},
|
845
|
+
{
|
846
|
+
"internalType": "address",
|
847
|
+
"name": "initialOwner",
|
848
|
+
"type": "address"
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"internalType": "bytes",
|
852
|
+
"name": "data",
|
853
|
+
"type": "bytes"
|
854
|
+
}
|
855
|
+
],
|
856
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
857
|
+
"name": "info",
|
858
|
+
"type": "tuple"
|
859
|
+
}
|
860
|
+
],
|
861
|
+
"name": "registerPolicy",
|
862
|
+
"outputs": [
|
863
|
+
{
|
864
|
+
"internalType": "NftId",
|
865
|
+
"name": "nftId",
|
866
|
+
"type": "uint96"
|
867
|
+
}
|
868
|
+
],
|
869
|
+
"stateMutability": "nonpayable",
|
870
|
+
"type": "function"
|
871
|
+
},
|
872
|
+
{
|
873
|
+
"inputs": [
|
874
|
+
{
|
875
|
+
"internalType": "contract IComponent",
|
876
|
+
"name": "pool",
|
877
|
+
"type": "address"
|
878
|
+
},
|
879
|
+
{
|
880
|
+
"internalType": "address",
|
881
|
+
"name": "owner",
|
882
|
+
"type": "address"
|
883
|
+
}
|
884
|
+
],
|
885
|
+
"name": "registerPool",
|
886
|
+
"outputs": [
|
887
|
+
{
|
888
|
+
"components": [
|
889
|
+
{
|
890
|
+
"internalType": "NftId",
|
891
|
+
"name": "nftId",
|
892
|
+
"type": "uint96"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"internalType": "NftId",
|
896
|
+
"name": "parentNftId",
|
897
|
+
"type": "uint96"
|
898
|
+
},
|
899
|
+
{
|
900
|
+
"internalType": "ObjectType",
|
901
|
+
"name": "objectType",
|
902
|
+
"type": "uint8"
|
903
|
+
},
|
904
|
+
{
|
905
|
+
"internalType": "bool",
|
906
|
+
"name": "isInterceptor",
|
907
|
+
"type": "bool"
|
908
|
+
},
|
909
|
+
{
|
910
|
+
"internalType": "address",
|
911
|
+
"name": "objectAddress",
|
912
|
+
"type": "address"
|
913
|
+
},
|
914
|
+
{
|
915
|
+
"internalType": "address",
|
916
|
+
"name": "initialOwner",
|
917
|
+
"type": "address"
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"internalType": "bytes",
|
921
|
+
"name": "data",
|
922
|
+
"type": "bytes"
|
923
|
+
}
|
924
|
+
],
|
925
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
926
|
+
"name": "info",
|
927
|
+
"type": "tuple"
|
928
|
+
}
|
929
|
+
],
|
930
|
+
"stateMutability": "nonpayable",
|
931
|
+
"type": "function"
|
932
|
+
},
|
933
|
+
{
|
934
|
+
"inputs": [
|
935
|
+
{
|
936
|
+
"internalType": "contract IComponent",
|
937
|
+
"name": "product",
|
938
|
+
"type": "address"
|
939
|
+
},
|
940
|
+
{
|
941
|
+
"internalType": "address",
|
942
|
+
"name": "owner",
|
943
|
+
"type": "address"
|
944
|
+
}
|
945
|
+
],
|
946
|
+
"name": "registerProduct",
|
947
|
+
"outputs": [
|
948
|
+
{
|
949
|
+
"components": [
|
950
|
+
{
|
951
|
+
"internalType": "NftId",
|
952
|
+
"name": "nftId",
|
953
|
+
"type": "uint96"
|
954
|
+
},
|
955
|
+
{
|
956
|
+
"internalType": "NftId",
|
957
|
+
"name": "parentNftId",
|
958
|
+
"type": "uint96"
|
959
|
+
},
|
960
|
+
{
|
961
|
+
"internalType": "ObjectType",
|
962
|
+
"name": "objectType",
|
963
|
+
"type": "uint8"
|
964
|
+
},
|
965
|
+
{
|
966
|
+
"internalType": "bool",
|
967
|
+
"name": "isInterceptor",
|
968
|
+
"type": "bool"
|
969
|
+
},
|
970
|
+
{
|
971
|
+
"internalType": "address",
|
972
|
+
"name": "objectAddress",
|
973
|
+
"type": "address"
|
974
|
+
},
|
975
|
+
{
|
976
|
+
"internalType": "address",
|
977
|
+
"name": "initialOwner",
|
978
|
+
"type": "address"
|
979
|
+
},
|
980
|
+
{
|
981
|
+
"internalType": "bytes",
|
982
|
+
"name": "data",
|
983
|
+
"type": "bytes"
|
984
|
+
}
|
985
|
+
],
|
986
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
987
|
+
"name": "info",
|
988
|
+
"type": "tuple"
|
989
|
+
}
|
990
|
+
],
|
991
|
+
"stateMutability": "nonpayable",
|
992
|
+
"type": "function"
|
993
|
+
},
|
994
|
+
{
|
995
|
+
"inputs": [
|
996
|
+
{
|
997
|
+
"components": [
|
998
|
+
{
|
999
|
+
"internalType": "NftId",
|
1000
|
+
"name": "nftId",
|
1001
|
+
"type": "uint96"
|
1002
|
+
},
|
1003
|
+
{
|
1004
|
+
"internalType": "NftId",
|
1005
|
+
"name": "parentNftId",
|
1006
|
+
"type": "uint96"
|
1007
|
+
},
|
1008
|
+
{
|
1009
|
+
"internalType": "ObjectType",
|
1010
|
+
"name": "objectType",
|
1011
|
+
"type": "uint8"
|
1012
|
+
},
|
1013
|
+
{
|
1014
|
+
"internalType": "bool",
|
1015
|
+
"name": "isInterceptor",
|
1016
|
+
"type": "bool"
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"internalType": "address",
|
1020
|
+
"name": "objectAddress",
|
1021
|
+
"type": "address"
|
1022
|
+
},
|
1023
|
+
{
|
1024
|
+
"internalType": "address",
|
1025
|
+
"name": "initialOwner",
|
1026
|
+
"type": "address"
|
1027
|
+
},
|
1028
|
+
{
|
1029
|
+
"internalType": "bytes",
|
1030
|
+
"name": "data",
|
1031
|
+
"type": "bytes"
|
1032
|
+
}
|
1033
|
+
],
|
1034
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1035
|
+
"name": "info",
|
1036
|
+
"type": "tuple"
|
1037
|
+
}
|
1038
|
+
],
|
1039
|
+
"name": "registerStake",
|
1040
|
+
"outputs": [
|
1041
|
+
{
|
1042
|
+
"internalType": "NftId",
|
1043
|
+
"name": "nftId",
|
1044
|
+
"type": "uint96"
|
1045
|
+
}
|
1046
|
+
],
|
1047
|
+
"stateMutability": "nonpayable",
|
1048
|
+
"type": "function"
|
1049
|
+
},
|
1050
|
+
{
|
1051
|
+
"inputs": [
|
1052
|
+
{
|
1053
|
+
"internalType": "address",
|
1054
|
+
"name": "newAuthority",
|
1055
|
+
"type": "address"
|
1056
|
+
}
|
1057
|
+
],
|
1058
|
+
"name": "setAuthority",
|
1059
|
+
"outputs": [],
|
1060
|
+
"stateMutability": "nonpayable",
|
1061
|
+
"type": "function"
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
"inputs": [
|
1065
|
+
{
|
1066
|
+
"internalType": "bytes4",
|
1067
|
+
"name": "interfaceId",
|
1068
|
+
"type": "bytes4"
|
1069
|
+
}
|
1070
|
+
],
|
1071
|
+
"name": "supportsInterface",
|
1072
|
+
"outputs": [
|
1073
|
+
{
|
1074
|
+
"internalType": "bool",
|
1075
|
+
"name": "",
|
1076
|
+
"type": "bool"
|
1077
|
+
}
|
1078
|
+
],
|
1079
|
+
"stateMutability": "view",
|
1080
|
+
"type": "function"
|
1081
|
+
},
|
1082
|
+
{
|
1083
|
+
"inputs": [
|
1084
|
+
{
|
1085
|
+
"internalType": "address",
|
1086
|
+
"name": "implementation",
|
1087
|
+
"type": "address"
|
1088
|
+
},
|
1089
|
+
{
|
1090
|
+
"internalType": "address",
|
1091
|
+
"name": "activatedBy",
|
1092
|
+
"type": "address"
|
1093
|
+
},
|
1094
|
+
{
|
1095
|
+
"internalType": "bytes",
|
1096
|
+
"name": "data",
|
1097
|
+
"type": "bytes"
|
1098
|
+
}
|
1099
|
+
],
|
1100
|
+
"name": "upgrade",
|
1101
|
+
"outputs": [],
|
1102
|
+
"stateMutability": "nonpayable",
|
1103
|
+
"type": "function"
|
1104
|
+
}
|
1105
|
+
],
|
1106
|
+
"bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612eb2806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063893d20e811610104578063b88da759116100a2578063cde749f411610071578063cde749f414610566578063cf7a1d771461056e578063ed841d0c14610581578063fb2cb1011461058957600080fd5b8063b88da75914610523578063bf7e214f14610536578063c13de9971461053e578063c2bf08c81461055357600080fd5b8063946dfcfe116100de578063946dfcfe146104b4578063a745e3df146104db578063b3c65015146104ee578063b68d18091461050e57600080fd5b8063893d20e8146104845780638fb360371461048c5780638fbc2d81146104a157600080fd5b80634f4213331161017c578063644c45e01161014b578063644c45e0146104335780637286e5e51461044b5780637a9e5e4b1461045e5780638105cc7f1461047157600080fd5b80634f421333146103bd5780635ab1bd53146103d05780635c992fed146103f55780635d9662891461042057600080fd5b80630fec111c116101b85780630fec111c1461025d578063138461e0146102655780631eff4b221461026f5780634d459c90146102a457600080fd5b806301ffc9a7146101df578063026bc43b146102215780630d8e6e2c14610241575b600080fd5b61020c6101ed3660046124cc565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61023461022f366004612522565b61059a565b60405161021891906125ab565b61024961072a565b60405162ffffff9091168152602001610218565b6102346107b4565b61026d61095a565b005b6102967f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b6103606102b2366004612647565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612e5d83398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610218565b61020c6103cb366004612647565b610b7c565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b6104086104033660046127a2565b610c2f565b6040516001600160601b039091168152602001610218565b61023461042e366004612522565b610cbe565b600154600160a01b90046001600160601b0316610408565b610234610459366004612522565b610df0565b61026d61046c366004612874565b610e9d565b61040861047f3660046127a2565b610f24565b6103dd610f3a565b610494611053565b6040516102189190612891565b6102346104af366004612522565b61108c565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610296565b61026d6104e93660046128a6565b611139565b6104f6611293565b6040516001600160401b039091168152602001610218565b60285b60405160ff9091168152602001610218565b610249610531366004612907565b6112b4565b6103dd611305565b610546611321565b6040516102189190612920565b6104086105613660046127a2565b6115c7565b6105116115dd565b61026d61057c3660046128a6565b611660565b610296600081565b6002546001600160a01b03166103dd565b6105a261248e565b6105af335b600036611769565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906105e290633b03905f60e11b90600401612891565b602060405180830381865afa1580156105ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106239190612987565b61064057604051636795c76360e01b815260040160405180910390fd5b61064d8360465b8461186f565b6001546040516352efcf2760e11b81529192506001600160a01b03169063a5df9e4e9061067e9084906004016125ab565b6020604051808303816000875af115801561069d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c191906129af565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561070c57600080fd5b505af1158015610720573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561078b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af91906129cc565b905090565b6107bc61248e565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301805460009391606084019161084c906129e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610878906129e9565b80156108c55780601f1061089a576101008083540402835291602001916108c5565b820191906000526020600020905b8154815290600101906020018083116108a857829003601f168201915b50505050508152505090506040518060e001604052806108e3600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b0316815260200161093e6002546001600160a01b031690565b6001600160a01b03168152602001826060015181525091505090565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e09190612987565b15610a27576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b0316610a505760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610a99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abd9190612987565b610ae5576040516372657a5160e01b81526001600160a01b0382166004820152602401610a1e565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610b2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5391906129af565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080600080516020612e5d83398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610c04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c289190612a23565b1192915050565b6000610c3a336105a7565b610c458260d2611a5f565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610c759085906004016125ab565b6020604051808303816000875af1158015610c94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb891906129af565b92915050565b610cc661248e565b610ccf336105a7565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610d02906301da8d1160e61b90600401612891565b602060405180830381865afa158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d439190612987565b610d6057604051637a71998760e01b815260040160405180910390fd5b610d6b83606e610647565b6001546040516352efcf2760e11b81529192506001600160a01b03169063a5df9e4e90610d9c9084906004016125ab565b6020604051808303816000875af1158015610dbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddf91906129af565b6001600160601b0316815292915050565b610df861248e565b610e01336105a7565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610e349063461809c760e11b90600401612891565b602060405180830381865afa158015610e51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e759190612987565b610e9257604051636f61f64160e01b815260040160405180910390fd5b610d6b83608c610647565b33610ea6611305565b6001600160a01b0316816001600160a01b031614610ee15760405162d1953b60e31b81526001600160a01b0382166004820152602401610a1e565b816001600160a01b03163b600003610f17576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a1e565b610f2082611b6a565b5050565b6000610f2f336105a7565b610c45826050611a5f565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610f9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc39190612987565b1561104357600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af9190612a47565b506002546001600160a01b031690565b600080516020612e1d833981519152805460009190600160a01b900460ff1661107d576000611086565b638fb3603760e01b5b91505090565b61109461248e565b61109d336105a7565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906110d0906302ba8bb360e21b90600401612891565b602060405180830381865afa1580156110ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111119190612987565b61112e576040516308707e3160e41b815260040160405180910390fd5b610d6b836078610647565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c61115b61072a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561119b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bf9190612a64565b600080516020612e3d8339815191528054600160401b900460ff16806111f2575080546001600160401b03808416911610155b156112105760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561123b8585611bcb565b61124483611e6a565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006107af600080516020612e3d833981519152546001600160401b031690565b6000600080516020612e5d83398151915260010182815481106112d9576112d9612a8d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080516020612e1d833981519152546001600160a01b031690565b60408051600680825260e08201909252606091816020015b604080518082019091526000808252602082015281526020019060019003908161133957905050905061136a60d290565b8160008151811061137d5761137d612a8d565b602090810291909101015160ff90911690528051635c992fed60e01b9082906000906113ab576113ab612a8d565b6020908102919091018101516001600160e01b03199092169101526113ce60dc90565b816001815181106113e1576113e1612a8d565b602090810291909101015160ff90911690528051631857e11960e31b908290600190811061141157611411612a8d565b6020908102919091018101516001600160e01b0319909216910152611434606e90565b8160028151811061144757611447612a8d565b602090810291909101015160ff90911690528051635d96628960e01b908290600290811061147757611477612a8d565b6020908102919091018101516001600160e01b031990921691015261149a608c90565b816003815181106114ad576114ad612a8d565b602090810291909101015160ff90911690528051637286e5e560e01b90829060039081106114dd576114dd612a8d565b6020908102919091018101516001600160e01b0319909216910152611500607890565b8160048151811061151357611513612a8d565b602090810291909101015160ff90911690528051638fbc2d8160e01b908290600490811061154357611543612a8d565b6020908102919091018101516001600160e01b0319909216910152611566604690565b8160058151811061157957611579612a8d565b602090810291909101015160ff9091169052805163026bc43b60e01b90829060059081106115a9576115a9612a8d565b6020908102919091018101516001600160e01b031990921691015290565b60006115d2336105a7565b610c458260dc611a5f565b60006115e761072a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561163c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af9190612aae565b600080516020612e3d8339815191528054600160401b810460ff1615906001600160401b03166000811580156116935750825b90506000826001600160401b031660011480156116af5750303b155b9050811580156116bd575080155b156116db5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561170557845460ff60401b1916600160401b1785555b61170f8888611bcb565b6117198787611e72565b831561175f57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b600080516020612e1d8339815191526000806117a4611786611305565b8730611796600460008a8c612acb565b61179f91612af5565b611fa6565b91509150816118675763ffffffff81161561184457825460ff60a01b1916600160a01b1783556117d2611305565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161180193929190612b25565b600060405180830381600087803b15801561181b57600080fd5b505af115801561182f573d6000803e3d6000fd5b5050845460ff60a01b19168555506118679050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a1e565b505050505050565b61187761248e565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156118b5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118dd9190810190612baa565b6001600160a01b0385166080820152604081015190915060ff84811691161461192c576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610a1e565b60a08101516001600160a01b03808216908416146119685760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610a1e565b846001600160a01b0316816001600160a01b03160361199a576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b0381166119c157604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a399190612987565b15611a5757604051637142ceb360e11b815260040160405180910390fd5b509392505050565b60006080830152604082015160ff828116911614611aa3576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610a1e565b60a08201516001600160a01b038116611acf57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b479190612987565b15611b6557604051637142ceb360e11b815260040160405180910390fd5b505050565b600080516020612e1d83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611bd36120b2565b600080516020612e5d8339815191526000611c03600080516020612e3d833981519152546001600160401b031690565b90506000611c0f61072a565b9050816001600160401b0316600103611c3c5760028301805462ffffff191662ffffff8316179055611c8a565b600283015462ffffff90811690821611611c8a5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610a1e565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d629190612c6d565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906112849083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101da6120b2565b600080516020612e3d8339815191528054600160401b810460ff1615906001600160401b0316600081158015611ea55750825b90506000826001600160401b03166001148015611ec15750303b155b905081158015611ecf575080155b15611eed5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f1757845460ff60401b1916600160401b1785555b60008087806020019051810190611f2e9190612c94565b91509150611f3b826120eb565b611f45818a6120ff565b611f55633f77281960e21b61216a565b50508315611f9d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516120159190612cc3565b600060405180830381855afa9150503d8060008114612050576040519150601f19603f3d011682016040523d82523d6000602084013e612055565b606091505b509150915081156120a7576040815110612087578080602001905181019061207d9190612cdf565b90945092506120a7565b60208151106120a757808060200190518101906120a49190612987565b93505b505094509492505050565b600080516020612e3d83398151915254600160401b900460ff166120e957604051631afcd79f60e31b815260040160405180910390fd5b565b6120f36120b2565b6120fc8161218f565b50565b6000602861210b6115dd565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000612140846121a0565b905060006121538583603c8488886121e7565b612163637b6a51fd60e01b61216a565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6121976120b2565b6120fc81611b6a565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015610c94573d6000803e3d6000fd5b6122286301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61223282876122b3565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016122a28382612d5d565b50611f9d6303fb044760e21b61216a565b6001600160a01b0382166123095760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610a1e565b600280546001600160a01b0319166001600160a01b038416179055610f20816001546001600160a01b0316156123615760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610a1e565b6001600160a01b0381166123885760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036123be5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a1e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a790612404906316c8f9ff60e01b90600401612891565b602060405180830381865afa92505050801561243d575060408051601f3d908101601f1916820190925261243a91810190612987565b60015b6124655760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a1e565b80610f205760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610a1e565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6000602082840312156124de57600080fd5b81356001600160e01b0319811681146124f657600080fd5b9392505050565b6001600160a01b03811681146120fc57600080fd5b803561251d816124fd565b919050565b6000806040838503121561253557600080fd5b8235612540816124fd565b91506020830135612550816124fd565b809150509250929050565b60005b8381101561257657818101518382015260200161255e565b50506000910152565b6000815180845261259781602086016020860161255b565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161261460c08401826001600160a01b03169052565b5060c083015160e08084015261262e61010084018261257f565b949350505050565b62ffffff811681146120fc57600080fd5b60006020828403121561265957600080fd5b81356124f681612636565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561269c5761269c612664565b60405290565b604051601f8201601f191681016001600160401b03811182821017156126ca576126ca612664565b604052919050565b6001600160601b03811681146120fc57600080fd5b803561251d816126d2565b60ff811681146120fc57600080fd5b803561251d816126f2565b80151581146120fc57600080fd5b803561251d8161270c565b60006001600160401b0382111561273e5761273e612664565b50601f01601f191660200190565b600082601f83011261275d57600080fd5b813561277061276b82612725565b6126a2565b81815284602083860101111561278557600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156127b457600080fd5b81356001600160401b03808211156127cb57600080fd5b9083019060e082860312156127df57600080fd5b6127e761267a565b6127f0836126e7565b81526127fe602084016126e7565b602082015261280f60408401612701565b60408201526128206060840161271a565b606082015261283160808401612512565b608082015261284260a08401612512565b60a082015260c08301358281111561285957600080fd5b6128658782860161274c565b60c08301525095945050505050565b60006020828403121561288657600080fd5b81356124f6816124fd565b6001600160e01b031991909116815260200190565b6000806000606084860312156128bb57600080fd5b83356128c6816124fd565b925060208401356128d6816124fd565b915060408401356001600160401b038111156128f157600080fd5b6128fd8682870161274c565b9150509250925092565b60006020828403121561291957600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b8281101561296f578151805160ff1685528601516001600160e01b03191686850152928401929085019060010161293d565b5091979650505050505050565b805161251d8161270c565b60006020828403121561299957600080fd5b81516124f68161270c565b805161251d816126d2565b6000602082840312156129c157600080fd5b81516124f6816126d2565b6000602082840312156129de57600080fd5b81516124f681612636565b600181811c908216806129fd57607f821691505b602082108103612a1d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612a3557600080fd5b5051919050565b805161251d816124fd565b600060208284031215612a5957600080fd5b81516124f6816124fd565b600060208284031215612a7657600080fd5b81516001600160401b03811681146124f657600080fd5b634e487b7160e01b600052603260045260246000fd5b805161251d816126f2565b600060208284031215612ac057600080fd5b81516124f6816126f2565b60008085851115612adb57600080fd5b83861115612ae857600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b1d5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612b7657600080fd5b8151612b8461276b82612725565b818152846020838601011115612b9957600080fd5b61262e82602083016020870161255b565b600060208284031215612bbc57600080fd5b81516001600160401b0380821115612bd357600080fd5b9083019060e08286031215612be757600080fd5b612bef61267a565b612bf8836129a4565b8152612c06602084016129a4565b6020820152612c1760408401612aa3565b6040820152612c286060840161297c565b6060820152612c3960808401612a3c565b6080820152612c4a60a08401612a3c565b60a082015260c083015182811115612c6157600080fd5b61286587828601612b65565b600060208284031215612c7f57600080fd5b815164ffffffffff811681146124f657600080fd5b60008060408385031215612ca757600080fd5b8251612cb2816124fd565b6020840151909250612550816124fd565b60008251612cd581846020870161255b565b9190910192915050565b60008060408385031215612cf257600080fd5b8251612cfd8161270c565b602084015190925063ffffffff8116811461255057600080fd5b601f821115611b6557600081815260208120601f850160051c81016020861015612d3e5750805b601f850160051c820191505b8181101561186757828155600101612d4a565b81516001600160401b03811115612d7657612d76612664565b612d8a81612d8484546129e9565b84612d17565b602080601f831160018114612dbf5760008415612da75750858301515b600019600386901b1c1916600185901b178555611867565b600085815260208120601f198616915b82811015612dee57888601518255948401946001909101908401612dcf565b5085821015612e0c5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220cb3112cd156ead8933f97c6d6784ab1546c54726bce09fd2022c23eb7dd4d0cc64736f6c63430008140033",
|
1107
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063893d20e811610104578063b88da759116100a2578063cde749f411610071578063cde749f414610566578063cf7a1d771461056e578063ed841d0c14610581578063fb2cb1011461058957600080fd5b8063b88da75914610523578063bf7e214f14610536578063c13de9971461053e578063c2bf08c81461055357600080fd5b8063946dfcfe116100de578063946dfcfe146104b4578063a745e3df146104db578063b3c65015146104ee578063b68d18091461050e57600080fd5b8063893d20e8146104845780638fb360371461048c5780638fbc2d81146104a157600080fd5b80634f4213331161017c578063644c45e01161014b578063644c45e0146104335780637286e5e51461044b5780637a9e5e4b1461045e5780638105cc7f1461047157600080fd5b80634f421333146103bd5780635ab1bd53146103d05780635c992fed146103f55780635d9662891461042057600080fd5b80630fec111c116101b85780630fec111c1461025d578063138461e0146102655780631eff4b221461026f5780634d459c90146102a457600080fd5b806301ffc9a7146101df578063026bc43b146102215780630d8e6e2c14610241575b600080fd5b61020c6101ed3660046124cc565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61023461022f366004612522565b61059a565b60405161021891906125ab565b61024961072a565b60405162ffffff9091168152602001610218565b6102346107b4565b61026d61095a565b005b6102967f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b6103606102b2366004612647565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612e5d83398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610218565b61020c6103cb366004612647565b610b7c565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b6104086104033660046127a2565b610c2f565b6040516001600160601b039091168152602001610218565b61023461042e366004612522565b610cbe565b600154600160a01b90046001600160601b0316610408565b610234610459366004612522565b610df0565b61026d61046c366004612874565b610e9d565b61040861047f3660046127a2565b610f24565b6103dd610f3a565b610494611053565b6040516102189190612891565b6102346104af366004612522565b61108c565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610296565b61026d6104e93660046128a6565b611139565b6104f6611293565b6040516001600160401b039091168152602001610218565b60285b60405160ff9091168152602001610218565b610249610531366004612907565b6112b4565b6103dd611305565b610546611321565b6040516102189190612920565b6104086105613660046127a2565b6115c7565b6105116115dd565b61026d61057c3660046128a6565b611660565b610296600081565b6002546001600160a01b03166103dd565b6105a261248e565b6105af335b600036611769565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906105e290633b03905f60e11b90600401612891565b602060405180830381865afa1580156105ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106239190612987565b61064057604051636795c76360e01b815260040160405180910390fd5b61064d8360465b8461186f565b6001546040516352efcf2760e11b81529192506001600160a01b03169063a5df9e4e9061067e9084906004016125ab565b6020604051808303816000875af115801561069d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c191906129af565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b15801561070c57600080fd5b505af1158015610720573d6000803e3d6000fd5b5050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561078b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af91906129cc565b905090565b6107bc61248e565b604080516080810182527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116835260ff600160601b820481166020850152600160681b909104161515928201929092527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301805460009391606084019161084c906129e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610878906129e9565b80156108c55780601f1061089a576101008083540402835291602001916108c5565b820191906000526020600020905b8154815290600101906020018083116108a857829003601f168201915b50505050508152505090506040518060e001604052806108e3600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b0316815260200161093e6002546001600160a01b031690565b6001600160a01b03168152602001826060015181525091505090565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156109bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e09190612987565b15610a27576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b0316610a505760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610a99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abd9190612987565b610ae5576040516372657a5160e01b81526001600160a01b0382166004820152602401610a1e565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610b2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5391906129af565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080600080516020612e5d83398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610c04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c289190612a23565b1192915050565b6000610c3a336105a7565b610c458260d2611a5f565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610c759085906004016125ab565b6020604051808303816000875af1158015610c94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb891906129af565b92915050565b610cc661248e565b610ccf336105a7565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610d02906301da8d1160e61b90600401612891565b602060405180830381865afa158015610d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d439190612987565b610d6057604051637a71998760e01b815260040160405180910390fd5b610d6b83606e610647565b6001546040516352efcf2760e11b81529192506001600160a01b03169063a5df9e4e90610d9c9084906004016125ab565b6020604051808303816000875af1158015610dbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddf91906129af565b6001600160601b0316815292915050565b610df861248e565b610e01336105a7565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610e349063461809c760e11b90600401612891565b602060405180830381865afa158015610e51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e759190612987565b610e9257604051636f61f64160e01b815260040160405180910390fd5b610d6b83608c610647565b33610ea6611305565b6001600160a01b0316816001600160a01b031614610ee15760405162d1953b60e31b81526001600160a01b0382166004820152602401610a1e565b816001600160a01b03163b600003610f17576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a1e565b610f2082611b6a565b5050565b6000610f2f336105a7565b610c45826050611a5f565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610f9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc39190612987565b1561104357600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af9190612a47565b506002546001600160a01b031690565b600080516020612e1d833981519152805460009190600160a01b900460ff1661107d576000611086565b638fb3603760e01b5b91505090565b61109461248e565b61109d336105a7565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906110d0906302ba8bb360e21b90600401612891565b602060405180830381865afa1580156110ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111119190612987565b61112e576040516308707e3160e41b815260040160405180910390fd5b610d6b836078610647565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c61115b61072a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561119b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bf9190612a64565b600080516020612e3d8339815191528054600160401b900460ff16806111f2575080546001600160401b03808416911610155b156112105760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561123b8585611bcb565b61124483611e6a565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006107af600080516020612e3d833981519152546001600160401b031690565b6000600080516020612e5d83398151915260010182815481106112d9576112d9612a8d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080516020612e1d833981519152546001600160a01b031690565b60408051600680825260e08201909252606091816020015b604080518082019091526000808252602082015281526020019060019003908161133957905050905061136a60d290565b8160008151811061137d5761137d612a8d565b602090810291909101015160ff90911690528051635c992fed60e01b9082906000906113ab576113ab612a8d565b6020908102919091018101516001600160e01b03199092169101526113ce60dc90565b816001815181106113e1576113e1612a8d565b602090810291909101015160ff90911690528051631857e11960e31b908290600190811061141157611411612a8d565b6020908102919091018101516001600160e01b0319909216910152611434606e90565b8160028151811061144757611447612a8d565b602090810291909101015160ff90911690528051635d96628960e01b908290600290811061147757611477612a8d565b6020908102919091018101516001600160e01b031990921691015261149a608c90565b816003815181106114ad576114ad612a8d565b602090810291909101015160ff90911690528051637286e5e560e01b90829060039081106114dd576114dd612a8d565b6020908102919091018101516001600160e01b0319909216910152611500607890565b8160048151811061151357611513612a8d565b602090810291909101015160ff90911690528051638fbc2d8160e01b908290600490811061154357611543612a8d565b6020908102919091018101516001600160e01b0319909216910152611566604690565b8160058151811061157957611579612a8d565b602090810291909101015160ff9091169052805163026bc43b60e01b90829060059081106115a9576115a9612a8d565b6020908102919091018101516001600160e01b031990921691015290565b60006115d2336105a7565b610c458260dc611a5f565b60006115e761072a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561163c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af9190612aae565b600080516020612e3d8339815191528054600160401b810460ff1615906001600160401b03166000811580156116935750825b90506000826001600160401b031660011480156116af5750303b155b9050811580156116bd575080155b156116db5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561170557845460ff60401b1916600160401b1785555b61170f8888611bcb565b6117198787611e72565b831561175f57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b600080516020612e1d8339815191526000806117a4611786611305565b8730611796600460008a8c612acb565b61179f91612af5565b611fa6565b91509150816118675763ffffffff81161561184457825460ff60a01b1916600160a01b1783556117d2611305565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161180193929190612b25565b600060405180830381600087803b15801561181b57600080fd5b505af115801561182f573d6000803e3d6000fd5b5050845460ff60a01b19168555506118679050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a1e565b505050505050565b61187761248e565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156118b5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118dd9190810190612baa565b6001600160a01b0385166080820152604081015190915060ff84811691161461192c576040808201519051632208245760e11b815260ff80861660048301529091166024820152604401610a1e565b60a08101516001600160a01b03808216908416146119685760405163dfc430cb60e01b81526001600160a01b0384166004820152602401610a1e565b846001600160a01b0316816001600160a01b03160361199a576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b0381166119c157604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a399190612987565b15611a5757604051637142ceb360e11b815260040160405180910390fd5b509392505050565b60006080830152604082015160ff828116911614611aa3576040808301519051632208245760e11b815260ff80841660048301529091166024820152604401610a1e565b60a08201516001600160a01b038116611acf57604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b479190612987565b15611b6557604051637142ceb360e11b815260040160405180910390fd5b505050565b600080516020612e1d83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611bd36120b2565b600080516020612e5d8339815191526000611c03600080516020612e3d833981519152546001600160401b031690565b90506000611c0f61072a565b9050816001600160401b0316600103611c3c5760028301805462ffffff191662ffffff8316179055611c8a565b600283015462ffffff90811690821611611c8a5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610a1e565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d629190612c6d565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906112849083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101da6120b2565b600080516020612e3d8339815191528054600160401b810460ff1615906001600160401b0316600081158015611ea55750825b90506000826001600160401b03166001148015611ec15750303b155b905081158015611ecf575080155b15611eed5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f1757845460ff60401b1916600160401b1785555b60008087806020019051810190611f2e9190612c94565b91509150611f3b826120eb565b611f45818a6120ff565b611f55633f77281960e21b61216a565b50508315611f9d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516120159190612cc3565b600060405180830381855afa9150503d8060008114612050576040519150601f19603f3d011682016040523d82523d6000602084013e612055565b606091505b509150915081156120a7576040815110612087578080602001905181019061207d9190612cdf565b90945092506120a7565b60208151106120a757808060200190518101906120a49190612987565b93505b505094509492505050565b600080516020612e3d83398151915254600160401b900460ff166120e957604051631afcd79f60e31b815260040160405180910390fd5b565b6120f36120b2565b6120fc8161218f565b50565b6000602861210b6115dd565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000612140846121a0565b905060006121538583603c8488886121e7565b612163637b6a51fd60e01b61216a565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6121976120b2565b6120fc81611b6a565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015610c94573d6000803e3d6000fd5b6122286301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61223282876122b3565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016122a28382612d5d565b50611f9d6303fb044760e21b61216a565b6001600160a01b0382166123095760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610a1e565b600280546001600160a01b0319166001600160a01b038416179055610f20816001546001600160a01b0316156123615760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610a1e565b6001600160a01b0381166123885760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036123be5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a1e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a790612404906316c8f9ff60e01b90600401612891565b602060405180830381865afa92505050801561243d575060408051601f3d908101601f1916820190925261243a91810190612987565b60015b6124655760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a1e565b80610f205760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610a1e565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6000602082840312156124de57600080fd5b81356001600160e01b0319811681146124f657600080fd5b9392505050565b6001600160a01b03811681146120fc57600080fd5b803561251d816124fd565b919050565b6000806040838503121561253557600080fd5b8235612540816124fd565b91506020830135612550816124fd565b809150509250929050565b60005b8381101561257657818101518382015260200161255e565b50506000910152565b6000815180845261259781602086016020860161255b565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161261460c08401826001600160a01b03169052565b5060c083015160e08084015261262e61010084018261257f565b949350505050565b62ffffff811681146120fc57600080fd5b60006020828403121561265957600080fd5b81356124f681612636565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b038111828210171561269c5761269c612664565b60405290565b604051601f8201601f191681016001600160401b03811182821017156126ca576126ca612664565b604052919050565b6001600160601b03811681146120fc57600080fd5b803561251d816126d2565b60ff811681146120fc57600080fd5b803561251d816126f2565b80151581146120fc57600080fd5b803561251d8161270c565b60006001600160401b0382111561273e5761273e612664565b50601f01601f191660200190565b600082601f83011261275d57600080fd5b813561277061276b82612725565b6126a2565b81815284602083860101111561278557600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156127b457600080fd5b81356001600160401b03808211156127cb57600080fd5b9083019060e082860312156127df57600080fd5b6127e761267a565b6127f0836126e7565b81526127fe602084016126e7565b602082015261280f60408401612701565b60408201526128206060840161271a565b606082015261283160808401612512565b608082015261284260a08401612512565b60a082015260c08301358281111561285957600080fd5b6128658782860161274c565b60c08301525095945050505050565b60006020828403121561288657600080fd5b81356124f6816124fd565b6001600160e01b031991909116815260200190565b6000806000606084860312156128bb57600080fd5b83356128c6816124fd565b925060208401356128d6816124fd565b915060408401356001600160401b038111156128f157600080fd5b6128fd8682870161274c565b9150509250925092565b60006020828403121561291957600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b8281101561296f578151805160ff1685528601516001600160e01b03191686850152928401929085019060010161293d565b5091979650505050505050565b805161251d8161270c565b60006020828403121561299957600080fd5b81516124f68161270c565b805161251d816126d2565b6000602082840312156129c157600080fd5b81516124f6816126d2565b6000602082840312156129de57600080fd5b81516124f681612636565b600181811c908216806129fd57607f821691505b602082108103612a1d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612a3557600080fd5b5051919050565b805161251d816124fd565b600060208284031215612a5957600080fd5b81516124f6816124fd565b600060208284031215612a7657600080fd5b81516001600160401b03811681146124f657600080fd5b634e487b7160e01b600052603260045260246000fd5b805161251d816126f2565b600060208284031215612ac057600080fd5b81516124f6816126f2565b60008085851115612adb57600080fd5b83861115612ae857600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b1d5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612b7657600080fd5b8151612b8461276b82612725565b818152846020838601011115612b9957600080fd5b61262e82602083016020870161255b565b600060208284031215612bbc57600080fd5b81516001600160401b0380821115612bd357600080fd5b9083019060e08286031215612be757600080fd5b612bef61267a565b612bf8836129a4565b8152612c06602084016129a4565b6020820152612c1760408401612aa3565b6040820152612c286060840161297c565b6060820152612c3960808401612a3c565b6080820152612c4a60a08401612a3c565b60a082015260c083015182811115612c6157600080fd5b61286587828601612b65565b600060208284031215612c7f57600080fd5b815164ffffffffff811681146124f657600080fd5b60008060408385031215612ca757600080fd5b8251612cb2816124fd565b6020840151909250612550816124fd565b60008251612cd581846020870161255b565b9190910192915050565b60008060408385031215612cf257600080fd5b8251612cfd8161270c565b602084015190925063ffffffff8116811461255057600080fd5b601f821115611b6557600081815260208120601f850160051c81016020861015612d3e5750805b601f850160051c820191505b8181101561186757828155600101612d4a565b81516001600160401b03811115612d7657612d76612664565b612d8a81612d8484546129e9565b84612d17565b602080601f831160018114612dbf5760008415612da75750858301515b600019600386901b1c1916600185901b178555611867565b600085815260208120601f198616915b82811015612dee57888601518255948401946001909101908401612dcf565b5085821015612e0c5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220cb3112cd156ead8933f97c6d6784ab1546c54726bce09fd2022c23eb7dd4d0cc64736f6c63430008140033",
|
1108
|
+
"linkReferences": {
|
1109
|
+
"contracts/types/Blocknumber.sol": {
|
1110
|
+
"BlocknumberLib": [
|
1111
|
+
{
|
1112
|
+
"length": 20,
|
1113
|
+
"start": 3332
|
1114
|
+
}
|
1115
|
+
]
|
1116
|
+
},
|
1117
|
+
"contracts/types/NftId.sol": {
|
1118
|
+
"NftIdLib": [
|
1119
|
+
{
|
1120
|
+
"length": 20,
|
1121
|
+
"start": 2748
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"length": 20,
|
1125
|
+
"start": 4255
|
1126
|
+
}
|
1127
|
+
]
|
1128
|
+
},
|
1129
|
+
"contracts/types/Timestamp.sol": {
|
1130
|
+
"TimestampLib": [
|
1131
|
+
{
|
1132
|
+
"length": 20,
|
1133
|
+
"start": 7742
|
1134
|
+
}
|
1135
|
+
]
|
1136
|
+
},
|
1137
|
+
"contracts/types/Version.sol": {
|
1138
|
+
"VersionLib": [
|
1139
|
+
{
|
1140
|
+
"length": 20,
|
1141
|
+
"start": 2187
|
1142
|
+
},
|
1143
|
+
{
|
1144
|
+
"length": 20,
|
1145
|
+
"start": 4725
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
"length": 20,
|
1149
|
+
"start": 5948
|
1150
|
+
}
|
1151
|
+
]
|
1152
|
+
}
|
1153
|
+
},
|
1154
|
+
"deployedLinkReferences": {
|
1155
|
+
"contracts/types/Blocknumber.sol": {
|
1156
|
+
"BlocknumberLib": [
|
1157
|
+
{
|
1158
|
+
"length": 20,
|
1159
|
+
"start": 3018
|
1160
|
+
}
|
1161
|
+
]
|
1162
|
+
},
|
1163
|
+
"contracts/types/NftId.sol": {
|
1164
|
+
"NftIdLib": [
|
1165
|
+
{
|
1166
|
+
"length": 20,
|
1167
|
+
"start": 2434
|
1168
|
+
},
|
1169
|
+
{
|
1170
|
+
"length": 20,
|
1171
|
+
"start": 3941
|
1172
|
+
}
|
1173
|
+
]
|
1174
|
+
},
|
1175
|
+
"contracts/types/Timestamp.sol": {
|
1176
|
+
"TimestampLib": [
|
1177
|
+
{
|
1178
|
+
"length": 20,
|
1179
|
+
"start": 7428
|
1180
|
+
}
|
1181
|
+
]
|
1182
|
+
},
|
1183
|
+
"contracts/types/Version.sol": {
|
1184
|
+
"VersionLib": [
|
1185
|
+
{
|
1186
|
+
"length": 20,
|
1187
|
+
"start": 1873
|
1188
|
+
},
|
1189
|
+
{
|
1190
|
+
"length": 20,
|
1191
|
+
"start": 4411
|
1192
|
+
},
|
1193
|
+
{
|
1194
|
+
"length": 20,
|
1195
|
+
"start": 5634
|
1196
|
+
}
|
1197
|
+
]
|
1198
|
+
}
|
1199
|
+
}
|
1200
|
+
}
|