@etherisc/gif-next 0.0.2-e875d61-189 → 0.0.2-e9148e0-933
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +179 -26
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +176 -23
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +618 -0
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +129 -23
 - 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 +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +74 -181
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +55 -177
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +397 -70
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +444 -73
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +462 -1400
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +2412 -1075
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +931 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +508 -0
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +276 -36
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +33 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +37 -245
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IDistribution.sol/IDistribution.json} +2 -2
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.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/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +381 -77
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +444 -0
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +177 -75
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/instance/{base/ServiceBase.sol/ServiceBase.json → service/IDistributionService.sol/IDistributionService.json} +204 -58
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +235 -50
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +325 -51
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +421 -53
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +448 -0
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +479 -94
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +448 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +186 -12
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +358 -37
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +947 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +466 -129
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1293 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +513 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
 - 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 +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +117 -37
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +175 -54
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
 - 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 +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +190 -37
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/RegisterableUpgradable.sol/RegisterableUpgradable.json} +188 -90
 - 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 +1 -1
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +204 -36
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +283 -62
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +103 -23
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +52 -13
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +15 -2
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
 - package/contracts/components/BaseComponent.sol +26 -29
 - package/contracts/components/Distribution.sol +159 -0
 - package/contracts/components/IBaseComponent.sol +9 -3
 - package/contracts/components/IDistributionComponent.sol +44 -0
 - package/contracts/components/IPoolComponent.sol +14 -9
 - package/contracts/components/IProductComponent.sol +25 -9
 - package/contracts/components/Pool.sol +89 -38
 - package/contracts/components/Product.sol +196 -46
 - package/contracts/experiment/cloning/Cloner.sol +47 -0
 - package/contracts/instance/AccessManagedSimple.sol +115 -0
 - package/contracts/instance/AccessManagerSimple.sol +692 -0
 - package/contracts/instance/IAccessManagerSimple.sol +391 -0
 - package/contracts/instance/IInstance.sol +34 -43
 - package/contracts/instance/IInstanceService.sol +30 -0
 - package/contracts/instance/Instance.sol +427 -55
 - package/contracts/instance/InstanceAccessManager.sol +288 -0
 - package/contracts/instance/InstanceReader.sol +306 -0
 - package/contracts/instance/InstanceService.sol +192 -0
 - package/contracts/instance/InstanceServiceManager.sol +57 -0
 - package/contracts/instance/base/ComponentServiceBase.sol +92 -10
 - package/contracts/instance/base/IInstanceBase.sol +6 -2
 - package/contracts/instance/base/IKeyValueStore.sol +13 -14
 - package/contracts/instance/base/ILifecycle.sol +3 -3
 - package/contracts/instance/base/KeyValueStore.sol +49 -38
 - package/contracts/instance/base/Lifecycle.sol +11 -3
 - package/contracts/instance/module/IAccess.sol +38 -0
 - package/contracts/instance/module/IBundle.sol +20 -0
 - package/contracts/instance/module/IDistribution.sol +39 -0
 - package/contracts/instance/module/IPolicy.sol +45 -0
 - package/contracts/instance/module/IRisk.sol +11 -0
 - package/contracts/instance/module/ISetup.sol +44 -0
 - package/contracts/instance/module/ITreasury.sol +23 -0
 - package/contracts/instance/service/ComponentOwnerService.sol +238 -76
 - package/contracts/instance/service/DistributionService.sol +88 -0
 - package/contracts/instance/service/DistributionServiceManager.sol +54 -0
 - package/contracts/instance/service/IComponentOwnerService.sol +1 -3
 - package/contracts/instance/service/IDistributionService.sol +12 -0
 - package/contracts/instance/service/IPoolService.sol +8 -1
 - package/contracts/instance/service/IProductService.sol +56 -7
 - package/contracts/instance/service/PoolService.sol +117 -52
 - package/contracts/instance/service/PoolServiceManager.sol +54 -0
 - package/contracts/instance/service/ProductService.sol +351 -169
 - package/contracts/instance/service/ProductServiceManager.sol +54 -0
 - package/contracts/registry/ChainNft.sol +80 -37
 - package/contracts/registry/IRegistry.sol +47 -25
 - package/contracts/registry/IRegistryService.sol +50 -0
 - package/contracts/registry/ITransferInterceptor.sol +6 -0
 - package/contracts/registry/Registry.sol +333 -270
 - package/contracts/registry/RegistryService.sol +358 -0
 - package/contracts/registry/RegistryServiceManager.sol +80 -0
 - package/contracts/registry/TokenRegistry.sol +111 -0
 - package/contracts/shared/ContractDeployerLib.sol +72 -0
 - package/contracts/shared/ERC165.sol +6 -2
 - package/contracts/shared/INftOwnable.sol +22 -0
 - package/contracts/shared/IRegisterable.sol +8 -15
 - package/contracts/{instance/base → shared}/IService.sol +3 -3
 - package/contracts/shared/IVersionable.sol +55 -11
 - package/contracts/shared/NftOwnable.sol +134 -0
 - package/contracts/shared/ProxyManager.sol +94 -0
 - package/contracts/shared/Registerable.sol +63 -59
 - package/contracts/shared/RegisterableUpgradable.sol +16 -0
 - package/contracts/shared/Service.sol +55 -0
 - package/contracts/shared/TokenHandler.sol +27 -0
 - package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
 - package/contracts/shared/Versionable.sol +113 -55
 - package/contracts/test/TestFee.sol +2 -2
 - package/contracts/test/TestRegisterable.sol +5 -6
 - package/contracts/test/TestRoleId.sol +1 -1
 - package/contracts/test/TestService.sol +5 -13
 - package/contracts/types/DistributorType.sol +55 -0
 - package/contracts/types/Fee.sol +10 -5
 - package/contracts/types/Key32.sol +8 -3
 - package/contracts/types/NumberId.sol +52 -0
 - package/contracts/types/ObjectType.sol +40 -11
 - package/contracts/types/Referral.sol +85 -0
 - package/contracts/types/RiskId.sol +43 -0
 - package/contracts/types/RoleId.sol +62 -10
 - package/contracts/types/StateId.sol +5 -1
 - package/contracts/types/Timestamp.sol +7 -3
 - package/contracts/types/UFixed.sol +128 -12
 - package/contracts/types/Version.sol +13 -1
 - package/package.json +4 -3
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
 - package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
 - package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
 - package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -265
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -265
 - package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
 - package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -136
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -136
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -273
 - package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -273
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
 - package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
 - package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -531
 - package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
 - package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -531
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
 - package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
 - package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
 - package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
 - package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
 - package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -455
 - package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
 - package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -436
 - package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
 - package/contracts/experiment/statemachine/README.md +0 -112
 - package/contracts/instance/IInstanceLinked.sol +0 -8
 - package/contracts/instance/base/InstanceBase.sol +0 -84
 - package/contracts/instance/base/ModuleBase.sol +0 -46
 - package/contracts/instance/base/ServiceBase.sol +0 -37
 - package/contracts/instance/module/access/Access.sol +0 -149
 - package/contracts/instance/module/access/IAccess.sol +0 -53
 - package/contracts/instance/module/bundle/BundleModule.sol +0 -135
 - package/contracts/instance/module/bundle/IBundle.sol +0 -51
 - package/contracts/instance/module/compensation/CompensationModule.sol +0 -17
 - package/contracts/instance/module/compensation/ICompensation.sol +0 -10
 - package/contracts/instance/module/component/ComponentModule.sol +0 -81
 - package/contracts/instance/module/component/IComponent.sol +0 -29
 - package/contracts/instance/module/policy/IPolicy.sol +0 -59
 - package/contracts/instance/module/policy/PolicyModule.sol +0 -89
 - package/contracts/instance/module/pool/IPoolModule.sol +0 -40
 - package/contracts/instance/module/pool/PoolModule.sol +0 -90
 - package/contracts/instance/module/risk/IRisk.sol +0 -10
 - package/contracts/instance/module/risk/RiskModule.sol +0 -17
 - package/contracts/instance/module/treasury/ITreasury.sol +0 -96
 - package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
 - package/contracts/instance/module/treasury/TreasuryModule.sol +0 -171
 - package/contracts/registry/IChainNft.sol +0 -21
 - package/contracts/registry/IRegistryLinked.sol +0 -8
 - package/contracts/shared/IOwnable.sol +0 -6
 - package/contracts/test/TestPool.sol +0 -24
 - package/contracts/test/TestProduct.sol +0 -51
 
| 
         @@ -0,0 +1,1293 @@ 
     | 
|
| 
      
 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": "NAME",
         
     | 
| 
      
 283 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 284 
     | 
    
         
            +
                    {
         
     | 
| 
      
 285 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 286 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 287 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 288 
     | 
    
         
            +
                    }
         
     | 
| 
      
 289 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 290 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 291 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 292 
     | 
    
         
            +
                },
         
     | 
| 
      
 293 
     | 
    
         
            +
                {
         
     | 
| 
      
 294 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "name": "NFT_LOCK_ADDRESS",
         
     | 
| 
      
 296 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 297 
     | 
    
         
            +
                    {
         
     | 
| 
      
 298 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 299 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 300 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 301 
     | 
    
         
            +
                    }
         
     | 
| 
      
 302 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 303 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 304 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 305 
     | 
    
         
            +
                },
         
     | 
| 
      
 306 
     | 
    
         
            +
                {
         
     | 
| 
      
 307 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 308 
     | 
    
         
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
      
 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": "REGISTRY_CREATION_CODE_HASH",
         
     | 
| 
      
 322 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 323 
     | 
    
         
            +
                    {
         
     | 
| 
      
 324 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 325 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 326 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 327 
     | 
    
         
            +
                    }
         
     | 
| 
      
 328 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 330 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 331 
     | 
    
         
            +
                },
         
     | 
| 
      
 332 
     | 
    
         
            +
                {
         
     | 
| 
      
 333 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 334 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 335 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 336 
     | 
    
         
            +
                    {
         
     | 
| 
      
 337 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 338 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 339 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 340 
     | 
    
         
            +
                    }
         
     | 
| 
      
 341 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 342 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 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": "",
         
     | 
| 
      
 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": "getName",
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 430 
     | 
    
         
            +
                    {
         
     | 
| 
      
 431 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 432 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 433 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 434 
     | 
    
         
            +
                    }
         
     | 
| 
      
 435 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 436 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 437 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 438 
     | 
    
         
            +
                },
         
     | 
| 
      
 439 
     | 
    
         
            +
                {
         
     | 
| 
      
 440 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 441 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 442 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 443 
     | 
    
         
            +
                    {
         
     | 
| 
      
 444 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 445 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 446 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 447 
     | 
    
         
            +
                    }
         
     | 
| 
      
 448 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 449 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 450 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 451 
     | 
    
         
            +
                },
         
     | 
| 
      
 452 
     | 
    
         
            +
                {
         
     | 
| 
      
 453 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 454 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 455 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 456 
     | 
    
         
            +
                    {
         
     | 
| 
      
 457 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 458 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 459 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 460 
     | 
    
         
            +
                    }
         
     | 
| 
      
 461 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 462 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 463 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 464 
     | 
    
         
            +
                },
         
     | 
| 
      
 465 
     | 
    
         
            +
                {
         
     | 
| 
      
 466 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 467 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 468 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 469 
     | 
    
         
            +
                    {
         
     | 
| 
      
 470 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 471 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 473 
     | 
    
         
            +
                    }
         
     | 
| 
      
 474 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 476 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 477 
     | 
    
         
            +
                },
         
     | 
| 
      
 478 
     | 
    
         
            +
                {
         
     | 
| 
      
 479 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 480 
     | 
    
         
            +
                  "name": "getVersion",
         
     | 
| 
      
 481 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 482 
     | 
    
         
            +
                    {
         
     | 
| 
      
 483 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 484 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 485 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 486 
     | 
    
         
            +
                    }
         
     | 
| 
      
 487 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 488 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 489 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 490 
     | 
    
         
            +
                },
         
     | 
| 
      
 491 
     | 
    
         
            +
                {
         
     | 
| 
      
 492 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 493 
     | 
    
         
            +
                    {
         
     | 
| 
      
 494 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 495 
     | 
    
         
            +
                      "name": "idx",
         
     | 
| 
      
 496 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 497 
     | 
    
         
            +
                    }
         
     | 
| 
      
 498 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 499 
     | 
    
         
            +
                  "name": "getVersion",
         
     | 
| 
      
 500 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 501 
     | 
    
         
            +
                    {
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 503 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 504 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 505 
     | 
    
         
            +
                    }
         
     | 
| 
      
 506 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 507 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 508 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 509 
     | 
    
         
            +
                },
         
     | 
| 
      
 510 
     | 
    
         
            +
                {
         
     | 
| 
      
 511 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 512 
     | 
    
         
            +
                  "name": "getVersionCount",
         
     | 
| 
      
 513 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 514 
     | 
    
         
            +
                    {
         
     | 
| 
      
 515 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 516 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 517 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 518 
     | 
    
         
            +
                    }
         
     | 
| 
      
 519 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 520 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 522 
     | 
    
         
            +
                },
         
     | 
| 
      
 523 
     | 
    
         
            +
                {
         
     | 
| 
      
 524 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 525 
     | 
    
         
            +
                    {
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "name": "_version",
         
     | 
| 
      
 528 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 529 
     | 
    
         
            +
                    }
         
     | 
| 
      
 530 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 531 
     | 
    
         
            +
                  "name": "getVersionInfo",
         
     | 
| 
      
 532 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 533 
     | 
    
         
            +
                    {
         
     | 
| 
      
 534 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 535 
     | 
    
         
            +
                        {
         
     | 
| 
      
 536 
     | 
    
         
            +
                          "internalType": "Version",
         
     | 
| 
      
 537 
     | 
    
         
            +
                          "name": "version",
         
     | 
| 
      
 538 
     | 
    
         
            +
                          "type": "uint24"
         
     | 
| 
      
 539 
     | 
    
         
            +
                        },
         
     | 
| 
      
 540 
     | 
    
         
            +
                        {
         
     | 
| 
      
 541 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 542 
     | 
    
         
            +
                          "name": "implementation",
         
     | 
| 
      
 543 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 544 
     | 
    
         
            +
                        },
         
     | 
| 
      
 545 
     | 
    
         
            +
                        {
         
     | 
| 
      
 546 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 547 
     | 
    
         
            +
                          "name": "activatedBy",
         
     | 
| 
      
 548 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 549 
     | 
    
         
            +
                        },
         
     | 
| 
      
 550 
     | 
    
         
            +
                        {
         
     | 
| 
      
 551 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 552 
     | 
    
         
            +
                          "name": "activatedAt",
         
     | 
| 
      
 553 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
      
 554 
     | 
    
         
            +
                        },
         
     | 
| 
      
 555 
     | 
    
         
            +
                        {
         
     | 
| 
      
 556 
     | 
    
         
            +
                          "internalType": "Blocknumber",
         
     | 
| 
      
 557 
     | 
    
         
            +
                          "name": "activatedIn",
         
     | 
| 
      
 558 
     | 
    
         
            +
                          "type": "uint32"
         
     | 
| 
      
 559 
     | 
    
         
            +
                        }
         
     | 
| 
      
 560 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 561 
     | 
    
         
            +
                      "internalType": "struct IVersionable.VersionInfo",
         
     | 
| 
      
 562 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 563 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 564 
     | 
    
         
            +
                    }
         
     | 
| 
      
 565 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 566 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 567 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 568 
     | 
    
         
            +
                },
         
     | 
| 
      
 569 
     | 
    
         
            +
                {
         
     | 
| 
      
 570 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 571 
     | 
    
         
            +
                    {
         
     | 
| 
      
 572 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 573 
     | 
    
         
            +
                      "name": "implementation",
         
     | 
| 
      
 574 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 575 
     | 
    
         
            +
                    },
         
     | 
| 
      
 576 
     | 
    
         
            +
                    {
         
     | 
| 
      
 577 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 578 
     | 
    
         
            +
                      "name": "activatedBy",
         
     | 
| 
      
 579 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 580 
     | 
    
         
            +
                    },
         
     | 
| 
      
 581 
     | 
    
         
            +
                    {
         
     | 
| 
      
 582 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 583 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 584 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 585 
     | 
    
         
            +
                    }
         
     | 
| 
      
 586 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 587 
     | 
    
         
            +
                  "name": "initialize",
         
     | 
| 
      
 588 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 589 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 590 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 591 
     | 
    
         
            +
                },
         
     | 
| 
      
 592 
     | 
    
         
            +
                {
         
     | 
| 
      
 593 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 594 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 595 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 596 
     | 
    
         
            +
                    {
         
     | 
| 
      
 597 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 598 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 599 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 600 
     | 
    
         
            +
                    }
         
     | 
| 
      
 601 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 602 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 603 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 604 
     | 
    
         
            +
                },
         
     | 
| 
      
 605 
     | 
    
         
            +
                {
         
     | 
| 
      
 606 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 607 
     | 
    
         
            +
                    {
         
     | 
| 
      
 608 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 609 
     | 
    
         
            +
                      "name": "_version",
         
     | 
| 
      
 610 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 611 
     | 
    
         
            +
                    }
         
     | 
| 
      
 612 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 613 
     | 
    
         
            +
                  "name": "isInitialized",
         
     | 
| 
      
 614 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 615 
     | 
    
         
            +
                    {
         
     | 
| 
      
 616 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 617 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 618 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 619 
     | 
    
         
            +
                    }
         
     | 
| 
      
 620 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 621 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 622 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 623 
     | 
    
         
            +
                },
         
     | 
| 
      
 624 
     | 
    
         
            +
                {
         
     | 
| 
      
 625 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 626 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 627 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 628 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 629 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 630 
     | 
    
         
            +
                },
         
     | 
| 
      
 631 
     | 
    
         
            +
                {
         
     | 
| 
      
 632 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 633 
     | 
    
         
            +
                    {
         
     | 
| 
      
 634 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 635 
     | 
    
         
            +
                        {
         
     | 
| 
      
 636 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 637 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 638 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 639 
     | 
    
         
            +
                        },
         
     | 
| 
      
 640 
     | 
    
         
            +
                        {
         
     | 
| 
      
 641 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 642 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 643 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 644 
     | 
    
         
            +
                        },
         
     | 
| 
      
 645 
     | 
    
         
            +
                        {
         
     | 
| 
      
 646 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 647 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 648 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 649 
     | 
    
         
            +
                        },
         
     | 
| 
      
 650 
     | 
    
         
            +
                        {
         
     | 
| 
      
 651 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 652 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 653 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 654 
     | 
    
         
            +
                        },
         
     | 
| 
      
 655 
     | 
    
         
            +
                        {
         
     | 
| 
      
 656 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 657 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 658 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 659 
     | 
    
         
            +
                        },
         
     | 
| 
      
 660 
     | 
    
         
            +
                        {
         
     | 
| 
      
 661 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 662 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 663 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 664 
     | 
    
         
            +
                        },
         
     | 
| 
      
 665 
     | 
    
         
            +
                        {
         
     | 
| 
      
 666 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 667 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 668 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 669 
     | 
    
         
            +
                        }
         
     | 
| 
      
 670 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 671 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 672 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 673 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 674 
     | 
    
         
            +
                    }
         
     | 
| 
      
 675 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 676 
     | 
    
         
            +
                  "name": "registerBundle",
         
     | 
| 
      
 677 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 678 
     | 
    
         
            +
                    {
         
     | 
| 
      
 679 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 680 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 681 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 682 
     | 
    
         
            +
                    }
         
     | 
| 
      
 683 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 684 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 685 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 686 
     | 
    
         
            +
                },
         
     | 
| 
      
 687 
     | 
    
         
            +
                {
         
     | 
| 
      
 688 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 689 
     | 
    
         
            +
                    {
         
     | 
| 
      
 690 
     | 
    
         
            +
                      "internalType": "contract IBaseComponent",
         
     | 
| 
      
 691 
     | 
    
         
            +
                      "name": "distribution",
         
     | 
| 
      
 692 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 693 
     | 
    
         
            +
                    },
         
     | 
| 
      
 694 
     | 
    
         
            +
                    {
         
     | 
| 
      
 695 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 696 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 697 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 698 
     | 
    
         
            +
                    }
         
     | 
| 
      
 699 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 700 
     | 
    
         
            +
                  "name": "registerDistribution",
         
     | 
| 
      
 701 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 702 
     | 
    
         
            +
                    {
         
     | 
| 
      
 703 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 704 
     | 
    
         
            +
                        {
         
     | 
| 
      
 705 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 706 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 707 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 708 
     | 
    
         
            +
                        },
         
     | 
| 
      
 709 
     | 
    
         
            +
                        {
         
     | 
| 
      
 710 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 711 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 712 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 713 
     | 
    
         
            +
                        },
         
     | 
| 
      
 714 
     | 
    
         
            +
                        {
         
     | 
| 
      
 715 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 716 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 717 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 718 
     | 
    
         
            +
                        },
         
     | 
| 
      
 719 
     | 
    
         
            +
                        {
         
     | 
| 
      
 720 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 721 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 722 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 723 
     | 
    
         
            +
                        },
         
     | 
| 
      
 724 
     | 
    
         
            +
                        {
         
     | 
| 
      
 725 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 726 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 727 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 728 
     | 
    
         
            +
                        },
         
     | 
| 
      
 729 
     | 
    
         
            +
                        {
         
     | 
| 
      
 730 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 731 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 732 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 733 
     | 
    
         
            +
                        },
         
     | 
| 
      
 734 
     | 
    
         
            +
                        {
         
     | 
| 
      
 735 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 736 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 737 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 738 
     | 
    
         
            +
                        }
         
     | 
| 
      
 739 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 740 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 741 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 742 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 743 
     | 
    
         
            +
                    },
         
     | 
| 
      
 744 
     | 
    
         
            +
                    {
         
     | 
| 
      
 745 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 746 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 747 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 748 
     | 
    
         
            +
                    }
         
     | 
| 
      
 749 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 750 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 751 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 752 
     | 
    
         
            +
                },
         
     | 
| 
      
 753 
     | 
    
         
            +
                {
         
     | 
| 
      
 754 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 755 
     | 
    
         
            +
                    {
         
     | 
| 
      
 756 
     | 
    
         
            +
                      "internalType": "contract IRegisterable",
         
     | 
| 
      
 757 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 758 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 759 
     | 
    
         
            +
                    }
         
     | 
| 
      
 760 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 761 
     | 
    
         
            +
                  "name": "registerInstance",
         
     | 
| 
      
 762 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 763 
     | 
    
         
            +
                    {
         
     | 
| 
      
 764 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 765 
     | 
    
         
            +
                        {
         
     | 
| 
      
 766 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 767 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 768 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 769 
     | 
    
         
            +
                        },
         
     | 
| 
      
 770 
     | 
    
         
            +
                        {
         
     | 
| 
      
 771 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 772 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 773 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 774 
     | 
    
         
            +
                        },
         
     | 
| 
      
 775 
     | 
    
         
            +
                        {
         
     | 
| 
      
 776 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 777 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 778 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 779 
     | 
    
         
            +
                        },
         
     | 
| 
      
 780 
     | 
    
         
            +
                        {
         
     | 
| 
      
 781 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 782 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 783 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 784 
     | 
    
         
            +
                        },
         
     | 
| 
      
 785 
     | 
    
         
            +
                        {
         
     | 
| 
      
 786 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 787 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 788 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 789 
     | 
    
         
            +
                        },
         
     | 
| 
      
 790 
     | 
    
         
            +
                        {
         
     | 
| 
      
 791 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 792 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 793 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 794 
     | 
    
         
            +
                        },
         
     | 
| 
      
 795 
     | 
    
         
            +
                        {
         
     | 
| 
      
 796 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 797 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 798 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 799 
     | 
    
         
            +
                        }
         
     | 
| 
      
 800 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 801 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 802 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 803 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 804 
     | 
    
         
            +
                    },
         
     | 
| 
      
 805 
     | 
    
         
            +
                    {
         
     | 
| 
      
 806 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 807 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 808 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 809 
     | 
    
         
            +
                    }
         
     | 
| 
      
 810 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 811 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 812 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 813 
     | 
    
         
            +
                },
         
     | 
| 
      
 814 
     | 
    
         
            +
                {
         
     | 
| 
      
 815 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 816 
     | 
    
         
            +
                    {
         
     | 
| 
      
 817 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 818 
     | 
    
         
            +
                        {
         
     | 
| 
      
 819 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 820 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 821 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 822 
     | 
    
         
            +
                        },
         
     | 
| 
      
 823 
     | 
    
         
            +
                        {
         
     | 
| 
      
 824 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 825 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 826 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 827 
     | 
    
         
            +
                        },
         
     | 
| 
      
 828 
     | 
    
         
            +
                        {
         
     | 
| 
      
 829 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 830 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 831 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 832 
     | 
    
         
            +
                        },
         
     | 
| 
      
 833 
     | 
    
         
            +
                        {
         
     | 
| 
      
 834 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 835 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 836 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 837 
     | 
    
         
            +
                        },
         
     | 
| 
      
 838 
     | 
    
         
            +
                        {
         
     | 
| 
      
 839 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 840 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 841 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 842 
     | 
    
         
            +
                        },
         
     | 
| 
      
 843 
     | 
    
         
            +
                        {
         
     | 
| 
      
 844 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 845 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 846 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 847 
     | 
    
         
            +
                        },
         
     | 
| 
      
 848 
     | 
    
         
            +
                        {
         
     | 
| 
      
 849 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 850 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 851 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 852 
     | 
    
         
            +
                        }
         
     | 
| 
      
 853 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 854 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 855 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 856 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 857 
     | 
    
         
            +
                    }
         
     | 
| 
      
 858 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 859 
     | 
    
         
            +
                  "name": "registerPolicy",
         
     | 
| 
      
 860 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 861 
     | 
    
         
            +
                    {
         
     | 
| 
      
 862 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 863 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 864 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 865 
     | 
    
         
            +
                    }
         
     | 
| 
      
 866 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 867 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 868 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 869 
     | 
    
         
            +
                },
         
     | 
| 
      
 870 
     | 
    
         
            +
                {
         
     | 
| 
      
 871 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 872 
     | 
    
         
            +
                    {
         
     | 
| 
      
 873 
     | 
    
         
            +
                      "internalType": "contract IBaseComponent",
         
     | 
| 
      
 874 
     | 
    
         
            +
                      "name": "pool",
         
     | 
| 
      
 875 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 876 
     | 
    
         
            +
                    },
         
     | 
| 
      
 877 
     | 
    
         
            +
                    {
         
     | 
| 
      
 878 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 879 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 880 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 881 
     | 
    
         
            +
                    }
         
     | 
| 
      
 882 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 883 
     | 
    
         
            +
                  "name": "registerPool",
         
     | 
| 
      
 884 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 885 
     | 
    
         
            +
                    {
         
     | 
| 
      
 886 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 887 
     | 
    
         
            +
                        {
         
     | 
| 
      
 888 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 889 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 890 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 891 
     | 
    
         
            +
                        },
         
     | 
| 
      
 892 
     | 
    
         
            +
                        {
         
     | 
| 
      
 893 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 894 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 895 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 896 
     | 
    
         
            +
                        },
         
     | 
| 
      
 897 
     | 
    
         
            +
                        {
         
     | 
| 
      
 898 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 899 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 900 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 901 
     | 
    
         
            +
                        },
         
     | 
| 
      
 902 
     | 
    
         
            +
                        {
         
     | 
| 
      
 903 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 904 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 905 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 906 
     | 
    
         
            +
                        },
         
     | 
| 
      
 907 
     | 
    
         
            +
                        {
         
     | 
| 
      
 908 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 909 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 910 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 911 
     | 
    
         
            +
                        },
         
     | 
| 
      
 912 
     | 
    
         
            +
                        {
         
     | 
| 
      
 913 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 914 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 915 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 916 
     | 
    
         
            +
                        },
         
     | 
| 
      
 917 
     | 
    
         
            +
                        {
         
     | 
| 
      
 918 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 919 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 920 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 921 
     | 
    
         
            +
                        }
         
     | 
| 
      
 922 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 923 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 924 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 925 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 926 
     | 
    
         
            +
                    },
         
     | 
| 
      
 927 
     | 
    
         
            +
                    {
         
     | 
| 
      
 928 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 929 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 930 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 931 
     | 
    
         
            +
                    }
         
     | 
| 
      
 932 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 933 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 934 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 935 
     | 
    
         
            +
                },
         
     | 
| 
      
 936 
     | 
    
         
            +
                {
         
     | 
| 
      
 937 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 938 
     | 
    
         
            +
                    {
         
     | 
| 
      
 939 
     | 
    
         
            +
                      "internalType": "contract IBaseComponent",
         
     | 
| 
      
 940 
     | 
    
         
            +
                      "name": "product",
         
     | 
| 
      
 941 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 942 
     | 
    
         
            +
                    },
         
     | 
| 
      
 943 
     | 
    
         
            +
                    {
         
     | 
| 
      
 944 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 945 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 946 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 947 
     | 
    
         
            +
                    }
         
     | 
| 
      
 948 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 949 
     | 
    
         
            +
                  "name": "registerProduct",
         
     | 
| 
      
 950 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 951 
     | 
    
         
            +
                    {
         
     | 
| 
      
 952 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 953 
     | 
    
         
            +
                        {
         
     | 
| 
      
 954 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 955 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 956 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 957 
     | 
    
         
            +
                        },
         
     | 
| 
      
 958 
     | 
    
         
            +
                        {
         
     | 
| 
      
 959 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 960 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 961 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 962 
     | 
    
         
            +
                        },
         
     | 
| 
      
 963 
     | 
    
         
            +
                        {
         
     | 
| 
      
 964 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 965 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 966 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 967 
     | 
    
         
            +
                        },
         
     | 
| 
      
 968 
     | 
    
         
            +
                        {
         
     | 
| 
      
 969 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 970 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 971 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 972 
     | 
    
         
            +
                        },
         
     | 
| 
      
 973 
     | 
    
         
            +
                        {
         
     | 
| 
      
 974 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 975 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 976 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 977 
     | 
    
         
            +
                        },
         
     | 
| 
      
 978 
     | 
    
         
            +
                        {
         
     | 
| 
      
 979 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 980 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 981 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 982 
     | 
    
         
            +
                        },
         
     | 
| 
      
 983 
     | 
    
         
            +
                        {
         
     | 
| 
      
 984 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 985 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 986 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 987 
     | 
    
         
            +
                        }
         
     | 
| 
      
 988 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 989 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 990 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 991 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 992 
     | 
    
         
            +
                    },
         
     | 
| 
      
 993 
     | 
    
         
            +
                    {
         
     | 
| 
      
 994 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 995 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 996 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 997 
     | 
    
         
            +
                    }
         
     | 
| 
      
 998 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 999 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1000 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1001 
     | 
    
         
            +
                },
         
     | 
| 
      
 1002 
     | 
    
         
            +
                {
         
     | 
| 
      
 1003 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1004 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1005 
     | 
    
         
            +
                      "internalType": "contract IService",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                      "name": "service",
         
     | 
| 
      
 1007 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1008 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1009 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1010 
     | 
    
         
            +
                  "name": "registerService",
         
     | 
| 
      
 1011 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1012 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1013 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1014 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1015 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1016 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 1017 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1018 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1019 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1020 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1021 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 1022 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1023 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1024 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1025 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 1026 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 1027 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1028 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1029 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1030 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1031 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 1032 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1033 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1034 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1035 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1036 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 1037 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1038 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1039 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1040 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1041 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 1042 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1043 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1044 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1045 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1046 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 1047 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1048 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1049 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1050 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 1051 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 1052 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1053 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1054 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1055 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 1056 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 1057 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 1058 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1059 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1060 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1061 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1062 
     | 
    
         
            +
                },
         
     | 
| 
      
 1063 
     | 
    
         
            +
                {
         
     | 
| 
      
 1064 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1065 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1066 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1067 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1068 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1069 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 1070 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1071 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1072 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1073 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 1074 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 1075 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 1076 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1077 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1078 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 1079 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 1080 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1081 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1082 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1083 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 1084 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 1085 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 1086 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1087 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1088 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1089 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 1090 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1091 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1092 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1093 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 1094 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 1095 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 1096 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1097 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1098 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 1099 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 1100 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 1101 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1102 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1103 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 1104 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 1105 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1106 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1107 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1108 
     | 
    
         
            +
                  "name": "registerStake",
         
     | 
| 
      
 1109 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1110 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1111 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1112 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 1113 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1114 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1115 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1116 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1117 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1118 
     | 
    
         
            +
                },
         
     | 
| 
      
 1119 
     | 
    
         
            +
                {
         
     | 
| 
      
 1120 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1121 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1122 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1123 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 1124 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1125 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1126 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1127 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 1128 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1129 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1130 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1131 
     | 
    
         
            +
                },
         
     | 
| 
      
 1132 
     | 
    
         
            +
                {
         
     | 
| 
      
 1133 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1134 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1135 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1136 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 1137 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1138 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1139 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1140 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 1141 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1142 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1143 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1144 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1145 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1146 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1147 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1148 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1149 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1150 
     | 
    
         
            +
                },
         
     | 
| 
      
 1151 
     | 
    
         
            +
                {
         
     | 
| 
      
 1152 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1153 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1154 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1155 
     | 
    
         
            +
                      "name": "implementation",
         
     | 
| 
      
 1156 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1157 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1158 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1159 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1160 
     | 
    
         
            +
                      "name": "activatedBy",
         
     | 
| 
      
 1161 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1162 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1163 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1164 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 1165 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 1166 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 1167 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1168 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1169 
     | 
    
         
            +
                  "name": "upgrade",
         
     | 
| 
      
 1170 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1171 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1172 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1173 
     | 
    
         
            +
                }
         
     | 
| 
      
 1174 
     | 
    
         
            +
              ],
         
     | 
| 
      
 1175 
     | 
    
         
            +
              "bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612fd9806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063834af1531161010f578063b88da759116100a2578063cf7a1d7711610071578063cf7a1d77146105c4578063e285c9c4146105d7578063ed841d0c146105df578063fdd9ec7d146105e757600080fd5b8063b88da7591461057c578063bf7e214f1461058f578063c2bf08c814610597578063cde749f4146105aa57600080fd5b8063946dfcfe116100de578063946dfcfe146104f4578063a3f4df7e1461051b578063a745e3df14610549578063b3c650151461055c57600080fd5b8063834af153146104b1578063893d20e8146104c45780638fb36037146104cc5780638fbc2d81146104e157600080fd5b80634f42133311610187578063644c45e011610156578063644c45e0146104605780637286e5e5146104785780637a9e5e4b1461048b5780638105cc7f1461049e57600080fd5b80634f421333146103ea5780635ab1bd53146103fd5780635c992fed146104225780635d9662891461044d57600080fd5b8063138461e0116101c3578063138461e01461025e57806317d7de7c146102685780631eff4b221461029c5780634d459c90146102d157600080fd5b806301ffc9a7146101ea5780630d8e6e2c1461022c5780630fec111c14610248575b600080fd5b6102176101f8366004612533565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102346105fa565b60405162ffffff9091168152602001610223565b610250610684565b60405161022392919061262d565b6102666107d7565b005b60408051808201909152600f81526e52656769737472795365727669636560881b60208201525b604051610223919061265b565b6102c37f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610223565b61038d6102df36600461267f565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612f8483398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610223565b6102176103f836600461267f565b6109f9565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610223565b6104356104303660046127ff565b610aac565b6040516001600160601b039091168152602001610223565b61025061045b3660046128d1565b610b3f565b600154600160a01b90046001600160601b0316610435565b6102506104863660046128d1565b610cd1565b61026661049936600461290a565b610d80565b6104356104ac3660046127ff565b610e07565b6102506104bf36600461290a565b610e1d565b61040a610fa5565b6104d46110be565b6040516102239190612927565b6102506104ef3660046128d1565b6110f7565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546102c3565b61028f6040518060400160405280600f81526020016e52656769737472795365727669636560881b81525081565b61026661055736600461293c565b6111a6565b610564611300565b6040516001600160401b039091168152602001610223565b61023461058a36600461299d565b611321565b61040a611372565b6104356105a53660046127ff565b61138e565b6105b26113a4565b60405160ff9091168152602001610223565b6102666105d236600461293c565b611427565b61040a600181565b6102c3600081565b6102506105f536600461290a565b611530565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561065b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067f91906129b6565b905090565b61068c6124f5565b606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806106d86001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610720610fa5565b6001600160a01b0316815260200182600101805461073d906129d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610769906129d3565b80156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d9190612a18565b156108a4576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166108cd5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093a9190612a18565b610962576040516372657a5160e01b81526001600160a01b038216600482015260240161089b565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156109ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d09190612a40565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080600080516020612f8483398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610a81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa59190612a5d565b1192915050565b6000610abb335b6000366115df565b610ac68260d26116e5565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610af6908590600401612a76565b6020604051808303816000875af1158015610b15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b399190612a40565b92915050565b610b476124f5565b6060610b5233610ab3565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a790610b8590633ad74e8160e01b90600401612927565b602060405180830381865afa158015610ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc69190612a18565b610be357604051637a71998760e01b815260040160405180910390fd5b610bf084606e5b856117f0565b6001546040516352efcf2760e11b81529294509092506001600160a01b03169063a5df9e4e90610c24908590600401612a76565b6020604051808303816000875af1158015610c43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c679190612a40565b6001600160601b0316825260408051629c230f60e51b815290516001600160a01b0386169163138461e091600480830192600092919082900301818387803b158015610cb257600080fd5b505af1158015610cc6573d6000803e3d6000fd5b505050509250929050565b610cd96124f5565b6060610ce433610ab3565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a790610d1790632d744d3360e11b90600401612927565b602060405180830381865afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d589190612a18565b610d7557604051636f61f64160e01b815260040160405180910390fd5b610bf084608c610bea565b33610d89611372565b6001600160a01b0316816001600160a01b031614610dc45760405162d1953b60e31b81526001600160a01b038216600482015260240161089b565b816001600160a01b03163b600003610dfa576040516361798f2f60e11b81526001600160a01b038316600482015260240161089b565b610e03826119f6565b5050565b6000610e1233610ab3565b610ac68260506116e5565b610e256124f5565b6040516301ffc9a760e01b81526060906001600160a01b038416906301ffc9a790610e5b906367a9cb5360e01b90600401612927565b602060405180830381865afa158015610e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9c9190612a18565b610eb957604051636795c76360e01b815260040160405180910390fd5b610ec68360465b336117f0565b6001546040516352efcf2760e11b81529294509092506001600160a01b03169063a5df9e4e90610efa908590600401612a76565b6020604051808303816000875af1158015610f19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3d9190612a40565b6001600160601b0316825260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b158015610f8857600080fd5b505af1158015610f9c573d6000803e3d6000fd5b50505050915091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561100a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102e9190612a18565b156110ae57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561108a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067f9190612a94565b506002546001600160a01b031690565b600080516020612f44833981519152805460009190600160a01b900460ff166110e85760006110f1565b638fb3603760e01b5b91505090565b6110ff6124f5565b606061110a33610ab3565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061113d9063c8ea96c560e01b90600401612927565b602060405180830381865afa15801561115a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117e9190612a18565b61119b576040516308707e3160e41b815260040160405180910390fd5b610bf0846078610bea565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6111c86105fa565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122c9190612ab1565b600080516020612f648339815191528054600160401b900460ff168061125f575080546001600160401b03808416911610155b1561127d5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556112a88585611a57565b6112b183611cf6565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b600061067f600080516020612f64833981519152546001600160401b031690565b6000600080516020612f84833981519152600101828154811061134657611346612ada565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080516020612f44833981519152546001600160a01b031690565b600061139933610ab3565b610ac68260dc6116e5565b60006113ae6105fa565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611403573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067f9190612afb565b600080516020612f648339815191528054600160401b810460ff1615906001600160401b031660008115801561145a5750825b90506000826001600160401b031660011480156114765750303b155b905081158015611484575080155b156114a25760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114cc57845460ff60401b1916600160401b1785555b6114d68888611a57565b6114e08787611cfe565b831561152657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6115386124f5565b606061154333610ab3565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061157690631b4612f160e31b90600401612927565b602060405180830381865afa158015611593573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b79190612a18565b6115d457604051635458064d60e11b815260040160405180910390fd5b610ec683603c610ec0565b600080516020612f4483398151915260008061161a6115fc611372565b873061160c600460008a8c612b18565b61161591612b42565b611feb565b91509150816116dd5763ffffffff8116156116ba57825460ff60a01b1916600160a01b178355611648611372565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161167793929190612b72565b600060405180830381600087803b15801561169157600080fd5b505af11580156116a5573d6000803e3d6000fd5b5050845460ff60a01b19168555506116dd9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161089b565b505050505050565b60006080830152604082015160ff828116911614611729576040808301519051632208245760e11b815260ff8084166004830152909116602482015260440161089b565b60a08201516001600160a01b03811661175557604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156117a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117cd9190612a18565b156117eb57604051637142ceb360e11b815260040160405180910390fd5b505050565b6117f86124f5565b6060846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611838573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118609190810190612bf7565b6001600160a01b03871660808301526040820151919350915060ff8581169116146118b1576040808301519051632208245760e11b815260ff8087166004830152909116602482015260440161089b565b60a082015160ff85166046146118fe57836001600160a01b0316816001600160a01b0316146118fe5760405163dfc430cb60e01b81526001600160a01b038516600482015260240161089b565b856001600160a01b0316816001600160a01b031603611930576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b03811661195757604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf9190612a18565b156119ed57604051637142ceb360e11b815260040160405180910390fd5b50935093915050565b600080516020612f4483398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611a5f6120f7565b600080516020612f848339815191526000611a8f600080516020612f64833981519152546001600160401b031690565b90506000611a9b6105fa565b9050816001600160401b0316600103611ac85760028301805462ffffff191662ffffff8316179055611b16565b600283015462ffffff90811690821611611b165760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640161089b565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bee9190612cef565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906112f19083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101e56120f7565b600080516020612f648339815191528054600160401b810460ff1615906001600160401b0316600081158015611d315750825b90506000826001600160401b03166001148015611d4d5750303b155b905081158015611d5b575080155b15611d795760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611da357845460ff60401b1916600160401b1785555b60008087806020019051810190611dba9190612d16565b91509150611dc782612130565b600089611dd26113a4565b604080516001600160a01b03909316602084015260ff9091169082015260600160408051601f1981840301815290829052631585e94960e21b8252915060009073__$b2e3f5fb9dc49bcf3e057142c7696ab68d$__90635617a52490611e3e9086908690600401612d5c565b600060405180830381865af4158015611e5b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e839190810190612d6f565b60405163257b1f8160e11b815290915060009073__$b2e3f5fb9dc49bcf3e057142c7696ab68d$__90634af63f0290611ec29085908590600401612da3565b602060405180830381865af4158015611edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f039190612a94565b604051636939560f60e11b81526001600160a01b038216600482018190529192506000919063d272ac1e90602401602060405180830381865afa158015611f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f729190612a40565b9050611f7e828e612144565b611f866107d7565b611f9663200cc87360e11b6121d1565b5050505050508315611fe257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161205a9190612dc5565b600060405180830381855afa9150503d8060008114612095576040519150601f19603f3d011682016040523d82523d6000602084013e61209a565b606091505b509150915081156120ec5760408151106120cc57808060200190518101906120c29190612de1565b90945092506120ec565b60208151106120ec57808060200190518101906120e99190612a18565b93505b505094509492505050565b600080516020612f6483398151915254600160401b900460ff1661212e57604051631afcd79f60e31b815260040160405180910390fd5b565b6121386120f7565b612141816121f6565b50565b600061217260408051808201909152600f81526e52656769737472795365727669636560881b602082015290565b61217a6113a4565b60405160200161218b929190612e19565b604051602081830303815290604052905060006121a784612207565b905060006121ba8583603c84888861224e565b6121ca631b4612f160e31b6121d1565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6121fe6120f7565b612141816119f6565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015610b15573d6000803e3d6000fd5b61228f6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b612299828761231a565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016123098382612e84565b50611fe26303fb044760e21b6121d1565b6001600160a01b0382166123705760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e657220697320300000604482015260640161089b565b600280546001600160a01b0319166001600160a01b038416179055610e03816001546001600160a01b0316156123c85760015460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240161089b565b6001600160a01b0381166123ef5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036124255760405163fdeac91f60e01b81526001600160a01b038216600482015260240161089b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a79061246b906376ceea7360e01b90600401612927565b602060405180830381865afa9250505080156124a4575060408051601f3d908101601f191682019092526124a191810190612a18565b60015b6124cc5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161089b565b80610e035760405163fdeac91f60e01b81526001600160a01b038316600482015260240161089b565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561254557600080fd5b81356001600160e01b03198116811461255d57600080fd5b9392505050565b60005b8381101561257f578181015183820152602001612567565b50506000910152565b600081518084526125a0816020860160208601612564565b601f01601f19169290920160200192915050565b60006001600160601b038083511684528060208401511660208501525060ff6040830151166040840152606082015115156060840152608082015160018060a01b0380821660808601528060a08501511660a0860152505060c082015160e060c085015261262560e0850182612588565b949350505050565b60408152600061264060408301856125b4565b82810360208401526126528185612588565b95945050505050565b60208152600061255d6020830184612588565b62ffffff8116811461214157600080fd5b60006020828403121561269157600080fd5b813561255d8161266e565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156126d4576126d461269c565b60405290565b604051601f8201601f191681016001600160401b03811182821017156127025761270261269c565b604052919050565b6001600160601b038116811461214157600080fd5b803561272a8161270a565b919050565b60ff8116811461214157600080fd5b803561272a8161272f565b801515811461214157600080fd5b803561272a81612749565b6001600160a01b038116811461214157600080fd5b803561272a81612762565b60006001600160401b0382111561279b5761279b61269c565b50601f01601f191660200190565b600082601f8301126127ba57600080fd5b81356127cd6127c882612782565b6126da565b8181528460208386010111156127e257600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561281157600080fd5b81356001600160401b038082111561282857600080fd5b9083019060e0828603121561283c57600080fd5b6128446126b2565b61284d8361271f565b815261285b6020840161271f565b602082015261286c6040840161273e565b604082015261287d60608401612757565b606082015261288e60808401612777565b608082015261289f60a08401612777565b60a082015260c0830135828111156128b657600080fd5b6128c2878286016127a9565b60c08301525095945050505050565b600080604083850312156128e457600080fd5b82356128ef81612762565b915060208301356128ff81612762565b809150509250929050565b60006020828403121561291c57600080fd5b813561255d81612762565b6001600160e01b031991909116815260200190565b60008060006060848603121561295157600080fd5b833561295c81612762565b9250602084013561296c81612762565b915060408401356001600160401b0381111561298757600080fd5b612993868287016127a9565b9150509250925092565b6000602082840312156129af57600080fd5b5035919050565b6000602082840312156129c857600080fd5b815161255d8161266e565b600181811c908216806129e757607f821691505b602082108103612a0757634e487b7160e01b600052602260045260246000fd5b50919050565b805161272a81612749565b600060208284031215612a2a57600080fd5b815161255d81612749565b805161272a8161270a565b600060208284031215612a5257600080fd5b815161255d8161270a565b600060208284031215612a6f57600080fd5b5051919050565b60208152600061255d60208301846125b4565b805161272a81612762565b600060208284031215612aa657600080fd5b815161255d81612762565b600060208284031215612ac357600080fd5b81516001600160401b038116811461255d57600080fd5b634e487b7160e01b600052603260045260246000fd5b805161272a8161272f565b600060208284031215612b0d57600080fd5b815161255d8161272f565b60008085851115612b2857600080fd5b83861115612b3557600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b6a5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612bc357600080fd5b8151612bd16127c882612782565b818152846020838601011115612be657600080fd5b612625826020830160208701612564565b60008060408385031215612c0a57600080fd5b82516001600160401b0380821115612c2157600080fd5b9084019060e08287031215612c3557600080fd5b612c3d6126b2565b612c4683612a35565b8152612c5460208401612a35565b6020820152612c6560408401612af0565b6040820152612c7660608401612a0d565b6060820152612c8760808401612a89565b6080820152612c9860a08401612a89565b60a082015260c083015182811115612caf57600080fd5b612cbb88828601612bb2565b60c0830152506020860151909450915080821115612cd857600080fd5b50612ce585828601612bb2565b9150509250929050565b600060208284031215612d0157600080fd5b815164ffffffffff8116811461255d57600080fd5b60008060408385031215612d2957600080fd5b8251612d3481612762565b60208401519092506001600160401b03811115612d5057600080fd5b612ce585828601612bb2565b6040815260006126406040830185612588565b600060208284031215612d8157600080fd5b81516001600160401b03811115612d9757600080fd5b61262584828501612bb2565b604081526000612db66040830185612588565b90508260208301529392505050565b60008251612dd7818460208701612564565b9190910192915050565b60008060408385031215612df457600080fd5b8251612dff81612749565b602084015190925063ffffffff811681146128ff57600080fd5b604081526000612e2c6040830185612588565b905060ff831660208301529392505050565b601f8211156117eb57600081815260208120601f850160051c81016020861015612e655750805b601f850160051c820191505b818110156116dd57828155600101612e71565b81516001600160401b03811115612e9d57612e9d61269c565b612eb181612eab84546129d3565b84612e3e565b602080601f831160018114612ee65760008415612ece5750858301515b600019600386901b1c1916600185901b1785556116dd565b600085815260208120601f198616915b82811015612f1557888601518255948401946001909101908401612ef6565b5085821015612f335787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220f8a67cd0fcbd4e7b45a64f3ea7204441a037279e53a9d9bef77fc51c06aa6b3d64736f6c63430008140033",
         
     | 
| 
      
 1176 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063834af1531161010f578063b88da759116100a2578063cf7a1d7711610071578063cf7a1d77146105c4578063e285c9c4146105d7578063ed841d0c146105df578063fdd9ec7d146105e757600080fd5b8063b88da7591461057c578063bf7e214f1461058f578063c2bf08c814610597578063cde749f4146105aa57600080fd5b8063946dfcfe116100de578063946dfcfe146104f4578063a3f4df7e1461051b578063a745e3df14610549578063b3c650151461055c57600080fd5b8063834af153146104b1578063893d20e8146104c45780638fb36037146104cc5780638fbc2d81146104e157600080fd5b80634f42133311610187578063644c45e011610156578063644c45e0146104605780637286e5e5146104785780637a9e5e4b1461048b5780638105cc7f1461049e57600080fd5b80634f421333146103ea5780635ab1bd53146103fd5780635c992fed146104225780635d9662891461044d57600080fd5b8063138461e0116101c3578063138461e01461025e57806317d7de7c146102685780631eff4b221461029c5780634d459c90146102d157600080fd5b806301ffc9a7146101ea5780630d8e6e2c1461022c5780630fec111c14610248575b600080fd5b6102176101f8366004612533565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102346105fa565b60405162ffffff9091168152602001610223565b610250610684565b60405161022392919061262d565b6102666107d7565b005b60408051808201909152600f81526e52656769737472795365727669636560881b60208201525b604051610223919061265b565b6102c37f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610223565b61038d6102df36600461267f565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612f8483398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610223565b6102176103f836600461267f565b6109f9565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610223565b6104356104303660046127ff565b610aac565b6040516001600160601b039091168152602001610223565b61025061045b3660046128d1565b610b3f565b600154600160a01b90046001600160601b0316610435565b6102506104863660046128d1565b610cd1565b61026661049936600461290a565b610d80565b6104356104ac3660046127ff565b610e07565b6102506104bf36600461290a565b610e1d565b61040a610fa5565b6104d46110be565b6040516102239190612927565b6102506104ef3660046128d1565b6110f7565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546102c3565b61028f6040518060400160405280600f81526020016e52656769737472795365727669636560881b81525081565b61026661055736600461293c565b6111a6565b610564611300565b6040516001600160401b039091168152602001610223565b61023461058a36600461299d565b611321565b61040a611372565b6104356105a53660046127ff565b61138e565b6105b26113a4565b60405160ff9091168152602001610223565b6102666105d236600461293c565b611427565b61040a600181565b6102c3600081565b6102506105f536600461290a565b611530565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561065b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067f91906129b6565b905090565b61068c6124f5565b606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806106d86001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610720610fa5565b6001600160a01b0316815260200182600101805461073d906129d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610769906129d3565b80156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d9190612a18565b156108a4576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166108cd5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093a9190612a18565b610962576040516372657a5160e01b81526001600160a01b038216600482015260240161089b565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156109ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d09190612a40565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080600080516020612f8483398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610a81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa59190612a5d565b1192915050565b6000610abb335b6000366115df565b610ac68260d26116e5565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610af6908590600401612a76565b6020604051808303816000875af1158015610b15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b399190612a40565b92915050565b610b476124f5565b6060610b5233610ab3565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a790610b8590633ad74e8160e01b90600401612927565b602060405180830381865afa158015610ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc69190612a18565b610be357604051637a71998760e01b815260040160405180910390fd5b610bf084606e5b856117f0565b6001546040516352efcf2760e11b81529294509092506001600160a01b03169063a5df9e4e90610c24908590600401612a76565b6020604051808303816000875af1158015610c43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c679190612a40565b6001600160601b0316825260408051629c230f60e51b815290516001600160a01b0386169163138461e091600480830192600092919082900301818387803b158015610cb257600080fd5b505af1158015610cc6573d6000803e3d6000fd5b505050509250929050565b610cd96124f5565b6060610ce433610ab3565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a790610d1790632d744d3360e11b90600401612927565b602060405180830381865afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d589190612a18565b610d7557604051636f61f64160e01b815260040160405180910390fd5b610bf084608c610bea565b33610d89611372565b6001600160a01b0316816001600160a01b031614610dc45760405162d1953b60e31b81526001600160a01b038216600482015260240161089b565b816001600160a01b03163b600003610dfa576040516361798f2f60e11b81526001600160a01b038316600482015260240161089b565b610e03826119f6565b5050565b6000610e1233610ab3565b610ac68260506116e5565b610e256124f5565b6040516301ffc9a760e01b81526060906001600160a01b038416906301ffc9a790610e5b906367a9cb5360e01b90600401612927565b602060405180830381865afa158015610e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9c9190612a18565b610eb957604051636795c76360e01b815260040160405180910390fd5b610ec68360465b336117f0565b6001546040516352efcf2760e11b81529294509092506001600160a01b03169063a5df9e4e90610efa908590600401612a76565b6020604051808303816000875af1158015610f19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3d9190612a40565b6001600160601b0316825260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192600092919082900301818387803b158015610f8857600080fd5b505af1158015610f9c573d6000803e3d6000fd5b50505050915091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561100a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102e9190612a18565b156110ae57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801561108a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067f9190612a94565b506002546001600160a01b031690565b600080516020612f44833981519152805460009190600160a01b900460ff166110e85760006110f1565b638fb3603760e01b5b91505090565b6110ff6124f5565b606061110a33610ab3565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061113d9063c8ea96c560e01b90600401612927565b602060405180830381865afa15801561115a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117e9190612a18565b61119b576040516308707e3160e41b815260040160405180910390fd5b610bf0846078610bea565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6111c86105fa565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611208573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122c9190612ab1565b600080516020612f648339815191528054600160401b900460ff168061125f575080546001600160401b03808416911610155b1561127d5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556112a88585611a57565b6112b183611cf6565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b600061067f600080516020612f64833981519152546001600160401b031690565b6000600080516020612f84833981519152600101828154811061134657611346612ada565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600080516020612f44833981519152546001600160a01b031690565b600061139933610ab3565b610ac68260dc6116e5565b60006113ae6105fa565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611403573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067f9190612afb565b600080516020612f648339815191528054600160401b810460ff1615906001600160401b031660008115801561145a5750825b90506000826001600160401b031660011480156114765750303b155b905081158015611484575080155b156114a25760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114cc57845460ff60401b1916600160401b1785555b6114d68888611a57565b6114e08787611cfe565b831561152657845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6115386124f5565b606061154333610ab3565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061157690631b4612f160e31b90600401612927565b602060405180830381865afa158015611593573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b79190612a18565b6115d457604051635458064d60e11b815260040160405180910390fd5b610ec683603c610ec0565b600080516020612f4483398151915260008061161a6115fc611372565b873061160c600460008a8c612b18565b61161591612b42565b611feb565b91509150816116dd5763ffffffff8116156116ba57825460ff60a01b1916600160a01b178355611648611372565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161167793929190612b72565b600060405180830381600087803b15801561169157600080fd5b505af11580156116a5573d6000803e3d6000fd5b5050845460ff60a01b19168555506116dd9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161089b565b505050505050565b60006080830152604082015160ff828116911614611729576040808301519051632208245760e11b815260ff8084166004830152909116602482015260440161089b565b60a08201516001600160a01b03811661175557604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156117a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117cd9190612a18565b156117eb57604051637142ceb360e11b815260040160405180910390fd5b505050565b6117f86124f5565b6060846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611838573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118609190810190612bf7565b6001600160a01b03871660808301526040820151919350915060ff8581169116146118b1576040808301519051632208245760e11b815260ff8087166004830152909116602482015260440161089b565b60a082015160ff85166046146118fe57836001600160a01b0316816001600160a01b0316146118fe5760405163dfc430cb60e01b81526001600160a01b038516600482015260240161089b565b856001600160a01b0316816001600160a01b031603611930576040516317faf4db60e11b815260040160405180910390fd5b6001600160a01b03811661195757604051630fd187d360e01b815260040160405180910390fd5b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf9190612a18565b156119ed57604051637142ceb360e11b815260040160405180910390fd5b50935093915050565b600080516020612f4483398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611a5f6120f7565b600080516020612f848339815191526000611a8f600080516020612f64833981519152546001600160401b031690565b90506000611a9b6105fa565b9050816001600160401b0316600103611ac85760028301805462ffffff191662ffffff8316179055611b16565b600283015462ffffff90811690821611611b165760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640161089b565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bee9190612cef565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906112f19083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101e56120f7565b600080516020612f648339815191528054600160401b810460ff1615906001600160401b0316600081158015611d315750825b90506000826001600160401b03166001148015611d4d5750303b155b905081158015611d5b575080155b15611d795760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611da357845460ff60401b1916600160401b1785555b60008087806020019051810190611dba9190612d16565b91509150611dc782612130565b600089611dd26113a4565b604080516001600160a01b03909316602084015260ff9091169082015260600160408051601f1981840301815290829052631585e94960e21b8252915060009073__$b2e3f5fb9dc49bcf3e057142c7696ab68d$__90635617a52490611e3e9086908690600401612d5c565b600060405180830381865af4158015611e5b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e839190810190612d6f565b60405163257b1f8160e11b815290915060009073__$b2e3f5fb9dc49bcf3e057142c7696ab68d$__90634af63f0290611ec29085908590600401612da3565b602060405180830381865af4158015611edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f039190612a94565b604051636939560f60e11b81526001600160a01b038216600482018190529192506000919063d272ac1e90602401602060405180830381865afa158015611f4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f729190612a40565b9050611f7e828e612144565b611f866107d7565b611f9663200cc87360e11b6121d1565b5050505050508315611fe257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161205a9190612dc5565b600060405180830381855afa9150503d8060008114612095576040519150601f19603f3d011682016040523d82523d6000602084013e61209a565b606091505b509150915081156120ec5760408151106120cc57808060200190518101906120c29190612de1565b90945092506120ec565b60208151106120ec57808060200190518101906120e99190612a18565b93505b505094509492505050565b600080516020612f6483398151915254600160401b900460ff1661212e57604051631afcd79f60e31b815260040160405180910390fd5b565b6121386120f7565b612141816121f6565b50565b600061217260408051808201909152600f81526e52656769737472795365727669636560881b602082015290565b61217a6113a4565b60405160200161218b929190612e19565b604051602081830303815290604052905060006121a784612207565b905060006121ba8583603c84888861224e565b6121ca631b4612f160e31b6121d1565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6121fe6120f7565b612141816119f6565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015610b15573d6000803e3d6000fd5b61228f6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b612299828761231a565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016123098382612e84565b50611fe26303fb044760e21b6121d1565b6001600160a01b0382166123705760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e657220697320300000604482015260640161089b565b600280546001600160a01b0319166001600160a01b038416179055610e03816001546001600160a01b0316156123c85760015460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240161089b565b6001600160a01b0381166123ef5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036124255760405163fdeac91f60e01b81526001600160a01b038216600482015260240161089b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a79061246b906376ceea7360e01b90600401612927565b602060405180830381865afa9250505080156124a4575060408051601f3d908101601f191682019092526124a191810190612a18565b60015b6124cc5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161089b565b80610e035760405163fdeac91f60e01b81526001600160a01b038316600482015260240161089b565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561254557600080fd5b81356001600160e01b03198116811461255d57600080fd5b9392505050565b60005b8381101561257f578181015183820152602001612567565b50506000910152565b600081518084526125a0816020860160208601612564565b601f01601f19169290920160200192915050565b60006001600160601b038083511684528060208401511660208501525060ff6040830151166040840152606082015115156060840152608082015160018060a01b0380821660808601528060a08501511660a0860152505060c082015160e060c085015261262560e0850182612588565b949350505050565b60408152600061264060408301856125b4565b82810360208401526126528185612588565b95945050505050565b60208152600061255d6020830184612588565b62ffffff8116811461214157600080fd5b60006020828403121561269157600080fd5b813561255d8161266e565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156126d4576126d461269c565b60405290565b604051601f8201601f191681016001600160401b03811182821017156127025761270261269c565b604052919050565b6001600160601b038116811461214157600080fd5b803561272a8161270a565b919050565b60ff8116811461214157600080fd5b803561272a8161272f565b801515811461214157600080fd5b803561272a81612749565b6001600160a01b038116811461214157600080fd5b803561272a81612762565b60006001600160401b0382111561279b5761279b61269c565b50601f01601f191660200190565b600082601f8301126127ba57600080fd5b81356127cd6127c882612782565b6126da565b8181528460208386010111156127e257600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561281157600080fd5b81356001600160401b038082111561282857600080fd5b9083019060e0828603121561283c57600080fd5b6128446126b2565b61284d8361271f565b815261285b6020840161271f565b602082015261286c6040840161273e565b604082015261287d60608401612757565b606082015261288e60808401612777565b608082015261289f60a08401612777565b60a082015260c0830135828111156128b657600080fd5b6128c2878286016127a9565b60c08301525095945050505050565b600080604083850312156128e457600080fd5b82356128ef81612762565b915060208301356128ff81612762565b809150509250929050565b60006020828403121561291c57600080fd5b813561255d81612762565b6001600160e01b031991909116815260200190565b60008060006060848603121561295157600080fd5b833561295c81612762565b9250602084013561296c81612762565b915060408401356001600160401b0381111561298757600080fd5b612993868287016127a9565b9150509250925092565b6000602082840312156129af57600080fd5b5035919050565b6000602082840312156129c857600080fd5b815161255d8161266e565b600181811c908216806129e757607f821691505b602082108103612a0757634e487b7160e01b600052602260045260246000fd5b50919050565b805161272a81612749565b600060208284031215612a2a57600080fd5b815161255d81612749565b805161272a8161270a565b600060208284031215612a5257600080fd5b815161255d8161270a565b600060208284031215612a6f57600080fd5b5051919050565b60208152600061255d60208301846125b4565b805161272a81612762565b600060208284031215612aa657600080fd5b815161255d81612762565b600060208284031215612ac357600080fd5b81516001600160401b038116811461255d57600080fd5b634e487b7160e01b600052603260045260246000fd5b805161272a8161272f565b600060208284031215612b0d57600080fd5b815161255d8161272f565b60008085851115612b2857600080fd5b83861115612b3557600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015612b6a5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f830112612bc357600080fd5b8151612bd16127c882612782565b818152846020838601011115612be657600080fd5b612625826020830160208701612564565b60008060408385031215612c0a57600080fd5b82516001600160401b0380821115612c2157600080fd5b9084019060e08287031215612c3557600080fd5b612c3d6126b2565b612c4683612a35565b8152612c5460208401612a35565b6020820152612c6560408401612af0565b6040820152612c7660608401612a0d565b6060820152612c8760808401612a89565b6080820152612c9860a08401612a89565b60a082015260c083015182811115612caf57600080fd5b612cbb88828601612bb2565b60c0830152506020860151909450915080821115612cd857600080fd5b50612ce585828601612bb2565b9150509250929050565b600060208284031215612d0157600080fd5b815164ffffffffff8116811461255d57600080fd5b60008060408385031215612d2957600080fd5b8251612d3481612762565b60208401519092506001600160401b03811115612d5057600080fd5b612ce585828601612bb2565b6040815260006126406040830185612588565b600060208284031215612d8157600080fd5b81516001600160401b03811115612d9757600080fd5b61262584828501612bb2565b604081526000612db66040830185612588565b90508260208301529392505050565b60008251612dd7818460208701612564565b9190910192915050565b60008060408385031215612df457600080fd5b8251612dff81612749565b602084015190925063ffffffff811681146128ff57600080fd5b604081526000612e2c6040830185612588565b905060ff831660208301529392505050565b601f8211156117eb57600081815260208120601f850160051c81016020861015612e655750805b601f850160051c820191505b818110156116dd57828155600101612e71565b81516001600160401b03811115612e9d57612e9d61269c565b612eb181612eab84546129d3565b84612e3e565b602080601f831160018114612ee65760008415612ece5750858301515b600019600386901b1c1916600185901b1785556116dd565b600085815260208120601f198616915b82811015612f1557888601518255948401946001909101908401612ef6565b5085821015612f335787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220f8a67cd0fcbd4e7b45a64f3ea7204441a037279e53a9d9bef77fc51c06aa6b3d64736f6c63430008140033",
         
     | 
| 
      
 1177 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 1178 
     | 
    
         
            +
                "contracts/shared/ContractDeployerLib.sol": {
         
     | 
| 
      
 1179 
     | 
    
         
            +
                  "ContractDeployerLib": [
         
     | 
| 
      
 1180 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1181 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1182 
     | 
    
         
            +
                      "start": 8014
         
     | 
| 
      
 1183 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1184 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1185 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1186 
     | 
    
         
            +
                      "start": 8146
         
     | 
| 
      
 1187 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1188 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1189 
     | 
    
         
            +
                },
         
     | 
| 
      
 1190 
     | 
    
         
            +
                "contracts/types/Blocknumber.sol": {
         
     | 
| 
      
 1191 
     | 
    
         
            +
                  "BlocknumberLib": [
         
     | 
| 
      
 1192 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1193 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1194 
     | 
    
         
            +
                      "start": 2945
         
     | 
| 
      
 1195 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1196 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1197 
     | 
    
         
            +
                },
         
     | 
| 
      
 1198 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 1199 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1200 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1201 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1202 
     | 
    
         
            +
                      "start": 2361
         
     | 
| 
      
 1203 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1204 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1205 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1206 
     | 
    
         
            +
                      "start": 4362
         
     | 
| 
      
 1207 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1208 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1209 
     | 
    
         
            +
                },
         
     | 
| 
      
 1210 
     | 
    
         
            +
                "contracts/types/Timestamp.sol": {
         
     | 
| 
      
 1211 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 1212 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1213 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1214 
     | 
    
         
            +
                      "start": 7370
         
     | 
| 
      
 1215 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1216 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1217 
     | 
    
         
            +
                },
         
     | 
| 
      
 1218 
     | 
    
         
            +
                "contracts/types/Version.sol": {
         
     | 
| 
      
 1219 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 1220 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1221 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1222 
     | 
    
         
            +
                      "start": 1883
         
     | 
| 
      
 1223 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1224 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1225 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1226 
     | 
    
         
            +
                      "start": 4834
         
     | 
| 
      
 1227 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1228 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1229 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1230 
     | 
    
         
            +
                      "start": 5379
         
     | 
| 
      
 1231 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1232 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1233 
     | 
    
         
            +
                }
         
     | 
| 
      
 1234 
     | 
    
         
            +
              },
         
     | 
| 
      
 1235 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 1236 
     | 
    
         
            +
                "contracts/shared/ContractDeployerLib.sol": {
         
     | 
| 
      
 1237 
     | 
    
         
            +
                  "ContractDeployerLib": [
         
     | 
| 
      
 1238 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1239 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1240 
     | 
    
         
            +
                      "start": 7700
         
     | 
| 
      
 1241 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1242 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1243 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1244 
     | 
    
         
            +
                      "start": 7832
         
     | 
| 
      
 1245 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1246 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1247 
     | 
    
         
            +
                },
         
     | 
| 
      
 1248 
     | 
    
         
            +
                "contracts/types/Blocknumber.sol": {
         
     | 
| 
      
 1249 
     | 
    
         
            +
                  "BlocknumberLib": [
         
     | 
| 
      
 1250 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1251 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1252 
     | 
    
         
            +
                      "start": 2631
         
     | 
| 
      
 1253 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1254 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1255 
     | 
    
         
            +
                },
         
     | 
| 
      
 1256 
     | 
    
         
            +
                "contracts/types/NftId.sol": {
         
     | 
| 
      
 1257 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1258 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1259 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1260 
     | 
    
         
            +
                      "start": 2047
         
     | 
| 
      
 1261 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1262 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1263 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1264 
     | 
    
         
            +
                      "start": 4048
         
     | 
| 
      
 1265 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1266 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1267 
     | 
    
         
            +
                },
         
     | 
| 
      
 1268 
     | 
    
         
            +
                "contracts/types/Timestamp.sol": {
         
     | 
| 
      
 1269 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 1270 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1271 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1272 
     | 
    
         
            +
                      "start": 7056
         
     | 
| 
      
 1273 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1274 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1275 
     | 
    
         
            +
                },
         
     | 
| 
      
 1276 
     | 
    
         
            +
                "contracts/types/Version.sol": {
         
     | 
| 
      
 1277 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 1278 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1279 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1280 
     | 
    
         
            +
                      "start": 1569
         
     | 
| 
      
 1281 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1282 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1283 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1284 
     | 
    
         
            +
                      "start": 4520
         
     | 
| 
      
 1285 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1286 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1287 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1288 
     | 
    
         
            +
                      "start": 5065
         
     | 
| 
      
 1289 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1290 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1291 
     | 
    
         
            +
                }
         
     | 
| 
      
 1292 
     | 
    
         
            +
              }
         
     | 
| 
      
 1293 
     | 
    
         
            +
            }
         
     |