@etherisc/gif-next 0.0.2-790d44b-698 → 0.0.2-79292f9-089
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 +267 -42
- 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/access → authorization}/IAccess.sol/IAccess.json +1 -1
- 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 +195 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1489 -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/distribution/Distribution.sol/Distribution.json +1159 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1502 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +842 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +906 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +914 -0
- 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 +283 -1679
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +495 -2044
- 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 +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1693 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1160 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3469 -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/base/Cloneable.sol/Cloneable.json +137 -0
- 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 +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/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 +1126 -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 +765 -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 +1018 -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 +1395 -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 +1466 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +818 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +907 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +909 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1218 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1181 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1625 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +758 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +852 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1243 -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 +1331 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +230 -384
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +788 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +800 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IPricingService.sol/IPricingService.json} +328 -260
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +948 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IRiskService.sol/IRiskService.json} +187 -192
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1263 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +782 -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/product/Product.sol/Product.json +1201 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +695 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +702 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +242 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +924 -119
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +940 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1106 -235
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1861 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
- 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 +1133 -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 +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +832 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1680 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +804 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +605 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +700 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
- 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 +4 -0
- package/artifacts/contracts/{instance/module/component/IComponent.sol/IComponentModule.json → shared/INftOwnable.sol/INftOwnable.json} +66 -52
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +159 -154
- 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 +940 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +102 -165
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
- 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 +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/Service.sol/Service.json} +260 -193
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +469 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1412 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +387 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1941 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +222 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
- 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 +81 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
- 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/upgradeability/Versionable.sol/Versionable.json +78 -0
- package/contracts/authorization/AccessAdmin.sol +590 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +220 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +135 -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 +91 -0
- package/contracts/distribution/BasicDistribution.sol +138 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/distribution/Distribution.sol +295 -0
- package/contracts/distribution/DistributionService.sol +322 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/distribution/IDistributionService.sol +95 -0
- package/contracts/instance/BundleSet.sol +126 -0
- package/contracts/instance/IInstance.sol +57 -47
- package/contracts/instance/IInstanceService.sol +92 -0
- package/contracts/instance/Instance.sol +216 -61
- package/contracts/instance/InstanceAdmin.sol +285 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +408 -0
- package/contracts/instance/InstanceService.sol +466 -0
- package/contracts/instance/InstanceServiceManager.sol +40 -0
- 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 +105 -0
- package/contracts/instance/base/ObjectSet.sol +79 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +46 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +167 -0
- package/contracts/oracle/OracleService.sol +279 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +166 -0
- package/contracts/pool/BasicPoolAuthorization.sol +58 -0
- package/contracts/pool/BundleService.sol +436 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +134 -0
- package/contracts/pool/IPoolComponent.sol +58 -0
- package/contracts/pool/IPoolService.sol +163 -0
- package/contracts/pool/Pool.sol +328 -0
- package/contracts/pool/PoolService.sol +541 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +250 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +53 -0
- package/contracts/product/BasicProductAuthorization.sol +43 -0
- package/contracts/product/ClaimService.sol +416 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +63 -0
- package/contracts/product/IClaimService.sol +100 -0
- package/contracts/product/IPolicyService.sol +84 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +40 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +584 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +304 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +411 -0
- package/contracts/product/RiskService.sol +97 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +131 -40
- package/contracts/registry/IRegistry.sol +140 -29
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +593 -346
- package/contracts/registry/RegistryAdmin.sol +464 -0
- package/contracts/registry/RegistryService.sol +251 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseLifecycle.sol +29 -0
- package/contracts/registry/ReleaseRegistry.sol +538 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/Component.sol +268 -0
- package/contracts/shared/ComponentService.sol +641 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +108 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/{instance/base → shared}/ILifecycle.sol +4 -5
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +10 -19
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +25 -0
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InitializableERC165.sol +27 -0
- 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 +107 -0
- package/contracts/shared/PolicyHolder.sol +99 -0
- package/contracts/shared/Registerable.sol +54 -65
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +82 -0
- package/contracts/shared/TokenHandler.sol +139 -0
- package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
- package/contracts/staking/IStaking.sol +167 -0
- package/contracts/staking/IStakingService.sol +160 -0
- package/contracts/staking/StakeManagerLib.sol +206 -0
- package/contracts/staking/Staking.sol +497 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +50 -0
- package/contracts/staking/StakingReader.sol +183 -0
- package/contracts/staking/StakingService.sol +407 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +135 -0
- package/contracts/{types → type}/Blocknumber.sol +27 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/{types → type}/Key32.sol +8 -3
- package/contracts/{types → type}/NftId.sol +21 -15
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +271 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +90 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +1 -1
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +93 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +43 -5
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +38 -15
- package/contracts/type/UFixed.sol +351 -0
- package/contracts/{types → type}/Version.sol +13 -3
- package/contracts/upgradeability/IVersionable.sol +53 -0
- package/contracts/upgradeability/ProxyManager.sol +198 -0
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +14 -0
- package/contracts/upgradeability/Versionable.sol +59 -0
- package/package.json +11 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -405
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -174
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -340
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -487
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -370
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -578
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -444
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -364
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- 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/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.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 -710
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -364
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -284
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -511
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -511
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -595
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -484
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -366
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -607
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -922
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +0 -4
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +0 -248
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +0 -4
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -405
- 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/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -578
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -575
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
- 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 -443
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
- 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 -270
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
- 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/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 -111
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- 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/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
- 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 -30
- 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/Timestamp.sol/TimestampLib.json +0 -236
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.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 -30
- package/contracts/components/BaseComponent.sol +0 -94
- package/contracts/components/Distribution.sol +0 -132
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/components/IDistributionComponent.sol +0 -47
- package/contracts/components/IPoolComponent.sol +0 -71
- package/contracts/components/IProductComponent.sol +0 -38
- package/contracts/components/Pool.sol +0 -235
- package/contracts/components/Product.sol +0 -227
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -22
- package/contracts/instance/base/IKeyValueStore.sol +0 -50
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -91
- package/contracts/instance/base/KeyValueStore.sol +0 -161
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -70
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -40
- package/contracts/instance/module/pool/PoolModule.sol +0 -90
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -82
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -138
- package/contracts/instance/service/ComponentOwnerService.sol +0 -157
- package/contracts/instance/service/DistributionService.sol +0 -59
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- package/contracts/instance/service/IDistributionService.sol +0 -12
- package/contracts/instance/service/IPoolService.sol +0 -37
- package/contracts/instance/service/IProductService.sol +0 -107
- package/contracts/instance/service/PoolService.sol +0 -149
- package/contracts/instance/service/ProductService.sol +0 -509
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/ERC165.sol +0 -21
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/shared/IVersionable.sol +0 -94
- package/contracts/shared/Proxy.sol +0 -94
- package/contracts/shared/Versionable.sol +0 -141
- package/contracts/test/TestDistribution.sol +0 -21
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestPool.sol +0 -25
- package/contracts/test/TestProduct.sol +0 -72
- package/contracts/test/TestRegisterable.sol +0 -19
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -32
- 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/Fee.sol +0 -56
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/ObjectType.sol +0 -131
- package/contracts/types/ReferralId.sol +0 -48
- package/contracts/types/RoleId.sol +0 -38
- package/contracts/types/UFixed.sol +0 -209
@@ -0,0 +1,786 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "PricingServiceManager",
|
4
|
+
"sourceName": "contracts/product/PricingServiceManager.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "address",
|
15
|
+
"name": "registryAddress",
|
16
|
+
"type": "address"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"internalType": "bytes32",
|
20
|
+
"name": "salt",
|
21
|
+
"type": "bytes32"
|
22
|
+
}
|
23
|
+
],
|
24
|
+
"stateMutability": "nonpayable",
|
25
|
+
"type": "constructor"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"inputs": [
|
29
|
+
{
|
30
|
+
"internalType": "NftId",
|
31
|
+
"name": "nftId",
|
32
|
+
"type": "uint96"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
36
|
+
"type": "error"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"inputs": [
|
40
|
+
{
|
41
|
+
"internalType": "address",
|
42
|
+
"name": "contractAddress",
|
43
|
+
"type": "address"
|
44
|
+
}
|
45
|
+
],
|
46
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
47
|
+
"type": "error"
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"inputs": [],
|
51
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
52
|
+
"type": "error"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"inputs": [
|
56
|
+
{
|
57
|
+
"internalType": "address",
|
58
|
+
"name": "account",
|
59
|
+
"type": "address"
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"name": "ErrorNftOwnableNotOwner",
|
63
|
+
"type": "error"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "address",
|
69
|
+
"name": "registryAddress",
|
70
|
+
"type": "address"
|
71
|
+
}
|
72
|
+
],
|
73
|
+
"name": "ErrorNotRegistry",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [
|
78
|
+
{
|
79
|
+
"internalType": "Version",
|
80
|
+
"name": "nextVersion",
|
81
|
+
"type": "uint24"
|
82
|
+
}
|
83
|
+
],
|
84
|
+
"name": "ErrorProxyManagerNextVersionNotIncreasing",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [],
|
89
|
+
"name": "ErrorProxyManagerNotYetDeployed",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [],
|
94
|
+
"name": "ErrorProxyManagerProxyAlreadyDeployed",
|
95
|
+
"type": "error"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"inputs": [],
|
99
|
+
"name": "ErrorProxyManagerZeroVersion",
|
100
|
+
"type": "error"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"inputs": [],
|
104
|
+
"name": "InvalidInitialization",
|
105
|
+
"type": "error"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"inputs": [],
|
109
|
+
"name": "NotInitializing",
|
110
|
+
"type": "error"
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"anonymous": false,
|
114
|
+
"inputs": [
|
115
|
+
{
|
116
|
+
"indexed": false,
|
117
|
+
"internalType": "uint64",
|
118
|
+
"name": "version",
|
119
|
+
"type": "uint64"
|
120
|
+
}
|
121
|
+
],
|
122
|
+
"name": "Initialized",
|
123
|
+
"type": "event"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"anonymous": false,
|
127
|
+
"inputs": [
|
128
|
+
{
|
129
|
+
"indexed": true,
|
130
|
+
"internalType": "address",
|
131
|
+
"name": "proxy",
|
132
|
+
"type": "address"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"indexed": false,
|
136
|
+
"internalType": "address",
|
137
|
+
"name": "initialImplementation",
|
138
|
+
"type": "address"
|
139
|
+
}
|
140
|
+
],
|
141
|
+
"name": "LogProxyManagerVersionableDeployed",
|
142
|
+
"type": "event"
|
143
|
+
},
|
144
|
+
{
|
145
|
+
"anonymous": false,
|
146
|
+
"inputs": [
|
147
|
+
{
|
148
|
+
"indexed": true,
|
149
|
+
"internalType": "address",
|
150
|
+
"name": "proxy",
|
151
|
+
"type": "address"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"indexed": false,
|
155
|
+
"internalType": "address",
|
156
|
+
"name": "upgradedImplementation",
|
157
|
+
"type": "address"
|
158
|
+
}
|
159
|
+
],
|
160
|
+
"name": "LogProxyManagerVersionableUpgraded",
|
161
|
+
"type": "event"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"inputs": [],
|
165
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
166
|
+
"outputs": [
|
167
|
+
{
|
168
|
+
"internalType": "bytes32",
|
169
|
+
"name": "",
|
170
|
+
"type": "bytes32"
|
171
|
+
}
|
172
|
+
],
|
173
|
+
"stateMutability": "view",
|
174
|
+
"type": "function"
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"inputs": [
|
178
|
+
{
|
179
|
+
"internalType": "address",
|
180
|
+
"name": "initialImplementation",
|
181
|
+
"type": "address"
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"internalType": "bytes",
|
185
|
+
"name": "initializationData",
|
186
|
+
"type": "bytes"
|
187
|
+
}
|
188
|
+
],
|
189
|
+
"name": "deploy",
|
190
|
+
"outputs": [
|
191
|
+
{
|
192
|
+
"internalType": "contract IVersionable",
|
193
|
+
"name": "versionable",
|
194
|
+
"type": "address"
|
195
|
+
}
|
196
|
+
],
|
197
|
+
"stateMutability": "nonpayable",
|
198
|
+
"type": "function"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"inputs": [
|
202
|
+
{
|
203
|
+
"internalType": "address",
|
204
|
+
"name": "initialImplementation",
|
205
|
+
"type": "address"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"internalType": "bytes",
|
209
|
+
"name": "initializationData",
|
210
|
+
"type": "bytes"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"internalType": "bytes32",
|
214
|
+
"name": "salt",
|
215
|
+
"type": "bytes32"
|
216
|
+
}
|
217
|
+
],
|
218
|
+
"name": "deployDetermenistic",
|
219
|
+
"outputs": [
|
220
|
+
{
|
221
|
+
"internalType": "contract IVersionable",
|
222
|
+
"name": "versionable",
|
223
|
+
"type": "address"
|
224
|
+
}
|
225
|
+
],
|
226
|
+
"stateMutability": "nonpayable",
|
227
|
+
"type": "function"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"inputs": [
|
231
|
+
{
|
232
|
+
"internalType": "address",
|
233
|
+
"name": "proxyOwner",
|
234
|
+
"type": "address"
|
235
|
+
},
|
236
|
+
{
|
237
|
+
"internalType": "bytes",
|
238
|
+
"name": "deployData",
|
239
|
+
"type": "bytes"
|
240
|
+
}
|
241
|
+
],
|
242
|
+
"name": "getDeployData",
|
243
|
+
"outputs": [
|
244
|
+
{
|
245
|
+
"internalType": "bytes",
|
246
|
+
"name": "data",
|
247
|
+
"type": "bytes"
|
248
|
+
}
|
249
|
+
],
|
250
|
+
"stateMutability": "pure",
|
251
|
+
"type": "function"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"inputs": [],
|
255
|
+
"name": "getNftId",
|
256
|
+
"outputs": [
|
257
|
+
{
|
258
|
+
"internalType": "NftId",
|
259
|
+
"name": "",
|
260
|
+
"type": "uint96"
|
261
|
+
}
|
262
|
+
],
|
263
|
+
"stateMutability": "view",
|
264
|
+
"type": "function"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"inputs": [],
|
268
|
+
"name": "getOwner",
|
269
|
+
"outputs": [
|
270
|
+
{
|
271
|
+
"internalType": "address",
|
272
|
+
"name": "",
|
273
|
+
"type": "address"
|
274
|
+
}
|
275
|
+
],
|
276
|
+
"stateMutability": "view",
|
277
|
+
"type": "function"
|
278
|
+
},
|
279
|
+
{
|
280
|
+
"inputs": [],
|
281
|
+
"name": "getPricingService",
|
282
|
+
"outputs": [
|
283
|
+
{
|
284
|
+
"internalType": "contract PricingService",
|
285
|
+
"name": "",
|
286
|
+
"type": "address"
|
287
|
+
}
|
288
|
+
],
|
289
|
+
"stateMutability": "view",
|
290
|
+
"type": "function"
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"inputs": [],
|
294
|
+
"name": "getProxy",
|
295
|
+
"outputs": [
|
296
|
+
{
|
297
|
+
"internalType": "contract UpgradableProxyWithAdmin",
|
298
|
+
"name": "",
|
299
|
+
"type": "address"
|
300
|
+
}
|
301
|
+
],
|
302
|
+
"stateMutability": "view",
|
303
|
+
"type": "function"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"inputs": [],
|
307
|
+
"name": "getRegistry",
|
308
|
+
"outputs": [
|
309
|
+
{
|
310
|
+
"internalType": "contract IRegistry",
|
311
|
+
"name": "",
|
312
|
+
"type": "address"
|
313
|
+
}
|
314
|
+
],
|
315
|
+
"stateMutability": "view",
|
316
|
+
"type": "function"
|
317
|
+
},
|
318
|
+
{
|
319
|
+
"inputs": [
|
320
|
+
{
|
321
|
+
"internalType": "bytes",
|
322
|
+
"name": "upgradeData",
|
323
|
+
"type": "bytes"
|
324
|
+
}
|
325
|
+
],
|
326
|
+
"name": "getUpgradeData",
|
327
|
+
"outputs": [
|
328
|
+
{
|
329
|
+
"internalType": "bytes",
|
330
|
+
"name": "data",
|
331
|
+
"type": "bytes"
|
332
|
+
}
|
333
|
+
],
|
334
|
+
"stateMutability": "pure",
|
335
|
+
"type": "function"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"inputs": [],
|
339
|
+
"name": "getVersion",
|
340
|
+
"outputs": [
|
341
|
+
{
|
342
|
+
"internalType": "Version",
|
343
|
+
"name": "",
|
344
|
+
"type": "uint24"
|
345
|
+
}
|
346
|
+
],
|
347
|
+
"stateMutability": "view",
|
348
|
+
"type": "function"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"inputs": [
|
352
|
+
{
|
353
|
+
"internalType": "uint256",
|
354
|
+
"name": "idx",
|
355
|
+
"type": "uint256"
|
356
|
+
}
|
357
|
+
],
|
358
|
+
"name": "getVersion",
|
359
|
+
"outputs": [
|
360
|
+
{
|
361
|
+
"internalType": "Version",
|
362
|
+
"name": "",
|
363
|
+
"type": "uint24"
|
364
|
+
}
|
365
|
+
],
|
366
|
+
"stateMutability": "view",
|
367
|
+
"type": "function"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"inputs": [],
|
371
|
+
"name": "getVersionCount",
|
372
|
+
"outputs": [
|
373
|
+
{
|
374
|
+
"internalType": "uint256",
|
375
|
+
"name": "",
|
376
|
+
"type": "uint256"
|
377
|
+
}
|
378
|
+
],
|
379
|
+
"stateMutability": "view",
|
380
|
+
"type": "function"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"inputs": [
|
384
|
+
{
|
385
|
+
"internalType": "Version",
|
386
|
+
"name": "_version",
|
387
|
+
"type": "uint24"
|
388
|
+
}
|
389
|
+
],
|
390
|
+
"name": "getVersionInfo",
|
391
|
+
"outputs": [
|
392
|
+
{
|
393
|
+
"components": [
|
394
|
+
{
|
395
|
+
"internalType": "Version",
|
396
|
+
"name": "version",
|
397
|
+
"type": "uint24"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"internalType": "address",
|
401
|
+
"name": "implementation",
|
402
|
+
"type": "address"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"internalType": "address",
|
406
|
+
"name": "activatedBy",
|
407
|
+
"type": "address"
|
408
|
+
},
|
409
|
+
{
|
410
|
+
"internalType": "Timestamp",
|
411
|
+
"name": "activatedAt",
|
412
|
+
"type": "uint40"
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"internalType": "Blocknumber",
|
416
|
+
"name": "activatedIn",
|
417
|
+
"type": "uint32"
|
418
|
+
}
|
419
|
+
],
|
420
|
+
"internalType": "struct ProxyManager.VersionInfo",
|
421
|
+
"name": "",
|
422
|
+
"type": "tuple"
|
423
|
+
}
|
424
|
+
],
|
425
|
+
"stateMutability": "view",
|
426
|
+
"type": "function"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"inputs": [],
|
430
|
+
"name": "initializeERC165",
|
431
|
+
"outputs": [],
|
432
|
+
"stateMutability": "nonpayable",
|
433
|
+
"type": "function"
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"inputs": [
|
437
|
+
{
|
438
|
+
"internalType": "address",
|
439
|
+
"name": "initialOwner",
|
440
|
+
"type": "address"
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"internalType": "address",
|
444
|
+
"name": "registryAddress",
|
445
|
+
"type": "address"
|
446
|
+
}
|
447
|
+
],
|
448
|
+
"name": "initializeNftOwnable",
|
449
|
+
"outputs": [],
|
450
|
+
"stateMutability": "nonpayable",
|
451
|
+
"type": "function"
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"inputs": [
|
455
|
+
{
|
456
|
+
"internalType": "address",
|
457
|
+
"name": "registry",
|
458
|
+
"type": "address"
|
459
|
+
}
|
460
|
+
],
|
461
|
+
"name": "initializeProxyManager",
|
462
|
+
"outputs": [],
|
463
|
+
"stateMutability": "nonpayable",
|
464
|
+
"type": "function"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"inputs": [
|
468
|
+
{
|
469
|
+
"internalType": "address",
|
470
|
+
"name": "registryAddress",
|
471
|
+
"type": "address"
|
472
|
+
}
|
473
|
+
],
|
474
|
+
"name": "initializeRegistryLinked",
|
475
|
+
"outputs": [],
|
476
|
+
"stateMutability": "nonpayable",
|
477
|
+
"type": "function"
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"inputs": [],
|
481
|
+
"name": "linkToProxy",
|
482
|
+
"outputs": [
|
483
|
+
{
|
484
|
+
"internalType": "NftId",
|
485
|
+
"name": "",
|
486
|
+
"type": "uint96"
|
487
|
+
}
|
488
|
+
],
|
489
|
+
"stateMutability": "nonpayable",
|
490
|
+
"type": "function"
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"inputs": [],
|
494
|
+
"name": "linkToRegisteredNftId",
|
495
|
+
"outputs": [
|
496
|
+
{
|
497
|
+
"internalType": "NftId",
|
498
|
+
"name": "nftId",
|
499
|
+
"type": "uint96"
|
500
|
+
}
|
501
|
+
],
|
502
|
+
"stateMutability": "nonpayable",
|
503
|
+
"type": "function"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"inputs": [
|
507
|
+
{
|
508
|
+
"internalType": "bytes4",
|
509
|
+
"name": "interfaceId",
|
510
|
+
"type": "bytes4"
|
511
|
+
}
|
512
|
+
],
|
513
|
+
"name": "registerInterface",
|
514
|
+
"outputs": [],
|
515
|
+
"stateMutability": "nonpayable",
|
516
|
+
"type": "function"
|
517
|
+
},
|
518
|
+
{
|
519
|
+
"inputs": [
|
520
|
+
{
|
521
|
+
"internalType": "bytes4",
|
522
|
+
"name": "interfaceId",
|
523
|
+
"type": "bytes4"
|
524
|
+
}
|
525
|
+
],
|
526
|
+
"name": "supportsInterface",
|
527
|
+
"outputs": [
|
528
|
+
{
|
529
|
+
"internalType": "bool",
|
530
|
+
"name": "",
|
531
|
+
"type": "bool"
|
532
|
+
}
|
533
|
+
],
|
534
|
+
"stateMutability": "view",
|
535
|
+
"type": "function"
|
536
|
+
},
|
537
|
+
{
|
538
|
+
"inputs": [
|
539
|
+
{
|
540
|
+
"internalType": "address",
|
541
|
+
"name": "newImplementation",
|
542
|
+
"type": "address"
|
543
|
+
},
|
544
|
+
{
|
545
|
+
"internalType": "bytes",
|
546
|
+
"name": "upgradeData",
|
547
|
+
"type": "bytes"
|
548
|
+
}
|
549
|
+
],
|
550
|
+
"name": "upgrade",
|
551
|
+
"outputs": [
|
552
|
+
{
|
553
|
+
"internalType": "contract IVersionable",
|
554
|
+
"name": "versionable",
|
555
|
+
"type": "address"
|
556
|
+
}
|
557
|
+
],
|
558
|
+
"stateMutability": "nonpayable",
|
559
|
+
"type": "function"
|
560
|
+
}
|
561
|
+
],
|
562
|
+
"bytecode": "0x608060405234801561000f575f80fd5b50604051617c88380380617c8883398101604081905261002e91610b1b565b81610038816100d6565b505f8160405161004790610ae6565b8190604051809103905ff5905080158015610064573d5f803e3d5ffd5b50604080516001600160a01b038681166020830152308284015287166060808301919091528251808303909101815260809091019091529091505f6100aa8383866101ec565b600580546001600160a01b0319166001600160a01b039290921691909117905550610cb0945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03165f8115801561011f5750825b90505f826001600160401b0316600114801561013a5750303b155b905081158015610148575080155b156101665760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561019457845460ff60401b1916680100000000000000001785555b61019e3387610378565b83156101e457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f6101f561040a565b6001600160a01b0316336001600160a01b03161461022d5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6004541561025157604051600162b5b66d60e01b0319815260040160405180910390fd5b5f61025a61040a565b90503083868261026a8589610557565b60405161027690610af3565b61028293929190610b82565b8190604051809103905ff590508015801561029f573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945061032b918591630d8e6e2c9160048083019260209291908290030181865afa158015610300573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103249190610bb6565b87846105af565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b610380610945565b61038981610995565b610391610aa1565b6001600160a01b0382166103b85760405163f17ef42d60e01b815260040160405180910390fd5b507f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b0390931692909202919091179055565b5f807f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610489573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104ad9190610bdf565b15610538576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561050e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105329190610bfe565b91505090565b546c0100000000000000000000000090046001600160a01b0316919050565b60606349bb9e4b60e01b8383604051602401610574929190610c17565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b61062b8373__$8eede297b65ed5a56eb3f84d8232ae93f5$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061061e9190610bb6565b62ffffff90811691161490565b15610649576040516348c618db60e01b815260040160405180910390fd5b600454156107a1576004805461066190600190610c42565b8154811061067157610671610c61565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156106e2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107069190610c75565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610758573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061077c9190610c75565b116107a157604051633e614b6d60e11b815262ffffff84166004820152602401610224565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af4158015610871573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108959190610c8c565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661099357604051631afcd79f60e31b815260040160405180910390fd5b565b61099d610945565b806001600160a01b03163b5f036109d25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610224565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263a34b610960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610a4c575060408051601f3d908101601f19168201909252610a4991810190610bdf565b60015b610a745760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610224565b80610a9d5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610224565b5050565b610aa9610945565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b613a088061343483390190565b610e4c80616e3c83390190565b80516001600160a01b0381168114610b16575f80fd5b919050565b5f805f60608486031215610b2d575f80fd5b610b3684610b00565b9250610b4460208501610b00565b9150604084015190509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6001600160a01b038481168252831660208201526060604082018190525f90610bad90830184610b54565b95945050505050565b5f60208284031215610bc6575f80fd5b815162ffffff81168114610bd8575f80fd5b9392505050565b5f60208284031215610bef575f80fd5b81518015158114610bd8575f80fd5b5f60208284031215610c0e575f80fd5b610bd882610b00565b6001600160a01b03831681526040602082018190525f90610c3a90830184610b54565b949350505050565b818103818111156105a957634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c85575f80fd5b5051919050565b5f60208284031215610c9c575f80fd5b815164ffffffffff81168114610bd8575f80fd5b61277780610cbd5f395ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063675393bf116100bf578063ada9652e11610079578063ada9652e146103e1578063b88da759146103f5578063c987336c14610408578063e97fac051461041b578063f7c34ee01461042e578063fd0c63d914610441575f80fd5b8063675393bf1461037f578063893d20e8146103925780638e9afce61461039a578063933a9ce8146103ad578063946dfcfe146103be5780639fe5970e146103d0575f80fd5b80631775564d116101105780631775564d14610209578063214cdb801461022957806336fc697e1461023c5780634d459c90146102445780635ab1bd5314610351578063644c45e014610362575f80fd5b806301ffc9a71461014c578063058f7a971461018d57806307484e80146101a25780630d8e6e2c146101cd578063138461e0146101e9575b5f80fd5b61017861015a366004611504565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a061019b366004611546565b610449565b005b6101b56101b0366004611600565b610558565b6040516001600160a01b039091168152602001610184565b6101d56106e4565b60405162ffffff9091168152602001610184565b6101f1610754565b6040516001600160601b039091168152602001610184565b61021c610217366004611655565b61075e565b60405161018491906116d0565b6101a0610237366004611504565b6107b6565b6101a06107e2565b6102f46102523660046116f2565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610184565b6001546001600160a01b03166101b5565b5f80516020612722833981519152546001600160601b03166101f1565b6101a061038d366004611546565b610827565b6101b5610934565b61021c6103a836600461170d565b610a65565b6002546001600160a01b03166101b5565b6004545b604051908152602001610184565b6005546001600160a01b03166101b5565b6103c25f8051602061272283398151915281565b6101d5610403366004611747565b610ab8565b6101b5610416366004611655565b610af6565b6101b5610429366004611655565b610d0f565b6101a061043c36600461175e565b610e90565b6101f1610f06565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f8115801561048e5750825b90505f8267ffffffffffffffff1660011480156104aa5750303b155b9050811580156104b8575080155b156104d65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561050057845460ff60401b1916600160401b1785555b61050a3387610e90565b831561055057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610561610934565b6001600160a01b0316336001600160a01b0316146105995760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156105bd57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f6105c6610934565b9050308386826105d6858961075e565b6040516105e2906114f7565b6105ee93929190611795565b8190604051809103905ff590508015801561060b573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610697918591630d8e6e2c9160048083019260209291908290030181865afa15801561066c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069091906117c9565b8784610f1d565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa15801561072b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074f91906117c9565b905090565b5f61074f306112b3565b60606349bb9e4b60e01b838360405160240161077b9291906117e4565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6107be6114ac565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6107ea6114ac565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61082f6114ac565b806001600160a01b03163b5f036108645760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263a34b610960e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156108de575060408051601f3d908101601f191682019092526108db91810190611807565b60015b6109065760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b8061092f5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610590565b505b50565b5f805f8051602061272283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156109a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c49190611807565b15610a4f576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a499190611826565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b82604051602401610a8091906116d0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f60048281548110610acc57610acc611841565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f610aff610934565b6001600160a01b0316336001600160a01b031614610b325760405163086391f760e31b8152336004820152602401610590565b6004545f03610b545760405163366dfd2160e21b815260040160405180910390fd5b5f610b5d610934565b90505f610b726002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015610bae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bd29190611826565b6002549091506001600160a01b03908116908216639623609d8288610bf689610a65565b6040518463ffffffff1660e01b8152600401610c1493929190611795565b5f604051808303815f87803b158015610c2b575f80fd5b505af1158015610c3d573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03169350610cc2846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cbb91906117c9565b8785610f1d565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b5f610d18610934565b6001600160a01b0316336001600160a01b031614610d4b5760405163086391f760e31b8152336004820152602401610590565b60045415610d6f57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f610d78610934565b9050308481610d87848761075e565b604051610d93906114f7565b610d9f93929190611795565b604051809103905ff080158015610db8573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610e44918591630d8e6e2c9160048083019260209291908290030181865afa158015610e19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3d91906117c9565b8684610f1d565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610e986114ac565b610ea181610827565b610ea96107e2565b6001600160a01b038216610ed05760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061272283398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6002545f9061074f906001600160a01b03166112b3565b610f998373__$8eede297b65ed5a56eb3f84d8232ae93f5$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8c91906117c9565b62ffffff90811691161490565b15610fb7576040516348c618db60e01b815260040160405180910390fd5b6004541561110f5760048054610fcf90600190611855565b81548110610fdf57610fdf611841565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015611050573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110749190611874565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156110c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ea9190611874565b1161110f57604051633e614b6d60e11b815262ffffff84166004820152602401610590565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156111df573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611203919061188b565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b5f805f8051602061272283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561131f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113439190611807565b1561136f5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610590565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156113c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e59190611807565b61140d5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610590565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801561145f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148391906118af565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166114f557604051631afcd79f60e31b815260040160405180910390fd5b565b610e4c806118d683390190565b5f60208284031215611514575f80fd5b81356001600160e01b03198116811461152b575f80fd5b9392505050565b6001600160a01b0381168114610931575f80fd5b5f60208284031215611556575f80fd5b813561152b81611532565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611584575f80fd5b813567ffffffffffffffff81111561159e5761159e611561565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156115cd576115cd611561565b6040528181528382016020018510156115e4575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f60608486031215611612575f80fd5b833561161d81611532565b9250602084013567ffffffffffffffff811115611638575f80fd5b61164486828701611575565b925050604084013590509250925092565b5f8060408385031215611666575f80fd5b823561167181611532565b9150602083013567ffffffffffffffff81111561168c575f80fd5b61169885828601611575565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61152b60208301846116a2565b62ffffff81168114610931575f80fd5b5f60208284031215611702575f80fd5b813561152b816116e2565b5f6020828403121561171d575f80fd5b813567ffffffffffffffff811115611733575f80fd5b61173f84828501611575565b949350505050565b5f60208284031215611757575f80fd5b5035919050565b5f806040838503121561176f575f80fd5b823561177a81611532565b9150602083013561178a81611532565b809150509250929050565b6001600160a01b038481168252831660208201526060604082018190525f906117c0908301846116a2565b95945050505050565b5f602082840312156117d9575f80fd5b815161152b816116e2565b6001600160a01b03831681526040602082018190525f9061173f908301846116a2565b5f60208284031215611817575f80fd5b8151801515811461152b575f80fd5b5f60208284031215611836575f80fd5b815161152b81611532565b634e487b7160e01b5f52603260045260245ffd5b818103818111156107b057634e487b7160e01b5f52601160045260245ffd5b5f60208284031215611884575f80fd5b5051919050565b5f6020828403121561189b575f80fd5b815164ffffffffff8116811461152b575f80fd5b5f602082840312156118bf575f80fd5b81516001600160601b038116811461152b575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a26469706673582212205f80522e74972be5e8e1d61642a901623af893e8d4800375833caac3721d0c9164736f6c634300081a00336080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613932806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063644c45e0116100bf5780638fb36037116100795780638fb360371461030c578063ada9652e1461032d578063b68d180914610341578063bf7e214f14610350578063f4bfe53a1461036d578063f7c34ee01461038d575f80fd5b8063644c45e01461028e578063675393bf146102ab5780636c741e78146102be5780637a9e5e4b146102de578063893d20e8146102f15780638e32e979146102f9575f80fd5b8063214cdb8011610110578063214cdb801461021357806327bb7a3314610228578063329d6e741461023b57806336fc697e1461024e57806349bb9e4b146102565780635ab1bd5314610269575f80fd5b806301ffc9a71461014c5780630d8e6e2c1461018d5780630fec111c146101a9578063138461e0146101be5780631eff4b22146101de575b5f80fd5b61017861015a366004612a70565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101956103a0565b60405162ffffff9091168152602001610184565b6101b1610427565b6040516101849190612ac5565b6101c66105e5565b6040516001600160601b039091168152602001610184565b6102057f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610184565b610226610221366004612a70565b6105ef565b005b610226610236366004612cdf565b61061b565b610226610249366004612d72565b6106c0565b61022661081d565b610226610264366004612da3565b610862565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610184565b5f805160206138bd833981519152546001600160601b03166101c6565b6102266102b9366004612def565b610970565b6102c6610a82565b6040516001600160401b039091168152602001610184565b6102266102ec366004612def565b610b78565b610276610c10565b610226610307366004612e0a565b610d41565b610314610e7e565b6040516001600160e01b03199091168152602001610184565b6102055f805160206138bd83398151915281565b60405160198152602001610184565b5f805160206138dd833981519152546001600160a01b0316610276565b61038061037b366004612e79565b610eb3565b6040516101849190612f21565b61022661039b366004613019565b6112ef565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156103fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104229190613050565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156104d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104fb9190613082565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610543610c10565b6001600160a01b031681526020018260010180546105609061309d565b80601f016020809104026020016040519081016040528092919081815260200182805461058c9061309d565b80156105d75780601f106105ae576101008083540402835291602001916105d7565b820191905f5260205f20905b8154815290600101906020018083116105ba57829003601f168201915b505050505081525091505090565b5f61042230611365565b6105f761155e565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b61062361155e565b61062d82876112ef565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016106b68382613120565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6106e26103a0565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610720573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074491906131ee565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff1680610789575080546001600160401b03808416911610155b156107a75760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556107d1836115a9565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b61082561155e565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156108a65750825b90505f826001600160401b031660011480156108c15750303b155b9050811580156108cf575080155b156108ed5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561091757845460ff60401b1916600160401b1785555b61092187876115b1565b831561096757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b61097861155e565b806001600160a01b03163b5f036109b25760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263a34b610960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610a2c575060408051601f3d908101601f19168201909252610a2991810190613214565b60015b610a545760405163fdeac91f60e01b81526001600160a01b03821660048201526024016109a9565b80610a7d5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016109a9565b505b50565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36019604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610aed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b11919061323a565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610b54573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061042291906131ee565b33610b975f805160206138dd833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610bd25760405162d1953b60e31b81526001600160a01b03821660048201526024016109a9565b816001600160a01b03163b5f03610c07576040516361798f2f60e11b81526001600160a01b03831660048201526024016109a9565b610a7d8261161f565b5f805f805160206138bd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610c7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca09190613214565b15610d2b576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610d01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d259190613260565b91505090565b54600160601b90046001600160a01b0316919050565b610d4961155e565b610dc583846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dad9190613082565b60085f8560405180602001604052805f81525061061b565b6001600160a01b03821615610de257610ddd8261167f565b610e59565b5f610ded6002611690565b9050610e57816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e529190613260565b61167f565b505b610e69634a531f3360e01b6105ef565b610e7963daf9067160e01b6105ef565b505050565b5f805160206138dd83398151915280545f9190600160a01b900460ff16610ea5575f610d25565b638fb3603760e01b91505090565b610ebb6129dc565b5f808080610ecb8c600c5f611797565b91509150806001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f2f9190613260565b6080830151604051633c5e741960e21b81529195506001600160a01b03169063f179d06490610f68908d908f908e908e9060040161327b565b602060405180830381865afa158015610f83573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa79190613082565b6040516302d764c760e21b81526001600160601b038e1660048201529093505f92506001600160a01b0385169150630b5d931c9060240161020060405180830381865afa158015610ffa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101e9190613311565b604051634793b4ab60e01b81526001600160601b03881660048201529091505f906001600160a01b03851690634793b4ab906024015f60405180830381865afa15801561106d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611094919081019061342c565b90506110a7815f01518360200151611a5f565b156110e757805160208301516040516311db892d60e01b81526001600160601b03808b1660048301529283166024820152911660448201526064016109a9565b6110f2838383611aea565b94506110ff858383611c96565b945061110d85838887611fbe565b945061111885612535565b94506111bc73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968760a001516040518263ffffffff1660e01b815260040161115a91815260200190565b602060405180830381865af4158015611175573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111999190613082565b6111b76111ad885f0151896020015161275f565b886040015161275f565b6127e3565b156111da57604051630f96c23560e01b815260040160405180910390fd5b8160a0015160200151856101c00151101561124f576101208501516101a08601516101c08701516101e08801516102008901516102208a0151604051637bee97c760e11b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c4016109a9565b846102000151856101e0015186610220015161126b9190613504565b6112759190613504565b856101a00151146112e0576101208501516101a08601516101c08701516101e08801516102008901516102208a0151604051637bee97c760e11b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c4016109a9565b50505050979650505050505050565b6112f761155e565b61130081610970565b61130861081d565b6001600160a01b03821661132f5760405163f17ef42d60e01b815260040160405180910390fd5b505f805160206138bd83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f805f805160206138bd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156113d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113f59190613214565b156114215780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016109a9565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611473573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114979190613214565b6114bf5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016109a9565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611511573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115359190613082565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166115a757604051631afcd79f60e31b815260040160405180910390fd5b565b61014861155e565b6115b961155e565b5f80828060200190518101906115cf9190613517565b92505091506115df828286610d41565b6115ef637a5ff29d60e11b6105ef565b6115f9600e611690565b600280546001600160a01b0319166001600160a01b039290921691909117905550505050565b5f805160206138dd83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61168761155e565b610a7f8161286f565b5f6116a36001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061172a919061323a565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561176d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117919190613260565b92915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260015490919081906001600160a01b03166040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa15801561182b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118529190810190613556565b925060ff8516600b146118b057604083015160ff8681169116146118ab57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff808816602483015290911660448201526064016109a9565b61194c565b6118cb83604001516118c0600c90565b60ff90811691161490565b806118e157506118e183604001516118c0600f90565b806118f757506118f783604001516118c0600e90565b8061190d575061190d83604001516118c0600d90565b61194c57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff808816602483015290911660448201526064016109a9565b6119598360200151612880565b91508315611a5657816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa15801561199d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c19190613260565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015611a09573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a2d9190613214565b15611a5657604051637d71120960e11b81526001600160601b03871660048201526024016109a9565b50935093915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af4158015611abf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ae39190613214565b9392505050565b611af26129dc565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611b48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b6c9190613626565b606082015260405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611bc7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611beb9190613626565b6080820181815260408501516020015160c0840181905291829190611c11908390613504565b9052505060c08301516020015160e08201819052608082018051829190611c39908390613504565b9052505060208083015101516101008201819052608082018051829190611c61908390613504565b905250506080808401516020015161012083018190529082018051829190611c8a908390613504565b90525090949350505050565b611c9e6129dc565b60608401516040516322f5db0f60e11b81525f9173__$bf7bc340cbb9229ef1de2c568356e67902$__916345ebb61e91611cde9160040190815260200190565b602060405180830381865af4158015611cf9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d1d9190613626565b90505f611d318286604001515f0151612910565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611d80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611da49190613626565b61014087018190526080870180519192508291611dc2908390613504565b90525060c085015151611dd6908390612910565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611e25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e499190613626565b61016087018190526080870180519192508291611e67908390613504565b905250602084015151611e7b908390612910565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611eca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eee9190613626565b61018087018190526080870180519192508291611f0c908390613504565b905250608085015151611f20908390612910565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611f6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f939190613626565b6101a087018190526080870180519192508291611fb1908390613504565b9052509495945050505050565b611fc66129dc565b60025484516040516309741ce160e21b81526001600160601b0390911660048201526001600160c01b0319851660248201526001600160a01b03909116906325d0738490604401602060405180830381865afa158015612028573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204c9190613214565b61207957506101208401516101c08501526101a08401516101e0850152608084015160a08501528361252d565b60a0840151604051631d3be47760e01b81526001600160c01b0319851660048201525f906001600160a01b03851690631d3be477906024015f60405180830381865afa1580156120cb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120f29190810190613650565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091505f906001600160a01b038616906327b1d792906024015f60405180830381865afa158015612144573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261216b91908101906136fb565b80516040516368322c6360e11b81526001600160c01b031990911660048201529091505f906001600160a01b0387169063d06458c6906024015f60405180830381865afa1580156121be573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526121e5919081019061379c565b90505f73__$bf7bc340cbb9229ef1de2c568356e67902$__6345ebb61e8b606001516040518263ffffffff1660e01b815260040161222591815260200190565b602060405180830381865af4158015612240573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122649190613626565b60608301516040516332292b2760e21b815273__$bf7bc340cbb9229ef1de2c568356e67902$__9263c8a4ac9c926122a792600401918252602082015260400190565b602060405180830381865af41580156122c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122e69190613626565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015612335573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123599190613626565b6102008b0181905260808b01516040516322f5db0f60e11b815291925073__$bf7bc340cbb9229ef1de2c568356e67902$__916345ebb61e916123a29160040190815260200190565b602060405180830381865af41580156123bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123e19190613626565b60408086015190516332292b2760e21b815273__$bf7bc340cbb9229ef1de2c568356e67902$__9263c8a4ac9c9261242492600401918252602082015260400190565b602060405180830381865af415801561243f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124639190613626565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af41580156124b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124d69190613626565b6102208b0181905260208601516101c08c01526101a08b01516124fa908390613895565b6125049190613895565b6101e08b01526102208a015160808b015161251f9190613895565b60a08b015250889450505050505b949350505050565b61253d6129dc565b73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968361014001518460c0015161256c9190613504565b6040518263ffffffff1660e01b815260040161258a91815260200190565b602060405180830381865af41580156125a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125c99190613082565b6001600160601b031682526102008201516101e083015161012084015173__$3bac17678db7ae928afa209f2f44deec9c$__92634c41dd9692909161260e9190613504565b6126189190613504565b6040518263ffffffff1660e01b815260040161263691815260200190565b602060405180830381865af4158015612651573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126759190613082565b82602001906001600160601b031690816001600160601b03168152505073__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968361018001518461010001518561016001518660e0015187606001516126d29190613504565b6126dc9190613504565b6126e69190613504565b6126f09190613504565b6040518263ffffffff1660e01b815260040161270e91815260200190565b602060405180830381865af4158015612729573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061274d9190613082565b6001600160601b031660408301525090565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af41580156127bf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ae39190613082565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d90604401602060405180830381865af4158015612843573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128679190613214565b159392505050565b61287761155e565b610a7f8161161f565b5f6128936001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa1580156128df573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526129069190810190613556565b6080015192915050565b5f611ae38383670de0b6b3a76400005f80805f19858709858702925082811083820303915050805f036129565783828161294c5761294c6138a8565b0492505050611ae3565b80841161297557604051629540d960e61b815260040160405180910390fd5b5f8486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091025f889003889004909101858311909403939093029303949094049190911702949350505050565b6040518061024001604052805f6001600160601b031681526020015f6001600160601b031681526020015f6001600160601b031681526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f60208284031215612a80575f80fd5b81356001600160e01b031981168114611ae3575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151612b0d608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261252d610100840182612a97565b6001600160a01b0381168114610a7f575f80fd5b6001600160601b0381168114610a7f575f80fd5b60ff81168114610a7f575f80fd5b8015158114610a7f575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405161012081016001600160401b0381118282101715612bcb57612bcb612b94565b60405290565b60405160c081016001600160401b0381118282101715612bcb57612bcb612b94565b60405160e081016001600160401b0381118282101715612bcb57612bcb612b94565b604051608081016001600160401b0381118282101715612bcb57612bcb612b94565b604051601f8201601f191681016001600160401b0381118282101715612c5f57612c5f612b94565b604052919050565b5f6001600160401b03821115612c7f57612c7f612b94565b50601f01601f191660200190565b5f82601f830112612c9c575f80fd5b8135612caf612caa82612c67565b612c37565b818152846020838601011115612cc3575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c08789031215612cf4575f80fd5b8635612cff81612b51565b95506020870135612d0f81612b65565b94506040870135612d1f81612b79565b93506060870135612d2f81612b87565b92506080870135612d3f81612b51565b915060a08701356001600160401b03811115612d59575f80fd5b612d6589828a01612c8d565b9150509295509295509295565b5f60208284031215612d82575f80fd5b81356001600160401b03811115612d97575f80fd5b61252d84828501612c8d565b5f8060408385031215612db4575f80fd5b8235612dbf81612b51565b915060208301356001600160401b03811115612dd9575f80fd5b612de585828601612c8d565b9150509250929050565b5f60208284031215612dff575f80fd5b8135611ae381612b51565b5f805f60608486031215612e1c575f80fd5b8335612e2781612b51565b92506020840135612e3781612b51565b91506040840135612e4781612b51565b809150509250925092565b6001600160c01b031981168114610a7f575f80fd5b64ffffffffff81168114610a7f575f80fd5b5f805f805f805f60e0888a031215612e8f575f80fd5b8735612e9a81612b65565b96506020880135612eaa81612e52565b95506040880135612eba81612b65565b94506060880135612eca81612e67565b935060808801356001600160401b03811115612ee4575f80fd5b612ef08a828b01612c8d565b93505060a0880135612f0181612b65565b915060c0880135612f1181612e52565b8091505092959891949750929550565b81516001600160601b0316815261024081016020830151612f4d60208401826001600160601b03169052565b506040830151612f6860408401826001600160601b03169052565b50606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e08301526101008301516101008301526101208301516101208301526101408301516101408301526101608301516101608301526101808301516101808301526101a08301516101a08301526101c08301516101c08301526101e08301516101e083015261020083015161020083015261022083015161022083015292915050565b5f806040838503121561302a575f80fd5b823561303581612b51565b9150602083013561304581612b51565b809150509250929050565b5f60208284031215613060575f80fd5b815162ffffff81168114611ae3575f80fd5b805161307d81612b65565b919050565b5f60208284031215613092575f80fd5b8151611ae381612b65565b600181811c908216806130b157607f821691505b6020821081036130cf57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610e7957805f5260205f20601f840160051c810160208510156130fa5750805b601f840160051c820191505b81811015613119575f8155600101613106565b5050505050565b81516001600160401b0381111561313957613139612b94565b61314d81613147845461309d565b846130d5565b6020601f82116001811461317f575f83156131685750848201515b5f19600385901b1c1916600184901b178455613119565b5f84815260208120601f198516915b828110156131ae578785015182556020948501946001909201910161318e565b50848210156131cb57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114610a7f575f80fd5b5f602082840312156131fe575f80fd5b8151611ae3816131da565b805161307d81612b87565b5f60208284031215613224575f80fd5b8151611ae381612b87565b805161307d81612b79565b5f6020828403121561324a575f80fd5b8151611ae381612b79565b805161307d81612b51565b5f60208284031215613270575f80fd5b8151611ae381612b51565b6001600160601b03851681526001600160401b0360c01b8416602082015264ffffffffff83166040820152608060608201525f6132bb6080830184612a97565b9695505050505050565b5f604082840312156132d5575f80fd5b604080519081016001600160401b03811182821017156132f7576132f7612b94565b604052825181526020928301519281019290925250919050565b5f610200828403128015613323575f80fd5b5061332c612ba8565b61333583613072565b815261334360208401613072565b602082015261335584604085016132c5565b604082015261336784608085016132c5565b60608201526133798460c085016132c5565b608082015261338c8461010085016132c5565b60a082015261339f8461014085016132c5565b60c08201526133b28461018085016132c5565b60e08201526133c5846101c085016132c5565b6101008201529392505050565b5f82601f8301126133e1575f80fd5b8151602083015f6133f4612caa84612c67565b9050828152858383011115613407575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161307d81612e67565b5f6020828403121561343c575f80fd5b81516001600160401b03811115613451575f80fd5b820160e08185031215613462575f80fd5b61346a612bd1565b815161347581612b65565b815261348485602084016132c5565b602082015260608201516001600160401b038111156134a1575f80fd5b6134ad868285016133d2565b60408301525060808201516134c181612e67565b60608201526134d260a08301613421565b60808201526134e360c08301613421565b60a0820152949350505050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115611791576117916134f0565b5f805f60608486031215613529575f80fd5b835161353481612b51565b602085015190935061354581612b51565b6040850151909250612e4781612b51565b5f60208284031215613566575f80fd5b81516001600160401b0381111561357b575f80fd5b820160e0818503121561358c575f80fd5b613594612bf3565b61359d82613072565b81526135ab60208301613072565b60208201526135bc6040830161322f565b60408201526135cd60608301613209565b60608201526135de60808301613255565b60808201526135ef60a08301613255565b60a082015260c08201516001600160401b0381111561360c575f80fd5b613618868285016133d2565b60c083015250949350505050565b5f60208284031215613636575f80fd5b5051919050565b805163ffffffff8116811461307d575f80fd5b5f60208284031215613660575f80fd5b81516001600160401b03811115613675575f80fd5b820160e08185031215613686575f80fd5b61368e612bf3565b61369782613072565b815260208201516001600160401b038111156136b1575f80fd5b6136bd868285016133d2565b602083015250604082810151908201526136d96060830161363d565b60608201526136ea6080830161363d565b60808201526135ef60a08301613421565b5f6020828403121561370b575f80fd5b81516001600160401b03811115613720575f80fd5b820160808185031215613731575f80fd5b613739612c15565b815161374481612e52565b8152602082015161375481612b87565b602082015260408201516001600160401b03811115613771575f80fd5b61377d868285016133d2565b60408301525061378f6060830161363d565b6060820152949350505050565b5f602082840312156137ac575f80fd5b81516001600160401b038111156137c1575f80fd5b820161012081850312156137d3575f80fd5b6137db612ba8565b81516001600160401b038111156137f0575f80fd5b6137fc868285016133d2565b8252506020828101519082015260408083015190820152606080830151908201526138296080830161363d565b608082015261383a60a0830161363d565b60a082015261384b60c08301613209565b60c082015261385c60e08301613209565b60e08201526101008201516001600160401b0381111561387a575f80fd5b613886868285016133d2565b61010083015250949350505050565b81810381811115611791576117916134f0565b634e487b7160e01b5f52601260045260245ffdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b36fe0ba15ad6c1efd5c4eb2a43f8bab5f5b7efca3be8d447bb208156cd7b10164736f6c634300081a003360a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
|
563
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063675393bf116100bf578063ada9652e11610079578063ada9652e146103e1578063b88da759146103f5578063c987336c14610408578063e97fac051461041b578063f7c34ee01461042e578063fd0c63d914610441575f80fd5b8063675393bf1461037f578063893d20e8146103925780638e9afce61461039a578063933a9ce8146103ad578063946dfcfe146103be5780639fe5970e146103d0575f80fd5b80631775564d116101105780631775564d14610209578063214cdb801461022957806336fc697e1461023c5780634d459c90146102445780635ab1bd5314610351578063644c45e014610362575f80fd5b806301ffc9a71461014c578063058f7a971461018d57806307484e80146101a25780630d8e6e2c146101cd578063138461e0146101e9575b5f80fd5b61017861015a366004611504565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a061019b366004611546565b610449565b005b6101b56101b0366004611600565b610558565b6040516001600160a01b039091168152602001610184565b6101d56106e4565b60405162ffffff9091168152602001610184565b6101f1610754565b6040516001600160601b039091168152602001610184565b61021c610217366004611655565b61075e565b60405161018491906116d0565b6101a0610237366004611504565b6107b6565b6101a06107e2565b6102f46102523660046116f2565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610184565b6001546001600160a01b03166101b5565b5f80516020612722833981519152546001600160601b03166101f1565b6101a061038d366004611546565b610827565b6101b5610934565b61021c6103a836600461170d565b610a65565b6002546001600160a01b03166101b5565b6004545b604051908152602001610184565b6005546001600160a01b03166101b5565b6103c25f8051602061272283398151915281565b6101d5610403366004611747565b610ab8565b6101b5610416366004611655565b610af6565b6101b5610429366004611655565b610d0f565b6101a061043c36600461175e565b610e90565b6101f1610f06565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f8115801561048e5750825b90505f8267ffffffffffffffff1660011480156104aa5750303b155b9050811580156104b8575080155b156104d65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561050057845460ff60401b1916600160401b1785555b61050a3387610e90565b831561055057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610561610934565b6001600160a01b0316336001600160a01b0316146105995760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156105bd57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f6105c6610934565b9050308386826105d6858961075e565b6040516105e2906114f7565b6105ee93929190611795565b8190604051809103905ff590508015801561060b573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610697918591630d8e6e2c9160048083019260209291908290030181865afa15801561066c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069091906117c9565b8784610f1d565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa15801561072b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074f91906117c9565b905090565b5f61074f306112b3565b60606349bb9e4b60e01b838360405160240161077b9291906117e4565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6107be6114ac565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6107ea6114ac565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61082f6114ac565b806001600160a01b03163b5f036108645760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263a34b610960e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156108de575060408051601f3d908101601f191682019092526108db91810190611807565b60015b6109065760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b8061092f5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610590565b505b50565b5f805f8051602061272283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156109a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c49190611807565b15610a4f576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a499190611826565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b82604051602401610a8091906116d0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f60048281548110610acc57610acc611841565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f610aff610934565b6001600160a01b0316336001600160a01b031614610b325760405163086391f760e31b8152336004820152602401610590565b6004545f03610b545760405163366dfd2160e21b815260040160405180910390fd5b5f610b5d610934565b90505f610b726002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015610bae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bd29190611826565b6002549091506001600160a01b03908116908216639623609d8288610bf689610a65565b6040518463ffffffff1660e01b8152600401610c1493929190611795565b5f604051808303815f87803b158015610c2b575f80fd5b505af1158015610c3d573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03169350610cc2846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cbb91906117c9565b8785610f1d565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b5f610d18610934565b6001600160a01b0316336001600160a01b031614610d4b5760405163086391f760e31b8152336004820152602401610590565b60045415610d6f57604051600162b5b66d60e01b0319815260040160405180910390fd5b5f610d78610934565b9050308481610d87848761075e565b604051610d93906114f7565b610d9f93929190611795565b604051809103905ff080158015610db8573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610e44918591630d8e6e2c9160048083019260209291908290030181865afa158015610e19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3d91906117c9565b8684610f1d565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610e986114ac565b610ea181610827565b610ea96107e2565b6001600160a01b038216610ed05760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061272283398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6002545f9061074f906001600160a01b03166112b3565b610f998373__$8eede297b65ed5a56eb3f84d8232ae93f5$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8c91906117c9565b62ffffff90811691161490565b15610fb7576040516348c618db60e01b815260040160405180910390fd5b6004541561110f5760048054610fcf90600190611855565b81548110610fdf57610fdf611841565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015611050573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110749190611874565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156110c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ea9190611874565b1161110f57604051633e614b6d60e11b815262ffffff84166004820152602401610590565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156111df573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611203919061188b565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b5f805f8051602061272283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561131f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113439190611807565b1561136f5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610590565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156113c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113e59190611807565b61140d5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610590565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801561145f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061148391906118af565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166114f557604051631afcd79f60e31b815260040160405180910390fd5b565b610e4c806118d683390190565b5f60208284031215611514575f80fd5b81356001600160e01b03198116811461152b575f80fd5b9392505050565b6001600160a01b0381168114610931575f80fd5b5f60208284031215611556575f80fd5b813561152b81611532565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611584575f80fd5b813567ffffffffffffffff81111561159e5761159e611561565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156115cd576115cd611561565b6040528181528382016020018510156115e4575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f60608486031215611612575f80fd5b833561161d81611532565b9250602084013567ffffffffffffffff811115611638575f80fd5b61164486828701611575565b925050604084013590509250925092565b5f8060408385031215611666575f80fd5b823561167181611532565b9150602083013567ffffffffffffffff81111561168c575f80fd5b61169885828601611575565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61152b60208301846116a2565b62ffffff81168114610931575f80fd5b5f60208284031215611702575f80fd5b813561152b816116e2565b5f6020828403121561171d575f80fd5b813567ffffffffffffffff811115611733575f80fd5b61173f84828501611575565b949350505050565b5f60208284031215611757575f80fd5b5035919050565b5f806040838503121561176f575f80fd5b823561177a81611532565b9150602083013561178a81611532565b809150509250929050565b6001600160a01b038481168252831660208201526060604082018190525f906117c0908301846116a2565b95945050505050565b5f602082840312156117d9575f80fd5b815161152b816116e2565b6001600160a01b03831681526040602082018190525f9061173f908301846116a2565b5f60208284031215611817575f80fd5b8151801515811461152b575f80fd5b5f60208284031215611836575f80fd5b815161152b81611532565b634e487b7160e01b5f52603260045260245ffd5b818103818111156107b057634e487b7160e01b5f52601160045260245ffd5b5f60208284031215611884575f80fd5b5051919050565b5f6020828403121561189b575f80fd5b815164ffffffffff8116811461152b575f80fd5b5f602082840312156118bf575f80fd5b81516001600160601b038116811461152b575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a26469706673582212205f80522e74972be5e8e1d61642a901623af893e8d4800375833caac3721d0c9164736f6c634300081a0033",
|
564
|
+
"linkReferences": {
|
565
|
+
"contracts/type/Amount.sol": {
|
566
|
+
"AmountLib": [
|
567
|
+
{
|
568
|
+
"length": 20,
|
569
|
+
"start": 17961
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"length": 20,
|
573
|
+
"start": 20506
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"length": 20,
|
577
|
+
"start": 20633
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"length": 20,
|
581
|
+
"start": 23113
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"length": 20,
|
585
|
+
"start": 23282
|
586
|
+
},
|
587
|
+
{
|
588
|
+
"length": 20,
|
589
|
+
"start": 23454
|
590
|
+
},
|
591
|
+
{
|
592
|
+
"length": 20,
|
593
|
+
"start": 23697
|
594
|
+
},
|
595
|
+
{
|
596
|
+
"length": 20,
|
597
|
+
"start": 23829
|
598
|
+
}
|
599
|
+
]
|
600
|
+
},
|
601
|
+
"contracts/type/NftId.sol": {
|
602
|
+
"NftIdLib": [
|
603
|
+
{
|
604
|
+
"length": 20,
|
605
|
+
"start": 1105
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"length": 20,
|
609
|
+
"start": 5669
|
610
|
+
},
|
611
|
+
{
|
612
|
+
"length": 20,
|
613
|
+
"start": 8100
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"length": 20,
|
617
|
+
"start": 14748
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"length": 20,
|
621
|
+
"start": 16718
|
622
|
+
},
|
623
|
+
{
|
624
|
+
"length": 20,
|
625
|
+
"start": 18595
|
626
|
+
},
|
627
|
+
{
|
628
|
+
"length": 20,
|
629
|
+
"start": 20369
|
630
|
+
}
|
631
|
+
]
|
632
|
+
},
|
633
|
+
"contracts/type/RoleId.sol": {
|
634
|
+
"RoleIdLib": [
|
635
|
+
{
|
636
|
+
"length": 20,
|
637
|
+
"start": 16271
|
638
|
+
}
|
639
|
+
]
|
640
|
+
},
|
641
|
+
"contracts/type/Timestamp.sol": {
|
642
|
+
"TimestampLib": [
|
643
|
+
{
|
644
|
+
"length": 20,
|
645
|
+
"start": 2105
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"length": 20,
|
649
|
+
"start": 7780
|
650
|
+
}
|
651
|
+
]
|
652
|
+
},
|
653
|
+
"contracts/type/UFixed.sol": {
|
654
|
+
"UFixedLib": [
|
655
|
+
{
|
656
|
+
"length": 20,
|
657
|
+
"start": 20926
|
658
|
+
},
|
659
|
+
{
|
660
|
+
"length": 20,
|
661
|
+
"start": 21074
|
662
|
+
},
|
663
|
+
{
|
664
|
+
"length": 20,
|
665
|
+
"start": 21239
|
666
|
+
},
|
667
|
+
{
|
668
|
+
"length": 20,
|
669
|
+
"start": 21404
|
670
|
+
},
|
671
|
+
{
|
672
|
+
"length": 20,
|
673
|
+
"start": 21569
|
674
|
+
},
|
675
|
+
{
|
676
|
+
"length": 20,
|
677
|
+
"start": 22260
|
678
|
+
},
|
679
|
+
{
|
680
|
+
"length": 20,
|
681
|
+
"start": 22402
|
682
|
+
},
|
683
|
+
{
|
684
|
+
"length": 20,
|
685
|
+
"start": 22535
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"length": 20,
|
689
|
+
"start": 22658
|
690
|
+
},
|
691
|
+
{
|
692
|
+
"length": 20,
|
693
|
+
"start": 22783
|
694
|
+
},
|
695
|
+
{
|
696
|
+
"length": 20,
|
697
|
+
"start": 22916
|
698
|
+
}
|
699
|
+
]
|
700
|
+
},
|
701
|
+
"contracts/type/Version.sol": {
|
702
|
+
"VersionLib": [
|
703
|
+
{
|
704
|
+
"length": 20,
|
705
|
+
"start": 1461
|
706
|
+
},
|
707
|
+
{
|
708
|
+
"length": 20,
|
709
|
+
"start": 1706
|
710
|
+
},
|
711
|
+
{
|
712
|
+
"length": 20,
|
713
|
+
"start": 1824
|
714
|
+
},
|
715
|
+
{
|
716
|
+
"length": 20,
|
717
|
+
"start": 7136
|
718
|
+
},
|
719
|
+
{
|
720
|
+
"length": 20,
|
721
|
+
"start": 7381
|
722
|
+
},
|
723
|
+
{
|
724
|
+
"length": 20,
|
725
|
+
"start": 7499
|
726
|
+
},
|
727
|
+
{
|
728
|
+
"length": 20,
|
729
|
+
"start": 14544
|
730
|
+
},
|
731
|
+
{
|
732
|
+
"length": 20,
|
733
|
+
"start": 15308
|
734
|
+
}
|
735
|
+
],
|
736
|
+
"VersionPartLib": [
|
737
|
+
{
|
738
|
+
"length": 20,
|
739
|
+
"start": 16319
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"length": 20,
|
743
|
+
"start": 19416
|
744
|
+
}
|
745
|
+
]
|
746
|
+
}
|
747
|
+
},
|
748
|
+
"deployedLinkReferences": {
|
749
|
+
"contracts/type/NftId.sol": {
|
750
|
+
"NftIdLib": [
|
751
|
+
{
|
752
|
+
"length": 20,
|
753
|
+
"start": 2408
|
754
|
+
},
|
755
|
+
{
|
756
|
+
"length": 20,
|
757
|
+
"start": 4839
|
758
|
+
}
|
759
|
+
]
|
760
|
+
},
|
761
|
+
"contracts/type/Timestamp.sol": {
|
762
|
+
"TimestampLib": [
|
763
|
+
{
|
764
|
+
"length": 20,
|
765
|
+
"start": 4519
|
766
|
+
}
|
767
|
+
]
|
768
|
+
},
|
769
|
+
"contracts/type/Version.sol": {
|
770
|
+
"VersionLib": [
|
771
|
+
{
|
772
|
+
"length": 20,
|
773
|
+
"start": 3875
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"length": 20,
|
777
|
+
"start": 4120
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"length": 20,
|
781
|
+
"start": 4238
|
782
|
+
}
|
783
|
+
]
|
784
|
+
}
|
785
|
+
}
|
786
|
+
}
|