@etherisc/gif-next 0.0.2-e94f4c7-084 → 0.0.2-e987ccf-894
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 +51 -5
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
 - package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
 - package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1500 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +209 -384
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1512 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +838 -0
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +200 -252
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +178 -336
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +227 -2186
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +198 -74
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +433 -2805
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +783 -355
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +263 -243
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +112 -119
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3712 -0
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +8 -116
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
 - package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1137 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +776 -0
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → oracle/IOracleService.sol/IOracleService.json} +259 -186
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1029 -0
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
 - package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +295 -265
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1474 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +822 -0
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +250 -52
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +220 -364
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +451 -203
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
 - package/artifacts/contracts/pool/Pool.sol/Pool.json +1192 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1591 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +746 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +852 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
 - package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +360 -273
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1331 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +29 -139
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IClaimService.sol/IClaimService.json} +99 -280
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +795 -0
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +311 -182
 - package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +11 -61
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1239 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +972 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +766 -0
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
 - package/artifacts/contracts/product/Product.sol/Product.json +1212 -0
 - package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +183 -29
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -125
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +444 -44
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +367 -73
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +105 -54
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/Component.sol/Component.json +135 -145
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1680 -0
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +804 -0
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +27 -95
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +107 -107
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +711 -0
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +87 -9
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +17 -6
 - package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
 - package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
 - package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
 - package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +951 -0
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +15 -22
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +98 -26
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +23 -22
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +17 -6
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
 - package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1412 -0
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +387 -0
 - package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
 - package/artifacts/contracts/staking/Staking.sol/Staking.json +1941 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
 - package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
 - package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +222 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
 - package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
 - package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +39 -7
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
 - package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
 - package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
 - package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
 - package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
 - package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
 - package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
 - package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
 - package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
 - package/contracts/authorization/AccessAdmin.sol +591 -0
 - package/contracts/authorization/AccessManagerCloneable.sol +16 -0
 - package/contracts/authorization/Authorization.sol +217 -0
 - package/contracts/authorization/IAccess.sol +48 -0
 - package/contracts/authorization/IAccessAdmin.sol +136 -0
 - package/contracts/authorization/IAuthorization.sol +54 -0
 - package/contracts/authorization/IModuleAuthorization.sol +21 -0
 - package/contracts/authorization/IServiceAuthorization.sol +38 -0
 - package/contracts/authorization/ModuleAuthorization.sol +78 -0
 - package/contracts/authorization/ServiceAuthorization.sol +90 -0
 - package/contracts/distribution/BasicDistribution.sol +138 -0
 - package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
 - package/contracts/{components → distribution}/Distribution.sol +172 -161
 - package/contracts/distribution/DistributionService.sol +336 -0
 - package/contracts/distribution/DistributionServiceManager.sol +39 -0
 - package/contracts/distribution/IDistributionComponent.sol +52 -0
 - package/contracts/{instance/service → distribution}/IDistributionService.sol +40 -38
 - package/contracts/instance/{BundleManager.sol → BundleSet.sol} +27 -27
 - package/contracts/instance/IInstance.sol +54 -70
 - package/contracts/instance/IInstanceService.sol +51 -27
 - package/contracts/instance/Instance.sol +151 -207
 - package/contracts/instance/InstanceAdmin.sol +285 -0
 - package/contracts/instance/InstanceAuthorizationV3.sol +203 -0
 - package/contracts/instance/InstanceReader.sol +169 -64
 - package/contracts/instance/InstanceService.sol +310 -321
 - package/contracts/instance/InstanceServiceManager.sol +12 -26
 - package/contracts/instance/InstanceStore.sol +291 -0
 - package/contracts/instance/base/BalanceStore.sol +123 -0
 - package/contracts/instance/base/Cloneable.sol +28 -0
 - package/contracts/instance/base/ObjectCounter.sol +21 -0
 - package/contracts/instance/base/ObjectLifecycle.sol +110 -0
 - package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
 - package/contracts/instance/module/IAccess.sol +4 -12
 - package/contracts/instance/module/IBundle.sol +6 -9
 - package/contracts/instance/module/IComponents.sol +20 -15
 - package/contracts/instance/module/IDistribution.sol +6 -6
 - package/contracts/instance/module/IPolicy.sol +39 -32
 - package/contracts/instance/module/IRisk.sol +1 -1
 - package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
 - package/contracts/oracle/BasicOracle.sol +48 -0
 - package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
 - package/contracts/oracle/IOracle.sol +36 -0
 - package/contracts/oracle/IOracleComponent.sol +33 -0
 - package/contracts/oracle/IOracleService.sol +65 -0
 - package/contracts/oracle/Oracle.sol +166 -0
 - package/contracts/oracle/OracleService.sol +278 -0
 - package/contracts/oracle/OracleServiceManager.sol +39 -0
 - package/contracts/pool/BasicPool.sol +166 -0
 - package/contracts/pool/BasicPoolAuthorization.sol +58 -0
 - package/contracts/pool/BundleService.sol +438 -0
 - package/contracts/pool/BundleServiceManager.sol +39 -0
 - package/contracts/pool/IBundleService.sol +134 -0
 - package/contracts/pool/IPoolComponent.sol +58 -0
 - package/contracts/pool/IPoolService.sol +160 -0
 - package/contracts/pool/Pool.sol +326 -0
 - package/contracts/pool/PoolService.sol +509 -0
 - package/contracts/pool/PoolServiceManager.sol +39 -0
 - package/contracts/product/ApplicationService.sol +249 -0
 - package/contracts/{instance/service → product}/ApplicationServiceManager.sol +11 -8
 - package/contracts/product/BasicProduct.sol +52 -0
 - package/contracts/product/BasicProductAuthorization.sol +43 -0
 - package/contracts/product/ClaimService.sol +416 -0
 - package/contracts/{instance/service → product}/ClaimServiceManager.sol +11 -8
 - package/contracts/{instance/service → product}/IApplicationService.sol +14 -29
 - package/contracts/product/IClaimService.sol +100 -0
 - package/contracts/product/IPolicyService.sol +73 -0
 - package/contracts/product/IPricingService.sol +39 -0
 - package/contracts/product/IProductComponent.sol +39 -0
 - package/contracts/product/IProductService.sol +34 -0
 - package/contracts/product/PolicyService.sol +576 -0
 - package/contracts/product/PolicyServiceManager.sol +39 -0
 - package/contracts/product/PricingService.sol +301 -0
 - package/contracts/product/PricingServiceManager.sol +39 -0
 - package/contracts/{components → product}/Product.sol +180 -145
 - package/contracts/product/ProductService.sol +99 -0
 - package/contracts/product/ProductServiceManager.sol +39 -0
 - package/contracts/registry/ChainNft.sol +8 -1
 - package/contracts/registry/IRegistry.sol +60 -27
 - package/contracts/registry/IRegistryService.sol +42 -41
 - package/contracts/registry/Registry.sol +235 -126
 - package/contracts/registry/RegistryAdmin.sol +374 -0
 - package/contracts/registry/RegistryService.sol +69 -99
 - package/contracts/registry/RegistryServiceManager.sol +23 -32
 - package/contracts/registry/ReleaseLifecycle.sol +27 -0
 - package/contracts/registry/ReleaseRegistry.sol +485 -0
 - package/contracts/registry/ServiceAuthorizationV3.sol +199 -0
 - package/contracts/registry/TokenRegistry.sol +261 -62
 - package/contracts/shared/Component.sol +268 -0
 - package/contracts/shared/ComponentService.sol +641 -0
 - package/contracts/shared/ComponentServiceManager.sol +35 -0
 - package/contracts/shared/ComponentVerifyingService.sol +117 -0
 - package/contracts/shared/IComponent.sol +70 -0
 - package/contracts/shared/IComponentService.sol +108 -0
 - package/contracts/shared/IInstanceLinkedComponent.sol +56 -0
 - package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
 - package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
 - package/contracts/shared/INftOwnable.sol +2 -2
 - package/contracts/shared/IPolicyHolder.sol +29 -10
 - package/contracts/shared/IRegistryLinked.sol +0 -1
 - package/contracts/shared/IService.sol +12 -3
 - package/contracts/shared/InitializableCustom.sol +177 -0
 - package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +2 -2
 - package/contracts/shared/InstanceLinkedComponent.sol +172 -0
 - package/contracts/shared/KeyValueStore.sol +131 -0
 - package/contracts/shared/Lifecycle.sol +77 -0
 - package/contracts/shared/NftIdSet.sol +65 -0
 - package/contracts/shared/NftOwnable.sol +6 -19
 - package/contracts/shared/PolicyHolder.sol +41 -23
 - package/contracts/shared/Registerable.sol +13 -12
 - package/contracts/shared/RegistryLinked.sol +0 -5
 - package/contracts/shared/Service.sol +32 -22
 - package/contracts/shared/TokenHandler.sol +115 -9
 - package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
 - package/contracts/staking/IStaking.sol +167 -0
 - package/contracts/staking/IStakingService.sol +160 -0
 - package/contracts/staking/StakeManagerLib.sol +206 -0
 - package/contracts/staking/Staking.sol +497 -0
 - package/contracts/staking/StakingLifecycle.sol +23 -0
 - package/contracts/staking/StakingManager.sol +50 -0
 - package/contracts/staking/StakingReader.sol +183 -0
 - package/contracts/staking/StakingService.sol +407 -0
 - package/contracts/staking/StakingServiceManager.sol +44 -0
 - package/contracts/staking/StakingStore.sol +605 -0
 - package/contracts/staking/TargetManagerLib.sol +207 -0
 - package/contracts/{types → type}/AddressSet.sol +1 -1
 - package/contracts/{types → type}/Amount.sol +66 -1
 - package/contracts/{types → type}/Blocknumber.sol +26 -3
 - package/contracts/{types → type}/Fee.sol +24 -22
 - package/contracts/{types → type}/NftId.sol +14 -16
 - package/contracts/{types → type}/NftIdSet.sol +2 -2
 - package/contracts/type/ObjectType.sol +275 -0
 - package/contracts/{types → type}/Referral.sol +2 -1
 - package/contracts/type/RequestId.sol +75 -0
 - package/contracts/{types → type}/RiskId.sol +1 -1
 - package/contracts/type/RoleId.sol +174 -0
 - package/contracts/{types → type}/Seconds.sol +40 -1
 - package/contracts/type/Selector.sol +102 -0
 - package/contracts/{types → type}/StateId.sol +27 -2
 - package/contracts/type/String.sol +53 -0
 - package/contracts/{types → type}/Timestamp.sol +17 -3
 - package/contracts/{types → type}/UFixed.sol +34 -9
 - package/contracts/{types → type}/Version.sol +4 -2
 - package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
 - package/contracts/{shared → upgradeability}/ProxyManager.sol +36 -7
 - package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
 - package/contracts/{shared → upgradeability}/Versionable.sol +1 -1
 - package/package.json +8 -5
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1330
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1060
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -681
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1289
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -725
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -1040
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -685
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1774
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -793
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1543
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -741
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1449
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -709
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
 - package/artifacts/contracts/test/TestService.sol/TestService.json +0 -596
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
 - package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -209
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -179
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -209
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
 - package/contracts/components/Component.sol +0 -253
 - package/contracts/components/IComponent.sol +0 -76
 - package/contracts/components/IDistributionComponent.sol +0 -71
 - package/contracts/components/IPoolComponent.sol +0 -113
 - package/contracts/components/IProductComponent.sol +0 -40
 - package/contracts/components/Pool.sol +0 -302
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
 - package/contracts/instance/Cloneable.sol +0 -51
 - package/contracts/instance/InstanceAccessManager.sol +0 -527
 - package/contracts/instance/base/ComponentService.sol +0 -121
 - package/contracts/instance/base/KeyValueStore.sol +0 -180
 - package/contracts/instance/base/Lifecycle.sol +0 -117
 - package/contracts/instance/module/ISetup.sol +0 -33
 - package/contracts/instance/module/ITreasury.sol +0 -23
 - package/contracts/instance/service/ApplicationService.sol +0 -355
 - package/contracts/instance/service/BundleService.sol +0 -443
 - package/contracts/instance/service/BundleServiceManager.sol +0 -51
 - package/contracts/instance/service/ClaimService.sol +0 -239
 - package/contracts/instance/service/DistributionService.sol +0 -431
 - package/contracts/instance/service/DistributionServiceManager.sol +0 -51
 - package/contracts/instance/service/IBundleService.sol +0 -102
 - package/contracts/instance/service/IClaimService.sol +0 -92
 - package/contracts/instance/service/IPolicyService.sol +0 -139
 - package/contracts/instance/service/IPoolService.sol +0 -102
 - package/contracts/instance/service/IProductService.sol +0 -40
 - package/contracts/instance/service/PolicyService.sol +0 -571
 - package/contracts/instance/service/PolicyServiceManager.sol +0 -54
 - package/contracts/instance/service/PoolService.sol +0 -336
 - package/contracts/instance/service/PoolServiceManager.sol +0 -51
 - package/contracts/instance/service/ProductService.sol +0 -210
 - package/contracts/instance/service/ProductServiceManager.sol +0 -54
 - package/contracts/registry/RegistryAccessManager.sol +0 -216
 - package/contracts/registry/ReleaseManager.sol +0 -324
 - package/contracts/shared/ContractDeployerLib.sol +0 -72
 - package/contracts/test/TestFee.sol +0 -25
 - package/contracts/test/TestRegisterable.sol +0 -18
 - package/contracts/test/TestRoleId.sol +0 -14
 - package/contracts/test/TestService.sol +0 -25
 - package/contracts/test/TestToken.sol +0 -26
 - package/contracts/test/TestVersion.sol +0 -44
 - package/contracts/test/TestVersionable.sol +0 -17
 - package/contracts/types/ChainId.sol +0 -38
 - package/contracts/types/NumberId.sol +0 -52
 - package/contracts/types/ObjectType.sol +0 -157
 - package/contracts/types/RoleId.sol +0 -97
 - /package/contracts/{types → type}/ClaimId.sol +0 -0
 - /package/contracts/{types → type}/DistributorType.sol +0 -0
 - /package/contracts/{types → type}/Key32.sol +0 -0
 - /package/contracts/{types → type}/PayoutId.sol +0 -0
 
| 
         @@ -0,0 +1,1500 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "BasicDistribution",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/distribution/BasicDistribution.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 
     | 
    
         
            +
                  "name": "ErrorComponentNameLengthZero",
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 48 
     | 
    
         
            +
                },
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    }
         
     | 
| 
      
 56 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "name": "ErrorComponentNotChainNft",
         
     | 
| 
      
 58 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 59 
     | 
    
         
            +
                },
         
     | 
| 
      
 60 
     | 
    
         
            +
                {
         
     | 
| 
      
 61 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 62 
     | 
    
         
            +
                    {
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 65 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 66 
     | 
    
         
            +
                    }
         
     | 
| 
      
 67 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "name": "ErrorComponentNotInstance",
         
     | 
| 
      
 69 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 70 
     | 
    
         
            +
                },
         
     | 
| 
      
 71 
     | 
    
         
            +
                {
         
     | 
| 
      
 72 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 73 
     | 
    
         
            +
                    {
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 76 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 77 
     | 
    
         
            +
                    }
         
     | 
| 
      
 78 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "name": "ErrorComponentNotProductService",
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 81 
     | 
    
         
            +
                },
         
     | 
| 
      
 82 
     | 
    
         
            +
                {
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 86 
     | 
    
         
            +
                },
         
     | 
| 
      
 87 
     | 
    
         
            +
                {
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "name": "ErrorComponentTokenAddressZero",
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 91 
     | 
    
         
            +
                },
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 96 
     | 
    
         
            +
                },
         
     | 
| 
      
 97 
     | 
    
         
            +
                {
         
     | 
| 
      
 98 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressZero",
         
     | 
| 
      
 100 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 101 
     | 
    
         
            +
                },
         
     | 
| 
      
 102 
     | 
    
         
            +
                {
         
     | 
| 
      
 103 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "name": "ErrorComponentWalletNotComponent",
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 106 
     | 
    
         
            +
                },
         
     | 
| 
      
 107 
     | 
    
         
            +
                {
         
     | 
| 
      
 108 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 109 
     | 
    
         
            +
                    {
         
     | 
| 
      
 110 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "name": "distributor",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 113 
     | 
    
         
            +
                    },
         
     | 
| 
      
 114 
     | 
    
         
            +
                    {
         
     | 
| 
      
 115 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 116 
     | 
    
         
            +
                      "name": "distributorNftId",
         
     | 
| 
      
 117 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 118 
     | 
    
         
            +
                    }
         
     | 
| 
      
 119 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 120 
     | 
    
         
            +
                  "name": "ErrorDistributionAlreadyDistributor",
         
     | 
| 
      
 121 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 122 
     | 
    
         
            +
                },
         
     | 
| 
      
 123 
     | 
    
         
            +
                {
         
     | 
| 
      
 124 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 125 
     | 
    
         
            +
                    {
         
     | 
| 
      
 126 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 127 
     | 
    
         
            +
                      "name": "distributor",
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 129 
     | 
    
         
            +
                    }
         
     | 
| 
      
 130 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 131 
     | 
    
         
            +
                  "name": "ErrorDistributionNotDistributor",
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 133 
     | 
    
         
            +
                },
         
     | 
| 
      
 134 
     | 
    
         
            +
                {
         
     | 
| 
      
 135 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 136 
     | 
    
         
            +
                    {
         
     | 
| 
      
 137 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 138 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 139 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 140 
     | 
    
         
            +
                    }
         
     | 
| 
      
 141 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 142 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 143 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 144 
     | 
    
         
            +
                },
         
     | 
| 
      
 145 
     | 
    
         
            +
                {
         
     | 
| 
      
 146 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 147 
     | 
    
         
            +
                    {
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 151 
     | 
    
         
            +
                    }
         
     | 
| 
      
 152 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 153 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 155 
     | 
    
         
            +
                },
         
     | 
| 
      
 156 
     | 
    
         
            +
                {
         
     | 
| 
      
 157 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 158 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 159 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 160 
     | 
    
         
            +
                },
         
     | 
| 
      
 161 
     | 
    
         
            +
                {
         
     | 
| 
      
 162 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 163 
     | 
    
         
            +
                    {
         
     | 
| 
      
 164 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 165 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 166 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 167 
     | 
    
         
            +
                    }
         
     | 
| 
      
 168 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 169 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 170 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 171 
     | 
    
         
            +
                },
         
     | 
| 
      
 172 
     | 
    
         
            +
                {
         
     | 
| 
      
 173 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 174 
     | 
    
         
            +
                    {
         
     | 
| 
      
 175 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 176 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 177 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 178 
     | 
    
         
            +
                    }
         
     | 
| 
      
 179 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 181 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 182 
     | 
    
         
            +
                },
         
     | 
| 
      
 183 
     | 
    
         
            +
                {
         
     | 
| 
      
 184 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 185 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 186 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 187 
     | 
    
         
            +
                },
         
     | 
| 
      
 188 
     | 
    
         
            +
                {
         
     | 
| 
      
 189 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 190 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 191 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 192 
     | 
    
         
            +
                },
         
     | 
| 
      
 193 
     | 
    
         
            +
                {
         
     | 
| 
      
 194 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 195 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 196 
     | 
    
         
            +
                    {
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 200 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 201 
     | 
    
         
            +
                    }
         
     | 
| 
      
 202 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 203 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 204 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 205 
     | 
    
         
            +
                },
         
     | 
| 
      
 206 
     | 
    
         
            +
                {
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 208 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 209 
     | 
    
         
            +
                    {
         
     | 
| 
      
 210 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 213 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 214 
     | 
    
         
            +
                    }
         
     | 
| 
      
 215 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 216 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 217 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 218 
     | 
    
         
            +
                },
         
     | 
| 
      
 219 
     | 
    
         
            +
                {
         
     | 
| 
      
 220 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 221 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 222 
     | 
    
         
            +
                    {
         
     | 
| 
      
 223 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 224 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 225 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 226 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 227 
     | 
    
         
            +
                    },
         
     | 
| 
      
 228 
     | 
    
         
            +
                    {
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 230 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 231 
     | 
    
         
            +
                      "name": "limit",
         
     | 
| 
      
 232 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 233 
     | 
    
         
            +
                    }
         
     | 
| 
      
 234 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 235 
     | 
    
         
            +
                  "name": "LogComponentTokenHandlerApproved",
         
     | 
| 
      
 236 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 237 
     | 
    
         
            +
                },
         
     | 
| 
      
 238 
     | 
    
         
            +
                {
         
     | 
| 
      
 239 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 240 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 241 
     | 
    
         
            +
                    {
         
     | 
| 
      
 242 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 243 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 244 
     | 
    
         
            +
                      "name": "oldWallet",
         
     | 
| 
      
 245 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 246 
     | 
    
         
            +
                    },
         
     | 
| 
      
 247 
     | 
    
         
            +
                    {
         
     | 
| 
      
 248 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 249 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 250 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 251 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 252 
     | 
    
         
            +
                    }
         
     | 
| 
      
 253 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 254 
     | 
    
         
            +
                  "name": "LogComponentWalletAddressChanged",
         
     | 
| 
      
 255 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 256 
     | 
    
         
            +
                },
         
     | 
| 
      
 257 
     | 
    
         
            +
                {
         
     | 
| 
      
 258 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 259 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 260 
     | 
    
         
            +
                    {
         
     | 
| 
      
 261 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 262 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 263 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 264 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 265 
     | 
    
         
            +
                    },
         
     | 
| 
      
 266 
     | 
    
         
            +
                    {
         
     | 
| 
      
 267 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 268 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 269 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 270 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 271 
     | 
    
         
            +
                    },
         
     | 
| 
      
 272 
     | 
    
         
            +
                    {
         
     | 
| 
      
 273 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 274 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 275 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 276 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 277 
     | 
    
         
            +
                    }
         
     | 
| 
      
 278 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 279 
     | 
    
         
            +
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
      
 280 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 281 
     | 
    
         
            +
                },
         
     | 
| 
      
 282 
     | 
    
         
            +
                {
         
     | 
| 
      
 283 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 284 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 285 
     | 
    
         
            +
                    {
         
     | 
| 
      
 286 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 287 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 288 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 289 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 290 
     | 
    
         
            +
                    },
         
     | 
| 
      
 291 
     | 
    
         
            +
                    {
         
     | 
| 
      
 292 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 293 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 294 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 295 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 296 
     | 
    
         
            +
                    }
         
     | 
| 
      
 297 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 298 
     | 
    
         
            +
                  "name": "LogDistributorUpdated",
         
     | 
| 
      
 299 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 300 
     | 
    
         
            +
                },
         
     | 
| 
      
 301 
     | 
    
         
            +
                {
         
     | 
| 
      
 302 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 303 
     | 
    
         
            +
                  "name": "COMPONENT_LOCATION_V1",
         
     | 
| 
      
 304 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 305 
     | 
    
         
            +
                    {
         
     | 
| 
      
 306 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 307 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 308 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 309 
     | 
    
         
            +
                    }
         
     | 
| 
      
 310 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 311 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 312 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 313 
     | 
    
         
            +
                },
         
     | 
| 
      
 314 
     | 
    
         
            +
                {
         
     | 
| 
      
 315 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 316 
     | 
    
         
            +
                  "name": "DISTRIBUTION_STORAGE_LOCATION_V1",
         
     | 
| 
      
 317 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 318 
     | 
    
         
            +
                    {
         
     | 
| 
      
 319 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 320 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 321 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 322 
     | 
    
         
            +
                    }
         
     | 
| 
      
 323 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 324 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 325 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 326 
     | 
    
         
            +
                },
         
     | 
| 
      
 327 
     | 
    
         
            +
                {
         
     | 
| 
      
 328 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "name": "INSTANCE_LINKED_COMPONENT_LOCATION_V1",
         
     | 
| 
      
 330 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 331 
     | 
    
         
            +
                    {
         
     | 
| 
      
 332 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 333 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 334 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 335 
     | 
    
         
            +
                    }
         
     | 
| 
      
 336 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 337 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 338 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 339 
     | 
    
         
            +
                },
         
     | 
| 
      
 340 
     | 
    
         
            +
                {
         
     | 
| 
      
 341 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 342 
     | 
    
         
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         
     | 
| 
      
 343 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 344 
     | 
    
         
            +
                    {
         
     | 
| 
      
 345 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 346 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 347 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 348 
     | 
    
         
            +
                    }
         
     | 
| 
      
 349 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 350 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 351 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 352 
     | 
    
         
            +
                },
         
     | 
| 
      
 353 
     | 
    
         
            +
                {
         
     | 
| 
      
 354 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 355 
     | 
    
         
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
      
 356 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 357 
     | 
    
         
            +
                    {
         
     | 
| 
      
 358 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 359 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 360 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 361 
     | 
    
         
            +
                    }
         
     | 
| 
      
 362 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 363 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 364 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 365 
     | 
    
         
            +
                },
         
     | 
| 
      
 366 
     | 
    
         
            +
                {
         
     | 
| 
      
 367 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 368 
     | 
    
         
            +
                    {
         
     | 
| 
      
 369 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 370 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 371 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 372 
     | 
    
         
            +
                    },
         
     | 
| 
      
 373 
     | 
    
         
            +
                    {
         
     | 
| 
      
 374 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 375 
     | 
    
         
            +
                      "name": "spendingLimitAmount",
         
     | 
| 
      
 376 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 377 
     | 
    
         
            +
                    }
         
     | 
| 
      
 378 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 379 
     | 
    
         
            +
                  "name": "approveTokenHandler",
         
     | 
| 
      
 380 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 381 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 382 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 383 
     | 
    
         
            +
                },
         
     | 
| 
      
 384 
     | 
    
         
            +
                {
         
     | 
| 
      
 385 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 386 
     | 
    
         
            +
                    {
         
     | 
| 
      
 387 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 388 
     | 
    
         
            +
                      "name": "spendingLimitAmount",
         
     | 
| 
      
 389 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 390 
     | 
    
         
            +
                    }
         
     | 
| 
      
 391 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 392 
     | 
    
         
            +
                  "name": "approveTokenHandler",
         
     | 
| 
      
 393 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 394 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 395 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 396 
     | 
    
         
            +
                },
         
     | 
| 
      
 397 
     | 
    
         
            +
                {
         
     | 
| 
      
 398 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 399 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 400 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 401 
     | 
    
         
            +
                    {
         
     | 
| 
      
 402 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 403 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 404 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 405 
     | 
    
         
            +
                    }
         
     | 
| 
      
 406 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 407 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 408 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 409 
     | 
    
         
            +
                },
         
     | 
| 
      
 410 
     | 
    
         
            +
                {
         
     | 
| 
      
 411 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 412 
     | 
    
         
            +
                    {
         
     | 
| 
      
 413 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 414 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 415 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 416 
     | 
    
         
            +
                    },
         
     | 
| 
      
 417 
     | 
    
         
            +
                    {
         
     | 
| 
      
 418 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 419 
     | 
    
         
            +
                      "name": "netPremiumAmount",
         
     | 
| 
      
 420 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 421 
     | 
    
         
            +
                    }
         
     | 
| 
      
 422 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 423 
     | 
    
         
            +
                  "name": "calculateRenewalFeeAmount",
         
     | 
| 
      
 424 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 425 
     | 
    
         
            +
                    {
         
     | 
| 
      
 426 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 427 
     | 
    
         
            +
                      "name": "feeAmount",
         
     | 
| 
      
 428 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 429 
     | 
    
         
            +
                    }
         
     | 
| 
      
 430 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 432 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 433 
     | 
    
         
            +
                },
         
     | 
| 
      
 434 
     | 
    
         
            +
                {
         
     | 
| 
      
 435 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 436 
     | 
    
         
            +
                    {
         
     | 
| 
      
 437 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 438 
     | 
    
         
            +
                      "name": "distributor",
         
     | 
| 
      
 439 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 440 
     | 
    
         
            +
                    },
         
     | 
| 
      
 441 
     | 
    
         
            +
                    {
         
     | 
| 
      
 442 
     | 
    
         
            +
                      "internalType": "DistributorType",
         
     | 
| 
      
 443 
     | 
    
         
            +
                      "name": "distributorType",
         
     | 
| 
      
 444 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 445 
     | 
    
         
            +
                    },
         
     | 
| 
      
 446 
     | 
    
         
            +
                    {
         
     | 
| 
      
 447 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 448 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 449 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 450 
     | 
    
         
            +
                    }
         
     | 
| 
      
 451 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 452 
     | 
    
         
            +
                  "name": "createDistributor",
         
     | 
| 
      
 453 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 454 
     | 
    
         
            +
                    {
         
     | 
| 
      
 455 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 456 
     | 
    
         
            +
                      "name": "distributorNftId",
         
     | 
| 
      
 457 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 458 
     | 
    
         
            +
                    }
         
     | 
| 
      
 459 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 460 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 461 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 462 
     | 
    
         
            +
                },
         
     | 
| 
      
 463 
     | 
    
         
            +
                {
         
     | 
| 
      
 464 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 465 
     | 
    
         
            +
                    {
         
     | 
| 
      
 466 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 467 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 468 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 469 
     | 
    
         
            +
                    },
         
     | 
| 
      
 470 
     | 
    
         
            +
                    {
         
     | 
| 
      
 471 
     | 
    
         
            +
                      "internalType": "UFixed",
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "name": "minDiscountPercentage",
         
     | 
| 
      
 473 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 474 
     | 
    
         
            +
                    },
         
     | 
| 
      
 475 
     | 
    
         
            +
                    {
         
     | 
| 
      
 476 
     | 
    
         
            +
                      "internalType": "UFixed",
         
     | 
| 
      
 477 
     | 
    
         
            +
                      "name": "maxDiscountPercentage",
         
     | 
| 
      
 478 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 479 
     | 
    
         
            +
                    },
         
     | 
| 
      
 480 
     | 
    
         
            +
                    {
         
     | 
| 
      
 481 
     | 
    
         
            +
                      "internalType": "UFixed",
         
     | 
| 
      
 482 
     | 
    
         
            +
                      "name": "commissionPercentage",
         
     | 
| 
      
 483 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 484 
     | 
    
         
            +
                    },
         
     | 
| 
      
 485 
     | 
    
         
            +
                    {
         
     | 
| 
      
 486 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 487 
     | 
    
         
            +
                      "name": "maxReferralCount",
         
     | 
| 
      
 488 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 489 
     | 
    
         
            +
                    },
         
     | 
| 
      
 490 
     | 
    
         
            +
                    {
         
     | 
| 
      
 491 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 492 
     | 
    
         
            +
                      "name": "maxReferralLifetime",
         
     | 
| 
      
 493 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 494 
     | 
    
         
            +
                    },
         
     | 
| 
      
 495 
     | 
    
         
            +
                    {
         
     | 
| 
      
 496 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 497 
     | 
    
         
            +
                      "name": "allowSelfReferrals",
         
     | 
| 
      
 498 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 499 
     | 
    
         
            +
                    },
         
     | 
| 
      
 500 
     | 
    
         
            +
                    {
         
     | 
| 
      
 501 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 502 
     | 
    
         
            +
                      "name": "allowRenewals",
         
     | 
| 
      
 503 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 504 
     | 
    
         
            +
                    },
         
     | 
| 
      
 505 
     | 
    
         
            +
                    {
         
     | 
| 
      
 506 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 507 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 508 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 509 
     | 
    
         
            +
                    }
         
     | 
| 
      
 510 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 511 
     | 
    
         
            +
                  "name": "createDistributorType",
         
     | 
| 
      
 512 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 513 
     | 
    
         
            +
                    {
         
     | 
| 
      
 514 
     | 
    
         
            +
                      "internalType": "DistributorType",
         
     | 
| 
      
 515 
     | 
    
         
            +
                      "name": "distributorType",
         
     | 
| 
      
 516 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 517 
     | 
    
         
            +
                    }
         
     | 
| 
      
 518 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 519 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 520 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 521 
     | 
    
         
            +
                },
         
     | 
| 
      
 522 
     | 
    
         
            +
                {
         
     | 
| 
      
 523 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 524 
     | 
    
         
            +
                    {
         
     | 
| 
      
 525 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "name": "code",
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 528 
     | 
    
         
            +
                    },
         
     | 
| 
      
 529 
     | 
    
         
            +
                    {
         
     | 
| 
      
 530 
     | 
    
         
            +
                      "internalType": "UFixed",
         
     | 
| 
      
 531 
     | 
    
         
            +
                      "name": "discountPercentage",
         
     | 
| 
      
 532 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 533 
     | 
    
         
            +
                    },
         
     | 
| 
      
 534 
     | 
    
         
            +
                    {
         
     | 
| 
      
 535 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "name": "maxReferrals",
         
     | 
| 
      
 537 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 538 
     | 
    
         
            +
                    },
         
     | 
| 
      
 539 
     | 
    
         
            +
                    {
         
     | 
| 
      
 540 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 541 
     | 
    
         
            +
                      "name": "expiryAt",
         
     | 
| 
      
 542 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 543 
     | 
    
         
            +
                    },
         
     | 
| 
      
 544 
     | 
    
         
            +
                    {
         
     | 
| 
      
 545 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 546 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 547 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 548 
     | 
    
         
            +
                    }
         
     | 
| 
      
 549 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 550 
     | 
    
         
            +
                  "name": "createReferral",
         
     | 
| 
      
 551 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 552 
     | 
    
         
            +
                    {
         
     | 
| 
      
 553 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 554 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 555 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 556 
     | 
    
         
            +
                    }
         
     | 
| 
      
 557 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 558 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 559 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 560 
     | 
    
         
            +
                },
         
     | 
| 
      
 561 
     | 
    
         
            +
                {
         
     | 
| 
      
 562 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 563 
     | 
    
         
            +
                  "name": "getAuthorization",
         
     | 
| 
      
 564 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 565 
     | 
    
         
            +
                    {
         
     | 
| 
      
 566 
     | 
    
         
            +
                      "internalType": "contract IAuthorization",
         
     | 
| 
      
 567 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 568 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 569 
     | 
    
         
            +
                    }
         
     | 
| 
      
 570 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 571 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 572 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 573 
     | 
    
         
            +
                },
         
     | 
| 
      
 574 
     | 
    
         
            +
                {
         
     | 
| 
      
 575 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 576 
     | 
    
         
            +
                  "name": "getComponentInfo",
         
     | 
| 
      
 577 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 578 
     | 
    
         
            +
                    {
         
     | 
| 
      
 579 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 580 
     | 
    
         
            +
                        {
         
     | 
| 
      
 581 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 582 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 583 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 584 
     | 
    
         
            +
                        },
         
     | 
| 
      
 585 
     | 
    
         
            +
                        {
         
     | 
| 
      
 586 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 587 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 588 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 589 
     | 
    
         
            +
                        },
         
     | 
| 
      
 590 
     | 
    
         
            +
                        {
         
     | 
| 
      
 591 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 592 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 593 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 594 
     | 
    
         
            +
                        },
         
     | 
| 
      
 595 
     | 
    
         
            +
                        {
         
     | 
| 
      
 596 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 597 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 598 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 599 
     | 
    
         
            +
                        },
         
     | 
| 
      
 600 
     | 
    
         
            +
                        {
         
     | 
| 
      
 601 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 602 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 603 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 604 
     | 
    
         
            +
                        },
         
     | 
| 
      
 605 
     | 
    
         
            +
                        {
         
     | 
| 
      
 606 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 607 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 608 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 609 
     | 
    
         
            +
                        }
         
     | 
| 
      
 610 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 611 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 612 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 613 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 614 
     | 
    
         
            +
                    }
         
     | 
| 
      
 615 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 616 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 617 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 618 
     | 
    
         
            +
                },
         
     | 
| 
      
 619 
     | 
    
         
            +
                {
         
     | 
| 
      
 620 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 621 
     | 
    
         
            +
                    {
         
     | 
| 
      
 622 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 623 
     | 
    
         
            +
                      "name": "referralCode",
         
     | 
| 
      
 624 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 625 
     | 
    
         
            +
                    }
         
     | 
| 
      
 626 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 627 
     | 
    
         
            +
                  "name": "getDiscountPercentage",
         
     | 
| 
      
 628 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 629 
     | 
    
         
            +
                    {
         
     | 
| 
      
 630 
     | 
    
         
            +
                      "internalType": "UFixed",
         
     | 
| 
      
 631 
     | 
    
         
            +
                      "name": "discountPercentage",
         
     | 
| 
      
 632 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 633 
     | 
    
         
            +
                    },
         
     | 
| 
      
 634 
     | 
    
         
            +
                    {
         
     | 
| 
      
 635 
     | 
    
         
            +
                      "internalType": "ReferralStatus",
         
     | 
| 
      
 636 
     | 
    
         
            +
                      "name": "status",
         
     | 
| 
      
 637 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 638 
     | 
    
         
            +
                    }
         
     | 
| 
      
 639 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 640 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 641 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 642 
     | 
    
         
            +
                },
         
     | 
| 
      
 643 
     | 
    
         
            +
                {
         
     | 
| 
      
 644 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 645 
     | 
    
         
            +
                    {
         
     | 
| 
      
 646 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 647 
     | 
    
         
            +
                      "name": "distributor",
         
     | 
| 
      
 648 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 649 
     | 
    
         
            +
                    }
         
     | 
| 
      
 650 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 651 
     | 
    
         
            +
                  "name": "getDistributorNftId",
         
     | 
| 
      
 652 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 653 
     | 
    
         
            +
                    {
         
     | 
| 
      
 654 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 655 
     | 
    
         
            +
                      "name": "distributorNftId",
         
     | 
| 
      
 656 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 657 
     | 
    
         
            +
                    }
         
     | 
| 
      
 658 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 659 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 660 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 661 
     | 
    
         
            +
                },
         
     | 
| 
      
 662 
     | 
    
         
            +
                {
         
     | 
| 
      
 663 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 664 
     | 
    
         
            +
                  "name": "getInitialComponentInfo",
         
     | 
| 
      
 665 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 666 
     | 
    
         
            +
                    {
         
     | 
| 
      
 667 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 668 
     | 
    
         
            +
                        {
         
     | 
| 
      
 669 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 670 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 671 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 672 
     | 
    
         
            +
                        },
         
     | 
| 
      
 673 
     | 
    
         
            +
                        {
         
     | 
| 
      
 674 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 675 
     | 
    
         
            +
                          "name": "productNftId",
         
     | 
| 
      
 676 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 677 
     | 
    
         
            +
                        },
         
     | 
| 
      
 678 
     | 
    
         
            +
                        {
         
     | 
| 
      
 679 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 680 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 681 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 682 
     | 
    
         
            +
                        },
         
     | 
| 
      
 683 
     | 
    
         
            +
                        {
         
     | 
| 
      
 684 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 685 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 686 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 687 
     | 
    
         
            +
                        },
         
     | 
| 
      
 688 
     | 
    
         
            +
                        {
         
     | 
| 
      
 689 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 690 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 691 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 692 
     | 
    
         
            +
                        },
         
     | 
| 
      
 693 
     | 
    
         
            +
                        {
         
     | 
| 
      
 694 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 695 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 696 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 697 
     | 
    
         
            +
                        }
         
     | 
| 
      
 698 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 699 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 700 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 701 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 702 
     | 
    
         
            +
                    }
         
     | 
| 
      
 703 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 704 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 705 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 706 
     | 
    
         
            +
                },
         
     | 
| 
      
 707 
     | 
    
         
            +
                {
         
     | 
| 
      
 708 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 709 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 710 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 711 
     | 
    
         
            +
                    {
         
     | 
| 
      
 712 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 713 
     | 
    
         
            +
                        {
         
     | 
| 
      
 714 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 715 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 716 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 717 
     | 
    
         
            +
                        },
         
     | 
| 
      
 718 
     | 
    
         
            +
                        {
         
     | 
| 
      
 719 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 720 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 721 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 722 
     | 
    
         
            +
                        },
         
     | 
| 
      
 723 
     | 
    
         
            +
                        {
         
     | 
| 
      
 724 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 725 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 726 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 727 
     | 
    
         
            +
                        },
         
     | 
| 
      
 728 
     | 
    
         
            +
                        {
         
     | 
| 
      
 729 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 730 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 731 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 732 
     | 
    
         
            +
                        },
         
     | 
| 
      
 733 
     | 
    
         
            +
                        {
         
     | 
| 
      
 734 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 735 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 736 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 737 
     | 
    
         
            +
                        },
         
     | 
| 
      
 738 
     | 
    
         
            +
                        {
         
     | 
| 
      
 739 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 740 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 741 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 742 
     | 
    
         
            +
                        },
         
     | 
| 
      
 743 
     | 
    
         
            +
                        {
         
     | 
| 
      
 744 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 745 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 746 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 747 
     | 
    
         
            +
                        }
         
     | 
| 
      
 748 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 749 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 750 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 751 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 752 
     | 
    
         
            +
                    }
         
     | 
| 
      
 753 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 754 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 755 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 756 
     | 
    
         
            +
                },
         
     | 
| 
      
 757 
     | 
    
         
            +
                {
         
     | 
| 
      
 758 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 759 
     | 
    
         
            +
                  "name": "getInstance",
         
     | 
| 
      
 760 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 761 
     | 
    
         
            +
                    {
         
     | 
| 
      
 762 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 763 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 764 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 765 
     | 
    
         
            +
                    }
         
     | 
| 
      
 766 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 767 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 768 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 769 
     | 
    
         
            +
                },
         
     | 
| 
      
 770 
     | 
    
         
            +
                {
         
     | 
| 
      
 771 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 772 
     | 
    
         
            +
                  "name": "getName",
         
     | 
| 
      
 773 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 774 
     | 
    
         
            +
                    {
         
     | 
| 
      
 775 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 776 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 777 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 778 
     | 
    
         
            +
                    }
         
     | 
| 
      
 779 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 780 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 781 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 782 
     | 
    
         
            +
                },
         
     | 
| 
      
 783 
     | 
    
         
            +
                {
         
     | 
| 
      
 784 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 785 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 786 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 787 
     | 
    
         
            +
                    {
         
     | 
| 
      
 788 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 789 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 790 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 791 
     | 
    
         
            +
                    }
         
     | 
| 
      
 792 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 793 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 794 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 795 
     | 
    
         
            +
                },
         
     | 
| 
      
 796 
     | 
    
         
            +
                {
         
     | 
| 
      
 797 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 798 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 799 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 800 
     | 
    
         
            +
                    {
         
     | 
| 
      
 801 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 802 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 803 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 804 
     | 
    
         
            +
                    }
         
     | 
| 
      
 805 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 806 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 807 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 808 
     | 
    
         
            +
                },
         
     | 
| 
      
 809 
     | 
    
         
            +
                {
         
     | 
| 
      
 810 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 811 
     | 
    
         
            +
                  "name": "getProductNftId",
         
     | 
| 
      
 812 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 813 
     | 
    
         
            +
                    {
         
     | 
| 
      
 814 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 815 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 816 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 817 
     | 
    
         
            +
                    }
         
     | 
| 
      
 818 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 819 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 820 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 821 
     | 
    
         
            +
                },
         
     | 
| 
      
 822 
     | 
    
         
            +
                {
         
     | 
| 
      
 823 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 824 
     | 
    
         
            +
                    {
         
     | 
| 
      
 825 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 826 
     | 
    
         
            +
                      "name": "referralCode",
         
     | 
| 
      
 827 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 828 
     | 
    
         
            +
                    }
         
     | 
| 
      
 829 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 830 
     | 
    
         
            +
                  "name": "getReferralId",
         
     | 
| 
      
 831 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 832 
     | 
    
         
            +
                    {
         
     | 
| 
      
 833 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 834 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 835 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 836 
     | 
    
         
            +
                    }
         
     | 
| 
      
 837 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 838 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 839 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 840 
     | 
    
         
            +
                },
         
     | 
| 
      
 841 
     | 
    
         
            +
                {
         
     | 
| 
      
 842 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 843 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 844 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 845 
     | 
    
         
            +
                    {
         
     | 
| 
      
 846 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 847 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 848 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 849 
     | 
    
         
            +
                    }
         
     | 
| 
      
 850 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 851 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 852 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 853 
     | 
    
         
            +
                },
         
     | 
| 
      
 854 
     | 
    
         
            +
                {
         
     | 
| 
      
 855 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 856 
     | 
    
         
            +
                  "name": "getToken",
         
     | 
| 
      
 857 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 858 
     | 
    
         
            +
                    {
         
     | 
| 
      
 859 
     | 
    
         
            +
                      "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 860 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 861 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 862 
     | 
    
         
            +
                    }
         
     | 
| 
      
 863 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 864 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 865 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 866 
     | 
    
         
            +
                },
         
     | 
| 
      
 867 
     | 
    
         
            +
                {
         
     | 
| 
      
 868 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 869 
     | 
    
         
            +
                  "name": "getTokenHandler",
         
     | 
| 
      
 870 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 871 
     | 
    
         
            +
                    {
         
     | 
| 
      
 872 
     | 
    
         
            +
                      "internalType": "contract TokenHandler",
         
     | 
| 
      
 873 
     | 
    
         
            +
                      "name": "tokenHandler",
         
     | 
| 
      
 874 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 875 
     | 
    
         
            +
                    }
         
     | 
| 
      
 876 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 877 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 878 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 879 
     | 
    
         
            +
                },
         
     | 
| 
      
 880 
     | 
    
         
            +
                {
         
     | 
| 
      
 881 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 882 
     | 
    
         
            +
                  "name": "getWallet",
         
     | 
| 
      
 883 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 884 
     | 
    
         
            +
                    {
         
     | 
| 
      
 885 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 886 
     | 
    
         
            +
                      "name": "walletAddress",
         
     | 
| 
      
 887 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 888 
     | 
    
         
            +
                    }
         
     | 
| 
      
 889 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 890 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 891 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 892 
     | 
    
         
            +
                },
         
     | 
| 
      
 893 
     | 
    
         
            +
                {
         
     | 
| 
      
 894 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 895 
     | 
    
         
            +
                    {
         
     | 
| 
      
 896 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 897 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 898 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 899 
     | 
    
         
            +
                    },
         
     | 
| 
      
 900 
     | 
    
         
            +
                    {
         
     | 
| 
      
 901 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 902 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 903 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 904 
     | 
    
         
            +
                    },
         
     | 
| 
      
 905 
     | 
    
         
            +
                    {
         
     | 
| 
      
 906 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 907 
     | 
    
         
            +
                      "name": "parentNftId",
         
     | 
| 
      
 908 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 909 
     | 
    
         
            +
                    },
         
     | 
| 
      
 910 
     | 
    
         
            +
                    {
         
     | 
| 
      
 911 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 912 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 913 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 914 
     | 
    
         
            +
                    },
         
     | 
| 
      
 915 
     | 
    
         
            +
                    {
         
     | 
| 
      
 916 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 917 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 918 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 919 
     | 
    
         
            +
                    },
         
     | 
| 
      
 920 
     | 
    
         
            +
                    {
         
     | 
| 
      
 921 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 922 
     | 
    
         
            +
                      "name": "componentType",
         
     | 
| 
      
 923 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 924 
     | 
    
         
            +
                    },
         
     | 
| 
      
 925 
     | 
    
         
            +
                    {
         
     | 
| 
      
 926 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 927 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 928 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 929 
     | 
    
         
            +
                    },
         
     | 
| 
      
 930 
     | 
    
         
            +
                    {
         
     | 
| 
      
 931 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 932 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 933 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 934 
     | 
    
         
            +
                    },
         
     | 
| 
      
 935 
     | 
    
         
            +
                    {
         
     | 
| 
      
 936 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 937 
     | 
    
         
            +
                      "name": "registryData",
         
     | 
| 
      
 938 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 939 
     | 
    
         
            +
                    },
         
     | 
| 
      
 940 
     | 
    
         
            +
                    {
         
     | 
| 
      
 941 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 942 
     | 
    
         
            +
                      "name": "componentData",
         
     | 
| 
      
 943 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 944 
     | 
    
         
            +
                    }
         
     | 
| 
      
 945 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 946 
     | 
    
         
            +
                  "name": "initializeComponent",
         
     | 
| 
      
 947 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 948 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 949 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 950 
     | 
    
         
            +
                },
         
     | 
| 
      
 951 
     | 
    
         
            +
                {
         
     | 
| 
      
 952 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 953 
     | 
    
         
            +
                  "name": "initializeERC165",
         
     | 
| 
      
 954 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 955 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 956 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 957 
     | 
    
         
            +
                },
         
     | 
| 
      
 958 
     | 
    
         
            +
                {
         
     | 
| 
      
 959 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 960 
     | 
    
         
            +
                    {
         
     | 
| 
      
 961 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 962 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 963 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 964 
     | 
    
         
            +
                    },
         
     | 
| 
      
 965 
     | 
    
         
            +
                    {
         
     | 
| 
      
 966 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 967 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 968 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 969 
     | 
    
         
            +
                    }
         
     | 
| 
      
 970 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 971 
     | 
    
         
            +
                  "name": "initializeNftOwnable",
         
     | 
| 
      
 972 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 973 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 974 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 975 
     | 
    
         
            +
                },
         
     | 
| 
      
 976 
     | 
    
         
            +
                {
         
     | 
| 
      
 977 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 978 
     | 
    
         
            +
                    {
         
     | 
| 
      
 979 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 980 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 981 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 982 
     | 
    
         
            +
                    },
         
     | 
| 
      
 983 
     | 
    
         
            +
                    {
         
     | 
| 
      
 984 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 985 
     | 
    
         
            +
                      "name": "parentNftId",
         
     | 
| 
      
 986 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 987 
     | 
    
         
            +
                    },
         
     | 
| 
      
 988 
     | 
    
         
            +
                    {
         
     | 
| 
      
 989 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 990 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 991 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 992 
     | 
    
         
            +
                    },
         
     | 
| 
      
 993 
     | 
    
         
            +
                    {
         
     | 
| 
      
 994 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 995 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 996 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 997 
     | 
    
         
            +
                    },
         
     | 
| 
      
 998 
     | 
    
         
            +
                    {
         
     | 
| 
      
 999 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1000 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 1001 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1002 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1003 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1004 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 1005 
     | 
    
         
            +
                      "name": "registryData",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 1007 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1008 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1009 
     | 
    
         
            +
                  "name": "initializeRegisterable",
         
     | 
| 
      
 1010 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1011 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1012 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1013 
     | 
    
         
            +
                },
         
     | 
| 
      
 1014 
     | 
    
         
            +
                {
         
     | 
| 
      
 1015 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1016 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1017 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1018 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 1019 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1020 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1021 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1022 
     | 
    
         
            +
                  "name": "initializeRegistryLinked",
         
     | 
| 
      
 1023 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1024 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1025 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1026 
     | 
    
         
            +
                },
         
     | 
| 
      
 1027 
     | 
    
         
            +
                {
         
     | 
| 
      
 1028 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1029 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 1030 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1031 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1032 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1033 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1034 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1035 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1036 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1037 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1038 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1039 
     | 
    
         
            +
                },
         
     | 
| 
      
 1040 
     | 
    
         
            +
                {
         
     | 
| 
      
 1041 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1042 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1043 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1044 
     | 
    
         
            +
                      "name": "candidate",
         
     | 
| 
      
 1045 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1046 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1047 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1048 
     | 
    
         
            +
                  "name": "isDistributor",
         
     | 
| 
      
 1049 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1050 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1051 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1052 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1053 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1054 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1055 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1056 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1057 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1058 
     | 
    
         
            +
                },
         
     | 
| 
      
 1059 
     | 
    
         
            +
                {
         
     | 
| 
      
 1060 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1061 
     | 
    
         
            +
                  "name": "isNftInterceptor",
         
     | 
| 
      
 1062 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1063 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1064 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1065 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 1066 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1067 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1068 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1069 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1070 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1071 
     | 
    
         
            +
                },
         
     | 
| 
      
 1072 
     | 
    
         
            +
                {
         
     | 
| 
      
 1073 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1074 
     | 
    
         
            +
                  "name": "isRegistered",
         
     | 
| 
      
 1075 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1076 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1077 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1078 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1079 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1080 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1081 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1082 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1083 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1084 
     | 
    
         
            +
                },
         
     | 
| 
      
 1085 
     | 
    
         
            +
                {
         
     | 
| 
      
 1086 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1087 
     | 
    
         
            +
                  "name": "isVerifying",
         
     | 
| 
      
 1088 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1089 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1090 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1091 
     | 
    
         
            +
                      "name": "verifying",
         
     | 
| 
      
 1092 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1093 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1094 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1095 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 1096 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1097 
     | 
    
         
            +
                },
         
     | 
| 
      
 1098 
     | 
    
         
            +
                {
         
     | 
| 
      
 1099 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1100 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 1101 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1102 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1103 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1104 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 1105 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1106 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1107 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1108 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1109 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1110 
     | 
    
         
            +
                },
         
     | 
| 
      
 1111 
     | 
    
         
            +
                {
         
     | 
| 
      
 1112 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1113 
     | 
    
         
            +
                  "name": "lock",
         
     | 
| 
      
 1114 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1115 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1116 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1117 
     | 
    
         
            +
                },
         
     | 
| 
      
 1118 
     | 
    
         
            +
                {
         
     | 
| 
      
 1119 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1120 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1121 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1122 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 1123 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1124 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1125 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1126 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1127 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 1128 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1129 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1130 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1131 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
      
 1132 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1133 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1134 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1135 
     | 
    
         
            +
                },
         
     | 
| 
      
 1136 
     | 
    
         
            +
                {
         
     | 
| 
      
 1137 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1138 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1139 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1140 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 1141 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1142 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1143 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1144 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1145 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 1146 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1147 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1148 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1149 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1150 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 1151 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1152 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1153 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1154 
     | 
    
         
            +
                  "name": "nftTransferFrom",
         
     | 
| 
      
 1155 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1156 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1157 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1158 
     | 
    
         
            +
                },
         
     | 
| 
      
 1159 
     | 
    
         
            +
                {
         
     | 
| 
      
 1160 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1161 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1162 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 1163 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 1164 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 1165 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1166 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1167 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1168 
     | 
    
         
            +
                      "name": "feeAmount",
         
     | 
| 
      
 1169 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1170 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1171 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1172 
     | 
    
         
            +
                  "name": "processRenewal",
         
     | 
| 
      
 1173 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1174 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1175 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1176 
     | 
    
         
            +
                },
         
     | 
| 
      
 1177 
     | 
    
         
            +
                {
         
     | 
| 
      
 1178 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1179 
     | 
    
         
            +
                  "name": "register",
         
     | 
| 
      
 1180 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1181 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1182 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1183 
     | 
    
         
            +
                },
         
     | 
| 
      
 1184 
     | 
    
         
            +
                {
         
     | 
| 
      
 1185 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1186 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1187 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1188 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 1189 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1190 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1191 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1192 
     | 
    
         
            +
                  "name": "registerInterface",
         
     | 
| 
      
 1193 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1194 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1195 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1196 
     | 
    
         
            +
                },
         
     | 
| 
      
 1197 
     | 
    
         
            +
                {
         
     | 
| 
      
 1198 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1199 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1200 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1201 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 1202 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1203 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1204 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1205 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 1206 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1207 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1208 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1209 
     | 
    
         
            +
                },
         
     | 
| 
      
 1210 
     | 
    
         
            +
                {
         
     | 
| 
      
 1211 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1212 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1213 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1214 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1215 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1216 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 1217 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1218 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1219 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1220 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1221 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 1222 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1223 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1224 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1225 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 1226 
     | 
    
         
            +
                      "name": "distributionFee",
         
     | 
| 
      
 1227 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1228 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1229 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1230 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 1231 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1232 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 1233 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 1234 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1235 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1236 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1237 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 1238 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 1239 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 1240 
     | 
    
         
            +
                        }
         
     | 
| 
      
 1241 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 1242 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 1243 
     | 
    
         
            +
                      "name": "minDistributionOwnerFee",
         
     | 
| 
      
 1244 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 1245 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1246 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1247 
     | 
    
         
            +
                  "name": "setFees",
         
     | 
| 
      
 1248 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1249 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1250 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1251 
     | 
    
         
            +
                },
         
     | 
| 
      
 1252 
     | 
    
         
            +
                {
         
     | 
| 
      
 1253 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1254 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1255 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1256 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 1257 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1258 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1259 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1260 
     | 
    
         
            +
                  "name": "setWallet",
         
     | 
| 
      
 1261 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1262 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1263 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1264 
     | 
    
         
            +
                },
         
     | 
| 
      
 1265 
     | 
    
         
            +
                {
         
     | 
| 
      
 1266 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1267 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1268 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1269 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 1270 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1271 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1272 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1273 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 1274 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1275 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1276 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1277 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1278 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1279 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1280 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1281 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1282 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1283 
     | 
    
         
            +
                },
         
     | 
| 
      
 1284 
     | 
    
         
            +
                {
         
     | 
| 
      
 1285 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1286 
     | 
    
         
            +
                  "name": "unlock",
         
     | 
| 
      
 1287 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1288 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1289 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1290 
     | 
    
         
            +
                },
         
     | 
| 
      
 1291 
     | 
    
         
            +
                {
         
     | 
| 
      
 1292 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1293 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1294 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1295 
     | 
    
         
            +
                      "name": "distributorNftId",
         
     | 
| 
      
 1296 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1297 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1298 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1299 
     | 
    
         
            +
                      "internalType": "DistributorType",
         
     | 
| 
      
 1300 
     | 
    
         
            +
                      "name": "distributorType",
         
     | 
| 
      
 1301 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
      
 1302 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1303 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1304 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 1305 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 1306 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 1307 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1308 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1309 
     | 
    
         
            +
                  "name": "updateDistributorType",
         
     | 
| 
      
 1310 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1311 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1312 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1313 
     | 
    
         
            +
                },
         
     | 
| 
      
 1314 
     | 
    
         
            +
                {
         
     | 
| 
      
 1315 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1316 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1317 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1318 
     | 
    
         
            +
                      "name": "distributorNftId",
         
     | 
| 
      
 1319 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1320 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1321 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1322 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 1323 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 1324 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1325 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1326 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1327 
     | 
    
         
            +
                  "name": "withdrawCommission",
         
     | 
| 
      
 1328 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1329 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1330 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 1331 
     | 
    
         
            +
                      "name": "withdrawnAmount",
         
     | 
| 
      
 1332 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1333 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1334 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1335 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1336 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1337 
     | 
    
         
            +
                },
         
     | 
| 
      
 1338 
     | 
    
         
            +
                {
         
     | 
| 
      
 1339 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1340 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1341 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 1342 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 1343 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1344 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1345 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1346 
     | 
    
         
            +
                  "name": "withdrawFees",
         
     | 
| 
      
 1347 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1348 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1349 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 1350 
     | 
    
         
            +
                      "name": "withdrawnAmount",
         
     | 
| 
      
 1351 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1352 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1353 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1354 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1355 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1356 
     | 
    
         
            +
                }
         
     | 
| 
      
 1357 
     | 
    
         
            +
              ],
         
     | 
| 
      
 1358 
     | 
    
         
            +
              "bytecode": "0x6080604052348015600e575f80fd5b50613e888061001c5f395ff3fe608060405234801561000f575f80fd5b5060043610610318575f3560e01c80636bd1c0eb116101af578063bae99c99116100fe578063e7f7fb861161009e578063f7c34ee011610079578063f7c34ee014610708578063f80e20721461071b578063f83d08ba1461072e578063f8bf0d9f14610736575f80fd5b8063e7f7fb86146106cd578063ea15869f146106e0578063f5860e1a146106f4575f80fd5b8063d16d0fe8116100d9578063d16d0fe814610660578063de7b5d1414610673578063deaa59df14610690578063e145d46c146106a3575f80fd5b8063bae99c9914610632578063bb1e0e5914610645578063bf7e214f14610658575f80fd5b80638fb3603711610169578063ada9652e11610144578063ada9652e146105f0578063b2a6b42d14610604578063b423086c14610617578063b6b412ba1461061f575f80fd5b80638fb36037146105b257806390edbd35146105d3578063a69df4b5146105e8575f80fd5b80636bd1c0eb1461053a5780637427d7a81461056a5780637a9e5e4b1461057d57806387ef9ba014610590578063893d20e8146105975780638f0c86fa1461059f575f80fd5b806327bb7a331161026b57806343d752d3116102255780635ab1bd53116102005780635ab1bd53146104fb5780635dcb3bae1461050c578063644c45e01461051f578063675393bf14610527575f80fd5b806343d752d3146104d85780635741e5e9146104e057806359660bea146104e8575f80fd5b806327bb7a33146104575780632b5198b11461046a5780632eb3e6f41461049657806336fc697e146104aa5780633d683fd9146104b2578063419197fe146104c5575f80fd5b806317d7de7c116102d65780631eff4b22116102b15780631eff4b22146103ff578063214cdb801461043457806321df0da714610447578063223668441461044f575f80fd5b806317d7de7c146103cd5780631aa3a008146103e25780631c6b2190146103ec575f80fd5b806251884a1461031c57806301ffc9a71461034157806307e71a6e1461037d5780630fec111c1461039057806313299604146103a5578063138461e0146103c5575b5f80fd5b610324610749565b6040516001600160601b0390911681526020015b60405180910390f35b61036d61034f366004612ece565b6001600160e01b0319165f9081526020819052604090205460ff1690565b6040519015158152602001610338565b61032461038b366004612f14565b61075b565b610398610860565b6040516103389190612f79565b6103ad610a1e565b6040516001600160a01b039091168152602001610338565b610324610a30565b6103d5610a3f565b6040516103389190613005565b6103ea610a4f565b005b6103246103fa366004613017565b610afc565b6104267f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610338565b6103ea610442366004612ece565b610b52565b6103ad610b7e565b61036d610b90565b6103ea61046536600461318a565b610c86565b61047d610478366004613239565b610d2b565b6040516001600160c01b03199091168152602001610338565b6104265f80516020613e3383398151915281565b6103ea610d8f565b6103ea6104c036600461330f565b610dd4565b6103ea6104d336600461336c565b610e28565b6103ad610fe3565b61036d610ff5565b61047d6104f6366004613388565b6110a9565b6001546001600160a01b03166103ad565b61032461051a366004613421565b611100565b61032461115a565b6103ea61053536600461343e565b611175565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b03166103ad565b61047d610578366004613459565b611282565b6103ea61058b36600461343e565b611302565b600161036d565b6103ad611384565b61036d6105ad36600461343e565b6114b5565b6105ba61157a565b6040516001600160e01b03199091168152602001610338565b6105db6115af565b604051610338919061348a565b6103ea6115d4565b6104265f80516020613db383398151915281565b61032461061236600461343e565b611672565b6105db6116b4565b6103ea61062d366004613569565b6116c4565b6103ea610640366004613017565b611712565b6103ea61065336600461359c565b61175e565b6103ad611805565b61042661066e3660046135c6565b611820565b5f80516020613e33833981519152546001600160a01b03166103ad565b6103ea61069e36600461343e565b611834565b6106b66106b1366004613459565b611aaa565b6040805192835260ff909116602083015201610338565b6103ea6106db3660046135e2565b611b64565b6104265f80516020613dd383398151915281565b6104265f80516020613e1383398151915281565b6103ea610716366004613620565b611c0c565b6103ea6107293660046135c6565b611c82565b6103ea611c8b565b6103ea61074436600461364c565b611cff565b5f6107526115af565b60200151905090565b5f610768335b5f36611dfe565b610771336114b5565b6107955760405163637c41bb60e01b81523360048201526024015b60405180910390fd5b826107a86001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156107f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108199190613756565b6001600160a01b0316336001600160a01b03161461084c5760405163086391f760e31b815233600482015260240161078c565b6108568484611efc565b91505b5092915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610910573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610934919061377c565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161097c611384565b6001600160a01b0316815260200182600101805461099990613797565b80601f01602080910402602001604051908101604052809291908181526020018280546109c590613797565b8015610a105780601f106109e757610100808354040283529160200191610a10565b820191905f5260205f20905b8154815290600101906020018083116109f357829003601f168201915b505050505081525091505090565b5f610a276115af565b60800151905090565b5f610a3a30611f88565b905090565b6060610a496115af565b51919050565b610a57611384565b6001600160a01b0316336001600160a01b031614610a8a5760405163086391f760e31b815233600482015260240161078c565b5f80516020613e13833981519152546040805163be495be560e01b815290516001600160a01b039092169163be495be5916004808201925f9290919082900301818387803b158015610ada575f80fd5b505af1158015610aec573d5f803e3d5ffd5b50505050610afa5f1961217c565b565b5f610b05611384565b6001600160a01b0316336001600160a01b031614610b385760405163086391f760e31b815233600482015260240161078c565b610b4133610761565b610b4a826121fa565b90505b919050565b610b5a61227e565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f610b876115af565b60400151905090565b5f610ba36001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610be7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0b919061377c565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610c62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3a91906137da565b610c8e61227e565b610c988287611c0c565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610d218382613839565b5050505050505050565b5f610d34611384565b6001600160a01b0316336001600160a01b031614610d675760405163086391f760e31b815233600482015260240161078c565b610d7033610761565b610d818a8a8a8a8a8a8a8a8a6122cc565b9a9950505050505050505050565b610d9761227e565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610ddc611384565b6001600160a01b0316336001600160a01b031614610e0f5760405163086391f760e31b815233600482015260240161078c565b610e1833610761565b610e2383838361238b565b505050565b610e30611384565b6001600160a01b0316336001600160a01b031614610e635760405163086391f760e31b815233600482015260240161078c565b30610e6c610a1e565b6001600160a01b031614610e935760405163b6d7537f60e01b815260040160405180910390fd5b7ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610ebc610fe3565b604080516001600160a01b0390921682526001600160601b03841660208301520160405180910390a1816001600160a01b031663095ea7b3610efc610fe3565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610f52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7691906138f3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044015b6020604051808303815f875af1158015610fbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2391906137da565b5f610fec6115af565b60600151905090565b5f610ffe610b90565b15611079576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015611052573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610fec9190810190613964565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b5f6110b3336114b5565b6110d25760405163637c41bb60e01b815233600482015260240161078c565b6110db33610761565b5f6110e533611672565b90506110f58188888888886123a2565b979650505050505050565b5f611109611384565b6001600160a01b0316336001600160a01b03161461113c5760405163086391f760e31b815233600482015260240161078c565b61114533610761565b611150848484612458565b90505b9392505050565b5f80516020613db3833981519152546001600160601b031690565b61117d61227e565b806001600160a01b03163b5f036111b25760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078c565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152635e6bef4360e11b60048201526301ffc9a790602401602060405180830381865afa92505050801561122c575060408051601f3d908101601f19168201909252611229918101906137da565b60015b6112545760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078c565b8061127d5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161078c565b505b50565b5f73__$05887d5853069c88bcd4c0a2107db45f29$__633f093cd66112a561115a565b846040518363ffffffff1660e01b81526004016112c3929190613a34565b602060405180830381865af41580156112de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a9190613a55565b3361130b611805565b6001600160a01b0316816001600160a01b0316146113465760405162d1953b60e31b81526001600160a01b038216600482015260240161078c565b816001600160a01b03163b5f0361137b576040516361798f2f60e11b81526001600160a01b038316600482015260240161078c565b61127d8261261c565b5f805f80516020613db383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156113f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141491906137da565b1561149f576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611475573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114999190613756565b91505090565b54600160601b90046001600160a01b0316919050565b6001600160a01b0381165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f80516020613e138339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af4158015611556573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115391906137da565b5f80516020613df383398151915280545f9190600160a01b900460ff166115a1575f611499565b638fb3603760e01b91505090565b6115b7612e78565b6115bf610b90565b156115cc57610a3a61267c565b610a3a6116b4565b6115dc611384565b6001600160a01b0316336001600160a01b03161461160f5760405163086391f760e31b815233600482015260240161078c565b611619600a612843565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b15801561165a575f80fd5b505af115801561166c573d5f803e3d5ffd5b50505050565b6001600160a01b03165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90260205260409020546001600160601b031690565b6116bc612e78565b610a3a61267c565b6116cc611384565b6001600160a01b0316336001600160a01b0316146116ff5760405163086391f760e31b815233600482015260240161078c565b61170833610761565b61127d8282612944565b61171a611384565b6001600160a01b0316336001600160a01b03161461174d5760405163086391f760e31b815233600482015260240161078c565b61127f611758610b7e565b82610e28565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117c99190613756565b6001600160a01b0316336001600160a01b0316146117fb5760405162f0630960e01b815233600482015260240161078c565b61127d828261127d565b5f80516020613df3833981519152546001600160a01b031690565b5f61182b8282613a70565b90505b92915050565b61183c611384565b6001600160a01b0316336001600160a01b03161461186f5760405163086391f760e31b815233600482015260240161078c565b5f611878610a1e565b90505f611883610b7e565b6040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa1580156118c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ed91906138f3565b90506118f8836129ab565b8015610e2357604080516001600160a01b038085168252851660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a1306001600160a01b03831603611a5957611961610fe3565b6001600160a01b03166354f0d84c838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b81526004016119aa91815260200190565b602060405180830381865af41580156119c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e9919061377c565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526001600160601b031660448201526064015f604051808303815f87803b158015611a3e575f80fd5b505af1158015611a50573d5f803e3d5ffd5b50505050505050565b611a61610fe3565b6001600160a01b031663c7d63d57838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b81526004016119aa91815260200190565b5f805f611ab684611282565b9050611ae97fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b60405163b82d7ef560e01b81526001600160c01b0319831660048201526001600160a01b03919091169063b82d7ef5906024016040805180830381865afa158015611b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b5a9190613a93565b9250925050915091565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bcf9190613756565b6001600160a01b0316336001600160a01b031614611c015760405162f0630960e01b815233600482015260240161078c565b610e23838383612a44565b611c1461227e565b611c1d81611175565b611c25610d8f565b6001600160a01b038216611c4c5760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020613db383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61127d33610761565b611c93611384565b6001600160a01b0316336001600160a01b031614611cc65760405163086391f760e31b815233600482015260240161078c565b611cd0600a612843565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e90602401611643565b611d0761227e565b611d15898987878787610c86565b611d1e8a612bea565b6001600160a01b038616611d45576040516327eab2e360e11b815260040160405180910390fd5b86515f03611d665760405163591eebf360e11b815260040160405180910390fd5b5f80516020613dd383398151915280611d7f8982613839565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b8715150217905560038101611dd08382613839565b50611de1634a531f3360e01b610b52565b611df1632986755f60e11b610b52565b5050505050505050505050565b5f80516020613df38339815191525f80611e36611e19611805565b8730611e2860045f8a8c613ab7565b611e3191613ade565b612bfb565b9150915081611ef45763ffffffff811615611ed157825460ff60a01b1916600160a01b178355611e64611805565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611e9393929190613b14565b5f604051808303815f87803b158015611eaa575f80fd5b505af1158015611ebc573d5f803e3d5ffd5b5050845460ff60a01b1916855550611ef49050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161078c565b505050505050565b5f5f80516020613e13833981519152600101546040516303f38d3760e11b81526001600160601b038086166004830152841660248201526001600160a01b03909116906307e71a6e906044016020604051808303815f875af1158015611f64573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061182b919061377c565b5f805f80516020613db383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611ff4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201891906137da565b156120445780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161078c565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612096573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ba91906137da565b6120e25760405163b9304b0d60e01b81526001600160a01b038416600482015260240161078c565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612134573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612158919061377c565b81546001600160601b0319166001600160601b039190911690811790915592915050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f01545f80516020613dd3833981519152906001600160a01b031663095ea7b36121c36115af565b606001516040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052604401610fa3565b5f5f80516020613e33833981519152600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af115801561225a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a919061377c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610afa57604051631afcd79f60e31b815260040160405180910390fd5b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051632b5198b160e01b81525f915f80516020613e13833981519152916001600160a01b0390911690632b5198b19061233c908e908e908e908e908e908e908e908e908e90600401613b53565b6020604051808303815f875af1158015612358573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061237c9190613a55565b9b9a5050505050505050505050565b5f5f80516020613e138339815191525b5050505050565b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051638dd2b78160e01b81525f915f80516020613e13833981519152916001600160a01b0390911690638dd2b7819061240c908b908b908b908b908b908b90600401613bc4565b6020604051808303815f875af1158015612428573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061244c9190613a55565b98975050505050505050565b6001600160a01b0383165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f80516020613e138339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af41580156124f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061251d91906137da565b15612568576001600160a01b0385165f8181526002830160205260409081902054905163d56c930160e01b815260048101929092526001600160601b0316602482015260440161078c565b6001810154604051632ee59dd760e11b81526001600160a01b0390911690635dcb3bae9061259e90889088908890600401613c23565b6020604051808303815f875af11580156125ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125de919061377c565b6001600160a01b039095165f90815260029091016020526040902080546001600160601b0386166001600160601b0319909116179055509192915050565b5f80516020613df383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612684612e78565b5f6126976001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156126db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126ff919061377c565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612758573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061277c91906137da565b1561283b577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031663f0ea17c36127b961115a565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa1580156127fa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526128219190810190613c56565b60808101519092506001600160a01b03161561283b575090565b611499612d03565b5f805f80516020613e338339815191525460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015612899573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128bd9190613d2e565b90506128d16001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa158015612920573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111539190613756565b5f80516020613e1383398151915254604051631bd44bf760e11b81526001600160a01b03909116906337a897ee906129829085908590600401613d49565b5f604051808303815f87803b158015612999575f80fd5b505af1158015611ef4573d5f803e3d5ffd5b6129b3611384565b6001600160a01b0316336001600160a01b0316146129e65760405163086391f760e31b815233600482015260240161078c565b6129f0600b612843565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015612a32575f80fd5b505af115801561239b573d5f803e3d5ffd5b604080516001600160a01b03841681523360208201527f04d7077d43765a828a5b0398e13ddca074c675aba69101b22c5d0176d8689434910160405180910390a15f5f80516020613e13833981519152905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612add573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b01919061377c565b6001600160a01b0385165f9081526002830160205260409081902080546001600160601b0319166001600160601b0393909316929092179091555163efac97cf60e01b81526004810183905273__$94a2c899be079b00d952d0d84fffaa5c34$__9063efac97cf90602401602060405180830381865af4158015612b87573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bab919061377c565b6001600160a01b03939093165f9081526002919091016020526040902080546001600160601b0319166001600160601b03909316929092179091555050565b612bf261227e565b61127f81612e67565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612c699190613d6f565b5f60405180830381855afa9150503d805f8114612ca1576040519150601f19603f3d011682016040523d82523d5f602084013e612ca6565b606091505b50915091508115612cf8576040815110612cd85780806020019051810190612cce9190613d85565b9094509250612cf8565b6020815110612cf85780806020019051810190612cf591906137da565b93505b505094509492505050565b612d0b612e78565b5f5f80516020613dd383398151915290506040518060c00160405280825f018054612d3590613797565b80601f0160208091040260200160405190810160405280929190818152602001828054612d6190613797565b8015612dac5780601f10612d8357610100808354040283529160200191612dac565b820191905f5260205f20905b815481529060010190602001808311612d8f57829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612dfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e21919061377c565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161099990613797565b612e6f61227e565b61127f8161261c565b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215612ede575f80fd5b81356001600160e01b031981168114611153575f80fd5b6001600160601b038116811461127f575f80fd5b8035610b4d81612ef5565b5f8060408385031215612f25575f80fd5b8235612f3081612ef5565b91506020830135612f4081612ef5565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151612fc1608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152610856610100840182612f4b565b602081525f61182b6020830184612f4b565b5f60208284031215613027575f80fd5b813561115381612ef5565b6001600160a01b038116811461127f575f80fd5b8035610b4d81613032565b60ff8116811461127f575f80fd5b8035610b4d81613051565b801515811461127f575f80fd5b8035610b4d8161306a565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156130b8576130b8613082565b60405290565b60405160c081016001600160401b03811182821017156130b8576130b8613082565b604051601f8201601f191681016001600160401b038111828210171561310857613108613082565b604052919050565b5f6001600160401b0382111561312857613128613082565b50601f01601f191660200190565b5f82601f830112613145575f80fd5b8135602083015f61315d61315884613110565b6130e0565b9050828152858383011115613170575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c0878903121561319f575f80fd5b86356131aa81613032565b955060208701356131ba81612ef5565b945060408701356131ca81613051565b935060608701356131da8161306a565b925060808701356131ea81613032565b915060a08701356001600160401b03811115613204575f80fd5b61321089828a01613136565b9150509295509295509295565b63ffffffff8116811461127f575f80fd5b8035610b4d8161321d565b5f805f805f805f805f6101208a8c031215613252575f80fd5b89356001600160401b03811115613267575f80fd5b6132738c828d01613136565b99505060208a0135975060408a0135965060608a0135955060808a01356132998161321d565b94506132a760a08b0161322e565b93506132b560c08b01613077565b92506132c360e08b01613077565b91506101008a01356001600160401b038111156132de575f80fd5b6132ea8c828d01613136565b9150509295985092959850929598565b6001600160c01b03198116811461127f575f80fd5b5f805f60608486031215613321575f80fd5b833561332c81612ef5565b9250602084013561333c816132fa565b915060408401356001600160401b03811115613356575f80fd5b61336286828701613136565b9150509250925092565b5f806040838503121561337d575f80fd5b8235612f3081613032565b5f805f805f60a0868803121561339c575f80fd5b85356001600160401b038111156133b1575f80fd5b6133bd88828901613136565b9550506020860135935060408601356133d58161321d565b9250606086013564ffffffffff811681146133ee575f80fd5b915060808601356001600160401b03811115613408575f80fd5b61341488828901613136565b9150509295509295909350565b5f805f60608486031215613433575f80fd5b833561332c81613032565b5f6020828403121561344e575f80fd5b813561115381613032565b5f60208284031215613469575f80fd5b81356001600160401b0381111561347e575f80fd5b61085684828501613136565b602081525f825160c060208401526134a560e0840182612f4b565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b03606085015116608084015260808401516134f860a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526135148282612f4b565b95945050505050565b5f6040828403121561352d575f80fd5b604080519081016001600160401b038111828210171561354f5761354f613082565b604052823581526020928301359281019290925250919050565b5f806080838503121561357a575f80fd5b613584848461351d565b9150613593846040850161351d565b90509250929050565b5f80604083850312156135ad575f80fd5b82356135b881613032565b946020939093013593505050565b5f80604083850312156135d7575f80fd5b82356135b8816132fa565b5f805f606084860312156135f4575f80fd5b83356135ff81613032565b9250602084013561360f81613032565b929592945050506040919091013590565b5f8060408385031215613631575f80fd5b823561363c81613032565b91506020830135612f4081613032565b5f805f805f805f805f806101408b8d031215613666575f80fd5b61366f8b613046565b995061367d60208c01613046565b985061368b60408c01612f09565b975060608b01356001600160401b038111156136a5575f80fd5b6136b18d828e01613136565b9750506136c060808c01613046565b95506136ce60a08c0161305f565b94506136dc60c08c01613077565b93506136ea60e08c01613046565b92506101008b01356001600160401b03811115613705575f80fd5b6137118d828e01613136565b9250506101208b01356001600160401b0381111561372d575f80fd5b6137398d828e01613136565b9150509295989b9194979a5092959850565b8051610b4d81613032565b5f60208284031215613766575f80fd5b815161115381613032565b8051610b4d81612ef5565b5f6020828403121561378c575f80fd5b815161115381612ef5565b600181811c908216806137ab57607f821691505b6020821081036137c957634e487b7160e01b5f52602260045260245ffd5b50919050565b8051610b4d8161306a565b5f602082840312156137ea575f80fd5b81516111538161306a565b601f821115610e2357805f5260205f20601f840160051c8101602085101561381a5750805b601f840160051c820191505b8181101561239b575f8155600101613826565b81516001600160401b0381111561385257613852613082565b613866816138608454613797565b846137f5565b6020601f821160018114613898575f83156138815750848201515b5f19600385901b1c1916600184901b17845561239b565b5f84815260208120601f198516915b828110156138c757878501518255602094850194600190920191016138a7565b50848210156138e457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215613903575f80fd5b5051919050565b8051610b4d81613051565b5f82601f830112613924575f80fd5b8151602083015f61393761315884613110565b905082815285838301111561394a575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215613974575f80fd5b81516001600160401b03811115613989575f80fd5b820160e0818503121561399a575f80fd5b6139a2613096565b6139ab82613771565b81526139b960208301613771565b60208201526139ca6040830161390a565b60408201526139db606083016137cf565b60608201526139ec6080830161374b565b60808201526139fd60a0830161374b565b60a082015260c08201516001600160401b03811115613a1a575f80fd5b613a2686828501613915565b60c083015250949350505050565b6001600160601b0383168152604060208201525f6111506040830184612f4b565b5f60208284031215613a65575f80fd5b8151611153816132fa565b808202811582820484141761182e57634e487b7160e01b5f52601160045260245ffd5b5f8060408385031215613aa4575f80fd5b82516020840151909250612f4081613051565b5f8085851115613ac5575f80fd5b83861115613ad1575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015610859576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b61012081525f613b6761012083018c612f4b565b8a602084015289604084015288606084015263ffffffff8816608084015263ffffffff871660a084015285151560c084015284151560e0840152828103610100840152613bb48185612f4b565b9c9b505050505050505050505050565b6001600160601b038716815260c060208201525f613be560c0830188612f4b565b86604084015263ffffffff8616606084015264ffffffffff8516608084015282810360a0840152613c168185612f4b565b9998505050505050505050565b6001600160a01b03841681526001600160c01b0319831660208201526060604082018190525f9061351490830184612f4b565b5f60208284031215613c66575f80fd5b81516001600160401b03811115613c7b575f80fd5b820160c08185031215613c8c575f80fd5b613c946130be565b81516001600160401b03811115613ca9575f80fd5b613cb586828501613915565b825250613cc460208301613771565b6020820152613cd56040830161374b565b6040820152613ce66060830161374b565b6060820152613cf76080830161374b565b608082015260a08201516001600160401b03811115613d14575f80fd5b613d2086828501613915565b60a083015250949350505050565b5f60208284031215613d3e575f80fd5b815161115381613051565b825181526020808401518183015282516040830152820151606082015260808101611153565b5f82518060208501845e5f920191825250919050565b5f8060408385031215613d96575f80fd5b8251613da18161306a565b6020840151909250612f408161321d56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00ffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00aab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f900ffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00a26469706673582212203f8e3cfe1a779817370cdbebeb44744330612657bfca1c2c854449ce404bb5d564736f6c634300081a0033",
         
     | 
| 
      
 1359 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610318575f3560e01c80636bd1c0eb116101af578063bae99c99116100fe578063e7f7fb861161009e578063f7c34ee011610079578063f7c34ee014610708578063f80e20721461071b578063f83d08ba1461072e578063f8bf0d9f14610736575f80fd5b8063e7f7fb86146106cd578063ea15869f146106e0578063f5860e1a146106f4575f80fd5b8063d16d0fe8116100d9578063d16d0fe814610660578063de7b5d1414610673578063deaa59df14610690578063e145d46c146106a3575f80fd5b8063bae99c9914610632578063bb1e0e5914610645578063bf7e214f14610658575f80fd5b80638fb3603711610169578063ada9652e11610144578063ada9652e146105f0578063b2a6b42d14610604578063b423086c14610617578063b6b412ba1461061f575f80fd5b80638fb36037146105b257806390edbd35146105d3578063a69df4b5146105e8575f80fd5b80636bd1c0eb1461053a5780637427d7a81461056a5780637a9e5e4b1461057d57806387ef9ba014610590578063893d20e8146105975780638f0c86fa1461059f575f80fd5b806327bb7a331161026b57806343d752d3116102255780635ab1bd53116102005780635ab1bd53146104fb5780635dcb3bae1461050c578063644c45e01461051f578063675393bf14610527575f80fd5b806343d752d3146104d85780635741e5e9146104e057806359660bea146104e8575f80fd5b806327bb7a33146104575780632b5198b11461046a5780632eb3e6f41461049657806336fc697e146104aa5780633d683fd9146104b2578063419197fe146104c5575f80fd5b806317d7de7c116102d65780631eff4b22116102b15780631eff4b22146103ff578063214cdb801461043457806321df0da714610447578063223668441461044f575f80fd5b806317d7de7c146103cd5780631aa3a008146103e25780631c6b2190146103ec575f80fd5b806251884a1461031c57806301ffc9a71461034157806307e71a6e1461037d5780630fec111c1461039057806313299604146103a5578063138461e0146103c5575b5f80fd5b610324610749565b6040516001600160601b0390911681526020015b60405180910390f35b61036d61034f366004612ece565b6001600160e01b0319165f9081526020819052604090205460ff1690565b6040519015158152602001610338565b61032461038b366004612f14565b61075b565b610398610860565b6040516103389190612f79565b6103ad610a1e565b6040516001600160a01b039091168152602001610338565b610324610a30565b6103d5610a3f565b6040516103389190613005565b6103ea610a4f565b005b6103246103fa366004613017565b610afc565b6104267f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610338565b6103ea610442366004612ece565b610b52565b6103ad610b7e565b61036d610b90565b6103ea61046536600461318a565b610c86565b61047d610478366004613239565b610d2b565b6040516001600160c01b03199091168152602001610338565b6104265f80516020613e3383398151915281565b6103ea610d8f565b6103ea6104c036600461330f565b610dd4565b6103ea6104d336600461336c565b610e28565b6103ad610fe3565b61036d610ff5565b61047d6104f6366004613388565b6110a9565b6001546001600160a01b03166103ad565b61032461051a366004613421565b611100565b61032461115a565b6103ea61053536600461343e565b611175565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b03166103ad565b61047d610578366004613459565b611282565b6103ea61058b36600461343e565b611302565b600161036d565b6103ad611384565b61036d6105ad36600461343e565b6114b5565b6105ba61157a565b6040516001600160e01b03199091168152602001610338565b6105db6115af565b604051610338919061348a565b6103ea6115d4565b6104265f80516020613db383398151915281565b61032461061236600461343e565b611672565b6105db6116b4565b6103ea61062d366004613569565b6116c4565b6103ea610640366004613017565b611712565b6103ea61065336600461359c565b61175e565b6103ad611805565b61042661066e3660046135c6565b611820565b5f80516020613e33833981519152546001600160a01b03166103ad565b6103ea61069e36600461343e565b611834565b6106b66106b1366004613459565b611aaa565b6040805192835260ff909116602083015201610338565b6103ea6106db3660046135e2565b611b64565b6104265f80516020613dd383398151915281565b6104265f80516020613e1383398151915281565b6103ea610716366004613620565b611c0c565b6103ea6107293660046135c6565b611c82565b6103ea611c8b565b6103ea61074436600461364c565b611cff565b5f6107526115af565b60200151905090565b5f610768335b5f36611dfe565b610771336114b5565b6107955760405163637c41bb60e01b81523360048201526024015b60405180910390fd5b826107a86001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156107f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108199190613756565b6001600160a01b0316336001600160a01b03161461084c5760405163086391f760e31b815233600482015260240161078c565b6108568484611efc565b91505b5092915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610910573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610934919061377c565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161097c611384565b6001600160a01b0316815260200182600101805461099990613797565b80601f01602080910402602001604051908101604052809291908181526020018280546109c590613797565b8015610a105780601f106109e757610100808354040283529160200191610a10565b820191905f5260205f20905b8154815290600101906020018083116109f357829003601f168201915b505050505081525091505090565b5f610a276115af565b60800151905090565b5f610a3a30611f88565b905090565b6060610a496115af565b51919050565b610a57611384565b6001600160a01b0316336001600160a01b031614610a8a5760405163086391f760e31b815233600482015260240161078c565b5f80516020613e13833981519152546040805163be495be560e01b815290516001600160a01b039092169163be495be5916004808201925f9290919082900301818387803b158015610ada575f80fd5b505af1158015610aec573d5f803e3d5ffd5b50505050610afa5f1961217c565b565b5f610b05611384565b6001600160a01b0316336001600160a01b031614610b385760405163086391f760e31b815233600482015260240161078c565b610b4133610761565b610b4a826121fa565b90505b919050565b610b5a61227e565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f610b876115af565b60400151905090565b5f610ba36001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610be7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0b919061377c565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610c62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a3a91906137da565b610c8e61227e565b610c988287611c0c565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610d218382613839565b5050505050505050565b5f610d34611384565b6001600160a01b0316336001600160a01b031614610d675760405163086391f760e31b815233600482015260240161078c565b610d7033610761565b610d818a8a8a8a8a8a8a8a8a6122cc565b9a9950505050505050505050565b610d9761227e565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610ddc611384565b6001600160a01b0316336001600160a01b031614610e0f5760405163086391f760e31b815233600482015260240161078c565b610e1833610761565b610e2383838361238b565b505050565b610e30611384565b6001600160a01b0316336001600160a01b031614610e635760405163086391f760e31b815233600482015260240161078c565b30610e6c610a1e565b6001600160a01b031614610e935760405163b6d7537f60e01b815260040160405180910390fd5b7ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610ebc610fe3565b604080516001600160a01b0390921682526001600160601b03841660208301520160405180910390a1816001600160a01b031663095ea7b3610efc610fe3565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610f52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f7691906138f3565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044015b6020604051808303815f875af1158015610fbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2391906137da565b5f610fec6115af565b60600151905090565b5f610ffe610b90565b15611079576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015611052573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610fec9190810190613964565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b5f6110b3336114b5565b6110d25760405163637c41bb60e01b815233600482015260240161078c565b6110db33610761565b5f6110e533611672565b90506110f58188888888886123a2565b979650505050505050565b5f611109611384565b6001600160a01b0316336001600160a01b03161461113c5760405163086391f760e31b815233600482015260240161078c565b61114533610761565b611150848484612458565b90505b9392505050565b5f80516020613db3833981519152546001600160601b031690565b61117d61227e565b806001600160a01b03163b5f036111b25760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078c565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152635e6bef4360e11b60048201526301ffc9a790602401602060405180830381865afa92505050801561122c575060408051601f3d908101601f19168201909252611229918101906137da565b60015b6112545760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078c565b8061127d5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161078c565b505b50565b5f73__$05887d5853069c88bcd4c0a2107db45f29$__633f093cd66112a561115a565b846040518363ffffffff1660e01b81526004016112c3929190613a34565b602060405180830381865af41580156112de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a9190613a55565b3361130b611805565b6001600160a01b0316816001600160a01b0316146113465760405162d1953b60e31b81526001600160a01b038216600482015260240161078c565b816001600160a01b03163b5f0361137b576040516361798f2f60e11b81526001600160a01b038316600482015260240161078c565b61127d8261261c565b5f805f80516020613db383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156113f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141491906137da565b1561149f576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611475573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114999190613756565b91505090565b54600160601b90046001600160a01b0316919050565b6001600160a01b0381165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f80516020613e138339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af4158015611556573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115391906137da565b5f80516020613df383398151915280545f9190600160a01b900460ff166115a1575f611499565b638fb3603760e01b91505090565b6115b7612e78565b6115bf610b90565b156115cc57610a3a61267c565b610a3a6116b4565b6115dc611384565b6001600160a01b0316336001600160a01b03161461160f5760405163086391f760e31b815233600482015260240161078c565b611619600a612843565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b15801561165a575f80fd5b505af115801561166c573d5f803e3d5ffd5b50505050565b6001600160a01b03165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90260205260409020546001600160601b031690565b6116bc612e78565b610a3a61267c565b6116cc611384565b6001600160a01b0316336001600160a01b0316146116ff5760405163086391f760e31b815233600482015260240161078c565b61170833610761565b61127d8282612944565b61171a611384565b6001600160a01b0316336001600160a01b03161461174d5760405163086391f760e31b815233600482015260240161078c565b61127f611758610b7e565b82610e28565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117c99190613756565b6001600160a01b0316336001600160a01b0316146117fb5760405162f0630960e01b815233600482015260240161078c565b61127d828261127d565b5f80516020613df3833981519152546001600160a01b031690565b5f61182b8282613a70565b90505b92915050565b61183c611384565b6001600160a01b0316336001600160a01b03161461186f5760405163086391f760e31b815233600482015260240161078c565b5f611878610a1e565b90505f611883610b7e565b6040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa1580156118c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ed91906138f3565b90506118f8836129ab565b8015610e2357604080516001600160a01b038085168252851660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a1306001600160a01b03831603611a5957611961610fe3565b6001600160a01b03166354f0d84c838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b81526004016119aa91815260200190565b602060405180830381865af41580156119c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e9919061377c565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526001600160601b031660448201526064015f604051808303815f87803b158015611a3e575f80fd5b505af1158015611a50573d5f803e3d5ffd5b50505050505050565b611a61610fe3565b6001600160a01b031663c7d63d57838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b81526004016119aa91815260200190565b5f805f611ab684611282565b9050611ae97fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b60405163b82d7ef560e01b81526001600160c01b0319831660048201526001600160a01b03919091169063b82d7ef5906024016040805180830381865afa158015611b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b5a9190613a93565b9250925050915091565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bcf9190613756565b6001600160a01b0316336001600160a01b031614611c015760405162f0630960e01b815233600482015260240161078c565b610e23838383612a44565b611c1461227e565b611c1d81611175565b611c25610d8f565b6001600160a01b038216611c4c5760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020613db383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61127d33610761565b611c93611384565b6001600160a01b0316336001600160a01b031614611cc65760405163086391f760e31b815233600482015260240161078c565b611cd0600a612843565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e90602401611643565b611d0761227e565b611d15898987878787610c86565b611d1e8a612bea565b6001600160a01b038616611d45576040516327eab2e360e11b815260040160405180910390fd5b86515f03611d665760405163591eebf360e11b815260040160405180910390fd5b5f80516020613dd383398151915280611d7f8982613839565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b8715150217905560038101611dd08382613839565b50611de1634a531f3360e01b610b52565b611df1632986755f60e11b610b52565b5050505050505050505050565b5f80516020613df38339815191525f80611e36611e19611805565b8730611e2860045f8a8c613ab7565b611e3191613ade565b612bfb565b9150915081611ef45763ffffffff811615611ed157825460ff60a01b1916600160a01b178355611e64611805565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611e9393929190613b14565b5f604051808303815f87803b158015611eaa575f80fd5b505af1158015611ebc573d5f803e3d5ffd5b5050845460ff60a01b1916855550611ef49050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161078c565b505050505050565b5f5f80516020613e13833981519152600101546040516303f38d3760e11b81526001600160601b038086166004830152841660248201526001600160a01b03909116906307e71a6e906044016020604051808303815f875af1158015611f64573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061182b919061377c565b5f805f80516020613db383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611ff4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201891906137da565b156120445780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161078c565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612096573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ba91906137da565b6120e25760405163b9304b0d60e01b81526001600160a01b038416600482015260240161078c565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612134573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612158919061377c565b81546001600160601b0319166001600160601b039190911690811790915592915050565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f01545f80516020613dd3833981519152906001600160a01b031663095ea7b36121c36115af565b606001516040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101859052604401610fa3565b5f5f80516020613e33833981519152600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af115801561225a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4a919061377c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610afa57604051631afcd79f60e31b815260040160405180910390fd5b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051632b5198b160e01b81525f915f80516020613e13833981519152916001600160a01b0390911690632b5198b19061233c908e908e908e908e908e908e908e908e908e90600401613b53565b6020604051808303815f875af1158015612358573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061237c9190613a55565b9b9a5050505050505050505050565b5f5f80516020613e138339815191525b5050505050565b7faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f90154604051638dd2b78160e01b81525f915f80516020613e13833981519152916001600160a01b0390911690638dd2b7819061240c908b908b908b908b908b908b90600401613bc4565b6020604051808303815f875af1158015612428573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061244c9190613a55565b98975050505050505050565b6001600160a01b0383165f9081527faab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f902602090815260408083205481516330b8415f60e01b81526001600160601b03909116600482015290515f80516020613e138339815191529273__$94a2c899be079b00d952d0d84fffaa5c34$__926330b8415f92602480830193928290030181865af41580156124f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061251d91906137da565b15612568576001600160a01b0385165f8181526002830160205260409081902054905163d56c930160e01b815260048101929092526001600160601b0316602482015260440161078c565b6001810154604051632ee59dd760e11b81526001600160a01b0390911690635dcb3bae9061259e90889088908890600401613c23565b6020604051808303815f875af11580156125ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125de919061377c565b6001600160a01b039095165f90815260029091016020526040902080546001600160601b0386166001600160601b0319909116179055509192915050565b5f80516020613df383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612684612e78565b5f6126976001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156126db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126ff919061377c565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612758573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061277c91906137da565b1561283b577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031663f0ea17c36127b961115a565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa1580156127fa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526128219190810190613c56565b60808101519092506001600160a01b03161561283b575090565b611499612d03565b5f805f80516020613e338339815191525460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015612899573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128bd9190613d2e565b90506128d16001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa158015612920573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111539190613756565b5f80516020613e1383398151915254604051631bd44bf760e11b81526001600160a01b03909116906337a897ee906129829085908590600401613d49565b5f604051808303815f87803b158015612999575f80fd5b505af1158015611ef4573d5f803e3d5ffd5b6129b3611384565b6001600160a01b0316336001600160a01b0316146129e65760405163086391f760e31b815233600482015260240161078c565b6129f0600b612843565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015612a32575f80fd5b505af115801561239b573d5f803e3d5ffd5b604080516001600160a01b03841681523360208201527f04d7077d43765a828a5b0398e13ddca074c675aba69101b22c5d0176d8689434910160405180910390a15f5f80516020613e13833981519152905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612add573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b01919061377c565b6001600160a01b0385165f9081526002830160205260409081902080546001600160601b0319166001600160601b0393909316929092179091555163efac97cf60e01b81526004810183905273__$94a2c899be079b00d952d0d84fffaa5c34$__9063efac97cf90602401602060405180830381865af4158015612b87573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bab919061377c565b6001600160a01b03939093165f9081526002919091016020526040902080546001600160601b0319166001600160601b03909316929092179091555050565b612bf261227e565b61127f81612e67565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612c699190613d6f565b5f60405180830381855afa9150503d805f8114612ca1576040519150601f19603f3d011682016040523d82523d5f602084013e612ca6565b606091505b50915091508115612cf8576040815110612cd85780806020019051810190612cce9190613d85565b9094509250612cf8565b6020815110612cf85780806020019051810190612cf591906137da565b93505b505094509492505050565b612d0b612e78565b5f5f80516020613dd383398151915290506040518060c00160405280825f018054612d3590613797565b80601f0160208091040260200160405190810160405280929190818152602001828054612d6190613797565b8015612dac5780601f10612d8357610100808354040283529160200191612dac565b820191905f5260205f20905b815481529060010190602001808311612d8f57829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612dfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e21919061377c565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161099990613797565b612e6f61227e565b61127f8161261c565b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215612ede575f80fd5b81356001600160e01b031981168114611153575f80fd5b6001600160601b038116811461127f575f80fd5b8035610b4d81612ef5565b5f8060408385031215612f25575f80fd5b8235612f3081612ef5565b91506020830135612f4081612ef5565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151612fc1608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152610856610100840182612f4b565b602081525f61182b6020830184612f4b565b5f60208284031215613027575f80fd5b813561115381612ef5565b6001600160a01b038116811461127f575f80fd5b8035610b4d81613032565b60ff8116811461127f575f80fd5b8035610b4d81613051565b801515811461127f575f80fd5b8035610b4d8161306a565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156130b8576130b8613082565b60405290565b60405160c081016001600160401b03811182821017156130b8576130b8613082565b604051601f8201601f191681016001600160401b038111828210171561310857613108613082565b604052919050565b5f6001600160401b0382111561312857613128613082565b50601f01601f191660200190565b5f82601f830112613145575f80fd5b8135602083015f61315d61315884613110565b6130e0565b9050828152858383011115613170575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c0878903121561319f575f80fd5b86356131aa81613032565b955060208701356131ba81612ef5565b945060408701356131ca81613051565b935060608701356131da8161306a565b925060808701356131ea81613032565b915060a08701356001600160401b03811115613204575f80fd5b61321089828a01613136565b9150509295509295509295565b63ffffffff8116811461127f575f80fd5b8035610b4d8161321d565b5f805f805f805f805f6101208a8c031215613252575f80fd5b89356001600160401b03811115613267575f80fd5b6132738c828d01613136565b99505060208a0135975060408a0135965060608a0135955060808a01356132998161321d565b94506132a760a08b0161322e565b93506132b560c08b01613077565b92506132c360e08b01613077565b91506101008a01356001600160401b038111156132de575f80fd5b6132ea8c828d01613136565b9150509295985092959850929598565b6001600160c01b03198116811461127f575f80fd5b5f805f60608486031215613321575f80fd5b833561332c81612ef5565b9250602084013561333c816132fa565b915060408401356001600160401b03811115613356575f80fd5b61336286828701613136565b9150509250925092565b5f806040838503121561337d575f80fd5b8235612f3081613032565b5f805f805f60a0868803121561339c575f80fd5b85356001600160401b038111156133b1575f80fd5b6133bd88828901613136565b9550506020860135935060408601356133d58161321d565b9250606086013564ffffffffff811681146133ee575f80fd5b915060808601356001600160401b03811115613408575f80fd5b61341488828901613136565b9150509295509295909350565b5f805f60608486031215613433575f80fd5b833561332c81613032565b5f6020828403121561344e575f80fd5b813561115381613032565b5f60208284031215613469575f80fd5b81356001600160401b0381111561347e575f80fd5b61085684828501613136565b602081525f825160c060208401526134a560e0840182612f4b565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b03606085015116608084015260808401516134f860a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526135148282612f4b565b95945050505050565b5f6040828403121561352d575f80fd5b604080519081016001600160401b038111828210171561354f5761354f613082565b604052823581526020928301359281019290925250919050565b5f806080838503121561357a575f80fd5b613584848461351d565b9150613593846040850161351d565b90509250929050565b5f80604083850312156135ad575f80fd5b82356135b881613032565b946020939093013593505050565b5f80604083850312156135d7575f80fd5b82356135b8816132fa565b5f805f606084860312156135f4575f80fd5b83356135ff81613032565b9250602084013561360f81613032565b929592945050506040919091013590565b5f8060408385031215613631575f80fd5b823561363c81613032565b91506020830135612f4081613032565b5f805f805f805f805f806101408b8d031215613666575f80fd5b61366f8b613046565b995061367d60208c01613046565b985061368b60408c01612f09565b975060608b01356001600160401b038111156136a5575f80fd5b6136b18d828e01613136565b9750506136c060808c01613046565b95506136ce60a08c0161305f565b94506136dc60c08c01613077565b93506136ea60e08c01613046565b92506101008b01356001600160401b03811115613705575f80fd5b6137118d828e01613136565b9250506101208b01356001600160401b0381111561372d575f80fd5b6137398d828e01613136565b9150509295989b9194979a5092959850565b8051610b4d81613032565b5f60208284031215613766575f80fd5b815161115381613032565b8051610b4d81612ef5565b5f6020828403121561378c575f80fd5b815161115381612ef5565b600181811c908216806137ab57607f821691505b6020821081036137c957634e487b7160e01b5f52602260045260245ffd5b50919050565b8051610b4d8161306a565b5f602082840312156137ea575f80fd5b81516111538161306a565b601f821115610e2357805f5260205f20601f840160051c8101602085101561381a5750805b601f840160051c820191505b8181101561239b575f8155600101613826565b81516001600160401b0381111561385257613852613082565b613866816138608454613797565b846137f5565b6020601f821160018114613898575f83156138815750848201515b5f19600385901b1c1916600184901b17845561239b565b5f84815260208120601f198516915b828110156138c757878501518255602094850194600190920191016138a7565b50848210156138e457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215613903575f80fd5b5051919050565b8051610b4d81613051565b5f82601f830112613924575f80fd5b8151602083015f61393761315884613110565b905082815285838301111561394a575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215613974575f80fd5b81516001600160401b03811115613989575f80fd5b820160e0818503121561399a575f80fd5b6139a2613096565b6139ab82613771565b81526139b960208301613771565b60208201526139ca6040830161390a565b60408201526139db606083016137cf565b60608201526139ec6080830161374b565b60808201526139fd60a0830161374b565b60a082015260c08201516001600160401b03811115613a1a575f80fd5b613a2686828501613915565b60c083015250949350505050565b6001600160601b0383168152604060208201525f6111506040830184612f4b565b5f60208284031215613a65575f80fd5b8151611153816132fa565b808202811582820484141761182e57634e487b7160e01b5f52601160045260245ffd5b5f8060408385031215613aa4575f80fd5b82516020840151909250612f4081613051565b5f8085851115613ac5575f80fd5b83861115613ad1575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015610859576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b61012081525f613b6761012083018c612f4b565b8a602084015289604084015288606084015263ffffffff8816608084015263ffffffff871660a084015285151560c084015284151560e0840152828103610100840152613bb48185612f4b565b9c9b505050505050505050505050565b6001600160601b038716815260c060208201525f613be560c0830188612f4b565b86604084015263ffffffff8616606084015264ffffffffff8516608084015282810360a0840152613c168185612f4b565b9998505050505050505050565b6001600160a01b03841681526001600160c01b0319831660208201526060604082018190525f9061351490830184612f4b565b5f60208284031215613c66575f80fd5b81516001600160401b03811115613c7b575f80fd5b820160c08185031215613c8c575f80fd5b613c946130be565b81516001600160401b03811115613ca9575f80fd5b613cb586828501613915565b825250613cc460208301613771565b6020820152613cd56040830161374b565b6040820152613ce66060830161374b565b6060820152613cf76080830161374b565b608082015260a08201516001600160401b03811115613d14575f80fd5b613d2086828501613915565b60a083015250949350505050565b5f60208284031215613d3e575f80fd5b815161115381613051565b825181526020808401518183015282516040830152820151606082015260808101611153565b5f82518060208501845e5f920191825250919050565b5f8060408385031215613d96575f80fd5b8251613da18161306a565b6020840151909250612f408161321d56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00ffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00aab7c5ea03d290056d6c060e0833d3ebcbe647f7694616a2ec52738a64b2f900ffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00a26469706673582212203f8e3cfe1a779817370cdbebeb44744330612657bfca1c2c854449ce404bb5d564736f6c634300081a0033",
         
     | 
| 
      
 1360 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 1361 
     | 
    
         
            +
                "contracts/type/Amount.sol": {
         
     | 
| 
      
 1362 
     | 
    
         
            +
                  "AmountLib": [
         
     | 
| 
      
 1363 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1364 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1365 
     | 
    
         
            +
                      "start": 3894
         
     | 
| 
      
 1366 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1367 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1368 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1369 
     | 
    
         
            +
                      "start": 6543
         
     | 
| 
      
 1370 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1371 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1372 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1373 
     | 
    
         
            +
                      "start": 6799
         
     | 
| 
      
 1374 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1375 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1376 
     | 
    
         
            +
                },
         
     | 
| 
      
 1377 
     | 
    
         
            +
                "contracts/type/NftId.sol": {
         
     | 
| 
      
 1378 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1379 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1380 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1381 
     | 
    
         
            +
                      "start": 2279
         
     | 
| 
      
 1382 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1383 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1384 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1385 
     | 
    
         
            +
                      "start": 3142
         
     | 
| 
      
 1386 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1387 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1388 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1389 
     | 
    
         
            +
                      "start": 5076
         
     | 
| 
      
 1390 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1391 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1392 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1393 
     | 
    
         
            +
                      "start": 5434
         
     | 
| 
      
 1394 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1395 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1396 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1397 
     | 
    
         
            +
                      "start": 8152
         
     | 
| 
      
 1398 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1399 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1400 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1401 
     | 
    
         
            +
                      "start": 9437
         
     | 
| 
      
 1402 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1403 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1404 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1405 
     | 
    
         
            +
                      "start": 10044
         
     | 
| 
      
 1406 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1407 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1408 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1409 
     | 
    
         
            +
                      "start": 10932
         
     | 
| 
      
 1410 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1411 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1412 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1413 
     | 
    
         
            +
                      "start": 11115
         
     | 
| 
      
 1414 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1415 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1416 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1417 
     | 
    
         
            +
                      "start": 11732
         
     | 
| 
      
 1418 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1419 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1420 
     | 
    
         
            +
                },
         
     | 
| 
      
 1421 
     | 
    
         
            +
                "contracts/type/Referral.sol": {
         
     | 
| 
      
 1422 
     | 
    
         
            +
                  "ReferralLib": [
         
     | 
| 
      
 1423 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1424 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1425 
     | 
    
         
            +
                      "start": 4769
         
     | 
| 
      
 1426 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1427 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1428 
     | 
    
         
            +
                }
         
     | 
| 
      
 1429 
     | 
    
         
            +
              },
         
     | 
| 
      
 1430 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 1431 
     | 
    
         
            +
                "contracts/type/Amount.sol": {
         
     | 
| 
      
 1432 
     | 
    
         
            +
                  "AmountLib": [
         
     | 
| 
      
 1433 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1434 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1435 
     | 
    
         
            +
                      "start": 3866
         
     | 
| 
      
 1436 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1437 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1438 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1439 
     | 
    
         
            +
                      "start": 6515
         
     | 
| 
      
 1440 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1441 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1442 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1443 
     | 
    
         
            +
                      "start": 6771
         
     | 
| 
      
 1444 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1445 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1446 
     | 
    
         
            +
                },
         
     | 
| 
      
 1447 
     | 
    
         
            +
                "contracts/type/NftId.sol": {
         
     | 
| 
      
 1448 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1449 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1450 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1451 
     | 
    
         
            +
                      "start": 2251
         
     | 
| 
      
 1452 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1453 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1454 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1455 
     | 
    
         
            +
                      "start": 3114
         
     | 
| 
      
 1456 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1457 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1458 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1459 
     | 
    
         
            +
                      "start": 5048
         
     | 
| 
      
 1460 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1461 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1462 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1463 
     | 
    
         
            +
                      "start": 5406
         
     | 
| 
      
 1464 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1465 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1466 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1467 
     | 
    
         
            +
                      "start": 8124
         
     | 
| 
      
 1468 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1469 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1470 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1471 
     | 
    
         
            +
                      "start": 9409
         
     | 
| 
      
 1472 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1473 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1474 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1475 
     | 
    
         
            +
                      "start": 10016
         
     | 
| 
      
 1476 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1477 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1478 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1479 
     | 
    
         
            +
                      "start": 10904
         
     | 
| 
      
 1480 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1481 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1482 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1483 
     | 
    
         
            +
                      "start": 11087
         
     | 
| 
      
 1484 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1485 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1486 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1487 
     | 
    
         
            +
                      "start": 11704
         
     | 
| 
      
 1488 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1489 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1490 
     | 
    
         
            +
                },
         
     | 
| 
      
 1491 
     | 
    
         
            +
                "contracts/type/Referral.sol": {
         
     | 
| 
      
 1492 
     | 
    
         
            +
                  "ReferralLib": [
         
     | 
| 
      
 1493 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1494 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1495 
     | 
    
         
            +
                      "start": 4741
         
     | 
| 
      
 1496 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1497 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1498 
     | 
    
         
            +
                }
         
     | 
| 
      
 1499 
     | 
    
         
            +
              }
         
     | 
| 
      
 1500 
     | 
    
         
            +
            }
         
     |