@etherisc/gif-next 0.0.2-fe77319 → 0.0.2-ff1bf36-818
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +406 -9
- 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/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 +190 -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 +295 -535
- 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 +486 -591
- 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/{pool/IPoolModule.sol/IPool.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.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/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
- 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/product/IApplicationService.sol/IApplicationService.json +517 -0
- 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/product/IPricingService.sol/IPricingService.json +549 -0
- 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/product/IRiskService.sol/IRiskService.json +400 -0
- 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 +4 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +784 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +743 -104
- 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 +1083 -114
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +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 +1159 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +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/shared/ILifecycle.sol/ILifecycle.json +110 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +131 -0
- 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 +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +346 -0
- 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/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +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 +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +353 -0
- 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/shared/Service.sol/Service.json +507 -0
- 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/type/StateId.sol/StateIdLib.json +92 -0
- 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 +68 -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 +591 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +217 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +136 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +90 -0
- package/contracts/distribution/BasicDistribution.sol +138 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/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 +58 -15
- package/contracts/instance/IInstanceService.sol +92 -0
- package/contracts/instance/Instance.sol +211 -45
- 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 +467 -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/mock/Dip.sol +26 -0
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +166 -0
- package/contracts/oracle/OracleService.sol +278 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +166 -0
- package/contracts/pool/BasicPoolAuthorization.sol +58 -0
- package/contracts/pool/BundleService.sol +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 +52 -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 +410 -0
- package/contracts/product/RiskService.sol +97 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +217 -0
- package/contracts/registry/IRegistry.sol +120 -52
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +504 -125
- package/contracts/registry/RegistryAdmin.sol +374 -0
- package/contracts/registry/RegistryService.sol +252 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseRegistry.sol +485 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +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/shared/ILifecycle.sol +29 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- 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 +75 -0
- 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/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +135 -0
- package/contracts/type/Blocknumber.sol +142 -0
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/type/NftId.sol +78 -0
- 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/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +93 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/type/StateId.sol +135 -0
- package/contracts/type/String.sol +53 -0
- package/contracts/type/Timestamp.sol +146 -0
- package/contracts/type/UFixed.sol +351 -0
- package/contracts/type/Version.sol +110 -0
- 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 +25 -7
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -179
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -195
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -213
- package/artifacts/contracts/experiment/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/IC.sol/IC.json +0 -63
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/contracts/components/Component.sol +0 -62
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.sol +0 -11
- package/contracts/components/Pool.sol +0 -29
- package/contracts/components/Product.sol +0 -65
- package/contracts/experiment/A.sol +0 -56
- package/contracts/experiment/B.sol +0 -23
- package/contracts/experiment/C.sol +0 -28
- package/contracts/experiment/IA.sol +0 -18
- package/contracts/experiment/IB.sol +0 -9
- package/contracts/experiment/IC.sol +0 -11
- package/contracts/instance/access/Access.sol +0 -218
- package/contracts/instance/access/IAccess.sol +0 -83
- package/contracts/instance/component/ComponentModule.sol +0 -259
- package/contracts/instance/component/IComponent.sol +0 -94
- package/contracts/instance/policy/IPolicy.sol +0 -66
- package/contracts/instance/policy/PolicyModule.sol +0 -106
- package/contracts/instance/pool/IPoolModule.sol +0 -40
- package/contracts/instance/pool/PoolModule.sol +0 -83
- package/contracts/instance/product/IProductService.sol +0 -45
- package/contracts/instance/product/ProductService.sol +0 -105
@@ -0,0 +1,804 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "ComponentServiceManager",
|
4
|
+
"sourceName": "contracts/shared/ComponentServiceManager.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "registryAddress",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"stateMutability": "nonpayable",
|
15
|
+
"type": "constructor"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "NftId",
|
21
|
+
"name": "nftId",
|
22
|
+
"type": "uint96"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
26
|
+
"type": "error"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"inputs": [
|
30
|
+
{
|
31
|
+
"internalType": "address",
|
32
|
+
"name": "contractAddress",
|
33
|
+
"type": "address"
|
34
|
+
}
|
35
|
+
],
|
36
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
37
|
+
"type": "error"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"inputs": [],
|
41
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "account",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorNftOwnableNotOwner",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "registryAddress",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorNotRegistry",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [],
|
68
|
+
"name": "ErrorProxyManagerAlreadyDeployed",
|
69
|
+
"type": "error"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"inputs": [
|
73
|
+
{
|
74
|
+
"internalType": "Version",
|
75
|
+
"name": "nextVersion",
|
76
|
+
"type": "uint24"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "ErrorProxyManagerNextVersionNotIncreasing",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [],
|
84
|
+
"name": "ErrorProxyManagerNotYetDeployed",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [],
|
89
|
+
"name": "ErrorProxyManagerZeroVersion",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [],
|
94
|
+
"name": "InvalidInitialization",
|
95
|
+
"type": "error"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"inputs": [],
|
99
|
+
"name": "NotInitializing",
|
100
|
+
"type": "error"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"anonymous": false,
|
104
|
+
"inputs": [
|
105
|
+
{
|
106
|
+
"indexed": false,
|
107
|
+
"internalType": "uint64",
|
108
|
+
"name": "version",
|
109
|
+
"type": "uint64"
|
110
|
+
}
|
111
|
+
],
|
112
|
+
"name": "Initialized",
|
113
|
+
"type": "event"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"anonymous": false,
|
117
|
+
"inputs": [
|
118
|
+
{
|
119
|
+
"indexed": true,
|
120
|
+
"internalType": "address",
|
121
|
+
"name": "proxy",
|
122
|
+
"type": "address"
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"indexed": false,
|
126
|
+
"internalType": "address",
|
127
|
+
"name": "initialImplementation",
|
128
|
+
"type": "address"
|
129
|
+
}
|
130
|
+
],
|
131
|
+
"name": "LogProxyManagerVersionableDeployed",
|
132
|
+
"type": "event"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"anonymous": false,
|
136
|
+
"inputs": [
|
137
|
+
{
|
138
|
+
"indexed": true,
|
139
|
+
"internalType": "address",
|
140
|
+
"name": "proxy",
|
141
|
+
"type": "address"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"indexed": false,
|
145
|
+
"internalType": "address",
|
146
|
+
"name": "upgradedImplementation",
|
147
|
+
"type": "address"
|
148
|
+
}
|
149
|
+
],
|
150
|
+
"name": "LogProxyManagerVersionableUpgraded",
|
151
|
+
"type": "event"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"inputs": [],
|
155
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
156
|
+
"outputs": [
|
157
|
+
{
|
158
|
+
"internalType": "bytes32",
|
159
|
+
"name": "",
|
160
|
+
"type": "bytes32"
|
161
|
+
}
|
162
|
+
],
|
163
|
+
"stateMutability": "view",
|
164
|
+
"type": "function"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"inputs": [
|
168
|
+
{
|
169
|
+
"internalType": "address",
|
170
|
+
"name": "initialImplementation",
|
171
|
+
"type": "address"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"internalType": "bytes",
|
175
|
+
"name": "initializationData",
|
176
|
+
"type": "bytes"
|
177
|
+
}
|
178
|
+
],
|
179
|
+
"name": "deploy",
|
180
|
+
"outputs": [
|
181
|
+
{
|
182
|
+
"internalType": "contract IVersionable",
|
183
|
+
"name": "versionable",
|
184
|
+
"type": "address"
|
185
|
+
}
|
186
|
+
],
|
187
|
+
"stateMutability": "nonpayable",
|
188
|
+
"type": "function"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"inputs": [
|
192
|
+
{
|
193
|
+
"internalType": "address",
|
194
|
+
"name": "initialImplementation",
|
195
|
+
"type": "address"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"internalType": "bytes",
|
199
|
+
"name": "initializationData",
|
200
|
+
"type": "bytes"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"internalType": "bytes32",
|
204
|
+
"name": "salt",
|
205
|
+
"type": "bytes32"
|
206
|
+
}
|
207
|
+
],
|
208
|
+
"name": "deployDetermenistic",
|
209
|
+
"outputs": [
|
210
|
+
{
|
211
|
+
"internalType": "contract IVersionable",
|
212
|
+
"name": "versionable",
|
213
|
+
"type": "address"
|
214
|
+
}
|
215
|
+
],
|
216
|
+
"stateMutability": "nonpayable",
|
217
|
+
"type": "function"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"inputs": [],
|
221
|
+
"name": "getComponentService",
|
222
|
+
"outputs": [
|
223
|
+
{
|
224
|
+
"internalType": "contract ComponentService",
|
225
|
+
"name": "",
|
226
|
+
"type": "address"
|
227
|
+
}
|
228
|
+
],
|
229
|
+
"stateMutability": "view",
|
230
|
+
"type": "function"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"inputs": [
|
234
|
+
{
|
235
|
+
"internalType": "address",
|
236
|
+
"name": "proxyOwner",
|
237
|
+
"type": "address"
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"internalType": "bytes",
|
241
|
+
"name": "deployData",
|
242
|
+
"type": "bytes"
|
243
|
+
}
|
244
|
+
],
|
245
|
+
"name": "getDeployData",
|
246
|
+
"outputs": [
|
247
|
+
{
|
248
|
+
"internalType": "bytes",
|
249
|
+
"name": "data",
|
250
|
+
"type": "bytes"
|
251
|
+
}
|
252
|
+
],
|
253
|
+
"stateMutability": "pure",
|
254
|
+
"type": "function"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"inputs": [],
|
258
|
+
"name": "getNftId",
|
259
|
+
"outputs": [
|
260
|
+
{
|
261
|
+
"internalType": "NftId",
|
262
|
+
"name": "",
|
263
|
+
"type": "uint96"
|
264
|
+
}
|
265
|
+
],
|
266
|
+
"stateMutability": "view",
|
267
|
+
"type": "function"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"inputs": [],
|
271
|
+
"name": "getOwner",
|
272
|
+
"outputs": [
|
273
|
+
{
|
274
|
+
"internalType": "address",
|
275
|
+
"name": "",
|
276
|
+
"type": "address"
|
277
|
+
}
|
278
|
+
],
|
279
|
+
"stateMutability": "view",
|
280
|
+
"type": "function"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"inputs": [],
|
284
|
+
"name": "getProxy",
|
285
|
+
"outputs": [
|
286
|
+
{
|
287
|
+
"internalType": "contract UpgradableProxyWithAdmin",
|
288
|
+
"name": "",
|
289
|
+
"type": "address"
|
290
|
+
}
|
291
|
+
],
|
292
|
+
"stateMutability": "view",
|
293
|
+
"type": "function"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"inputs": [],
|
297
|
+
"name": "getRegistry",
|
298
|
+
"outputs": [
|
299
|
+
{
|
300
|
+
"internalType": "contract IRegistry",
|
301
|
+
"name": "",
|
302
|
+
"type": "address"
|
303
|
+
}
|
304
|
+
],
|
305
|
+
"stateMutability": "view",
|
306
|
+
"type": "function"
|
307
|
+
},
|
308
|
+
{
|
309
|
+
"inputs": [
|
310
|
+
{
|
311
|
+
"internalType": "bytes",
|
312
|
+
"name": "upgradeData",
|
313
|
+
"type": "bytes"
|
314
|
+
}
|
315
|
+
],
|
316
|
+
"name": "getUpgradeData",
|
317
|
+
"outputs": [
|
318
|
+
{
|
319
|
+
"internalType": "bytes",
|
320
|
+
"name": "data",
|
321
|
+
"type": "bytes"
|
322
|
+
}
|
323
|
+
],
|
324
|
+
"stateMutability": "pure",
|
325
|
+
"type": "function"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"inputs": [],
|
329
|
+
"name": "getVersion",
|
330
|
+
"outputs": [
|
331
|
+
{
|
332
|
+
"internalType": "Version",
|
333
|
+
"name": "",
|
334
|
+
"type": "uint24"
|
335
|
+
}
|
336
|
+
],
|
337
|
+
"stateMutability": "view",
|
338
|
+
"type": "function"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"inputs": [
|
342
|
+
{
|
343
|
+
"internalType": "uint256",
|
344
|
+
"name": "idx",
|
345
|
+
"type": "uint256"
|
346
|
+
}
|
347
|
+
],
|
348
|
+
"name": "getVersion",
|
349
|
+
"outputs": [
|
350
|
+
{
|
351
|
+
"internalType": "Version",
|
352
|
+
"name": "",
|
353
|
+
"type": "uint24"
|
354
|
+
}
|
355
|
+
],
|
356
|
+
"stateMutability": "view",
|
357
|
+
"type": "function"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"inputs": [],
|
361
|
+
"name": "getVersionCount",
|
362
|
+
"outputs": [
|
363
|
+
{
|
364
|
+
"internalType": "uint256",
|
365
|
+
"name": "",
|
366
|
+
"type": "uint256"
|
367
|
+
}
|
368
|
+
],
|
369
|
+
"stateMutability": "view",
|
370
|
+
"type": "function"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"inputs": [
|
374
|
+
{
|
375
|
+
"internalType": "Version",
|
376
|
+
"name": "_version",
|
377
|
+
"type": "uint24"
|
378
|
+
}
|
379
|
+
],
|
380
|
+
"name": "getVersionInfo",
|
381
|
+
"outputs": [
|
382
|
+
{
|
383
|
+
"components": [
|
384
|
+
{
|
385
|
+
"internalType": "Version",
|
386
|
+
"name": "version",
|
387
|
+
"type": "uint24"
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"internalType": "address",
|
391
|
+
"name": "implementation",
|
392
|
+
"type": "address"
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"internalType": "address",
|
396
|
+
"name": "activatedBy",
|
397
|
+
"type": "address"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"internalType": "Timestamp",
|
401
|
+
"name": "activatedAt",
|
402
|
+
"type": "uint40"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"internalType": "Blocknumber",
|
406
|
+
"name": "activatedIn",
|
407
|
+
"type": "uint32"
|
408
|
+
}
|
409
|
+
],
|
410
|
+
"internalType": "struct ProxyManager.VersionInfo",
|
411
|
+
"name": "",
|
412
|
+
"type": "tuple"
|
413
|
+
}
|
414
|
+
],
|
415
|
+
"stateMutability": "view",
|
416
|
+
"type": "function"
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"inputs": [],
|
420
|
+
"name": "initializeERC165",
|
421
|
+
"outputs": [],
|
422
|
+
"stateMutability": "nonpayable",
|
423
|
+
"type": "function"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"inputs": [
|
427
|
+
{
|
428
|
+
"internalType": "address",
|
429
|
+
"name": "initialOwner",
|
430
|
+
"type": "address"
|
431
|
+
},
|
432
|
+
{
|
433
|
+
"internalType": "address",
|
434
|
+
"name": "registryAddress",
|
435
|
+
"type": "address"
|
436
|
+
}
|
437
|
+
],
|
438
|
+
"name": "initializeNftOwnable",
|
439
|
+
"outputs": [],
|
440
|
+
"stateMutability": "nonpayable",
|
441
|
+
"type": "function"
|
442
|
+
},
|
443
|
+
{
|
444
|
+
"inputs": [
|
445
|
+
{
|
446
|
+
"internalType": "address",
|
447
|
+
"name": "registry",
|
448
|
+
"type": "address"
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"name": "initializeProxyManager",
|
452
|
+
"outputs": [],
|
453
|
+
"stateMutability": "nonpayable",
|
454
|
+
"type": "function"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"inputs": [
|
458
|
+
{
|
459
|
+
"internalType": "address",
|
460
|
+
"name": "registryAddress",
|
461
|
+
"type": "address"
|
462
|
+
}
|
463
|
+
],
|
464
|
+
"name": "initializeRegistryLinked",
|
465
|
+
"outputs": [],
|
466
|
+
"stateMutability": "nonpayable",
|
467
|
+
"type": "function"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"inputs": [],
|
471
|
+
"name": "linkToProxy",
|
472
|
+
"outputs": [
|
473
|
+
{
|
474
|
+
"internalType": "NftId",
|
475
|
+
"name": "",
|
476
|
+
"type": "uint96"
|
477
|
+
}
|
478
|
+
],
|
479
|
+
"stateMutability": "nonpayable",
|
480
|
+
"type": "function"
|
481
|
+
},
|
482
|
+
{
|
483
|
+
"inputs": [],
|
484
|
+
"name": "linkToRegisteredNftId",
|
485
|
+
"outputs": [
|
486
|
+
{
|
487
|
+
"internalType": "NftId",
|
488
|
+
"name": "nftId",
|
489
|
+
"type": "uint96"
|
490
|
+
}
|
491
|
+
],
|
492
|
+
"stateMutability": "nonpayable",
|
493
|
+
"type": "function"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"inputs": [
|
497
|
+
{
|
498
|
+
"internalType": "bytes4",
|
499
|
+
"name": "interfaceId",
|
500
|
+
"type": "bytes4"
|
501
|
+
}
|
502
|
+
],
|
503
|
+
"name": "registerInterface",
|
504
|
+
"outputs": [],
|
505
|
+
"stateMutability": "nonpayable",
|
506
|
+
"type": "function"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"inputs": [
|
510
|
+
{
|
511
|
+
"internalType": "bytes4",
|
512
|
+
"name": "interfaceId",
|
513
|
+
"type": "bytes4"
|
514
|
+
}
|
515
|
+
],
|
516
|
+
"name": "supportsInterface",
|
517
|
+
"outputs": [
|
518
|
+
{
|
519
|
+
"internalType": "bool",
|
520
|
+
"name": "",
|
521
|
+
"type": "bool"
|
522
|
+
}
|
523
|
+
],
|
524
|
+
"stateMutability": "view",
|
525
|
+
"type": "function"
|
526
|
+
},
|
527
|
+
{
|
528
|
+
"inputs": [
|
529
|
+
{
|
530
|
+
"internalType": "address",
|
531
|
+
"name": "newImplementation",
|
532
|
+
"type": "address"
|
533
|
+
},
|
534
|
+
{
|
535
|
+
"internalType": "bytes",
|
536
|
+
"name": "upgradeData",
|
537
|
+
"type": "bytes"
|
538
|
+
}
|
539
|
+
],
|
540
|
+
"name": "upgrade",
|
541
|
+
"outputs": [
|
542
|
+
{
|
543
|
+
"internalType": "contract IVersionable",
|
544
|
+
"name": "versionable",
|
545
|
+
"type": "address"
|
546
|
+
}
|
547
|
+
],
|
548
|
+
"stateMutability": "nonpayable",
|
549
|
+
"type": "function"
|
550
|
+
}
|
551
|
+
],
|
552
|
+
"bytecode": "0x608060405234801561000f575f80fd5b5060405161944438038061944483398101604081905261002e91610ae2565b80610038816100c1565b505f60405161004690610ac8565b604051809103905ff08015801561005f573d5f803e3d5ffd5b50604080516001600160a01b0385166020820152308183015281518082038301815260609091019091529091505f61009783836101d7565b600580546001600160a01b0319166001600160a01b039290921691909117905550610c4b92505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03165f8115801561010a5750825b90505f826001600160401b031660011480156101255750303b155b905081158015610133575080155b156101515760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561017f57845460ff60401b1916680100000000000000001785555b610189338761035a565b83156101cf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f6101e06103ec565b6001600160a01b0316336001600160a01b0316146102185760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156102395760405163402b135f60e11b815260040160405180910390fd5b5f6102426103ec565b90503084816102518487610539565b60405161025d90610ad5565b61026993929190610b3d565b604051809103905ff080158015610282573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945061030e918591630d8e6e2c9160048083019260209291908290030181865afa1580156102e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103079190610b71565b8684610591565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610362610927565b61036b81610977565b610373610a83565b6001600160a01b03821661039a5760405163f17ef42d60e01b815260040160405180910390fd5b507f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b0390931692909202919091179055565b5f807f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561046b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061048f9190610b93565b1561051a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156104f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105149190610ae2565b91505090565b546c0100000000000000000000000090046001600160a01b0316919050565b60606349bb9e4b60e01b8383604051602401610556929190610bb2565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b61060d8373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af41580156105dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106009190610b71565b62ffffff90811691161490565b1561062b576040516348c618db60e01b815260040160405180910390fd5b60045415610783576004805461064390600190610bdd565b8154811061065357610653610bfc565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156106c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106e89190610c10565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801561073a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075e9190610c10565b1161078357604051633e614b6d60e11b815262ffffff8416600482015260240161020f565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af4158015610853573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108779190610c27565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661097557604051631afcd79f60e31b815260040160405180910390fd5b565b61097f610927565b806001600160a01b03163b5f036109b45760405163fdeac91f60e01b81526001600160a01b038216600482015260240161020f565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610a2e575060408051601f3d908101601f19168201909252610a2b91810190610b93565b60015b610a565760405163fdeac91f60e01b81526001600160a01b038216600482015260240161020f565b80610a7f5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161020f565b5050565b610a8b610927565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61522f806133c983390190565b610e4c806185f883390190565b5f60208284031215610af2575f80fd5b81516001600160a01b0381168114610b08575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6001600160a01b038481168252831660208201526060604082018190525f90610b6890830184610b0f565b95945050505050565b5f60208284031215610b81575f80fd5b815162ffffff81168114610b08575f80fd5b5f60208284031215610ba3575f80fd5b81518015158114610b08575f80fd5b6001600160a01b03831681526040602082018190525f90610bd590830184610b0f565b949350505050565b8181038181111561058b57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c20575f80fd5b5051919050565b5f60208284031215610c37575f80fd5b815164ffffffffff81168114610b08575f80fd5b61277180610c585f395ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063675393bf116100bf578063ada9652e11610079578063ada9652e146103e1578063b88da759146103f5578063c987336c14610408578063e97fac051461041b578063f7c34ee01461042e578063fd0c63d914610441575f80fd5b8063675393bf1461037f57806367b9cc4a14610392578063893d20e8146103a35780638e9afce6146103ab578063933a9ce8146103be578063946dfcfe146103cf575f80fd5b80631775564d116101105780631775564d14610209578063214cdb801461022957806336fc697e1461023c5780634d459c90146102445780635ab1bd5314610351578063644c45e014610362575f80fd5b806301ffc9a71461014c578063058f7a971461018d57806307484e80146101a25780630d8e6e2c146101cd578063138461e0146101e9575b5f80fd5b61017861015a3660046114fe565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a061019b366004611540565b610449565b005b6101b56101b03660046115fa565b610558565b6040516001600160a01b039091168152602001610184565b6101d56106e1565b60405162ffffff9091168152602001610184565b6101f1610751565b6040516001600160601b039091168152602001610184565b61021c61021736600461164f565b61075b565b60405161018491906116ca565b6101a06102373660046114fe565b6107b3565b6101a06107df565b6102f46102523660046116ec565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610184565b6001546001600160a01b03166101b5565b5f8051602061271c833981519152546001600160601b03166101f1565b6101a061038d366004611540565b610824565b6005546001600160a01b03166101b5565b6101b5610931565b61021c6103b9366004611707565b610a62565b6002546001600160a01b03166101b5565b6004545b604051908152602001610184565b6103d35f8051602061271c83398151915281565b6101d5610403366004611741565b610ab5565b6101b561041636600461164f565b610af3565b6101b561042936600461164f565b610d0c565b6101a061043c366004611758565b610e8a565b6101f1610f00565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f8115801561048e5750825b90505f8267ffffffffffffffff1660011480156104aa5750303b155b9050811580156104b8575080155b156104d65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561050057845460ff60401b1916600160401b1785555b61050a3387610e8a565b831561055057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610561610931565b6001600160a01b0316336001600160a01b0316146105995760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156105ba5760405163402b135f60e11b815260040160405180910390fd5b5f6105c3610931565b9050308386826105d3858961075b565b6040516105df906114f1565b6105eb9392919061178f565b8190604051809103905ff5905080158015610608573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610694918591630d8e6e2c9160048083019260209291908290030181865afa158015610669573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068d91906117c3565b8784610f17565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa158015610728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c91906117c3565b905090565b5f61074c306112ad565b60606349bb9e4b60e01b83836040516024016107789291906117de565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6107bb6114a6565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6107e76114a6565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61082c6114a6565b806001600160a01b03163b5f036108615760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156108db575060408051601f3d908101601f191682019092526108d891810190611801565b60015b6109035760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b8061092c5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610590565b505b50565b5f805f8051602061271c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561099d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c19190611801565b15610a4c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a469190611820565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b82604051602401610a7d91906116ca565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f60048281548110610ac957610ac961183b565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f610afc610931565b6001600160a01b0316336001600160a01b031614610b2f5760405163086391f760e31b8152336004820152602401610590565b6004545f03610b515760405163366dfd2160e21b815260040160405180910390fd5b5f610b5a610931565b90505f610b6f6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015610bab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcf9190611820565b6002549091506001600160a01b03908116908216639623609d8288610bf389610a62565b6040518463ffffffff1660e01b8152600401610c119392919061178f565b5f604051808303815f87803b158015610c28575f80fd5b505af1158015610c3a573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03169350610cbf846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb891906117c3565b8785610f17565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b5f610d15610931565b6001600160a01b0316336001600160a01b031614610d485760405163086391f760e31b8152336004820152602401610590565b60045415610d695760405163402b135f60e11b815260040160405180910390fd5b5f610d72610931565b9050308481610d81848761075b565b604051610d8d906114f1565b610d999392919061178f565b604051809103905ff080158015610db2573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610e3e918591630d8e6e2c9160048083019260209291908290030181865afa158015610e13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3791906117c3565b8684610f17565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610e926114a6565b610e9b81610824565b610ea36107df565b6001600160a01b038216610eca5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061271c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6002545f9061074c906001600160a01b03166112ad565b610f938373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8691906117c3565b62ffffff90811691161490565b15610fb1576040516348c618db60e01b815260040160405180910390fd5b600454156111095760048054610fc99060019061184f565b81548110610fd957610fd961183b565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801561104a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106e919061186e565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156110c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e4919061186e565b1161110957604051633e614b6d60e11b815262ffffff84166004820152602401610590565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156111d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111fd9190611885565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b5f805f8051602061271c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611319573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133d9190611801565b156113695780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610590565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156113bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113df9190611801565b6114075760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610590565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611459573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061147d91906118a9565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166114ef57604051631afcd79f60e31b815260040160405180910390fd5b565b610e4c806118d083390190565b5f6020828403121561150e575f80fd5b81356001600160e01b031981168114611525575f80fd5b9392505050565b6001600160a01b038116811461092e575f80fd5b5f60208284031215611550575f80fd5b81356115258161152c565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261157e575f80fd5b813567ffffffffffffffff8111156115985761159861155b565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156115c7576115c761155b565b6040528181528382016020018510156115de575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f6060848603121561160c575f80fd5b83356116178161152c565b9250602084013567ffffffffffffffff811115611632575f80fd5b61163e8682870161156f565b925050604084013590509250925092565b5f8060408385031215611660575f80fd5b823561166b8161152c565b9150602083013567ffffffffffffffff811115611686575f80fd5b6116928582860161156f565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611525602083018461169c565b62ffffff8116811461092e575f80fd5b5f602082840312156116fc575f80fd5b8135611525816116dc565b5f60208284031215611717575f80fd5b813567ffffffffffffffff81111561172d575f80fd5b6117398482850161156f565b949350505050565b5f60208284031215611751575f80fd5b5035919050565b5f8060408385031215611769575f80fd5b82356117748161152c565b915060208301356117848161152c565b809150509250929050565b6001600160a01b038481168252831660208201526060604082018190525f906117ba9083018461169c565b95945050505050565b5f602082840312156117d3575f80fd5b8151611525816116dc565b6001600160a01b03831681526040602082018190525f906117399083018461169c565b5f60208284031215611811575f80fd5b81518015158114611525575f80fd5b5f60208284031215611830575f80fd5b81516115258161152c565b634e487b7160e01b5f52603260045260245ffd5b818103818111156107ad57634e487b7160e01b5f52601160045260245ffd5b5f6020828403121561187e575f80fd5b5051919050565b5f60208284031215611895575f80fd5b815164ffffffffff81168114611525575f80fd5b5f602082840312156118b9575f80fd5b81516001600160601b0381168114611525575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220e74d4726504e82a0df7fc3f0269bded0bb630b227c00a5c65ef9ce4b15545f7c64736f6c634300081a00336080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615159806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610260575f3560e01c80636c741e781161014b578063be495be5116100bf578063d7740ee111610084578063d7740ee11461052d578063deaa59df14610535578063dfd92f8a14610548578063e618053f146102d6578063f7c34ee014610550578063f83d08ba146102e9575f80fd5b8063be495be5146104f5578063bf7e214f146104fd578063c142a3031461051a578063d165cb6414610366578063d56cd3d514610366575f80fd5b806389fad8a21161011057806389fad8a2146102d65780638e32e9791461049e5780638fb36037146104b1578063a69df4b5146102e9578063ada9652e146104d2578063b68d1809146104e6575f80fd5b80636c741e78146104505780636e1728071461047057806374933c2f146103665780637a9e5e4b14610483578063893d20e814610496575f80fd5b8063329d6e74116101e25780635ab1bd53116101a75780635ab1bd53146103d5578063644c45e0146103fa57806366101781146102d657806367438c5014610417578063675393bf1461042a57806367ba1c101461043d575f80fd5b8063329d6e741461038c578063339d25901461039f57806336fc697e146103a757806337a897ee146103af57806349bb9e4b146103c2575f80fd5b80631c6b2190116102285780631c6b21901461030b5780631eff4b221461031e578063214cdb801461035357806325e451d31461036657806327bb7a3314610379575f80fd5b806301ffc9a7146102645780630d8e6e2c146102a55780630fec111c146102c157806311a14677146102d6578063138461e0146102eb575b5f80fd5b6102906102723660046142ab565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102ad610563565b60405162ffffff909116815260200161029c565b6102c96105ea565b60405161029c9190614300565b6102e96102e43660046143bc565b610776565b005b6102f3610789565b6040516001600160601b03909116815260200161029c565b6102f3610319366004614415565b610793565b6103457f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161029c565b6102e96103613660046142ab565b610ec3565b6102e96103743660046143bc565b610eef565b6102e9610387366004614596565b610efd565b6102e961039a366004614629565b610fa2565b6102e96110ec565b6102e961110a565b6102e96103bd366004614689565b61114f565b6102e96103d03660046146b3565b61146c565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161029c565b5f805160206150c4833981519152546001600160601b03166102f3565b6102e96104253660046146ff565b61155a565b6102e9610438366004614747565b6115d7565b6102e961044b366004614689565b6116e4565b610458611a4f565b6040516001600160401b03909116815260200161029c565b6102e961047e3660046146ff565b611b46565b6102e9610491366004614747565b611b93565b6103e2611c2b565b6102e96104ac366004614762565b611d5c565b6104b9611e94565b6040516001600160e01b0319909116815260200161029c565b6103455f805160206150c483398151915281565b604051600b815260200161029c565b6102e9611ecb565b5f805160206150e4833981519152546001600160a01b03166103e2565b6102e961052836600461479f565b611eda565b6102e9612274565b6102e9610543366004614747565b612340565b6102e96125e2565b6102e961055e3660046147e2565b6126e0565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e59190614819565b905090565b6105f2614164565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610668573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068c919061484b565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106d4611c2b565b6001600160a01b031681526020018260010180546106f190614866565b80601f016020809104026020016040519081016040528092919081815260200182805461071d90614866565b80156107685780601f1061073f57610100808354040283529160200191610768565b820191905f5260205f20905b81548152906001019060200180831161074b57829003601f168201915b505050505081525091505090565b6107835f85858585612756565b50505050565b5f6105e530612b50565b5f80806107a0600b612d49565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107e2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610806919061489e565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610852573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108799190810190614913565b90505f81608001519050859450846001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610917919061484b565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610960573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098491906149f6565b15610a6157826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e9919061489e565b604051630232ca4960e01b81526001600160601b03861660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610a36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5a919061484b565b9450610c88565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610ab7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610adb91906149f6565b15610af95760405163b079ec2b60e01b815260040160405180910390fd5b5f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a919061489e565b604051630232ca4960e01b81526001600160601b03871660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610ba7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcb919061484b565b604051632601631360e21b81526001600160601b0388811660048301528216602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015610c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5091906149f6565b15610c865760405163151dbb3f60e01b81526001600160601b038088166004830152821660248201526044015b60405180910390fd5b505b610d5e5f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cc8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cec919061489e565b8673__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610d34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d58919061484b565b89612756565b5f610d716001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610dbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de2919061489e565b60408481015181516001600160601b0389811682526001600160a01b03858116602084015290921681840152908916606082015290519192507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde9919081900360800190a1606083015160405163153c361360e21b81526001600160a01b03848116600483015283811660248301526001600160601b0389166044830152909116906354f0d84c906064015f604051808303815f87803b158015610ea3575f80fd5b505af1158015610eb5573d5f803e3d5ffd5b505050505050505050919050565b610ecb612de5565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b610783600185858585612756565b610f05612de5565b610f0f82876126e0565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610f988382614a55565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610fc4610563565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611002573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110269190614b23565b5f805160206151048339815191528054600160401b900460ff1680611058575080546001600160401b03808416911610155b156110765760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556110a083612e1b565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b335f8061110283600d6110fd612e23565b612e5d565b505050505050565b611112612de5565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f8061115b600e612d49565b92505091505f806111cb836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c5919061489e565b8561339d565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b815260040161120d929190614b3e565b602060405180830381865af4158015611228573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124c91906149f6565b61129257611287836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a613497565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916112ce91908a90600401614b3e565b602060405180830381865af41580156112e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061130d91906149f6565b61136157611356836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189613497565b5060a0810185905260015b801561146357836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c7919061489e565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b81526004016113f793929190614c3c565b5f604051808303815f87803b15801561140e575f80fd5b505af1158015611420573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b5f805160206151048339815191528054600160401b810460ff1615906001600160401b03165f8115801561149d5750825b90505f826001600160401b031660011480156114b85750303b155b9050811580156114c6575080155b156114e45760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561150e57845460ff60401b1916600160401b1785555b61151887876134ea565b831561146357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161145a565b6115d26001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156115a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115cc919061484b565b85612756565b505050565b6115df612de5565b806001600160a01b03163b5f036116145760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c7d565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa92505050801561168e575060408051601f3d908101601f1916820190925261168b918101906149f6565b60015b6116b65760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c7d565b806116df5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c7d565b505b50565b5f806116f0600c612d49565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611732573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611756919061489e565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa1580156117a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117c89190614c9b565b90505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b8152600401611808929190614b3e565b602060405180830381865af4158015611823573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184791906149f6565b6118885761187d846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189613497565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916118c491908990600401614b3e565b602060405180830381865af41580156118df573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061190391906149f6565b6119475761193c846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188613497565b506060810184905260015b801561110257826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611989573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119ad919061489e565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b81526004016119dd93929190614c3c565b5f604051808303815f87803b1580156119f4575f80fd5b505af1158015611a06573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a1505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611aba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ade9190614d67565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611b22573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e59190614b23565b6115d25f848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156115a8573d5f803e3d5ffd5b33611bb25f805160206150e4833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614611bed5760405162d1953b60e31b81526001600160a01b0382166004820152602401610c7d565b816001600160a01b03163b5f03611c22576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c7d565b6116df8261365a565b5f805f805160206150c483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611c97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cbb91906149f6565b15611d46576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d40919061489e565b91505090565b54600160601b90046001600160a01b0316919050565b611d64612de5565b611de083846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc8919061484b565b60085f8560405180602001604052805f815250610efd565b6001600160a01b03821615611dfd57611df8826136ba565b611e74565b5f611e0860026136cb565b9050611e72816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d919061489e565b6136ba565b505b611e84634a531f3360e01b610ec3565b6115d263daf9067160e01b610ec3565b5f805160206150e483398151915280545f9190600160a01b900460ff16611ebb575f611d40565b638fb3603760e01b91505090565b565b3361078381600e6110fd6137d2565b5f80611ee6600f612d49565b92505091505f80611f2c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111a1573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b8152600401611f6e929190614b3e565b602060405180830381865af4158015611f89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fad91906149f6565b611feb57611fe08360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b613497565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161202791908b90600401614b3e565b602060405180830381865af4158015612042573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061206691906149f6565b6120a75761209c836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a613497565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916120e491908a90600401614b3e565b602060405180830381865af41580156120ff573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061212391906149f6565b61216a5761215e836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189613497565b50610100810185905260015b8015610f9857836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d0919061489e565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040161220093929190614c3c565b5f604051808303815f87803b158015612217575f80fd5b505af1158015612229573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b335f8061228583600f6110fd61380c565b9250925050816001600160a01b031663bb823eed82856001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa1580156122d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122fa9190614d82565b6040518363ffffffff1660e01b8152600401612317929190614e10565b5f604051808303815f87803b15801561232e575f80fd5b505af1158015611463573d5f803e3d5ffd5b5f8061234c600b612d49565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561238e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123b2919061489e565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156123fe573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526124259190810190614913565b60808101519091506001600160a01b0385166124545760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b03811661247b5760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b0316036124ad5760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252b919061489e565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b815260040161255b93929190614f0d565b5f604051808303815f87803b158015612572575f80fd5b505af1158015612584573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b335f80806125f484600c6110fd613846565b9250925092505f846001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa158015612638573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061265c9190614c9b565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f9061268d9085908590600401614f41565b5f604051808303815f87803b1580156126a4575f80fd5b505af11580156126b6573d5f803e3d5ffd5b505050506126c98484835f015185613880565b6126d98484836020015185613880565b5050505050565b6126e8612de5565b6126f1816115d7565b6126f961110a565b6001600160a01b0382166127205760405163f17ef42d60e01b815260040160405180910390fd5b505f805160206150c483398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f61276183836139e7565b90508515612960576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156127bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127e391906149f6565b1561286257604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303815f875af115801561283c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612860919061484b565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156128b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128dc91906149f6565b1561295b5760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303815f875af1158015612935573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612959919061484b565b505b611102565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156129b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129da91906149f6565b15612a595760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303815f875af1158015612a33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a57919061484b565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612aaf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ad391906149f6565b15611102576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303815f875af1158015612b2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611463919061484b565b5f805f805160206150c483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612bbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612be091906149f6565b15612c0c5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c7d565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612c5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c8291906149f6565b612caa5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610c7d565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612cfc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d20919061484b565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f612d52614164565b5f612d656001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612da9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dcd919061484b565b9250612ddb83856001613a72565b9395909450915050565b5f8051602061510483398151915254600160401b900460ff16611ec957604051631afcd79f60e31b815260040160405180910390fd5b610260612de5565b604051637c3940bf60e01b8152600c60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b07565b5f805f805f80612e6e898989613d0f565b60025460405163d943342d60e01b81526001600160a01b03808516600483015260ff8e1660248301528084166044830152949750929550909350919091169063d943342d906064015f604051808303815f875af1158015612ed1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ef89190810190614f5f565b5f01519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612f3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f5e919061484b565b50826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fbf919061489e565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ffd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613021919061489e565b94505f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561305f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526130869190810190614913565b905073__$51089c37ca0df1177a910c640c8c5f8165$__63825e72798260400151866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130e3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613107919061489e565b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613142573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613166919061489e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865af41580156131af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d3919061489e565b81606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561323b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061325f919061484b565b836040518363ffffffff1660e01b815260040161327d92919061502f565b5f604051808303815f87803b158015613294575f80fd5b505af11580156132a6573d5f803e3d5ffd5b5050505060035f9054906101000a90046001600160a01b03166001600160a01b0316633931d6da856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613309573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061332d919061484b565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526001600160a01b03861660248201526044015f604051808303815f87803b15801561337a575f80fd5b505af115801561338c573d5f803e3d5ffd5b505050505050505093509350939050565b5f6133a66141a1565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c3906024015f60405180830381865afa1580156133f0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134179190810190614913565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa15801561346a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061348e9190614c9b565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db946134dc948a948a949293909290615050565b60405180910390a150505050565b5f805160206151048339815191528054600160401b810460ff1615906001600160401b03165f8115801561351b5750825b90505f826001600160401b031660011480156135365750303b155b905081158015613544575080155b156135625760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561358c57845460ff60401b1916600160401b1785555b5f80878060200190518101906135a29190615096565b90925090506135b2825f8b611d5c565b6135bc60026136cb565b600280546001600160a01b0319166001600160a01b03929092169190911790556135e6600a6136cb565b600380546001600160a01b0319166001600160a01b0392909216919091179055613616636618d76960e11b610ec3565b5050831561146357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161145a565b5f805160206150e483398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6136c2612de5565b6116e1816140c3565b5f6136de6001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613741573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137659190614d67565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156137a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137cc919061489e565b92915050565b604051637c3940bf60e01b8152600d60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b07565b604051637c3940bf60e01b8152600e60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b07565b604051637c3940bf60e01b8152600b60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611b07565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156138d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138fa91906149f6565b6107835760405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa15801561394a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139719190810190614913565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac906139b3908690859060ff90600401614f0d565b5f604051808303815f87803b1580156139ca575f80fd5b505af11580156139dc573d5f803e3d5ffd5b505050505050505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613a47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a6b919061484b565b9392505050565b613a7a614164565b5f80613a8e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613adb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613b029190810190614f5f565b925060ff8516600b14613b6057604083015160ff868116911614613b5b57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c7d565b613bfc565b613b7b8360400151613b70600c90565b60ff90811691161490565b80613b915750613b918360400151613b70600f90565b80613ba75750613ba78360400151613b70600e90565b80613bbd5750613bbd8360400151613b70600d90565b613bfc57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c7d565b613c0983602001516140d4565b91508315613d0657816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c71919061489e565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613cb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cdd91906149f6565b15613d0657604051637d71120960e11b81526001600160601b0387166004820152602401610c7d565b50935093915050565b6040516301ffc9a760e01b81526376c9b41160e11b60048201525f90849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015613d5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d8291906149f6565b613daa576040516359bff0e360e11b81526001600160a01b0387166004820152602401610c7d565b5f826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613de6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613e0d9190810190614f5f565b9050613e2481604001518760ff9081169116141590565b15613e64576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff80891660248301529091166044820152606401610c7d565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038981166004830152919091169063d272ac1e90602401602060405180830381865afa158015613eb6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613eda919061484b565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613f31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f5591906149f6565b15613f7e576040516322e6526160e11b81526001600160a01b0388166004820152602401610c7d565b613f8b81602001516140d4565b93508060a001519150836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ff4919061489e565b60405163327e18a160e11b81526001600160a01b0384811660048301526001600160401b038816602483015291909116906364fc314290604401602060405180830381865afa158015614049573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061406d91906149f6565b6140b9576020810151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03861660248201526001600160a01b0383166044820152606401610c7d565b5093509350939050565b6140cb612de5565b6116e18161365a565b5f6140e76001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa158015614133573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261415a9190810190614f5f565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040518061012001604052805f6001600160601b031681526020015f6001600160601b031681526020016141e660405180604001604052805f81526020015f81525090565b815260200161420660405180604001604052805f81526020015f81525090565b815260200161422660405180604001604052805f81526020015f81525090565b815260200161424660405180604001604052805f81526020015f81525090565b815260200161426660405180604001604052805f81526020015f81525090565b815260200161428660405180604001604052805f81526020015f81525090565b81526020016142a660405180604001604052805f81526020015f81525090565b905290565b5f602082840312156142bb575f80fd5b81356001600160e01b031981168114613a6b575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614348608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261438c6101008401826142d2565b949350505050565b6001600160a01b03811681146116e1575f80fd5b6001600160601b03811681146116e1575f80fd5b5f805f80608085870312156143cf575f80fd5b84356143da81614394565b935060208501356143ea816143a8565b925060408501356143fa816143a8565b9150606085013561440a816143a8565b939692955090935050565b5f60208284031215614425575f80fd5b8135613a6b816143a8565b60ff811681146116e1575f80fd5b80151581146116e1575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b03811182821017156144815761448161444b565b60405290565b60405160c081016001600160401b03811182821017156144815761448161444b565b60405161012081016001600160401b03811182821017156144815761448161444b565b60405160e081016001600160401b03811182821017156144815761448161444b565b604051601f8201601f191681016001600160401b03811182821017156145165761451661444b565b604052919050565b5f6001600160401b038211156145365761453661444b565b50601f01601f191660200190565b5f82601f830112614553575f80fd5b81356145666145618261451e565b6144ee565b81815284602083860101111561457a575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c087890312156145ab575f80fd5b86356145b681614394565b955060208701356145c6816143a8565b945060408701356145d681614430565b935060608701356145e68161443e565b925060808701356145f681614394565b915060a08701356001600160401b03811115614610575f80fd5b61461c89828a01614544565b9150509295509295509295565b5f60208284031215614639575f80fd5b81356001600160401b0381111561464e575f80fd5b61438c84828501614544565b5f6040828403121561466a575f80fd5b61467261445f565b823581526020928301359281019290925250919050565b5f806080838503121561469a575f80fd5b6146a4848461465a565b915061348e846040850161465a565b5f80604083850312156146c4575f80fd5b82356146cf81614394565b915060208301356001600160401b038111156146e9575f80fd5b6146f585828601614544565b9150509250929050565b5f805f60608486031215614711575f80fd5b833561471c81614394565b9250602084013561472c816143a8565b9150604084013561473c816143a8565b809150509250925092565b5f60208284031215614757575f80fd5b8135613a6b81614394565b5f805f60608486031215614774575f80fd5b833561477f81614394565b9250602084013561478f81614394565b9150604084013561473c81614394565b5f805f60c084860312156147b1575f80fd5b6147bb858561465a565b92506147ca856040860161465a565b91506147d9856080860161465a565b90509250925092565b5f80604083850312156147f3575f80fd5b82356147fe81614394565b9150602083013561480e81614394565b809150509250929050565b5f60208284031215614829575f80fd5b815162ffffff81168114613a6b575f80fd5b8051614846816143a8565b919050565b5f6020828403121561485b575f80fd5b8151613a6b816143a8565b600181811c9082168061487a57607f821691505b60208210810361489857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156148ae575f80fd5b8151613a6b81614394565b5f82601f8301126148c8575f80fd5b8151602083015f6148db6145618461451e565b90508281528583830111156148ee575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161484681614394565b5f60208284031215614923575f80fd5b81516001600160401b03811115614938575f80fd5b820160c08185031215614949575f80fd5b614951614487565b81516001600160401b03811115614966575f80fd5b614972868285016148b9565b8252506149816020830161483b565b602082015261499260408301614908565b60408201526149a360608301614908565b60608201526149b460808301614908565b608082015260a08201516001600160401b038111156149d1575f80fd5b6149dd868285016148b9565b60a083015250949350505050565b80516148468161443e565b5f60208284031215614a06575f80fd5b8151613a6b8161443e565b601f8211156115d257805f5260205f20601f840160051c81016020851015614a365750805b601f840160051c820191505b818110156126d9575f8155600101614a42565b81516001600160401b03811115614a6e57614a6e61444b565b614a8281614a7c8454614866565b84614a11565b6020601f821160018114614ab4575f8315614a9d5750848201515b5f19600385901b1c1916600184901b1784556126d9565b5f84815260208120601f198516915b82811015614ae35787850151825560209485019460019092019101614ac3565b5084821015614b0057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b03811681146116e1575f80fd5b5f60208284031215614b33575f80fd5b8151613a6b81614b0f565b825181526020808401518183015282516040830152820151606082015260808101613a6b565b6001600160601b0381511682526020810151614b8b60208401826001600160601b03169052565b506040810151614ba8604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a0810151805161010084015260208101516101208401525060c0810151805161014084015260208101516101608401525060e0810151805161018084015260208101516101a084015250610100015180516101c0830152602001516101e090910152565b6001600160601b03841681526102408101614c5a6020830185614b64565b60ff8316610220830152949350505050565b5f60408284031215614c7c575f80fd5b614c8461445f565b825181526020928301519281019290925250919050565b5f610200828403128015614cad575f80fd5b50614cb66144a9565b614cbf8361483b565b8152614ccd6020840161483b565b6020820152614cdf8460408501614c6c565b6040820152614cf18460808501614c6c565b6060820152614d038460c08501614c6c565b6080820152614d16846101008501614c6c565b60a0820152614d29846101408501614c6c565b60c0820152614d3c846101808501614c6c565b60e0820152614d4f846101c08501614c6c565b6101008201529392505050565b805161484681614430565b5f60208284031215614d77575f80fd5b8151613a6b81614430565b5f60e0828403128015614d93575f80fd5b50614d9c6144cc565b8251614da781614b0f565b81526020830151614db7816143a8565b60208201526040830151614dca8161443e565b60408201526060830151614ddd8161443e565b6060820152614dee608084016149eb565b608082015260a0838101519082015260c0928301519281019290925250919050565b5f610100820190506001600160601b03841682526001600160401b0383511660208301526001600160601b0360208401511660408301526040830151151560608301526060830151151560808301526080830151614e7260a084018215159052565b5060a083015160c083015260c083015160e08301529392505050565b5f815160c08452614ea260c08501826142d2565b90506001600160601b03602084015116602085015260018060a01b03604084015116604085015260018060a01b03606084015116606085015260018060a01b03608084015116608085015260a083015184820360a0860152614f0482826142d2565b95945050505050565b6001600160601b0384168152606060208201525f614f2e6060830185614e8e565b905060ff83166040830152949350505050565b6001600160601b03831681526102208101613a6b6020830184614b64565b5f60208284031215614f6f575f80fd5b81516001600160401b03811115614f84575f80fd5b820160e08185031215614f95575f80fd5b614f9d6144cc565b614fa68261483b565b8152614fb46020830161483b565b6020820152614fc560408301614d5c565b6040820152614fd6606083016149eb565b6060820152614fe760808301614908565b6080820152614ff860a08301614908565b60a082015260c08201516001600160401b03811115615015575f80fd5b615021868285016148b9565b60c083015250949350505050565b6001600160601b0383168152604060208201525f61438c6040830184614e8e565b6001600160601b038716815260c060208201525f61507160c08301886142d2565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f80604083850312156150a7575f80fd5b82516150b281614394565b602084015190925061480e8161439456fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122088087b42a47d37e105181a3ea8398fcbbd575a28f2a22c68b02c7312dcab74bf64736f6c634300081a003360a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
|
553
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063675393bf116100bf578063ada9652e11610079578063ada9652e146103e1578063b88da759146103f5578063c987336c14610408578063e97fac051461041b578063f7c34ee01461042e578063fd0c63d914610441575f80fd5b8063675393bf1461037f57806367b9cc4a14610392578063893d20e8146103a35780638e9afce6146103ab578063933a9ce8146103be578063946dfcfe146103cf575f80fd5b80631775564d116101105780631775564d14610209578063214cdb801461022957806336fc697e1461023c5780634d459c90146102445780635ab1bd5314610351578063644c45e014610362575f80fd5b806301ffc9a71461014c578063058f7a971461018d57806307484e80146101a25780630d8e6e2c146101cd578063138461e0146101e9575b5f80fd5b61017861015a3660046114fe565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a061019b366004611540565b610449565b005b6101b56101b03660046115fa565b610558565b6040516001600160a01b039091168152602001610184565b6101d56106e1565b60405162ffffff9091168152602001610184565b6101f1610751565b6040516001600160601b039091168152602001610184565b61021c61021736600461164f565b61075b565b60405161018491906116ca565b6101a06102373660046114fe565b6107b3565b6101a06107df565b6102f46102523660046116ec565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610184565b6001546001600160a01b03166101b5565b5f8051602061271c833981519152546001600160601b03166101f1565b6101a061038d366004611540565b610824565b6005546001600160a01b03166101b5565b6101b5610931565b61021c6103b9366004611707565b610a62565b6002546001600160a01b03166101b5565b6004545b604051908152602001610184565b6103d35f8051602061271c83398151915281565b6101d5610403366004611741565b610ab5565b6101b561041636600461164f565b610af3565b6101b561042936600461164f565b610d0c565b6101a061043c366004611758565b610e8a565b6101f1610f00565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f8115801561048e5750825b90505f8267ffffffffffffffff1660011480156104aa5750303b155b9050811580156104b8575080155b156104d65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561050057845460ff60401b1916600160401b1785555b61050a3387610e8a565b831561055057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610561610931565b6001600160a01b0316336001600160a01b0316146105995760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156105ba5760405163402b135f60e11b815260040160405180910390fd5b5f6105c3610931565b9050308386826105d3858961075b565b6040516105df906114f1565b6105eb9392919061178f565b8190604051809103905ff5905080158015610608573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610694918591630d8e6e2c9160048083019260209291908290030181865afa158015610669573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068d91906117c3565b8784610f17565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa158015610728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c91906117c3565b905090565b5f61074c306112ad565b60606349bb9e4b60e01b83836040516024016107789291906117de565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6107bb6114a6565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6107e76114a6565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61082c6114a6565b806001600160a01b03163b5f036108615760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156108db575060408051601f3d908101601f191682019092526108d891810190611801565b60015b6109035760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b8061092c5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610590565b505b50565b5f805f8051602061271c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561099d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c19190611801565b15610a4c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a469190611820565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b82604051602401610a7d91906116ca565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f60048281548110610ac957610ac961183b565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f610afc610931565b6001600160a01b0316336001600160a01b031614610b2f5760405163086391f760e31b8152336004820152602401610590565b6004545f03610b515760405163366dfd2160e21b815260040160405180910390fd5b5f610b5a610931565b90505f610b6f6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015610bab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcf9190611820565b6002549091506001600160a01b03908116908216639623609d8288610bf389610a62565b6040518463ffffffff1660e01b8152600401610c119392919061178f565b5f604051808303815f87803b158015610c28575f80fd5b505af1158015610c3a573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03169350610cbf846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb891906117c3565b8785610f17565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b5f610d15610931565b6001600160a01b0316336001600160a01b031614610d485760405163086391f760e31b8152336004820152602401610590565b60045415610d695760405163402b135f60e11b815260040160405180910390fd5b5f610d72610931565b9050308481610d81848761075b565b604051610d8d906114f1565b610d999392919061178f565b604051809103905ff080158015610db2573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610e3e918591630d8e6e2c9160048083019260209291908290030181865afa158015610e13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3791906117c3565b8684610f17565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610e926114a6565b610e9b81610824565b610ea36107df565b6001600160a01b038216610eca5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061271c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6002545f9061074c906001600160a01b03166112ad565b610f938373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8691906117c3565b62ffffff90811691161490565b15610fb1576040516348c618db60e01b815260040160405180910390fd5b600454156111095760048054610fc99060019061184f565b81548110610fd957610fd961183b565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801561104a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106e919061186e565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156110c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e4919061186e565b1161110957604051633e614b6d60e11b815262ffffff84166004820152602401610590565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156111d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111fd9190611885565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b5f805f8051602061271c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611319573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133d9190611801565b156113695780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610590565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156113bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113df9190611801565b6114075760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610590565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611459573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061147d91906118a9565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166114ef57604051631afcd79f60e31b815260040160405180910390fd5b565b610e4c806118d083390190565b5f6020828403121561150e575f80fd5b81356001600160e01b031981168114611525575f80fd5b9392505050565b6001600160a01b038116811461092e575f80fd5b5f60208284031215611550575f80fd5b81356115258161152c565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261157e575f80fd5b813567ffffffffffffffff8111156115985761159861155b565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156115c7576115c761155b565b6040528181528382016020018510156115de575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f6060848603121561160c575f80fd5b83356116178161152c565b9250602084013567ffffffffffffffff811115611632575f80fd5b61163e8682870161156f565b925050604084013590509250925092565b5f8060408385031215611660575f80fd5b823561166b8161152c565b9150602083013567ffffffffffffffff811115611686575f80fd5b6116928582860161156f565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611525602083018461169c565b62ffffff8116811461092e575f80fd5b5f602082840312156116fc575f80fd5b8135611525816116dc565b5f60208284031215611717575f80fd5b813567ffffffffffffffff81111561172d575f80fd5b6117398482850161156f565b949350505050565b5f60208284031215611751575f80fd5b5035919050565b5f8060408385031215611769575f80fd5b82356117748161152c565b915060208301356117848161152c565b809150509250929050565b6001600160a01b038481168252831660208201526060604082018190525f906117ba9083018461169c565b95945050505050565b5f602082840312156117d3575f80fd5b8151611525816116dc565b6001600160a01b03831681526040602082018190525f906117399083018461169c565b5f60208284031215611811575f80fd5b81518015158114611525575f80fd5b5f60208284031215611830575f80fd5b81516115258161152c565b634e487b7160e01b5f52603260045260245ffd5b818103818111156107ad57634e487b7160e01b5f52601160045260245ffd5b5f6020828403121561187e575f80fd5b5051919050565b5f60208284031215611895575f80fd5b815164ffffffffff81168114611525575f80fd5b5f602082840312156118b9575f80fd5b81516001600160601b0381168114611525575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220e74d4726504e82a0df7fc3f0269bded0bb630b227c00a5c65ef9ce4b15545f7c64736f6c634300081a0033",
|
554
|
+
"linkReferences": {
|
555
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
556
|
+
"TokenHandlerDeployerLib": [
|
557
|
+
{
|
558
|
+
"length": 20,
|
559
|
+
"start": 25897
|
560
|
+
}
|
561
|
+
]
|
562
|
+
},
|
563
|
+
"contracts/type/Amount.sol": {
|
564
|
+
"AmountLib": [
|
565
|
+
{
|
566
|
+
"length": 20,
|
567
|
+
"start": 15665
|
568
|
+
},
|
569
|
+
{
|
570
|
+
"length": 20,
|
571
|
+
"start": 15693
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"length": 20,
|
575
|
+
"start": 16158
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"length": 20,
|
579
|
+
"start": 16531
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"length": 20,
|
583
|
+
"start": 16782
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"length": 20,
|
587
|
+
"start": 18946
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"length": 20,
|
591
|
+
"start": 20461
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"length": 20,
|
595
|
+
"start": 23590
|
596
|
+
},
|
597
|
+
{
|
598
|
+
"length": 20,
|
599
|
+
"start": 23839
|
600
|
+
},
|
601
|
+
{
|
602
|
+
"length": 20,
|
603
|
+
"start": 24093
|
604
|
+
},
|
605
|
+
{
|
606
|
+
"length": 20,
|
607
|
+
"start": 24342
|
608
|
+
},
|
609
|
+
{
|
610
|
+
"length": 20,
|
611
|
+
"start": 28334
|
612
|
+
}
|
613
|
+
]
|
614
|
+
},
|
615
|
+
"contracts/type/Fee.sol": {
|
616
|
+
"FeeLib": [
|
617
|
+
{
|
618
|
+
"length": 20,
|
619
|
+
"start": 18033
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"length": 20,
|
623
|
+
"start": 18244
|
624
|
+
},
|
625
|
+
{
|
626
|
+
"length": 20,
|
627
|
+
"start": 19564
|
628
|
+
},
|
629
|
+
{
|
630
|
+
"length": 20,
|
631
|
+
"start": 19770
|
632
|
+
},
|
633
|
+
{
|
634
|
+
"length": 20,
|
635
|
+
"start": 21458
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"length": 20,
|
639
|
+
"start": 21661
|
640
|
+
},
|
641
|
+
{
|
642
|
+
"length": 20,
|
643
|
+
"start": 21850
|
644
|
+
}
|
645
|
+
]
|
646
|
+
},
|
647
|
+
"contracts/type/NftId.sol": {
|
648
|
+
"NftIdLib": [
|
649
|
+
{
|
650
|
+
"length": 20,
|
651
|
+
"start": 1075
|
652
|
+
},
|
653
|
+
{
|
654
|
+
"length": 20,
|
655
|
+
"start": 5565
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"length": 20,
|
659
|
+
"start": 7993
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"length": 20,
|
663
|
+
"start": 15042
|
664
|
+
},
|
665
|
+
{
|
666
|
+
"length": 20,
|
667
|
+
"start": 20734
|
668
|
+
},
|
669
|
+
{
|
670
|
+
"length": 20,
|
671
|
+
"start": 24611
|
672
|
+
},
|
673
|
+
{
|
674
|
+
"length": 20,
|
675
|
+
"start": 27965
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"length": 20,
|
679
|
+
"start": 29592
|
680
|
+
}
|
681
|
+
]
|
682
|
+
},
|
683
|
+
"contracts/type/RoleId.sol": {
|
684
|
+
"RoleIdLib": [
|
685
|
+
{
|
686
|
+
"length": 20,
|
687
|
+
"start": 20209
|
688
|
+
},
|
689
|
+
{
|
690
|
+
"length": 20,
|
691
|
+
"start": 25306
|
692
|
+
},
|
693
|
+
{
|
694
|
+
"length": 20,
|
695
|
+
"start": 27785
|
696
|
+
},
|
697
|
+
{
|
698
|
+
"length": 20,
|
699
|
+
"start": 27843
|
700
|
+
},
|
701
|
+
{
|
702
|
+
"length": 20,
|
703
|
+
"start": 27901
|
704
|
+
}
|
705
|
+
]
|
706
|
+
},
|
707
|
+
"contracts/type/Timestamp.sol": {
|
708
|
+
"TimestampLib": [
|
709
|
+
{
|
710
|
+
"length": 20,
|
711
|
+
"start": 2075
|
712
|
+
},
|
713
|
+
{
|
714
|
+
"length": 20,
|
715
|
+
"start": 7673
|
716
|
+
}
|
717
|
+
]
|
718
|
+
},
|
719
|
+
"contracts/type/Version.sol": {
|
720
|
+
"VersionLib": [
|
721
|
+
{
|
722
|
+
"length": 20,
|
723
|
+
"start": 1431
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"length": 20,
|
727
|
+
"start": 1676
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"length": 20,
|
731
|
+
"start": 1794
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"length": 20,
|
735
|
+
"start": 7029
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"length": 20,
|
739
|
+
"start": 7274
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"length": 20,
|
743
|
+
"start": 7392
|
744
|
+
},
|
745
|
+
{
|
746
|
+
"length": 20,
|
747
|
+
"start": 14888
|
748
|
+
},
|
749
|
+
{
|
750
|
+
"length": 20,
|
751
|
+
"start": 17475
|
752
|
+
}
|
753
|
+
],
|
754
|
+
"VersionPartLib": [
|
755
|
+
{
|
756
|
+
"length": 20,
|
757
|
+
"start": 20257
|
758
|
+
},
|
759
|
+
{
|
760
|
+
"length": 20,
|
761
|
+
"start": 27560
|
762
|
+
}
|
763
|
+
]
|
764
|
+
}
|
765
|
+
},
|
766
|
+
"deployedLinkReferences": {
|
767
|
+
"contracts/type/NftId.sol": {
|
768
|
+
"NftIdLib": [
|
769
|
+
{
|
770
|
+
"length": 20,
|
771
|
+
"start": 2405
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"length": 20,
|
775
|
+
"start": 4833
|
776
|
+
}
|
777
|
+
]
|
778
|
+
},
|
779
|
+
"contracts/type/Timestamp.sol": {
|
780
|
+
"TimestampLib": [
|
781
|
+
{
|
782
|
+
"length": 20,
|
783
|
+
"start": 4513
|
784
|
+
}
|
785
|
+
]
|
786
|
+
},
|
787
|
+
"contracts/type/Version.sol": {
|
788
|
+
"VersionLib": [
|
789
|
+
{
|
790
|
+
"length": 20,
|
791
|
+
"start": 3869
|
792
|
+
},
|
793
|
+
{
|
794
|
+
"length": 20,
|
795
|
+
"start": 4114
|
796
|
+
},
|
797
|
+
{
|
798
|
+
"length": 20,
|
799
|
+
"start": 4232
|
800
|
+
}
|
801
|
+
]
|
802
|
+
}
|
803
|
+
}
|
804
|
+
}
|