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