@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f36fd21-685
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 +38 -86
- 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 +1548 -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 +233 -318
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1557 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +854 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +282 -208
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +233 -301
- 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 +272 -1967
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +269 -79
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +397 -2762
- 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 -332
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +352 -225
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +115 -82
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3581 -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 +10 -118
- 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 +1185 -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 +802 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1093 -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/pool/BasicPool.sol/BasicPool.json +1520 -0
- 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 +1300 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +786 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +314 -139
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +299 -251
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/Pool.sol/Pool.json +270 -314
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1318 -0
- 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 +1315 -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/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +174 -202
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +733 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +146 -153
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +985 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +80 -64
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1196 -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 +1017 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/{components → product}/Product.sol/Product.json +357 -238
- 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 +182 -28
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
- 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 +443 -43
- 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 +372 -97
- 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 +144 -80
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1696 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -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} +100 -113
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +180 -54
- 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/{components/IProductComponent.sol/IProductComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +205 -198
- 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 +96 -19
- 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 +1015 -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 +103 -21
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +60 -6
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -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 +470 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -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 +198 -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 +33 -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 +218 -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 +177 -162
- package/contracts/distribution/DistributionService.sol +337 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/{instance/service → distribution}/IDistributionService.sol +37 -38
- package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
- package/contracts/instance/IInstance.sol +55 -67
- package/contracts/instance/IInstanceService.sol +50 -30
- package/contracts/instance/Instance.sol +160 -233
- package/contracts/instance/InstanceAdmin.sol +266 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +173 -58
- package/contracts/instance/InstanceService.sol +281 -333
- package/contracts/instance/InstanceServiceManager.sol +12 -26
- package/contracts/instance/InstanceStore.sol +277 -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 +106 -0
- package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
- package/contracts/instance/module/IAccess.sol +5 -13
- package/contracts/instance/module/IBundle.sol +8 -9
- package/contracts/instance/module/IComponents.sol +21 -5
- package/contracts/instance/module/IDistribution.sol +6 -6
- package/contracts/instance/module/IPolicy.sol +28 -16
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
- 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 +164 -0
- package/contracts/pool/BasicPoolAuthorization.sol +55 -0
- package/contracts/pool/BundleService.sol +341 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +120 -0
- package/contracts/pool/IPoolComponent.sol +58 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +328 -0
- package/contracts/pool/PoolService.sol +434 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +230 -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 +417 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +11 -8
- package/contracts/{instance/service → product}/IApplicationService.sol +15 -35
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/{instance/service → product}/IPolicyService.sol +38 -30
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +40 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +499 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/{components → product}/Product.sol +218 -110
- 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 +59 -26
- package/contracts/registry/IRegistryService.sol +44 -42
- package/contracts/registry/Registry.sol +234 -125
- package/contracts/registry/RegistryAdmin.sol +365 -0
- package/contracts/registry/RegistryService.sol +70 -101
- 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 +200 -0
- package/contracts/registry/TokenRegistry.sol +261 -62
- package/contracts/shared/Component.sol +280 -0
- package/contracts/shared/ComponentService.sol +651 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/{components → shared}/IComponent.sol +23 -27
- 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 +15 -8
- 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 +5 -18
- 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 +47 -23
- package/contracts/shared/TokenHandler.sol +27 -2
- package/contracts/staking/IStaking.sol +167 -0
- package/contracts/staking/IStakingService.sol +160 -0
- package/contracts/staking/StakeManagerLib.sol +231 -0
- package/contracts/staking/Staking.sol +516 -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 +411 -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/type/Amount.sol +135 -0
- package/contracts/{types → type}/Blocknumber.sol +20 -3
- package/contracts/{types → type}/ClaimId.sol +25 -2
- package/contracts/{types → type}/Fee.sol +33 -24
- package/contracts/{types → type}/NftId.sol +14 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +271 -0
- package/contracts/{types → type}/PayoutId.sol +33 -5
- 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 +27 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +33 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +10 -1
- 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 -1311
- 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 -968
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1093
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1732
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
- 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/IClaimService.sol/IClaimService.json +0 -409
- 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/IPoolService.sol/IPoolService.json +0 -428
- 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 -1021
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -824
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -657
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
- 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 -547
- 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 -521
- 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/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 -100
- 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 -257
- 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 -100
- 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 -251
- 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 -299
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -522
- package/contracts/instance/base/ComponentService.sol +0 -134
- package/contracts/instance/base/KeyValueStore.sol +0 -175
- package/contracts/instance/base/Lifecycle.sol +0 -109
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -350
- package/contracts/instance/service/BundleService.sol +0 -336
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -151
- package/contracts/instance/service/DistributionService.sol +0 -467
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IBundleService.sol +0 -62
- package/contracts/instance/service/IClaimService.sol +0 -61
- package/contracts/instance/service/IPoolService.sol +0 -35
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -403
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -220
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -241
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -322
- 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}/DistributorType.sol +0 -0
- /package/contracts/{types → type}/Key32.sol +0 -0
| @@ -0,0 +1,1185 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "BasicOracle",
         | 
| 4 | 
            +
              "sourceName": "contracts/oracle/BasicOracle.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    }
         | 
| 13 | 
            +
                  ],
         | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 | 
            +
                  "type": "error"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                  "inputs": [
         | 
| 19 | 
            +
                    {
         | 
| 20 | 
            +
                      "internalType": "address",
         | 
| 21 | 
            +
                      "name": "caller",
         | 
| 22 | 
            +
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                  ],
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 42 | 
            +
                  "type": "error"
         | 
| 43 | 
            +
                },
         | 
| 44 | 
            +
                {
         | 
| 45 | 
            +
                  "inputs": [
         | 
| 46 | 
            +
                    {
         | 
| 47 | 
            +
                      "internalType": "address",
         | 
| 48 | 
            +
                      "name": "target",
         | 
| 49 | 
            +
                      "type": "address"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "AddressEmptyCode",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                {
         | 
| 56 | 
            +
                  "inputs": [
         | 
| 57 | 
            +
                    {
         | 
| 58 | 
            +
                      "internalType": "address",
         | 
| 59 | 
            +
                      "name": "account",
         | 
| 60 | 
            +
                      "type": "address"
         | 
| 61 | 
            +
                    }
         | 
| 62 | 
            +
                  ],
         | 
| 63 | 
            +
                  "name": "AddressInsufficientBalance",
         | 
| 64 | 
            +
                  "type": "error"
         | 
| 65 | 
            +
                },
         | 
| 66 | 
            +
                {
         | 
| 67 | 
            +
                  "inputs": [],
         | 
| 68 | 
            +
                  "name": "ErrorComponentNameLengthZero",
         | 
| 69 | 
            +
                  "type": "error"
         | 
| 70 | 
            +
                },
         | 
| 71 | 
            +
                {
         | 
| 72 | 
            +
                  "inputs": [
         | 
| 73 | 
            +
                    {
         | 
| 74 | 
            +
                      "internalType": "address",
         | 
| 75 | 
            +
                      "name": "caller",
         | 
| 76 | 
            +
                      "type": "address"
         | 
| 77 | 
            +
                    }
         | 
| 78 | 
            +
                  ],
         | 
| 79 | 
            +
                  "name": "ErrorComponentNotChainNft",
         | 
| 80 | 
            +
                  "type": "error"
         | 
| 81 | 
            +
                },
         | 
| 82 | 
            +
                {
         | 
| 83 | 
            +
                  "inputs": [
         | 
| 84 | 
            +
                    {
         | 
| 85 | 
            +
                      "internalType": "NftId",
         | 
| 86 | 
            +
                      "name": "instanceNftId",
         | 
| 87 | 
            +
                      "type": "uint96"
         | 
| 88 | 
            +
                    }
         | 
| 89 | 
            +
                  ],
         | 
| 90 | 
            +
                  "name": "ErrorComponentNotInstance",
         | 
| 91 | 
            +
                  "type": "error"
         | 
| 92 | 
            +
                },
         | 
| 93 | 
            +
                {
         | 
| 94 | 
            +
                  "inputs": [
         | 
| 95 | 
            +
                    {
         | 
| 96 | 
            +
                      "internalType": "address",
         | 
| 97 | 
            +
                      "name": "caller",
         | 
| 98 | 
            +
                      "type": "address"
         | 
| 99 | 
            +
                    }
         | 
| 100 | 
            +
                  ],
         | 
| 101 | 
            +
                  "name": "ErrorComponentNotProductService",
         | 
| 102 | 
            +
                  "type": "error"
         | 
| 103 | 
            +
                },
         | 
| 104 | 
            +
                {
         | 
| 105 | 
            +
                  "inputs": [],
         | 
| 106 | 
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         | 
| 107 | 
            +
                  "type": "error"
         | 
| 108 | 
            +
                },
         | 
| 109 | 
            +
                {
         | 
| 110 | 
            +
                  "inputs": [],
         | 
| 111 | 
            +
                  "name": "ErrorComponentTokenAddressZero",
         | 
| 112 | 
            +
                  "type": "error"
         | 
| 113 | 
            +
                },
         | 
| 114 | 
            +
                {
         | 
| 115 | 
            +
                  "inputs": [],
         | 
| 116 | 
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         | 
| 117 | 
            +
                  "type": "error"
         | 
| 118 | 
            +
                },
         | 
| 119 | 
            +
                {
         | 
| 120 | 
            +
                  "inputs": [],
         | 
| 121 | 
            +
                  "name": "ErrorComponentWalletAddressZero",
         | 
| 122 | 
            +
                  "type": "error"
         | 
| 123 | 
            +
                },
         | 
| 124 | 
            +
                {
         | 
| 125 | 
            +
                  "inputs": [
         | 
| 126 | 
            +
                    {
         | 
| 127 | 
            +
                      "internalType": "address",
         | 
| 128 | 
            +
                      "name": "oldWallet",
         | 
| 129 | 
            +
                      "type": "address"
         | 
| 130 | 
            +
                    },
         | 
| 131 | 
            +
                    {
         | 
| 132 | 
            +
                      "internalType": "address",
         | 
| 133 | 
            +
                      "name": "newWallet",
         | 
| 134 | 
            +
                      "type": "address"
         | 
| 135 | 
            +
                    },
         | 
| 136 | 
            +
                    {
         | 
| 137 | 
            +
                      "internalType": "uint256",
         | 
| 138 | 
            +
                      "name": "allowance",
         | 
| 139 | 
            +
                      "type": "uint256"
         | 
| 140 | 
            +
                    },
         | 
| 141 | 
            +
                    {
         | 
| 142 | 
            +
                      "internalType": "uint256",
         | 
| 143 | 
            +
                      "name": "balance",
         | 
| 144 | 
            +
                      "type": "uint256"
         | 
| 145 | 
            +
                    }
         | 
| 146 | 
            +
                  ],
         | 
| 147 | 
            +
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         | 
| 148 | 
            +
                  "type": "error"
         | 
| 149 | 
            +
                },
         | 
| 150 | 
            +
                {
         | 
| 151 | 
            +
                  "inputs": [],
         | 
| 152 | 
            +
                  "name": "ErrorComponentWalletNotComponent",
         | 
| 153 | 
            +
                  "type": "error"
         | 
| 154 | 
            +
                },
         | 
| 155 | 
            +
                {
         | 
| 156 | 
            +
                  "inputs": [
         | 
| 157 | 
            +
                    {
         | 
| 158 | 
            +
                      "internalType": "NftId",
         | 
| 159 | 
            +
                      "name": "nftId",
         | 
| 160 | 
            +
                      "type": "uint96"
         | 
| 161 | 
            +
                    }
         | 
| 162 | 
            +
                  ],
         | 
| 163 | 
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         | 
| 164 | 
            +
                  "type": "error"
         | 
| 165 | 
            +
                },
         | 
| 166 | 
            +
                {
         | 
| 167 | 
            +
                  "inputs": [
         | 
| 168 | 
            +
                    {
         | 
| 169 | 
            +
                      "internalType": "address",
         | 
| 170 | 
            +
                      "name": "contractAddress",
         | 
| 171 | 
            +
                      "type": "address"
         | 
| 172 | 
            +
                    }
         | 
| 173 | 
            +
                  ],
         | 
| 174 | 
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         | 
| 175 | 
            +
                  "type": "error"
         | 
| 176 | 
            +
                },
         | 
| 177 | 
            +
                {
         | 
| 178 | 
            +
                  "inputs": [],
         | 
| 179 | 
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 180 | 
            +
                  "type": "error"
         | 
| 181 | 
            +
                },
         | 
| 182 | 
            +
                {
         | 
| 183 | 
            +
                  "inputs": [
         | 
| 184 | 
            +
                    {
         | 
| 185 | 
            +
                      "internalType": "address",
         | 
| 186 | 
            +
                      "name": "account",
         | 
| 187 | 
            +
                      "type": "address"
         | 
| 188 | 
            +
                    }
         | 
| 189 | 
            +
                  ],
         | 
| 190 | 
            +
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 191 | 
            +
                  "type": "error"
         | 
| 192 | 
            +
                },
         | 
| 193 | 
            +
                {
         | 
| 194 | 
            +
                  "inputs": [
         | 
| 195 | 
            +
                    {
         | 
| 196 | 
            +
                      "internalType": "address",
         | 
| 197 | 
            +
                      "name": "registryAddress",
         | 
| 198 | 
            +
                      "type": "address"
         | 
| 199 | 
            +
                    }
         | 
| 200 | 
            +
                  ],
         | 
| 201 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 202 | 
            +
                  "type": "error"
         | 
| 203 | 
            +
                },
         | 
| 204 | 
            +
                {
         | 
| 205 | 
            +
                  "inputs": [
         | 
| 206 | 
            +
                    {
         | 
| 207 | 
            +
                      "internalType": "string",
         | 
| 208 | 
            +
                      "name": "methodName",
         | 
| 209 | 
            +
                      "type": "string"
         | 
| 210 | 
            +
                    }
         | 
| 211 | 
            +
                  ],
         | 
| 212 | 
            +
                  "name": "ErrorOracleNotImplemented",
         | 
| 213 | 
            +
                  "type": "error"
         | 
| 214 | 
            +
                },
         | 
| 215 | 
            +
                {
         | 
| 216 | 
            +
                  "inputs": [],
         | 
| 217 | 
            +
                  "name": "FailedInnerCall",
         | 
| 218 | 
            +
                  "type": "error"
         | 
| 219 | 
            +
                },
         | 
| 220 | 
            +
                {
         | 
| 221 | 
            +
                  "inputs": [],
         | 
| 222 | 
            +
                  "name": "InvalidInitialization",
         | 
| 223 | 
            +
                  "type": "error"
         | 
| 224 | 
            +
                },
         | 
| 225 | 
            +
                {
         | 
| 226 | 
            +
                  "inputs": [],
         | 
| 227 | 
            +
                  "name": "NotInitializing",
         | 
| 228 | 
            +
                  "type": "error"
         | 
| 229 | 
            +
                },
         | 
| 230 | 
            +
                {
         | 
| 231 | 
            +
                  "inputs": [
         | 
| 232 | 
            +
                    {
         | 
| 233 | 
            +
                      "internalType": "address",
         | 
| 234 | 
            +
                      "name": "token",
         | 
| 235 | 
            +
                      "type": "address"
         | 
| 236 | 
            +
                    }
         | 
| 237 | 
            +
                  ],
         | 
| 238 | 
            +
                  "name": "SafeERC20FailedOperation",
         | 
| 239 | 
            +
                  "type": "error"
         | 
| 240 | 
            +
                },
         | 
| 241 | 
            +
                {
         | 
| 242 | 
            +
                  "anonymous": false,
         | 
| 243 | 
            +
                  "inputs": [
         | 
| 244 | 
            +
                    {
         | 
| 245 | 
            +
                      "indexed": false,
         | 
| 246 | 
            +
                      "internalType": "address",
         | 
| 247 | 
            +
                      "name": "authority",
         | 
| 248 | 
            +
                      "type": "address"
         | 
| 249 | 
            +
                    }
         | 
| 250 | 
            +
                  ],
         | 
| 251 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 252 | 
            +
                  "type": "event"
         | 
| 253 | 
            +
                },
         | 
| 254 | 
            +
                {
         | 
| 255 | 
            +
                  "anonymous": false,
         | 
| 256 | 
            +
                  "inputs": [
         | 
| 257 | 
            +
                    {
         | 
| 258 | 
            +
                      "indexed": false,
         | 
| 259 | 
            +
                      "internalType": "uint64",
         | 
| 260 | 
            +
                      "name": "version",
         | 
| 261 | 
            +
                      "type": "uint64"
         | 
| 262 | 
            +
                    }
         | 
| 263 | 
            +
                  ],
         | 
| 264 | 
            +
                  "name": "Initialized",
         | 
| 265 | 
            +
                  "type": "event"
         | 
| 266 | 
            +
                },
         | 
| 267 | 
            +
                {
         | 
| 268 | 
            +
                  "anonymous": false,
         | 
| 269 | 
            +
                  "inputs": [
         | 
| 270 | 
            +
                    {
         | 
| 271 | 
            +
                      "indexed": false,
         | 
| 272 | 
            +
                      "internalType": "address",
         | 
| 273 | 
            +
                      "name": "token",
         | 
| 274 | 
            +
                      "type": "address"
         | 
| 275 | 
            +
                    },
         | 
| 276 | 
            +
                    {
         | 
| 277 | 
            +
                      "indexed": false,
         | 
| 278 | 
            +
                      "internalType": "Amount",
         | 
| 279 | 
            +
                      "name": "limit",
         | 
| 280 | 
            +
                      "type": "uint96"
         | 
| 281 | 
            +
                    }
         | 
| 282 | 
            +
                  ],
         | 
| 283 | 
            +
                  "name": "LogComponentTokenHandlerApproved",
         | 
| 284 | 
            +
                  "type": "event"
         | 
| 285 | 
            +
                },
         | 
| 286 | 
            +
                {
         | 
| 287 | 
            +
                  "anonymous": false,
         | 
| 288 | 
            +
                  "inputs": [
         | 
| 289 | 
            +
                    {
         | 
| 290 | 
            +
                      "indexed": false,
         | 
| 291 | 
            +
                      "internalType": "address",
         | 
| 292 | 
            +
                      "name": "oldWallet",
         | 
| 293 | 
            +
                      "type": "address"
         | 
| 294 | 
            +
                    },
         | 
| 295 | 
            +
                    {
         | 
| 296 | 
            +
                      "indexed": false,
         | 
| 297 | 
            +
                      "internalType": "address",
         | 
| 298 | 
            +
                      "name": "newWallet",
         | 
| 299 | 
            +
                      "type": "address"
         | 
| 300 | 
            +
                    }
         | 
| 301 | 
            +
                  ],
         | 
| 302 | 
            +
                  "name": "LogComponentWalletAddressChanged",
         | 
| 303 | 
            +
                  "type": "event"
         | 
| 304 | 
            +
                },
         | 
| 305 | 
            +
                {
         | 
| 306 | 
            +
                  "anonymous": false,
         | 
| 307 | 
            +
                  "inputs": [
         | 
| 308 | 
            +
                    {
         | 
| 309 | 
            +
                      "indexed": false,
         | 
| 310 | 
            +
                      "internalType": "address",
         | 
| 311 | 
            +
                      "name": "from",
         | 
| 312 | 
            +
                      "type": "address"
         | 
| 313 | 
            +
                    },
         | 
| 314 | 
            +
                    {
         | 
| 315 | 
            +
                      "indexed": false,
         | 
| 316 | 
            +
                      "internalType": "address",
         | 
| 317 | 
            +
                      "name": "to",
         | 
| 318 | 
            +
                      "type": "address"
         | 
| 319 | 
            +
                    },
         | 
| 320 | 
            +
                    {
         | 
| 321 | 
            +
                      "indexed": false,
         | 
| 322 | 
            +
                      "internalType": "uint256",
         | 
| 323 | 
            +
                      "name": "amount",
         | 
| 324 | 
            +
                      "type": "uint256"
         | 
| 325 | 
            +
                    }
         | 
| 326 | 
            +
                  ],
         | 
| 327 | 
            +
                  "name": "LogComponentWalletTokensTransferred",
         | 
| 328 | 
            +
                  "type": "event"
         | 
| 329 | 
            +
                },
         | 
| 330 | 
            +
                {
         | 
| 331 | 
            +
                  "inputs": [],
         | 
| 332 | 
            +
                  "name": "COMPONENT_LOCATION_V1",
         | 
| 333 | 
            +
                  "outputs": [
         | 
| 334 | 
            +
                    {
         | 
| 335 | 
            +
                      "internalType": "bytes32",
         | 
| 336 | 
            +
                      "name": "",
         | 
| 337 | 
            +
                      "type": "bytes32"
         | 
| 338 | 
            +
                    }
         | 
| 339 | 
            +
                  ],
         | 
| 340 | 
            +
                  "stateMutability": "view",
         | 
| 341 | 
            +
                  "type": "function"
         | 
| 342 | 
            +
                },
         | 
| 343 | 
            +
                {
         | 
| 344 | 
            +
                  "inputs": [],
         | 
| 345 | 
            +
                  "name": "INSTANCE_LINKED_COMPONENT_LOCATION_V1",
         | 
| 346 | 
            +
                  "outputs": [
         | 
| 347 | 
            +
                    {
         | 
| 348 | 
            +
                      "internalType": "bytes32",
         | 
| 349 | 
            +
                      "name": "",
         | 
| 350 | 
            +
                      "type": "bytes32"
         | 
| 351 | 
            +
                    }
         | 
| 352 | 
            +
                  ],
         | 
| 353 | 
            +
                  "stateMutability": "view",
         | 
| 354 | 
            +
                  "type": "function"
         | 
| 355 | 
            +
                },
         | 
| 356 | 
            +
                {
         | 
| 357 | 
            +
                  "inputs": [],
         | 
| 358 | 
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         | 
| 359 | 
            +
                  "outputs": [
         | 
| 360 | 
            +
                    {
         | 
| 361 | 
            +
                      "internalType": "bytes32",
         | 
| 362 | 
            +
                      "name": "",
         | 
| 363 | 
            +
                      "type": "bytes32"
         | 
| 364 | 
            +
                    }
         | 
| 365 | 
            +
                  ],
         | 
| 366 | 
            +
                  "stateMutability": "view",
         | 
| 367 | 
            +
                  "type": "function"
         | 
| 368 | 
            +
                },
         | 
| 369 | 
            +
                {
         | 
| 370 | 
            +
                  "inputs": [],
         | 
| 371 | 
            +
                  "name": "ORACLE_STORAGE_LOCATION_V1",
         | 
| 372 | 
            +
                  "outputs": [
         | 
| 373 | 
            +
                    {
         | 
| 374 | 
            +
                      "internalType": "bytes32",
         | 
| 375 | 
            +
                      "name": "",
         | 
| 376 | 
            +
                      "type": "bytes32"
         | 
| 377 | 
            +
                    }
         | 
| 378 | 
            +
                  ],
         | 
| 379 | 
            +
                  "stateMutability": "view",
         | 
| 380 | 
            +
                  "type": "function"
         | 
| 381 | 
            +
                },
         | 
| 382 | 
            +
                {
         | 
| 383 | 
            +
                  "inputs": [],
         | 
| 384 | 
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         | 
| 385 | 
            +
                  "outputs": [
         | 
| 386 | 
            +
                    {
         | 
| 387 | 
            +
                      "internalType": "bytes32",
         | 
| 388 | 
            +
                      "name": "",
         | 
| 389 | 
            +
                      "type": "bytes32"
         | 
| 390 | 
            +
                    }
         | 
| 391 | 
            +
                  ],
         | 
| 392 | 
            +
                  "stateMutability": "view",
         | 
| 393 | 
            +
                  "type": "function"
         | 
| 394 | 
            +
                },
         | 
| 395 | 
            +
                {
         | 
| 396 | 
            +
                  "inputs": [
         | 
| 397 | 
            +
                    {
         | 
| 398 | 
            +
                      "internalType": "address",
         | 
| 399 | 
            +
                      "name": "token",
         | 
| 400 | 
            +
                      "type": "address"
         | 
| 401 | 
            +
                    },
         | 
| 402 | 
            +
                    {
         | 
| 403 | 
            +
                      "internalType": "Amount",
         | 
| 404 | 
            +
                      "name": "spendingLimitAmount",
         | 
| 405 | 
            +
                      "type": "uint96"
         | 
| 406 | 
            +
                    }
         | 
| 407 | 
            +
                  ],
         | 
| 408 | 
            +
                  "name": "approveTokenHandler",
         | 
| 409 | 
            +
                  "outputs": [],
         | 
| 410 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 411 | 
            +
                  "type": "function"
         | 
| 412 | 
            +
                },
         | 
| 413 | 
            +
                {
         | 
| 414 | 
            +
                  "inputs": [
         | 
| 415 | 
            +
                    {
         | 
| 416 | 
            +
                      "internalType": "Amount",
         | 
| 417 | 
            +
                      "name": "spendingLimitAmount",
         | 
| 418 | 
            +
                      "type": "uint96"
         | 
| 419 | 
            +
                    }
         | 
| 420 | 
            +
                  ],
         | 
| 421 | 
            +
                  "name": "approveTokenHandler",
         | 
| 422 | 
            +
                  "outputs": [],
         | 
| 423 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 424 | 
            +
                  "type": "function"
         | 
| 425 | 
            +
                },
         | 
| 426 | 
            +
                {
         | 
| 427 | 
            +
                  "inputs": [],
         | 
| 428 | 
            +
                  "name": "authority",
         | 
| 429 | 
            +
                  "outputs": [
         | 
| 430 | 
            +
                    {
         | 
| 431 | 
            +
                      "internalType": "address",
         | 
| 432 | 
            +
                      "name": "",
         | 
| 433 | 
            +
                      "type": "address"
         | 
| 434 | 
            +
                    }
         | 
| 435 | 
            +
                  ],
         | 
| 436 | 
            +
                  "stateMutability": "view",
         | 
| 437 | 
            +
                  "type": "function"
         | 
| 438 | 
            +
                },
         | 
| 439 | 
            +
                {
         | 
| 440 | 
            +
                  "inputs": [
         | 
| 441 | 
            +
                    {
         | 
| 442 | 
            +
                      "internalType": "RequestId",
         | 
| 443 | 
            +
                      "name": "requestId",
         | 
| 444 | 
            +
                      "type": "uint64"
         | 
| 445 | 
            +
                    }
         | 
| 446 | 
            +
                  ],
         | 
| 447 | 
            +
                  "name": "cancel",
         | 
| 448 | 
            +
                  "outputs": [],
         | 
| 449 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 450 | 
            +
                  "type": "function"
         | 
| 451 | 
            +
                },
         | 
| 452 | 
            +
                {
         | 
| 453 | 
            +
                  "inputs": [],
         | 
| 454 | 
            +
                  "name": "getAuthorization",
         | 
| 455 | 
            +
                  "outputs": [
         | 
| 456 | 
            +
                    {
         | 
| 457 | 
            +
                      "internalType": "contract IAuthorization",
         | 
| 458 | 
            +
                      "name": "authorization",
         | 
| 459 | 
            +
                      "type": "address"
         | 
| 460 | 
            +
                    }
         | 
| 461 | 
            +
                  ],
         | 
| 462 | 
            +
                  "stateMutability": "view",
         | 
| 463 | 
            +
                  "type": "function"
         | 
| 464 | 
            +
                },
         | 
| 465 | 
            +
                {
         | 
| 466 | 
            +
                  "inputs": [],
         | 
| 467 | 
            +
                  "name": "getComponentInfo",
         | 
| 468 | 
            +
                  "outputs": [
         | 
| 469 | 
            +
                    {
         | 
| 470 | 
            +
                      "components": [
         | 
| 471 | 
            +
                        {
         | 
| 472 | 
            +
                          "internalType": "string",
         | 
| 473 | 
            +
                          "name": "name",
         | 
| 474 | 
            +
                          "type": "string"
         | 
| 475 | 
            +
                        },
         | 
| 476 | 
            +
                        {
         | 
| 477 | 
            +
                          "internalType": "NftId",
         | 
| 478 | 
            +
                          "name": "productNftId",
         | 
| 479 | 
            +
                          "type": "uint96"
         | 
| 480 | 
            +
                        },
         | 
| 481 | 
            +
                        {
         | 
| 482 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 483 | 
            +
                          "name": "token",
         | 
| 484 | 
            +
                          "type": "address"
         | 
| 485 | 
            +
                        },
         | 
| 486 | 
            +
                        {
         | 
| 487 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 488 | 
            +
                          "name": "tokenHandler",
         | 
| 489 | 
            +
                          "type": "address"
         | 
| 490 | 
            +
                        },
         | 
| 491 | 
            +
                        {
         | 
| 492 | 
            +
                          "internalType": "address",
         | 
| 493 | 
            +
                          "name": "wallet",
         | 
| 494 | 
            +
                          "type": "address"
         | 
| 495 | 
            +
                        },
         | 
| 496 | 
            +
                        {
         | 
| 497 | 
            +
                          "internalType": "bytes",
         | 
| 498 | 
            +
                          "name": "data",
         | 
| 499 | 
            +
                          "type": "bytes"
         | 
| 500 | 
            +
                        }
         | 
| 501 | 
            +
                      ],
         | 
| 502 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 503 | 
            +
                      "name": "info",
         | 
| 504 | 
            +
                      "type": "tuple"
         | 
| 505 | 
            +
                    }
         | 
| 506 | 
            +
                  ],
         | 
| 507 | 
            +
                  "stateMutability": "view",
         | 
| 508 | 
            +
                  "type": "function"
         | 
| 509 | 
            +
                },
         | 
| 510 | 
            +
                {
         | 
| 511 | 
            +
                  "inputs": [],
         | 
| 512 | 
            +
                  "name": "getInitialComponentInfo",
         | 
| 513 | 
            +
                  "outputs": [
         | 
| 514 | 
            +
                    {
         | 
| 515 | 
            +
                      "components": [
         | 
| 516 | 
            +
                        {
         | 
| 517 | 
            +
                          "internalType": "string",
         | 
| 518 | 
            +
                          "name": "name",
         | 
| 519 | 
            +
                          "type": "string"
         | 
| 520 | 
            +
                        },
         | 
| 521 | 
            +
                        {
         | 
| 522 | 
            +
                          "internalType": "NftId",
         | 
| 523 | 
            +
                          "name": "productNftId",
         | 
| 524 | 
            +
                          "type": "uint96"
         | 
| 525 | 
            +
                        },
         | 
| 526 | 
            +
                        {
         | 
| 527 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 528 | 
            +
                          "name": "token",
         | 
| 529 | 
            +
                          "type": "address"
         | 
| 530 | 
            +
                        },
         | 
| 531 | 
            +
                        {
         | 
| 532 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 533 | 
            +
                          "name": "tokenHandler",
         | 
| 534 | 
            +
                          "type": "address"
         | 
| 535 | 
            +
                        },
         | 
| 536 | 
            +
                        {
         | 
| 537 | 
            +
                          "internalType": "address",
         | 
| 538 | 
            +
                          "name": "wallet",
         | 
| 539 | 
            +
                          "type": "address"
         | 
| 540 | 
            +
                        },
         | 
| 541 | 
            +
                        {
         | 
| 542 | 
            +
                          "internalType": "bytes",
         | 
| 543 | 
            +
                          "name": "data",
         | 
| 544 | 
            +
                          "type": "bytes"
         | 
| 545 | 
            +
                        }
         | 
| 546 | 
            +
                      ],
         | 
| 547 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 548 | 
            +
                      "name": "info",
         | 
| 549 | 
            +
                      "type": "tuple"
         | 
| 550 | 
            +
                    }
         | 
| 551 | 
            +
                  ],
         | 
| 552 | 
            +
                  "stateMutability": "view",
         | 
| 553 | 
            +
                  "type": "function"
         | 
| 554 | 
            +
                },
         | 
| 555 | 
            +
                {
         | 
| 556 | 
            +
                  "inputs": [],
         | 
| 557 | 
            +
                  "name": "getInitialInfo",
         | 
| 558 | 
            +
                  "outputs": [
         | 
| 559 | 
            +
                    {
         | 
| 560 | 
            +
                      "components": [
         | 
| 561 | 
            +
                        {
         | 
| 562 | 
            +
                          "internalType": "NftId",
         | 
| 563 | 
            +
                          "name": "nftId",
         | 
| 564 | 
            +
                          "type": "uint96"
         | 
| 565 | 
            +
                        },
         | 
| 566 | 
            +
                        {
         | 
| 567 | 
            +
                          "internalType": "NftId",
         | 
| 568 | 
            +
                          "name": "parentNftId",
         | 
| 569 | 
            +
                          "type": "uint96"
         | 
| 570 | 
            +
                        },
         | 
| 571 | 
            +
                        {
         | 
| 572 | 
            +
                          "internalType": "ObjectType",
         | 
| 573 | 
            +
                          "name": "objectType",
         | 
| 574 | 
            +
                          "type": "uint8"
         | 
| 575 | 
            +
                        },
         | 
| 576 | 
            +
                        {
         | 
| 577 | 
            +
                          "internalType": "bool",
         | 
| 578 | 
            +
                          "name": "isInterceptor",
         | 
| 579 | 
            +
                          "type": "bool"
         | 
| 580 | 
            +
                        },
         | 
| 581 | 
            +
                        {
         | 
| 582 | 
            +
                          "internalType": "address",
         | 
| 583 | 
            +
                          "name": "objectAddress",
         | 
| 584 | 
            +
                          "type": "address"
         | 
| 585 | 
            +
                        },
         | 
| 586 | 
            +
                        {
         | 
| 587 | 
            +
                          "internalType": "address",
         | 
| 588 | 
            +
                          "name": "initialOwner",
         | 
| 589 | 
            +
                          "type": "address"
         | 
| 590 | 
            +
                        },
         | 
| 591 | 
            +
                        {
         | 
| 592 | 
            +
                          "internalType": "bytes",
         | 
| 593 | 
            +
                          "name": "data",
         | 
| 594 | 
            +
                          "type": "bytes"
         | 
| 595 | 
            +
                        }
         | 
| 596 | 
            +
                      ],
         | 
| 597 | 
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 598 | 
            +
                      "name": "info",
         | 
| 599 | 
            +
                      "type": "tuple"
         | 
| 600 | 
            +
                    }
         | 
| 601 | 
            +
                  ],
         | 
| 602 | 
            +
                  "stateMutability": "view",
         | 
| 603 | 
            +
                  "type": "function"
         | 
| 604 | 
            +
                },
         | 
| 605 | 
            +
                {
         | 
| 606 | 
            +
                  "inputs": [],
         | 
| 607 | 
            +
                  "name": "getInstance",
         | 
| 608 | 
            +
                  "outputs": [
         | 
| 609 | 
            +
                    {
         | 
| 610 | 
            +
                      "internalType": "contract IInstance",
         | 
| 611 | 
            +
                      "name": "instance",
         | 
| 612 | 
            +
                      "type": "address"
         | 
| 613 | 
            +
                    }
         | 
| 614 | 
            +
                  ],
         | 
| 615 | 
            +
                  "stateMutability": "view",
         | 
| 616 | 
            +
                  "type": "function"
         | 
| 617 | 
            +
                },
         | 
| 618 | 
            +
                {
         | 
| 619 | 
            +
                  "inputs": [],
         | 
| 620 | 
            +
                  "name": "getName",
         | 
| 621 | 
            +
                  "outputs": [
         | 
| 622 | 
            +
                    {
         | 
| 623 | 
            +
                      "internalType": "string",
         | 
| 624 | 
            +
                      "name": "name",
         | 
| 625 | 
            +
                      "type": "string"
         | 
| 626 | 
            +
                    }
         | 
| 627 | 
            +
                  ],
         | 
| 628 | 
            +
                  "stateMutability": "view",
         | 
| 629 | 
            +
                  "type": "function"
         | 
| 630 | 
            +
                },
         | 
| 631 | 
            +
                {
         | 
| 632 | 
            +
                  "inputs": [],
         | 
| 633 | 
            +
                  "name": "getNftId",
         | 
| 634 | 
            +
                  "outputs": [
         | 
| 635 | 
            +
                    {
         | 
| 636 | 
            +
                      "internalType": "NftId",
         | 
| 637 | 
            +
                      "name": "",
         | 
| 638 | 
            +
                      "type": "uint96"
         | 
| 639 | 
            +
                    }
         | 
| 640 | 
            +
                  ],
         | 
| 641 | 
            +
                  "stateMutability": "view",
         | 
| 642 | 
            +
                  "type": "function"
         | 
| 643 | 
            +
                },
         | 
| 644 | 
            +
                {
         | 
| 645 | 
            +
                  "inputs": [],
         | 
| 646 | 
            +
                  "name": "getOwner",
         | 
| 647 | 
            +
                  "outputs": [
         | 
| 648 | 
            +
                    {
         | 
| 649 | 
            +
                      "internalType": "address",
         | 
| 650 | 
            +
                      "name": "",
         | 
| 651 | 
            +
                      "type": "address"
         | 
| 652 | 
            +
                    }
         | 
| 653 | 
            +
                  ],
         | 
| 654 | 
            +
                  "stateMutability": "view",
         | 
| 655 | 
            +
                  "type": "function"
         | 
| 656 | 
            +
                },
         | 
| 657 | 
            +
                {
         | 
| 658 | 
            +
                  "inputs": [],
         | 
| 659 | 
            +
                  "name": "getProductNftId",
         | 
| 660 | 
            +
                  "outputs": [
         | 
| 661 | 
            +
                    {
         | 
| 662 | 
            +
                      "internalType": "NftId",
         | 
| 663 | 
            +
                      "name": "productNftId",
         | 
| 664 | 
            +
                      "type": "uint96"
         | 
| 665 | 
            +
                    }
         | 
| 666 | 
            +
                  ],
         | 
| 667 | 
            +
                  "stateMutability": "view",
         | 
| 668 | 
            +
                  "type": "function"
         | 
| 669 | 
            +
                },
         | 
| 670 | 
            +
                {
         | 
| 671 | 
            +
                  "inputs": [],
         | 
| 672 | 
            +
                  "name": "getRegistry",
         | 
| 673 | 
            +
                  "outputs": [
         | 
| 674 | 
            +
                    {
         | 
| 675 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 676 | 
            +
                      "name": "",
         | 
| 677 | 
            +
                      "type": "address"
         | 
| 678 | 
            +
                    }
         | 
| 679 | 
            +
                  ],
         | 
| 680 | 
            +
                  "stateMutability": "view",
         | 
| 681 | 
            +
                  "type": "function"
         | 
| 682 | 
            +
                },
         | 
| 683 | 
            +
                {
         | 
| 684 | 
            +
                  "inputs": [],
         | 
| 685 | 
            +
                  "name": "getToken",
         | 
| 686 | 
            +
                  "outputs": [
         | 
| 687 | 
            +
                    {
         | 
| 688 | 
            +
                      "internalType": "contract IERC20Metadata",
         | 
| 689 | 
            +
                      "name": "token",
         | 
| 690 | 
            +
                      "type": "address"
         | 
| 691 | 
            +
                    }
         | 
| 692 | 
            +
                  ],
         | 
| 693 | 
            +
                  "stateMutability": "view",
         | 
| 694 | 
            +
                  "type": "function"
         | 
| 695 | 
            +
                },
         | 
| 696 | 
            +
                {
         | 
| 697 | 
            +
                  "inputs": [],
         | 
| 698 | 
            +
                  "name": "getTokenHandler",
         | 
| 699 | 
            +
                  "outputs": [
         | 
| 700 | 
            +
                    {
         | 
| 701 | 
            +
                      "internalType": "contract TokenHandler",
         | 
| 702 | 
            +
                      "name": "tokenHandler",
         | 
| 703 | 
            +
                      "type": "address"
         | 
| 704 | 
            +
                    }
         | 
| 705 | 
            +
                  ],
         | 
| 706 | 
            +
                  "stateMutability": "view",
         | 
| 707 | 
            +
                  "type": "function"
         | 
| 708 | 
            +
                },
         | 
| 709 | 
            +
                {
         | 
| 710 | 
            +
                  "inputs": [],
         | 
| 711 | 
            +
                  "name": "getWallet",
         | 
| 712 | 
            +
                  "outputs": [
         | 
| 713 | 
            +
                    {
         | 
| 714 | 
            +
                      "internalType": "address",
         | 
| 715 | 
            +
                      "name": "walletAddress",
         | 
| 716 | 
            +
                      "type": "address"
         | 
| 717 | 
            +
                    }
         | 
| 718 | 
            +
                  ],
         | 
| 719 | 
            +
                  "stateMutability": "view",
         | 
| 720 | 
            +
                  "type": "function"
         | 
| 721 | 
            +
                },
         | 
| 722 | 
            +
                {
         | 
| 723 | 
            +
                  "inputs": [
         | 
| 724 | 
            +
                    {
         | 
| 725 | 
            +
                      "internalType": "address",
         | 
| 726 | 
            +
                      "name": "authority",
         | 
| 727 | 
            +
                      "type": "address"
         | 
| 728 | 
            +
                    },
         | 
| 729 | 
            +
                    {
         | 
| 730 | 
            +
                      "internalType": "address",
         | 
| 731 | 
            +
                      "name": "registry",
         | 
| 732 | 
            +
                      "type": "address"
         | 
| 733 | 
            +
                    },
         | 
| 734 | 
            +
                    {
         | 
| 735 | 
            +
                      "internalType": "NftId",
         | 
| 736 | 
            +
                      "name": "parentNftId",
         | 
| 737 | 
            +
                      "type": "uint96"
         | 
| 738 | 
            +
                    },
         | 
| 739 | 
            +
                    {
         | 
| 740 | 
            +
                      "internalType": "string",
         | 
| 741 | 
            +
                      "name": "name",
         | 
| 742 | 
            +
                      "type": "string"
         | 
| 743 | 
            +
                    },
         | 
| 744 | 
            +
                    {
         | 
| 745 | 
            +
                      "internalType": "address",
         | 
| 746 | 
            +
                      "name": "token",
         | 
| 747 | 
            +
                      "type": "address"
         | 
| 748 | 
            +
                    },
         | 
| 749 | 
            +
                    {
         | 
| 750 | 
            +
                      "internalType": "ObjectType",
         | 
| 751 | 
            +
                      "name": "componentType",
         | 
| 752 | 
            +
                      "type": "uint8"
         | 
| 753 | 
            +
                    },
         | 
| 754 | 
            +
                    {
         | 
| 755 | 
            +
                      "internalType": "bool",
         | 
| 756 | 
            +
                      "name": "isInterceptor",
         | 
| 757 | 
            +
                      "type": "bool"
         | 
| 758 | 
            +
                    },
         | 
| 759 | 
            +
                    {
         | 
| 760 | 
            +
                      "internalType": "address",
         | 
| 761 | 
            +
                      "name": "initialOwner",
         | 
| 762 | 
            +
                      "type": "address"
         | 
| 763 | 
            +
                    },
         | 
| 764 | 
            +
                    {
         | 
| 765 | 
            +
                      "internalType": "bytes",
         | 
| 766 | 
            +
                      "name": "registryData",
         | 
| 767 | 
            +
                      "type": "bytes"
         | 
| 768 | 
            +
                    },
         | 
| 769 | 
            +
                    {
         | 
| 770 | 
            +
                      "internalType": "bytes",
         | 
| 771 | 
            +
                      "name": "componentData",
         | 
| 772 | 
            +
                      "type": "bytes"
         | 
| 773 | 
            +
                    }
         | 
| 774 | 
            +
                  ],
         | 
| 775 | 
            +
                  "name": "initializeComponent",
         | 
| 776 | 
            +
                  "outputs": [],
         | 
| 777 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 778 | 
            +
                  "type": "function"
         | 
| 779 | 
            +
                },
         | 
| 780 | 
            +
                {
         | 
| 781 | 
            +
                  "inputs": [],
         | 
| 782 | 
            +
                  "name": "initializeERC165",
         | 
| 783 | 
            +
                  "outputs": [],
         | 
| 784 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 785 | 
            +
                  "type": "function"
         | 
| 786 | 
            +
                },
         | 
| 787 | 
            +
                {
         | 
| 788 | 
            +
                  "inputs": [
         | 
| 789 | 
            +
                    {
         | 
| 790 | 
            +
                      "internalType": "address",
         | 
| 791 | 
            +
                      "name": "initialOwner",
         | 
| 792 | 
            +
                      "type": "address"
         | 
| 793 | 
            +
                    },
         | 
| 794 | 
            +
                    {
         | 
| 795 | 
            +
                      "internalType": "address",
         | 
| 796 | 
            +
                      "name": "registryAddress",
         | 
| 797 | 
            +
                      "type": "address"
         | 
| 798 | 
            +
                    }
         | 
| 799 | 
            +
                  ],
         | 
| 800 | 
            +
                  "name": "initializeNftOwnable",
         | 
| 801 | 
            +
                  "outputs": [],
         | 
| 802 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 803 | 
            +
                  "type": "function"
         | 
| 804 | 
            +
                },
         | 
| 805 | 
            +
                {
         | 
| 806 | 
            +
                  "inputs": [
         | 
| 807 | 
            +
                    {
         | 
| 808 | 
            +
                      "internalType": "address",
         | 
| 809 | 
            +
                      "name": "registryAddress",
         | 
| 810 | 
            +
                      "type": "address"
         | 
| 811 | 
            +
                    },
         | 
| 812 | 
            +
                    {
         | 
| 813 | 
            +
                      "internalType": "NftId",
         | 
| 814 | 
            +
                      "name": "parentNftId",
         | 
| 815 | 
            +
                      "type": "uint96"
         | 
| 816 | 
            +
                    },
         | 
| 817 | 
            +
                    {
         | 
| 818 | 
            +
                      "internalType": "ObjectType",
         | 
| 819 | 
            +
                      "name": "objectType",
         | 
| 820 | 
            +
                      "type": "uint8"
         | 
| 821 | 
            +
                    },
         | 
| 822 | 
            +
                    {
         | 
| 823 | 
            +
                      "internalType": "bool",
         | 
| 824 | 
            +
                      "name": "isInterceptor",
         | 
| 825 | 
            +
                      "type": "bool"
         | 
| 826 | 
            +
                    },
         | 
| 827 | 
            +
                    {
         | 
| 828 | 
            +
                      "internalType": "address",
         | 
| 829 | 
            +
                      "name": "initialOwner",
         | 
| 830 | 
            +
                      "type": "address"
         | 
| 831 | 
            +
                    },
         | 
| 832 | 
            +
                    {
         | 
| 833 | 
            +
                      "internalType": "bytes",
         | 
| 834 | 
            +
                      "name": "registryData",
         | 
| 835 | 
            +
                      "type": "bytes"
         | 
| 836 | 
            +
                    }
         | 
| 837 | 
            +
                  ],
         | 
| 838 | 
            +
                  "name": "initializeRegisterable",
         | 
| 839 | 
            +
                  "outputs": [],
         | 
| 840 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 841 | 
            +
                  "type": "function"
         | 
| 842 | 
            +
                },
         | 
| 843 | 
            +
                {
         | 
| 844 | 
            +
                  "inputs": [
         | 
| 845 | 
            +
                    {
         | 
| 846 | 
            +
                      "internalType": "address",
         | 
| 847 | 
            +
                      "name": "registryAddress",
         | 
| 848 | 
            +
                      "type": "address"
         | 
| 849 | 
            +
                    }
         | 
| 850 | 
            +
                  ],
         | 
| 851 | 
            +
                  "name": "initializeRegistryLinked",
         | 
| 852 | 
            +
                  "outputs": [],
         | 
| 853 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 854 | 
            +
                  "type": "function"
         | 
| 855 | 
            +
                },
         | 
| 856 | 
            +
                {
         | 
| 857 | 
            +
                  "inputs": [],
         | 
| 858 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 859 | 
            +
                  "outputs": [
         | 
| 860 | 
            +
                    {
         | 
| 861 | 
            +
                      "internalType": "bytes4",
         | 
| 862 | 
            +
                      "name": "",
         | 
| 863 | 
            +
                      "type": "bytes4"
         | 
| 864 | 
            +
                    }
         | 
| 865 | 
            +
                  ],
         | 
| 866 | 
            +
                  "stateMutability": "view",
         | 
| 867 | 
            +
                  "type": "function"
         | 
| 868 | 
            +
                },
         | 
| 869 | 
            +
                {
         | 
| 870 | 
            +
                  "inputs": [],
         | 
| 871 | 
            +
                  "name": "isNftInterceptor",
         | 
| 872 | 
            +
                  "outputs": [
         | 
| 873 | 
            +
                    {
         | 
| 874 | 
            +
                      "internalType": "bool",
         | 
| 875 | 
            +
                      "name": "isInterceptor",
         | 
| 876 | 
            +
                      "type": "bool"
         | 
| 877 | 
            +
                    }
         | 
| 878 | 
            +
                  ],
         | 
| 879 | 
            +
                  "stateMutability": "view",
         | 
| 880 | 
            +
                  "type": "function"
         | 
| 881 | 
            +
                },
         | 
| 882 | 
            +
                {
         | 
| 883 | 
            +
                  "inputs": [],
         | 
| 884 | 
            +
                  "name": "isRegistered",
         | 
| 885 | 
            +
                  "outputs": [
         | 
| 886 | 
            +
                    {
         | 
| 887 | 
            +
                      "internalType": "bool",
         | 
| 888 | 
            +
                      "name": "",
         | 
| 889 | 
            +
                      "type": "bool"
         | 
| 890 | 
            +
                    }
         | 
| 891 | 
            +
                  ],
         | 
| 892 | 
            +
                  "stateMutability": "view",
         | 
| 893 | 
            +
                  "type": "function"
         | 
| 894 | 
            +
                },
         | 
| 895 | 
            +
                {
         | 
| 896 | 
            +
                  "inputs": [],
         | 
| 897 | 
            +
                  "name": "isVerifying",
         | 
| 898 | 
            +
                  "outputs": [
         | 
| 899 | 
            +
                    {
         | 
| 900 | 
            +
                      "internalType": "bool",
         | 
| 901 | 
            +
                      "name": "verifying",
         | 
| 902 | 
            +
                      "type": "bool"
         | 
| 903 | 
            +
                    }
         | 
| 904 | 
            +
                  ],
         | 
| 905 | 
            +
                  "stateMutability": "view",
         | 
| 906 | 
            +
                  "type": "function"
         | 
| 907 | 
            +
                },
         | 
| 908 | 
            +
                {
         | 
| 909 | 
            +
                  "inputs": [],
         | 
| 910 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 911 | 
            +
                  "outputs": [
         | 
| 912 | 
            +
                    {
         | 
| 913 | 
            +
                      "internalType": "NftId",
         | 
| 914 | 
            +
                      "name": "nftId",
         | 
| 915 | 
            +
                      "type": "uint96"
         | 
| 916 | 
            +
                    }
         | 
| 917 | 
            +
                  ],
         | 
| 918 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 919 | 
            +
                  "type": "function"
         | 
| 920 | 
            +
                },
         | 
| 921 | 
            +
                {
         | 
| 922 | 
            +
                  "inputs": [],
         | 
| 923 | 
            +
                  "name": "lock",
         | 
| 924 | 
            +
                  "outputs": [],
         | 
| 925 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 926 | 
            +
                  "type": "function"
         | 
| 927 | 
            +
                },
         | 
| 928 | 
            +
                {
         | 
| 929 | 
            +
                  "inputs": [
         | 
| 930 | 
            +
                    {
         | 
| 931 | 
            +
                      "internalType": "address",
         | 
| 932 | 
            +
                      "name": "to",
         | 
| 933 | 
            +
                      "type": "address"
         | 
| 934 | 
            +
                    },
         | 
| 935 | 
            +
                    {
         | 
| 936 | 
            +
                      "internalType": "uint256",
         | 
| 937 | 
            +
                      "name": "tokenId",
         | 
| 938 | 
            +
                      "type": "uint256"
         | 
| 939 | 
            +
                    }
         | 
| 940 | 
            +
                  ],
         | 
| 941 | 
            +
                  "name": "nftMint",
         | 
| 942 | 
            +
                  "outputs": [],
         | 
| 943 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 944 | 
            +
                  "type": "function"
         | 
| 945 | 
            +
                },
         | 
| 946 | 
            +
                {
         | 
| 947 | 
            +
                  "inputs": [
         | 
| 948 | 
            +
                    {
         | 
| 949 | 
            +
                      "internalType": "address",
         | 
| 950 | 
            +
                      "name": "from",
         | 
| 951 | 
            +
                      "type": "address"
         | 
| 952 | 
            +
                    },
         | 
| 953 | 
            +
                    {
         | 
| 954 | 
            +
                      "internalType": "address",
         | 
| 955 | 
            +
                      "name": "to",
         | 
| 956 | 
            +
                      "type": "address"
         | 
| 957 | 
            +
                    },
         | 
| 958 | 
            +
                    {
         | 
| 959 | 
            +
                      "internalType": "uint256",
         | 
| 960 | 
            +
                      "name": "tokenId",
         | 
| 961 | 
            +
                      "type": "uint256"
         | 
| 962 | 
            +
                    }
         | 
| 963 | 
            +
                  ],
         | 
| 964 | 
            +
                  "name": "nftTransferFrom",
         | 
| 965 | 
            +
                  "outputs": [],
         | 
| 966 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 967 | 
            +
                  "type": "function"
         | 
| 968 | 
            +
                },
         | 
| 969 | 
            +
                {
         | 
| 970 | 
            +
                  "inputs": [],
         | 
| 971 | 
            +
                  "name": "register",
         | 
| 972 | 
            +
                  "outputs": [],
         | 
| 973 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 974 | 
            +
                  "type": "function"
         | 
| 975 | 
            +
                },
         | 
| 976 | 
            +
                {
         | 
| 977 | 
            +
                  "inputs": [
         | 
| 978 | 
            +
                    {
         | 
| 979 | 
            +
                      "internalType": "bytes4",
         | 
| 980 | 
            +
                      "name": "interfaceId",
         | 
| 981 | 
            +
                      "type": "bytes4"
         | 
| 982 | 
            +
                    }
         | 
| 983 | 
            +
                  ],
         | 
| 984 | 
            +
                  "name": "registerInterface",
         | 
| 985 | 
            +
                  "outputs": [],
         | 
| 986 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 987 | 
            +
                  "type": "function"
         | 
| 988 | 
            +
                },
         | 
| 989 | 
            +
                {
         | 
| 990 | 
            +
                  "inputs": [
         | 
| 991 | 
            +
                    {
         | 
| 992 | 
            +
                      "internalType": "RequestId",
         | 
| 993 | 
            +
                      "name": "requestId",
         | 
| 994 | 
            +
                      "type": "uint64"
         | 
| 995 | 
            +
                    },
         | 
| 996 | 
            +
                    {
         | 
| 997 | 
            +
                      "internalType": "NftId",
         | 
| 998 | 
            +
                      "name": "requesterId",
         | 
| 999 | 
            +
                      "type": "uint96"
         | 
| 1000 | 
            +
                    },
         | 
| 1001 | 
            +
                    {
         | 
| 1002 | 
            +
                      "internalType": "bytes",
         | 
| 1003 | 
            +
                      "name": "requestData",
         | 
| 1004 | 
            +
                      "type": "bytes"
         | 
| 1005 | 
            +
                    },
         | 
| 1006 | 
            +
                    {
         | 
| 1007 | 
            +
                      "internalType": "Timestamp",
         | 
| 1008 | 
            +
                      "name": "expiryAt",
         | 
| 1009 | 
            +
                      "type": "uint40"
         | 
| 1010 | 
            +
                    }
         | 
| 1011 | 
            +
                  ],
         | 
| 1012 | 
            +
                  "name": "request",
         | 
| 1013 | 
            +
                  "outputs": [],
         | 
| 1014 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1015 | 
            +
                  "type": "function"
         | 
| 1016 | 
            +
                },
         | 
| 1017 | 
            +
                {
         | 
| 1018 | 
            +
                  "inputs": [
         | 
| 1019 | 
            +
                    {
         | 
| 1020 | 
            +
                      "internalType": "RequestId",
         | 
| 1021 | 
            +
                      "name": "requestId",
         | 
| 1022 | 
            +
                      "type": "uint64"
         | 
| 1023 | 
            +
                    },
         | 
| 1024 | 
            +
                    {
         | 
| 1025 | 
            +
                      "internalType": "bytes",
         | 
| 1026 | 
            +
                      "name": "responseData",
         | 
| 1027 | 
            +
                      "type": "bytes"
         | 
| 1028 | 
            +
                    }
         | 
| 1029 | 
            +
                  ],
         | 
| 1030 | 
            +
                  "name": "respond",
         | 
| 1031 | 
            +
                  "outputs": [],
         | 
| 1032 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1033 | 
            +
                  "type": "function"
         | 
| 1034 | 
            +
                },
         | 
| 1035 | 
            +
                {
         | 
| 1036 | 
            +
                  "inputs": [
         | 
| 1037 | 
            +
                    {
         | 
| 1038 | 
            +
                      "internalType": "address",
         | 
| 1039 | 
            +
                      "name": "newAuthority",
         | 
| 1040 | 
            +
                      "type": "address"
         | 
| 1041 | 
            +
                    }
         | 
| 1042 | 
            +
                  ],
         | 
| 1043 | 
            +
                  "name": "setAuthority",
         | 
| 1044 | 
            +
                  "outputs": [],
         | 
| 1045 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1046 | 
            +
                  "type": "function"
         | 
| 1047 | 
            +
                },
         | 
| 1048 | 
            +
                {
         | 
| 1049 | 
            +
                  "inputs": [
         | 
| 1050 | 
            +
                    {
         | 
| 1051 | 
            +
                      "internalType": "address",
         | 
| 1052 | 
            +
                      "name": "newWallet",
         | 
| 1053 | 
            +
                      "type": "address"
         | 
| 1054 | 
            +
                    }
         | 
| 1055 | 
            +
                  ],
         | 
| 1056 | 
            +
                  "name": "setWallet",
         | 
| 1057 | 
            +
                  "outputs": [],
         | 
| 1058 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1059 | 
            +
                  "type": "function"
         | 
| 1060 | 
            +
                },
         | 
| 1061 | 
            +
                {
         | 
| 1062 | 
            +
                  "inputs": [
         | 
| 1063 | 
            +
                    {
         | 
| 1064 | 
            +
                      "internalType": "bytes4",
         | 
| 1065 | 
            +
                      "name": "interfaceId",
         | 
| 1066 | 
            +
                      "type": "bytes4"
         | 
| 1067 | 
            +
                    }
         | 
| 1068 | 
            +
                  ],
         | 
| 1069 | 
            +
                  "name": "supportsInterface",
         | 
| 1070 | 
            +
                  "outputs": [
         | 
| 1071 | 
            +
                    {
         | 
| 1072 | 
            +
                      "internalType": "bool",
         | 
| 1073 | 
            +
                      "name": "",
         | 
| 1074 | 
            +
                      "type": "bool"
         | 
| 1075 | 
            +
                    }
         | 
| 1076 | 
            +
                  ],
         | 
| 1077 | 
            +
                  "stateMutability": "view",
         | 
| 1078 | 
            +
                  "type": "function"
         | 
| 1079 | 
            +
                },
         | 
| 1080 | 
            +
                {
         | 
| 1081 | 
            +
                  "inputs": [],
         | 
| 1082 | 
            +
                  "name": "unlock",
         | 
| 1083 | 
            +
                  "outputs": [],
         | 
| 1084 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1085 | 
            +
                  "type": "function"
         | 
| 1086 | 
            +
                },
         | 
| 1087 | 
            +
                {
         | 
| 1088 | 
            +
                  "inputs": [
         | 
| 1089 | 
            +
                    {
         | 
| 1090 | 
            +
                      "internalType": "Amount",
         | 
| 1091 | 
            +
                      "name": "amount",
         | 
| 1092 | 
            +
                      "type": "uint96"
         | 
| 1093 | 
            +
                    }
         | 
| 1094 | 
            +
                  ],
         | 
| 1095 | 
            +
                  "name": "withdrawFees",
         | 
| 1096 | 
            +
                  "outputs": [
         | 
| 1097 | 
            +
                    {
         | 
| 1098 | 
            +
                      "internalType": "Amount",
         | 
| 1099 | 
            +
                      "name": "withdrawnAmount",
         | 
| 1100 | 
            +
                      "type": "uint96"
         | 
| 1101 | 
            +
                    }
         | 
| 1102 | 
            +
                  ],
         | 
| 1103 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1104 | 
            +
                  "type": "function"
         | 
| 1105 | 
            +
                }
         | 
| 1106 | 
            +
              ],
         | 
| 1107 | 
            +
              "bytecode": "0x6080604052348015600e575f80fd5b506130948061001c5f395ff3fe608060405234801561000f575f80fd5b506004361061026a575f3560e01c8063644c45e01161014b578063bae99c99116100bf578063deaa59df11610084578063deaa59df146105a5578063e7f7fb86146105b8578063ea15869f146105cb578063f7c34ee0146105f2578063f83d08ba14610605578063f8bf0d9f1461060d575f80fd5b8063bae99c9914610534578063bb1e0e5914610547578063bf7e214f1461055a578063cf4ee77a14610562578063de7b5d1414610575575f80fd5b8063893d20e811610110578063893d20e8146104d25780638fb36037146104da57806390edbd35146104fb578063a69df4b514610510578063ada9652e14610518578063b423086c1461052c575f80fd5b8063644c45e014610459578063675393bf146104765780636bd1c0eb146104895780637a9e5e4b146104b957806387ef9ba0146104cc575f80fd5b806321df0da7116101e2578063419197fe116101a7578063419197fe146103eb57806343d752d3146103fe5780634bd100e4146104065780634c125e791461042d5780635741e5e9146104405780635ab1bd5314610448575f80fd5b806321df0da71461039957806322366844146103a157806327bb7a33146103a95780632eb3e6f4146103bc57806336fc697e146103e3575f80fd5b8063138461e011610233578063138461e01461031957806317d7de7c146103215780631aa3a008146103365780631c6b21901461033e5780631eff4b2214610351578063214cdb8014610386575f80fd5b806251884a1461026e57806301ffc9a7146102935780630b29e28e146102cf5780630fec111c146102e457806313299604146102f9575b5f80fd5b610276610620565b6040516001600160601b0390911681526020015b60405180910390f35b6102bf6102a1366004612476565b6001600160e01b0319165f9081526020819052604090205460ff1690565b604051901515815260200161028a565b6102e26102dd3660046124d7565b610632565b005b6102ec610645565b60405161028a91906125b1565b610301610803565b6040516001600160a01b03909116815260200161028a565b610276610815565b610329610824565b60405161028a9190612645565b6102e2610834565b61027661034c366004612657565b6108ef565b6103787f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161028a565b6102e2610394366004612476565b61096c565b610301610998565b6102bf6109aa565b6102e26103b73660046127ca565b610aa0565b6103787fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6102e2610b45565b6102e26103f936600461285d565b610b8a565b610301610d4a565b6103787faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f90081565b6102e261043b366004612894565b610d5c565b6102bf610d68565b6001546001600160a01b0316610301565b5f8051602061301f833981519152546001600160601b0316610276565b6102e26104843660046128ad565b610e1c565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b0316610301565b6102e26104c73660046128ad565b610f28565b5f6102bf565b610301610faa565b6104e26110db565b6040516001600160e01b0319909116815260200161028a565b610503611110565b60405161028a91906128c8565b6102e2611135565b6103785f8051602061301f83398151915281565b6105036111bb565b6102e2610542366004612657565b6111cb565b6102e261055536600461295b565b611217565b6103016112b4565b6102e2610570366004612985565b6112cf565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b0316610301565b6102e26105b33660046128ad565b6112e2565b6102e26105c63660046129cf565b611559565b6103787fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6102e2610600366004612a0d565b6115fb565b6102e2611671565b6102e261061b366004612a39565b6116e5565b5f610629611110565b60200151905090565b61063e335b5f366117f7565b5050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156106f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107199190612b43565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610761610faa565b6001600160a01b0316815260200182600101805461077e90612b5e565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa90612b5e565b80156107f55780601f106107cc576101008083540402835291602001916107f5565b820191905f5260205f20905b8154815290600101906020018083116107d857829003601f168201915b505050505081525091505090565b5f61080c611110565b60800151905090565b5f61081f306118f5565b905090565b606061082e611110565b51919050565b61083c610faa565b6001600160a01b0316336001600160a01b0316146108745760405163086391f760e31b81523360048201526024015b60405180910390fd5b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f9005460408051630339d25960e41b815290516001600160a01b039092169163339d2590916004808201925f9290919082900301818387803b1580156108d7575f80fd5b505af11580156108e9573d5f803e3d5ffd5b50505050565b5f6108f8610faa565b6001600160a01b0316336001600160a01b03161461092b5760405163086391f760e31b815233600482015260240161086b565b61093433610637565b60405163ca49882f60e01b815260206004820152600c60248201526b77697468647261774665657360a01b604482015260640161086b565b610974611aee565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f6109a1611110565b60400151905090565b5f6109bd6001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015610a01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a259190612b43565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610a7c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081f9190612ba1565b610aa8611aee565b610ab282876115fb565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610b3b8382612c00565b5050505050505050565b610b4d611aee565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610b92610faa565b6001600160a01b0316336001600160a01b031614610bc55760405163086391f760e31b815233600482015260240161086b565b30610bce610803565b6001600160a01b031614610bf55760405163b6d7537f60e01b815260040160405180910390fd5b816001600160a01b031663095ea7b3610c0c610d4a565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610c62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c869190612cba565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610cce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf29190612ba1565b507ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610d1c610d4a565b604080516001600160a01b0390921682526001600160601b0384166020830152015b60405180910390a15050565b5f610d53611110565b60600151905090565b610d6533610637565b50565b5f610d716109aa565b15610dec576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610dc5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d539190810190612d36565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b610e24611aee565b806001600160a01b03163b5f03610e595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610ed3575060408051601f3d908101601f19168201909252610ed091810190612ba1565b60015b610efb5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b80610f245760405163fdeac91f60e01b81526001600160a01b038316600482015260240161086b565b5050565b33610f316112b4565b6001600160a01b0316816001600160a01b031614610f6c5760405162d1953b60e31b81526001600160a01b038216600482015260240161086b565b816001600160a01b03163b5f03610fa1576040516361798f2f60e11b81526001600160a01b038316600482015260240161086b565b610f2482611b3e565b5f805f8051602061301f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611016573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103a9190612ba1565b156110c5576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561109b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bf9190612e06565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061303f83398151915280545f9190600160a01b900460ff16611102575f6110bf565b638fb3603760e01b91505090565b611118612420565b6111206109aa565b1561112d5761081f611b97565b61081f6111bb565b61113d610faa565b6001600160a01b0316336001600160a01b0316146111705760405163086391f760e31b815233600482015260240161086b565b61117a600a611d7d565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b1580156108d7575f80fd5b6111c3612420565b61081f611b97565b6111d3610faa565b6001600160a01b0316336001600160a01b0316146112065760405163086391f760e31b815233600482015260240161086b565b610d65611211610998565b82610b8a565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561125e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112829190612e06565b6001600160a01b0316336001600160a01b031614610f245760405162f0630960e01b815233600482015260240161086b565b5f8051602061303f833981519152546001600160a01b031690565b6112d833610637565b610f248282611e98565b6112ea610faa565b6001600160a01b0316336001600160a01b03161461131d5760405163086391f760e31b815233600482015260240161086b565b5f611326610803565b90505f611331610998565b6040516370a0823160e01b81526001600160a01b0384811660048301529192505f918316906370a0823190602401602060405180830381865afa15801561137a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139e9190612cba565b9050801561146d576001600160a01b038316301461146d57604051636eb1769f60e11b81526001600160a01b0384811660048301523060248301525f919084169063dd62ed3e90604401602060405180830381865afa158015611403573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114279190612cba565b90508181101561146b576040516372c963b360e11b81526001600160a01b03808616600483015286166024820152604481018290526064810183905260840161086b565b505b61147684611f29565b80156108e957306001600160a01b038416036114fc5760405163095ea7b360e01b8152306004820152602481018290526001600160a01b0383169063095ea7b3906044016020604051808303815f875af11580156114d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fa9190612ba1565b505b61150882848684611fc2565b604080516001600160a01b038086168252861660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a150505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c49190612e06565b6001600160a01b0316336001600160a01b0316146115f65760405162f0630960e01b815233600482015260240161086b565b505050565b611603611aee565b61160c81610e1c565b611614610b45565b6001600160a01b03821661163b5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061301f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b611679610faa565b6001600160a01b0316336001600160a01b0316146116ac5760405163086391f760e31b815233600482015260240161086b565b6116b6600a611d7d565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e906024016111a4565b6116ed611aee565b6116fb898987878787610aa0565b6117048a61201c565b6001600160a01b03861661172b576040516327eab2e360e11b815260040160405180910390fd5b86515f0361174c5760405163591eebf360e11b815260040160405180910390fd5b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806117788982612c00565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b87151502179055600381016117c98382612c00565b506117da634a531f3360e01b61096c565b6117ea632986755f60e11b61096c565b5050505050505050505050565b5f8051602061303f8339815191525f8061182f6118126112b4565b873061182160045f8a8c612e21565b61182a91612e48565b61202d565b91509150816118ed5763ffffffff8116156118ca57825460ff60a01b1916600160a01b17835561185d6112b4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161188c93929190612e80565b5f604051808303815f87803b1580156118a3575f80fd5b505af11580156118b5573d5f803e3d5ffd5b5050845460ff60a01b19168555506118ed9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161086b565b505050505050565b5f805f8051602061301f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611961573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119859190612ba1565b156119b15780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161086b565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611a03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a279190612ba1565b611a4f5760405163b9304b0d60e01b81526001600160a01b038416600482015260240161086b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611aa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac59190612b43565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16611b3c57604051631afcd79f60e31b815260040160405180910390fd5b565b5f8051602061303f83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001610d3e565b611b9f612420565b5f611bb26001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015611bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1a9190612b43565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611c73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c979190612ba1565b15611d75577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c3611cf35f8051602061301f833981519152546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015611d34573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d5b9190810190612ebf565b60808101519092506001600160a01b031615611d75575090565b6110bf612135565b5f807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f005460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015611de6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0a9190612f97565b9050611e1e6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa158015611e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e919190612e06565b9392505050565b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f901546040516367a773bd60e11b81526001600160a01b039091169063cf4ee77a90611ee99085908590600401612fb2565b6020604051808303815f875af1158015611f05573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115f69190612ba1565b611f31610faa565b6001600160a01b0316336001600160a01b031614611f645760405163086391f760e31b815233600482015260240161086b565b611f6e600b611d7d565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015611fb0575f80fd5b505af115801561063e573d5f803e3d5ffd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526108e99085906122ac565b612024611aee565b610d658161230d565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161209b9190612fd3565b5f60405180830381855afa9150503d805f81146120d3576040519150601f19603f3d011682016040523d82523d5f602084013e6120d8565b606091505b5091509150811561212a57604081511061210a57808060200190518101906121009190612fe9565b909450925061212a565b602081511061212a57808060200190518101906121279190612ba1565b93505b505094509492505050565b61213d612420565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060c00160405280825f01805461217a90612b5e565b80601f01602080910402602001604051908101604052809291908181526020018280546121a690612b5e565b80156121f15780601f106121c8576101008083540402835291602001916121f1565b820191905f5260205f20905b8154815290600101906020018083116121d457829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612242573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122669190612b43565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161077e90612b5e565b5f6122c06001600160a01b0384168361231e565b905080515f141580156122e45750808060200190518101906122e29190612ba1565b155b156115f657604051635274afe760e01b81526001600160a01b038416600482015260240161086b565b612315611aee565b610d6581611b3e565b6060611e9183835f845f80856001600160a01b031684866040516123429190612fd3565b5f6040518083038185875af1925050503d805f811461237c576040519150601f19603f3d011682016040523d82523d5f602084013e612381565b606091505b509150915061239186838361239b565b9695505050505050565b6060826123b0576123ab826123f7565b611e91565b81511580156123c757506001600160a01b0384163b155b156123f057604051639996b31560e01b81526001600160a01b038516600482015260240161086b565b5080611e91565b8051156124075780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215612486575f80fd5b81356001600160e01b031981168114611e91575f80fd5b80356001600160401b03811681146124b3575f80fd5b919050565b6001600160601b0381168114610d65575f80fd5b80356124b3816124b8565b5f805f805f608086880312156124eb575f80fd5b6124f48661249d565b94506020860135612504816124b8565b935060408601356001600160401b0381111561251e575f80fd5b8601601f8101881361252e575f80fd5b80356001600160401b03811115612543575f80fd5b886020828401011115612554575f80fd5b60209190910193509150606086013564ffffffffff81168114612575575f80fd5b809150509295509295909350565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516125f9608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261263d610100840182612583565b949350505050565b602081525f611e916020830184612583565b5f60208284031215612667575f80fd5b8135611e91816124b8565b6001600160a01b0381168114610d65575f80fd5b80356124b381612672565b60ff81168114610d65575f80fd5b80356124b381612691565b8015158114610d65575f80fd5b80356124b3816126aa565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156126f8576126f86126c2565b60405290565b60405160c081016001600160401b03811182821017156126f8576126f86126c2565b604051601f8201601f191681016001600160401b0381118282101715612748576127486126c2565b604052919050565b5f6001600160401b03821115612768576127686126c2565b50601f01601f191660200190565b5f82601f830112612785575f80fd5b8135602083015f61279d61279884612750565b612720565b90508281528583830111156127b0575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c087890312156127df575f80fd5b86356127ea81612672565b955060208701356127fa816124b8565b9450604087013561280a81612691565b9350606087013561281a816126aa565b9250608087013561282a81612672565b915060a08701356001600160401b03811115612844575f80fd5b61285089828a01612776565b9150509295509295509295565b5f806040838503121561286e575f80fd5b823561287981612672565b91506020830135612889816124b8565b809150509250929050565b5f602082840312156128a4575f80fd5b611e918261249d565b5f602082840312156128bd575f80fd5b8135611e9181612672565b602081525f825160c060208401526128e360e0840182612583565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161293660a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526129528282612583565b95945050505050565b5f806040838503121561296c575f80fd5b823561297781612672565b946020939093013593505050565b5f8060408385031215612996575f80fd5b61299f8361249d565b915060208301356001600160401b038111156129b9575f80fd5b6129c585828601612776565b9150509250929050565b5f805f606084860312156129e1575f80fd5b83356129ec81612672565b925060208401356129fc81612672565b929592945050506040919091013590565b5f8060408385031215612a1e575f80fd5b8235612a2981612672565b9150602083013561288981612672565b5f805f805f805f805f806101408b8d031215612a53575f80fd5b612a5c8b612686565b9950612a6a60208c01612686565b9850612a7860408c016124cc565b975060608b01356001600160401b03811115612a92575f80fd5b612a9e8d828e01612776565b975050612aad60808c01612686565b9550612abb60a08c0161269f565b9450612ac960c08c016126b7565b9350612ad760e08c01612686565b92506101008b01356001600160401b03811115612af2575f80fd5b612afe8d828e01612776565b9250506101208b01356001600160401b03811115612b1a575f80fd5b612b268d828e01612776565b9150509295989b9194979a5092959850565b80516124b3816124b8565b5f60208284031215612b53575f80fd5b8151611e91816124b8565b600181811c90821680612b7257607f821691505b602082108103612b9057634e487b7160e01b5f52602260045260245ffd5b50919050565b80516124b3816126aa565b5f60208284031215612bb1575f80fd5b8151611e91816126aa565b601f8211156115f657805f5260205f20601f840160051c81016020851015612be15750805b601f840160051c820191505b8181101561063e575f8155600101612bed565b81516001600160401b03811115612c1957612c196126c2565b612c2d81612c278454612b5e565b84612bbc565b6020601f821160018114612c5f575f8315612c485750848201515b5f19600385901b1c1916600184901b17845561063e565b5f84815260208120601f198516915b82811015612c8e5787850151825560209485019460019092019101612c6e565b5084821015612cab57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215612cca575f80fd5b5051919050565b80516124b381612691565b80516124b381612672565b5f82601f830112612cf6575f80fd5b8151602083015f612d0961279884612750565b9050828152858383011115612d1c575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215612d46575f80fd5b81516001600160401b03811115612d5b575f80fd5b820160e08185031215612d6c575f80fd5b612d746126d6565b612d7d82612b38565b8152612d8b60208301612b38565b6020820152612d9c60408301612cd1565b6040820152612dad60608301612b96565b6060820152612dbe60808301612cdc565b6080820152612dcf60a08301612cdc565b60a082015260c08201516001600160401b03811115612dec575f80fd5b612df886828501612ce7565b60c083015250949350505050565b5f60208284031215612e16575f80fd5b8151611e9181612672565b5f8085851115612e2f575f80fd5b83861115612e3b575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612e79576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215612ecf575f80fd5b81516001600160401b03811115612ee4575f80fd5b820160c08185031215612ef5575f80fd5b612efd6126fe565b81516001600160401b03811115612f12575f80fd5b612f1e86828501612ce7565b825250612f2d60208301612b38565b6020820152612f3e60408301612cdc565b6040820152612f4f60608301612cdc565b6060820152612f6060808301612cdc565b608082015260a08201516001600160401b03811115612f7d575f80fd5b612f8986828501612ce7565b60a083015250949350505050565b5f60208284031215612fa7575f80fd5b8151611e9181612691565b6001600160401b0383168152604060208201525f61263d6040830184612583565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612ffa575f80fd5b8251613005816126aa565b602084015190925063ffffffff81168114612889575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220f43bbd390e1477a311bfb06461d4cc329972dcd8ab5dfb0773ea4f27330e4e2564736f6c634300081a0033",
         | 
| 1108 | 
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061026a575f3560e01c8063644c45e01161014b578063bae99c99116100bf578063deaa59df11610084578063deaa59df146105a5578063e7f7fb86146105b8578063ea15869f146105cb578063f7c34ee0146105f2578063f83d08ba14610605578063f8bf0d9f1461060d575f80fd5b8063bae99c9914610534578063bb1e0e5914610547578063bf7e214f1461055a578063cf4ee77a14610562578063de7b5d1414610575575f80fd5b8063893d20e811610110578063893d20e8146104d25780638fb36037146104da57806390edbd35146104fb578063a69df4b514610510578063ada9652e14610518578063b423086c1461052c575f80fd5b8063644c45e014610459578063675393bf146104765780636bd1c0eb146104895780637a9e5e4b146104b957806387ef9ba0146104cc575f80fd5b806321df0da7116101e2578063419197fe116101a7578063419197fe146103eb57806343d752d3146103fe5780634bd100e4146104065780634c125e791461042d5780635741e5e9146104405780635ab1bd5314610448575f80fd5b806321df0da71461039957806322366844146103a157806327bb7a33146103a95780632eb3e6f4146103bc57806336fc697e146103e3575f80fd5b8063138461e011610233578063138461e01461031957806317d7de7c146103215780631aa3a008146103365780631c6b21901461033e5780631eff4b2214610351578063214cdb8014610386575f80fd5b806251884a1461026e57806301ffc9a7146102935780630b29e28e146102cf5780630fec111c146102e457806313299604146102f9575b5f80fd5b610276610620565b6040516001600160601b0390911681526020015b60405180910390f35b6102bf6102a1366004612476565b6001600160e01b0319165f9081526020819052604090205460ff1690565b604051901515815260200161028a565b6102e26102dd3660046124d7565b610632565b005b6102ec610645565b60405161028a91906125b1565b610301610803565b6040516001600160a01b03909116815260200161028a565b610276610815565b610329610824565b60405161028a9190612645565b6102e2610834565b61027661034c366004612657565b6108ef565b6103787f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161028a565b6102e2610394366004612476565b61096c565b610301610998565b6102bf6109aa565b6102e26103b73660046127ca565b610aa0565b6103787fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6102e2610b45565b6102e26103f936600461285d565b610b8a565b610301610d4a565b6103787faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f90081565b6102e261043b366004612894565b610d5c565b6102bf610d68565b6001546001600160a01b0316610301565b5f8051602061301f833981519152546001600160601b0316610276565b6102e26104843660046128ad565b610e1c565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b0316610301565b6102e26104c73660046128ad565b610f28565b5f6102bf565b610301610faa565b6104e26110db565b6040516001600160e01b0319909116815260200161028a565b610503611110565b60405161028a91906128c8565b6102e2611135565b6103785f8051602061301f83398151915281565b6105036111bb565b6102e2610542366004612657565b6111cb565b6102e261055536600461295b565b611217565b6103016112b4565b6102e2610570366004612985565b6112cf565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b0316610301565b6102e26105b33660046128ad565b6112e2565b6102e26105c63660046129cf565b611559565b6103787fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6102e2610600366004612a0d565b6115fb565b6102e2611671565b6102e261061b366004612a39565b6116e5565b5f610629611110565b60200151905090565b61063e335b5f366117f7565b5050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156106f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107199190612b43565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610761610faa565b6001600160a01b0316815260200182600101805461077e90612b5e565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa90612b5e565b80156107f55780601f106107cc576101008083540402835291602001916107f5565b820191905f5260205f20905b8154815290600101906020018083116107d857829003601f168201915b505050505081525091505090565b5f61080c611110565b60800151905090565b5f61081f306118f5565b905090565b606061082e611110565b51919050565b61083c610faa565b6001600160a01b0316336001600160a01b0316146108745760405163086391f760e31b81523360048201526024015b60405180910390fd5b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f9005460408051630339d25960e41b815290516001600160a01b039092169163339d2590916004808201925f9290919082900301818387803b1580156108d7575f80fd5b505af11580156108e9573d5f803e3d5ffd5b50505050565b5f6108f8610faa565b6001600160a01b0316336001600160a01b03161461092b5760405163086391f760e31b815233600482015260240161086b565b61093433610637565b60405163ca49882f60e01b815260206004820152600c60248201526b77697468647261774665657360a01b604482015260640161086b565b610974611aee565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f6109a1611110565b60400151905090565b5f6109bd6001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015610a01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a259190612b43565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610a7c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081f9190612ba1565b610aa8611aee565b610ab282876115fb565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610b3b8382612c00565b5050505050505050565b610b4d611aee565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610b92610faa565b6001600160a01b0316336001600160a01b031614610bc55760405163086391f760e31b815233600482015260240161086b565b30610bce610803565b6001600160a01b031614610bf55760405163b6d7537f60e01b815260040160405180910390fd5b816001600160a01b031663095ea7b3610c0c610d4a565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610c62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c869190612cba565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610cce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf29190612ba1565b507ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610d1c610d4a565b604080516001600160a01b0390921682526001600160601b0384166020830152015b60405180910390a15050565b5f610d53611110565b60600151905090565b610d6533610637565b50565b5f610d716109aa565b15610dec576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610dc5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d539190810190612d36565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b610e24611aee565b806001600160a01b03163b5f03610e595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610ed3575060408051601f3d908101601f19168201909252610ed091810190612ba1565b60015b610efb5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b80610f245760405163fdeac91f60e01b81526001600160a01b038316600482015260240161086b565b5050565b33610f316112b4565b6001600160a01b0316816001600160a01b031614610f6c5760405162d1953b60e31b81526001600160a01b038216600482015260240161086b565b816001600160a01b03163b5f03610fa1576040516361798f2f60e11b81526001600160a01b038316600482015260240161086b565b610f2482611b3e565b5f805f8051602061301f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611016573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103a9190612ba1565b156110c5576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561109b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bf9190612e06565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061303f83398151915280545f9190600160a01b900460ff16611102575f6110bf565b638fb3603760e01b91505090565b611118612420565b6111206109aa565b1561112d5761081f611b97565b61081f6111bb565b61113d610faa565b6001600160a01b0316336001600160a01b0316146111705760405163086391f760e31b815233600482015260240161086b565b61117a600a611d7d565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b1580156108d7575f80fd5b6111c3612420565b61081f611b97565b6111d3610faa565b6001600160a01b0316336001600160a01b0316146112065760405163086391f760e31b815233600482015260240161086b565b610d65611211610998565b82610b8a565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561125e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112829190612e06565b6001600160a01b0316336001600160a01b031614610f245760405162f0630960e01b815233600482015260240161086b565b5f8051602061303f833981519152546001600160a01b031690565b6112d833610637565b610f248282611e98565b6112ea610faa565b6001600160a01b0316336001600160a01b03161461131d5760405163086391f760e31b815233600482015260240161086b565b5f611326610803565b90505f611331610998565b6040516370a0823160e01b81526001600160a01b0384811660048301529192505f918316906370a0823190602401602060405180830381865afa15801561137a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139e9190612cba565b9050801561146d576001600160a01b038316301461146d57604051636eb1769f60e11b81526001600160a01b0384811660048301523060248301525f919084169063dd62ed3e90604401602060405180830381865afa158015611403573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114279190612cba565b90508181101561146b576040516372c963b360e11b81526001600160a01b03808616600483015286166024820152604481018290526064810183905260840161086b565b505b61147684611f29565b80156108e957306001600160a01b038416036114fc5760405163095ea7b360e01b8152306004820152602481018290526001600160a01b0383169063095ea7b3906044016020604051808303815f875af11580156114d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fa9190612ba1565b505b61150882848684611fc2565b604080516001600160a01b038086168252861660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a150505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c49190612e06565b6001600160a01b0316336001600160a01b0316146115f65760405162f0630960e01b815233600482015260240161086b565b505050565b611603611aee565b61160c81610e1c565b611614610b45565b6001600160a01b03821661163b5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061301f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b611679610faa565b6001600160a01b0316336001600160a01b0316146116ac5760405163086391f760e31b815233600482015260240161086b565b6116b6600a611d7d565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e906024016111a4565b6116ed611aee565b6116fb898987878787610aa0565b6117048a61201c565b6001600160a01b03861661172b576040516327eab2e360e11b815260040160405180910390fd5b86515f0361174c5760405163591eebf360e11b815260040160405180910390fd5b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806117788982612c00565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b87151502179055600381016117c98382612c00565b506117da634a531f3360e01b61096c565b6117ea632986755f60e11b61096c565b5050505050505050505050565b5f8051602061303f8339815191525f8061182f6118126112b4565b873061182160045f8a8c612e21565b61182a91612e48565b61202d565b91509150816118ed5763ffffffff8116156118ca57825460ff60a01b1916600160a01b17835561185d6112b4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161188c93929190612e80565b5f604051808303815f87803b1580156118a3575f80fd5b505af11580156118b5573d5f803e3d5ffd5b5050845460ff60a01b19168555506118ed9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161086b565b505050505050565b5f805f8051602061301f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611961573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119859190612ba1565b156119b15780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161086b565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611a03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a279190612ba1565b611a4f5760405163b9304b0d60e01b81526001600160a01b038416600482015260240161086b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611aa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac59190612b43565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16611b3c57604051631afcd79f60e31b815260040160405180910390fd5b565b5f8051602061303f83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001610d3e565b611b9f612420565b5f611bb26001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015611bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1a9190612b43565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611c73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c979190612ba1565b15611d75577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c3611cf35f8051602061301f833981519152546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015611d34573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d5b9190810190612ebf565b60808101519092506001600160a01b031615611d75575090565b6110bf612135565b5f807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f005460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015611de6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0a9190612f97565b9050611e1e6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa158015611e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e919190612e06565b9392505050565b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f901546040516367a773bd60e11b81526001600160a01b039091169063cf4ee77a90611ee99085908590600401612fb2565b6020604051808303815f875af1158015611f05573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115f69190612ba1565b611f31610faa565b6001600160a01b0316336001600160a01b031614611f645760405163086391f760e31b815233600482015260240161086b565b611f6e600b611d7d565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015611fb0575f80fd5b505af115801561063e573d5f803e3d5ffd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526108e99085906122ac565b612024611aee565b610d658161230d565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161209b9190612fd3565b5f60405180830381855afa9150503d805f81146120d3576040519150601f19603f3d011682016040523d82523d5f602084013e6120d8565b606091505b5091509150811561212a57604081511061210a57808060200190518101906121009190612fe9565b909450925061212a565b602081511061212a57808060200190518101906121279190612ba1565b93505b505094509492505050565b61213d612420565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060c00160405280825f01805461217a90612b5e565b80601f01602080910402602001604051908101604052809291908181526020018280546121a690612b5e565b80156121f15780601f106121c8576101008083540402835291602001916121f1565b820191905f5260205f20905b8154815290600101906020018083116121d457829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612242573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122669190612b43565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161077e90612b5e565b5f6122c06001600160a01b0384168361231e565b905080515f141580156122e45750808060200190518101906122e29190612ba1565b155b156115f657604051635274afe760e01b81526001600160a01b038416600482015260240161086b565b612315611aee565b610d6581611b3e565b6060611e9183835f845f80856001600160a01b031684866040516123429190612fd3565b5f6040518083038185875af1925050503d805f811461237c576040519150601f19603f3d011682016040523d82523d5f602084013e612381565b606091505b509150915061239186838361239b565b9695505050505050565b6060826123b0576123ab826123f7565b611e91565b81511580156123c757506001600160a01b0384163b155b156123f057604051639996b31560e01b81526001600160a01b038516600482015260240161086b565b5080611e91565b8051156124075780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215612486575f80fd5b81356001600160e01b031981168114611e91575f80fd5b80356001600160401b03811681146124b3575f80fd5b919050565b6001600160601b0381168114610d65575f80fd5b80356124b3816124b8565b5f805f805f608086880312156124eb575f80fd5b6124f48661249d565b94506020860135612504816124b8565b935060408601356001600160401b0381111561251e575f80fd5b8601601f8101881361252e575f80fd5b80356001600160401b03811115612543575f80fd5b886020828401011115612554575f80fd5b60209190910193509150606086013564ffffffffff81168114612575575f80fd5b809150509295509295909350565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516125f9608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261263d610100840182612583565b949350505050565b602081525f611e916020830184612583565b5f60208284031215612667575f80fd5b8135611e91816124b8565b6001600160a01b0381168114610d65575f80fd5b80356124b381612672565b60ff81168114610d65575f80fd5b80356124b381612691565b8015158114610d65575f80fd5b80356124b3816126aa565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156126f8576126f86126c2565b60405290565b60405160c081016001600160401b03811182821017156126f8576126f86126c2565b604051601f8201601f191681016001600160401b0381118282101715612748576127486126c2565b604052919050565b5f6001600160401b03821115612768576127686126c2565b50601f01601f191660200190565b5f82601f830112612785575f80fd5b8135602083015f61279d61279884612750565b612720565b90508281528583830111156127b0575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c087890312156127df575f80fd5b86356127ea81612672565b955060208701356127fa816124b8565b9450604087013561280a81612691565b9350606087013561281a816126aa565b9250608087013561282a81612672565b915060a08701356001600160401b03811115612844575f80fd5b61285089828a01612776565b9150509295509295509295565b5f806040838503121561286e575f80fd5b823561287981612672565b91506020830135612889816124b8565b809150509250929050565b5f602082840312156128a4575f80fd5b611e918261249d565b5f602082840312156128bd575f80fd5b8135611e9181612672565b602081525f825160c060208401526128e360e0840182612583565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161293660a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526129528282612583565b95945050505050565b5f806040838503121561296c575f80fd5b823561297781612672565b946020939093013593505050565b5f8060408385031215612996575f80fd5b61299f8361249d565b915060208301356001600160401b038111156129b9575f80fd5b6129c585828601612776565b9150509250929050565b5f805f606084860312156129e1575f80fd5b83356129ec81612672565b925060208401356129fc81612672565b929592945050506040919091013590565b5f8060408385031215612a1e575f80fd5b8235612a2981612672565b9150602083013561288981612672565b5f805f805f805f805f806101408b8d031215612a53575f80fd5b612a5c8b612686565b9950612a6a60208c01612686565b9850612a7860408c016124cc565b975060608b01356001600160401b03811115612a92575f80fd5b612a9e8d828e01612776565b975050612aad60808c01612686565b9550612abb60a08c0161269f565b9450612ac960c08c016126b7565b9350612ad760e08c01612686565b92506101008b01356001600160401b03811115612af2575f80fd5b612afe8d828e01612776565b9250506101208b01356001600160401b03811115612b1a575f80fd5b612b268d828e01612776565b9150509295989b9194979a5092959850565b80516124b3816124b8565b5f60208284031215612b53575f80fd5b8151611e91816124b8565b600181811c90821680612b7257607f821691505b602082108103612b9057634e487b7160e01b5f52602260045260245ffd5b50919050565b80516124b3816126aa565b5f60208284031215612bb1575f80fd5b8151611e91816126aa565b601f8211156115f657805f5260205f20601f840160051c81016020851015612be15750805b601f840160051c820191505b8181101561063e575f8155600101612bed565b81516001600160401b03811115612c1957612c196126c2565b612c2d81612c278454612b5e565b84612bbc565b6020601f821160018114612c5f575f8315612c485750848201515b5f19600385901b1c1916600184901b17845561063e565b5f84815260208120601f198516915b82811015612c8e5787850151825560209485019460019092019101612c6e565b5084821015612cab57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215612cca575f80fd5b5051919050565b80516124b381612691565b80516124b381612672565b5f82601f830112612cf6575f80fd5b8151602083015f612d0961279884612750565b9050828152858383011115612d1c575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215612d46575f80fd5b81516001600160401b03811115612d5b575f80fd5b820160e08185031215612d6c575f80fd5b612d746126d6565b612d7d82612b38565b8152612d8b60208301612b38565b6020820152612d9c60408301612cd1565b6040820152612dad60608301612b96565b6060820152612dbe60808301612cdc565b6080820152612dcf60a08301612cdc565b60a082015260c08201516001600160401b03811115612dec575f80fd5b612df886828501612ce7565b60c083015250949350505050565b5f60208284031215612e16575f80fd5b8151611e9181612672565b5f8085851115612e2f575f80fd5b83861115612e3b575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612e79576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215612ecf575f80fd5b81516001600160401b03811115612ee4575f80fd5b820160c08185031215612ef5575f80fd5b612efd6126fe565b81516001600160401b03811115612f12575f80fd5b612f1e86828501612ce7565b825250612f2d60208301612b38565b6020820152612f3e60408301612cdc565b6040820152612f4f60608301612cdc565b6060820152612f6060808301612cdc565b608082015260a08201516001600160401b03811115612f7d575f80fd5b612f8986828501612ce7565b60a083015250949350505050565b5f60208284031215612fa7575f80fd5b8151611e9181612691565b6001600160401b0383168152604060208201525f61263d6040830184612583565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612ffa575f80fd5b8251613005816126aa565b602084015190925063ffffffff81168114612889575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220f43bbd390e1477a311bfb06461d4cc329972dcd8ab5dfb0773ea4f27330e4e2564736f6c634300081a0033",
         | 
| 1109 | 
            +
              "linkReferences": {
         | 
| 1110 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1111 | 
            +
                  "AmountLib": [
         | 
| 1112 | 
            +
                    {
         | 
| 1113 | 
            +
                      "length": 20,
         | 
| 1114 | 
            +
                      "start": 3142
         | 
| 1115 | 
            +
                    }
         | 
| 1116 | 
            +
                  ]
         | 
| 1117 | 
            +
                },
         | 
| 1118 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1119 | 
            +
                  "NftIdLib": [
         | 
| 1120 | 
            +
                    {
         | 
| 1121 | 
            +
                      "length": 20,
         | 
| 1122 | 
            +
                      "start": 1740
         | 
| 1123 | 
            +
                    },
         | 
| 1124 | 
            +
                    {
         | 
| 1125 | 
            +
                      "length": 20,
         | 
| 1126 | 
            +
                      "start": 2656
         | 
| 1127 | 
            +
                    },
         | 
| 1128 | 
            +
                    {
         | 
| 1129 | 
            +
                      "length": 20,
         | 
| 1130 | 
            +
                      "start": 4090
         | 
| 1131 | 
            +
                    },
         | 
| 1132 | 
            +
                    {
         | 
| 1133 | 
            +
                      "length": 20,
         | 
| 1134 | 
            +
                      "start": 6469
         | 
| 1135 | 
            +
                    },
         | 
| 1136 | 
            +
                    {
         | 
| 1137 | 
            +
                      "length": 20,
         | 
| 1138 | 
            +
                      "start": 7255
         | 
| 1139 | 
            +
                    },
         | 
| 1140 | 
            +
                    {
         | 
| 1141 | 
            +
                      "length": 20,
         | 
| 1142 | 
            +
                      "start": 8729
         | 
| 1143 | 
            +
                    }
         | 
| 1144 | 
            +
                  ]
         | 
| 1145 | 
            +
                }
         | 
| 1146 | 
            +
              },
         | 
| 1147 | 
            +
              "deployedLinkReferences": {
         | 
| 1148 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1149 | 
            +
                  "AmountLib": [
         | 
| 1150 | 
            +
                    {
         | 
| 1151 | 
            +
                      "length": 20,
         | 
| 1152 | 
            +
                      "start": 3114
         | 
| 1153 | 
            +
                    }
         | 
| 1154 | 
            +
                  ]
         | 
| 1155 | 
            +
                },
         | 
| 1156 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1157 | 
            +
                  "NftIdLib": [
         | 
| 1158 | 
            +
                    {
         | 
| 1159 | 
            +
                      "length": 20,
         | 
| 1160 | 
            +
                      "start": 1712
         | 
| 1161 | 
            +
                    },
         | 
| 1162 | 
            +
                    {
         | 
| 1163 | 
            +
                      "length": 20,
         | 
| 1164 | 
            +
                      "start": 2628
         | 
| 1165 | 
            +
                    },
         | 
| 1166 | 
            +
                    {
         | 
| 1167 | 
            +
                      "length": 20,
         | 
| 1168 | 
            +
                      "start": 4062
         | 
| 1169 | 
            +
                    },
         | 
| 1170 | 
            +
                    {
         | 
| 1171 | 
            +
                      "length": 20,
         | 
| 1172 | 
            +
                      "start": 6441
         | 
| 1173 | 
            +
                    },
         | 
| 1174 | 
            +
                    {
         | 
| 1175 | 
            +
                      "length": 20,
         | 
| 1176 | 
            +
                      "start": 7227
         | 
| 1177 | 
            +
                    },
         | 
| 1178 | 
            +
                    {
         | 
| 1179 | 
            +
                      "length": 20,
         | 
| 1180 | 
            +
                      "start": 8701
         | 
| 1181 | 
            +
                    }
         | 
| 1182 | 
            +
                  ]
         | 
| 1183 | 
            +
                }
         | 
| 1184 | 
            +
              }
         | 
| 1185 | 
            +
            }
         |