@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f36fd21-685
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -86
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1548 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +233 -318
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1557 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +854 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +282 -208
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +233 -301
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +272 -1967
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +269 -79
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +397 -2762
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +783 -332
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +352 -225
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +115 -82
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3581 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +10 -118
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1185 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +802 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1093 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1520 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1300 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +786 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +314 -139
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +299 -251
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/Pool.sol/Pool.json +270 -314
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1318 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +174 -202
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +733 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +146 -153
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +985 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +80 -64
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1196 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/{components → product}/Product.sol/Product.json +357 -238
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +182 -28
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +443 -43
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -97
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +105 -54
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/Component.sol/Component.json +144 -80
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1696 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +100 -113
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +180 -54
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +205 -198
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +87 -9
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +96 -19
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1015 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +15 -22
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +98 -26
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +23 -22
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +103 -21
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +60 -6
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +470 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +33 -7
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
- package/contracts/authorization/AccessAdmin.sol +591 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +218 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +136 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +90 -0
- package/contracts/distribution/BasicDistribution.sol +138 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/{components → distribution}/Distribution.sol +177 -162
- package/contracts/distribution/DistributionService.sol +337 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/{instance/service → distribution}/IDistributionService.sol +37 -38
- package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
- package/contracts/instance/IInstance.sol +55 -67
- package/contracts/instance/IInstanceService.sol +50 -30
- package/contracts/instance/Instance.sol +160 -233
- package/contracts/instance/InstanceAdmin.sol +266 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
- package/contracts/instance/InstanceReader.sol +173 -58
- package/contracts/instance/InstanceService.sol +281 -333
- package/contracts/instance/InstanceServiceManager.sol +12 -26
- package/contracts/instance/InstanceStore.sol +277 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +106 -0
- package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
- package/contracts/instance/module/IAccess.sol +5 -13
- package/contracts/instance/module/IBundle.sol +8 -9
- package/contracts/instance/module/IComponents.sol +21 -5
- package/contracts/instance/module/IDistribution.sol +6 -6
- package/contracts/instance/module/IPolicy.sol +28 -16
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +166 -0
- package/contracts/oracle/OracleService.sol +278 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +164 -0
- package/contracts/pool/BasicPoolAuthorization.sol +55 -0
- package/contracts/pool/BundleService.sol +341 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +120 -0
- package/contracts/pool/IPoolComponent.sol +58 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +328 -0
- package/contracts/pool/PoolService.sol +434 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +230 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +11 -8
- package/contracts/product/BasicProduct.sol +52 -0
- package/contracts/product/BasicProductAuthorization.sol +43 -0
- package/contracts/product/ClaimService.sol +417 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +11 -8
- package/contracts/{instance/service → product}/IApplicationService.sol +15 -35
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/{instance/service → product}/IPolicyService.sol +38 -30
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +40 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +499 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/{components → product}/Product.sol +218 -110
- package/contracts/product/ProductService.sol +99 -0
- package/contracts/product/ProductServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +8 -1
- package/contracts/registry/IRegistry.sol +59 -26
- package/contracts/registry/IRegistryService.sol +44 -42
- package/contracts/registry/Registry.sol +234 -125
- package/contracts/registry/RegistryAdmin.sol +365 -0
- package/contracts/registry/RegistryService.sol +70 -101
- package/contracts/registry/RegistryServiceManager.sol +23 -32
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseRegistry.sol +485 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +261 -62
- package/contracts/shared/Component.sol +280 -0
- package/contracts/shared/ComponentService.sol +651 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/{components → shared}/IComponent.sol +23 -27
- package/contracts/shared/IComponentService.sol +108 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +56 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
- package/contracts/shared/INftOwnable.sol +2 -2
- package/contracts/shared/IPolicyHolder.sol +29 -10
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +15 -8
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +2 -2
- package/contracts/shared/InstanceLinkedComponent.sol +172 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +5 -18
- package/contracts/shared/PolicyHolder.sol +41 -23
- package/contracts/shared/Registerable.sol +13 -12
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/Service.sol +47 -23
- package/contracts/shared/TokenHandler.sol +27 -2
- package/contracts/staking/IStaking.sol +167 -0
- package/contracts/staking/IStakingService.sol +160 -0
- package/contracts/staking/StakeManagerLib.sol +231 -0
- package/contracts/staking/Staking.sol +516 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +50 -0
- package/contracts/staking/StakingReader.sol +183 -0
- package/contracts/staking/StakingService.sol +411 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +135 -0
- package/contracts/{types → type}/Blocknumber.sol +20 -3
- package/contracts/{types → type}/ClaimId.sol +25 -2
- package/contracts/{types → type}/Fee.sol +33 -24
- package/contracts/{types → type}/NftId.sol +14 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +271 -0
- package/contracts/{types → type}/PayoutId.sol +33 -5
- package/contracts/{types → type}/Referral.sol +2 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +1 -1
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/{types → type}/Seconds.sol +27 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +33 -4
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +10 -1
- package/contracts/{types → type}/UFixed.sol +34 -9
- package/contracts/{types → type}/Version.sol +4 -2
- package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +36 -7
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/{shared → upgradeability}/Versionable.sol +1 -1
- package/package.json +8 -5
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1311
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -968
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1093
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1732
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -409
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -428
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1021
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -824
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -657
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -521
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
- package/contracts/components/Component.sol +0 -251
- package/contracts/components/IDistributionComponent.sol +0 -71
- package/contracts/components/IPoolComponent.sol +0 -113
- package/contracts/components/IProductComponent.sol +0 -40
- package/contracts/components/Pool.sol +0 -299
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -522
- package/contracts/instance/base/ComponentService.sol +0 -134
- package/contracts/instance/base/KeyValueStore.sol +0 -175
- package/contracts/instance/base/Lifecycle.sol +0 -109
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -350
- package/contracts/instance/service/BundleService.sol +0 -336
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -151
- package/contracts/instance/service/DistributionService.sol +0 -467
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IBundleService.sol +0 -62
- package/contracts/instance/service/IClaimService.sol +0 -61
- package/contracts/instance/service/IPoolService.sol +0 -35
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -403
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -220
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -241
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -322
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -25
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -157
- package/contracts/types/RoleId.sol +0 -97
- /package/contracts/{types → type}/DistributorType.sol +0 -0
- /package/contracts/{types → type}/Key32.sol +0 -0
| @@ -0,0 +1,1696 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "ComponentService",
         | 
| 4 | 
            +
              "sourceName": "contracts/shared/ComponentService.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    }
         | 
| 13 | 
            +
                  ],
         | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 | 
            +
                  "type": "error"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                  "inputs": [
         | 
| 19 | 
            +
                    {
         | 
| 20 | 
            +
                      "internalType": "address",
         | 
| 21 | 
            +
                      "name": "caller",
         | 
| 22 | 
            +
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                  ],
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 42 | 
            +
                  "type": "error"
         | 
| 43 | 
            +
                },
         | 
| 44 | 
            +
                {
         | 
| 45 | 
            +
                  "inputs": [
         | 
| 46 | 
            +
                    {
         | 
| 47 | 
            +
                      "internalType": "address",
         | 
| 48 | 
            +
                      "name": "component",
         | 
| 49 | 
            +
                      "type": "address"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "ErrorComponentServiceAlreadyRegistered",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                {
         | 
| 56 | 
            +
                  "inputs": [
         | 
| 57 | 
            +
                    {
         | 
| 58 | 
            +
                      "internalType": "address",
         | 
| 59 | 
            +
                      "name": "component",
         | 
| 60 | 
            +
                      "type": "address"
         | 
| 61 | 
            +
                    }
         | 
| 62 | 
            +
                  ],
         | 
| 63 | 
            +
                  "name": "ErrorComponentServiceComponentLocked",
         | 
| 64 | 
            +
                  "type": "error"
         | 
| 65 | 
            +
                },
         | 
| 66 | 
            +
                {
         | 
| 67 | 
            +
                  "inputs": [
         | 
| 68 | 
            +
                    {
         | 
| 69 | 
            +
                      "internalType": "address",
         | 
| 70 | 
            +
                      "name": "component",
         | 
| 71 | 
            +
                      "type": "address"
         | 
| 72 | 
            +
                    },
         | 
| 73 | 
            +
                    {
         | 
| 74 | 
            +
                      "internalType": "ObjectType",
         | 
| 75 | 
            +
                      "name": "expectedType",
         | 
| 76 | 
            +
                      "type": "uint8"
         | 
| 77 | 
            +
                    },
         | 
| 78 | 
            +
                    {
         | 
| 79 | 
            +
                      "internalType": "ObjectType",
         | 
| 80 | 
            +
                      "name": "foundType",
         | 
| 81 | 
            +
                      "type": "uint8"
         | 
| 82 | 
            +
                    }
         | 
| 83 | 
            +
                  ],
         | 
| 84 | 
            +
                  "name": "ErrorComponentServiceComponentTypeInvalid",
         | 
| 85 | 
            +
                  "type": "error"
         | 
| 86 | 
            +
                },
         | 
| 87 | 
            +
                {
         | 
| 88 | 
            +
                  "inputs": [
         | 
| 89 | 
            +
                    {
         | 
| 90 | 
            +
                      "internalType": "NftId",
         | 
| 91 | 
            +
                      "name": "instanceNftId",
         | 
| 92 | 
            +
                      "type": "uint96"
         | 
| 93 | 
            +
                    },
         | 
| 94 | 
            +
                    {
         | 
| 95 | 
            +
                      "internalType": "RoleId",
         | 
| 96 | 
            +
                      "name": "requiredRole",
         | 
| 97 | 
            +
                      "type": "uint64"
         | 
| 98 | 
            +
                    },
         | 
| 99 | 
            +
                    {
         | 
| 100 | 
            +
                      "internalType": "address",
         | 
| 101 | 
            +
                      "name": "sender",
         | 
| 102 | 
            +
                      "type": "address"
         | 
| 103 | 
            +
                    }
         | 
| 104 | 
            +
                  ],
         | 
| 105 | 
            +
                  "name": "ErrorComponentServiceExpectedRoleMissing",
         | 
| 106 | 
            +
                  "type": "error"
         | 
| 107 | 
            +
                },
         | 
| 108 | 
            +
                {
         | 
| 109 | 
            +
                  "inputs": [
         | 
| 110 | 
            +
                    {
         | 
| 111 | 
            +
                      "internalType": "address",
         | 
| 112 | 
            +
                      "name": "component",
         | 
| 113 | 
            +
                      "type": "address"
         | 
| 114 | 
            +
                    },
         | 
| 115 | 
            +
                    {
         | 
| 116 | 
            +
                      "internalType": "ObjectType",
         | 
| 117 | 
            +
                      "name": "requiredType",
         | 
| 118 | 
            +
                      "type": "uint8"
         | 
| 119 | 
            +
                    },
         | 
| 120 | 
            +
                    {
         | 
| 121 | 
            +
                      "internalType": "ObjectType",
         | 
| 122 | 
            +
                      "name": "componentType",
         | 
| 123 | 
            +
                      "type": "uint8"
         | 
| 124 | 
            +
                    }
         | 
| 125 | 
            +
                  ],
         | 
| 126 | 
            +
                  "name": "ErrorComponentServiceInvalidType",
         | 
| 127 | 
            +
                  "type": "error"
         | 
| 128 | 
            +
                },
         | 
| 129 | 
            +
                {
         | 
| 130 | 
            +
                  "inputs": [],
         | 
| 131 | 
            +
                  "name": "ErrorComponentServiceNewWalletAddressZero",
         | 
| 132 | 
            +
                  "type": "error"
         | 
| 133 | 
            +
                },
         | 
| 134 | 
            +
                {
         | 
| 135 | 
            +
                  "inputs": [
         | 
| 136 | 
            +
                    {
         | 
| 137 | 
            +
                      "internalType": "address",
         | 
| 138 | 
            +
                      "name": "component",
         | 
| 139 | 
            +
                      "type": "address"
         | 
| 140 | 
            +
                    }
         | 
| 141 | 
            +
                  ],
         | 
| 142 | 
            +
                  "name": "ErrorComponentServiceNotComponent",
         | 
| 143 | 
            +
                  "type": "error"
         | 
| 144 | 
            +
                },
         | 
| 145 | 
            +
                {
         | 
| 146 | 
            +
                  "inputs": [
         | 
| 147 | 
            +
                    {
         | 
| 148 | 
            +
                      "internalType": "address",
         | 
| 149 | 
            +
                      "name": "component",
         | 
| 150 | 
            +
                      "type": "address"
         | 
| 151 | 
            +
                    },
         | 
| 152 | 
            +
                    {
         | 
| 153 | 
            +
                      "internalType": "address",
         | 
| 154 | 
            +
                      "name": "initialOwner",
         | 
| 155 | 
            +
                      "type": "address"
         | 
| 156 | 
            +
                    },
         | 
| 157 | 
            +
                    {
         | 
| 158 | 
            +
                      "internalType": "address",
         | 
| 159 | 
            +
                      "name": "sender",
         | 
| 160 | 
            +
                      "type": "address"
         | 
| 161 | 
            +
                    }
         | 
| 162 | 
            +
                  ],
         | 
| 163 | 
            +
                  "name": "ErrorComponentServiceSenderNotOwner",
         | 
| 164 | 
            +
                  "type": "error"
         | 
| 165 | 
            +
                },
         | 
| 166 | 
            +
                {
         | 
| 167 | 
            +
                  "inputs": [
         | 
| 168 | 
            +
                    {
         | 
| 169 | 
            +
                      "internalType": "address",
         | 
| 170 | 
            +
                      "name": "sender",
         | 
| 171 | 
            +
                      "type": "address"
         | 
| 172 | 
            +
                    }
         | 
| 173 | 
            +
                  ],
         | 
| 174 | 
            +
                  "name": "ErrorComponentServiceSenderNotService",
         | 
| 175 | 
            +
                  "type": "error"
         | 
| 176 | 
            +
                },
         | 
| 177 | 
            +
                {
         | 
| 178 | 
            +
                  "inputs": [],
         | 
| 179 | 
            +
                  "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
         | 
| 180 | 
            +
                  "type": "error"
         | 
| 181 | 
            +
                },
         | 
| 182 | 
            +
                {
         | 
| 183 | 
            +
                  "inputs": [],
         | 
| 184 | 
            +
                  "name": "ErrorComponentServiceWalletAddressZero",
         | 
| 185 | 
            +
                  "type": "error"
         | 
| 186 | 
            +
                },
         | 
| 187 | 
            +
                {
         | 
| 188 | 
            +
                  "inputs": [
         | 
| 189 | 
            +
                    {
         | 
| 190 | 
            +
                      "internalType": "address",
         | 
| 191 | 
            +
                      "name": "wallet",
         | 
| 192 | 
            +
                      "type": "address"
         | 
| 193 | 
            +
                    },
         | 
| 194 | 
            +
                    {
         | 
| 195 | 
            +
                      "internalType": "address",
         | 
| 196 | 
            +
                      "name": "spender",
         | 
| 197 | 
            +
                      "type": "address"
         | 
| 198 | 
            +
                    },
         | 
| 199 | 
            +
                    {
         | 
| 200 | 
            +
                      "internalType": "uint256",
         | 
| 201 | 
            +
                      "name": "allowance",
         | 
| 202 | 
            +
                      "type": "uint256"
         | 
| 203 | 
            +
                    },
         | 
| 204 | 
            +
                    {
         | 
| 205 | 
            +
                      "internalType": "uint256",
         | 
| 206 | 
            +
                      "name": "amount",
         | 
| 207 | 
            +
                      "type": "uint256"
         | 
| 208 | 
            +
                    }
         | 
| 209 | 
            +
                  ],
         | 
| 210 | 
            +
                  "name": "ErrorComponentServiceWalletAllowanceTooSmall",
         | 
| 211 | 
            +
                  "type": "error"
         | 
| 212 | 
            +
                },
         | 
| 213 | 
            +
                {
         | 
| 214 | 
            +
                  "inputs": [
         | 
| 215 | 
            +
                    {
         | 
| 216 | 
            +
                      "internalType": "Amount",
         | 
| 217 | 
            +
                      "name": "withdrawnAmount",
         | 
| 218 | 
            +
                      "type": "uint96"
         | 
| 219 | 
            +
                    },
         | 
| 220 | 
            +
                    {
         | 
| 221 | 
            +
                      "internalType": "Amount",
         | 
| 222 | 
            +
                      "name": "withdrawLimit",
         | 
| 223 | 
            +
                      "type": "uint96"
         | 
| 224 | 
            +
                    }
         | 
| 225 | 
            +
                  ],
         | 
| 226 | 
            +
                  "name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
         | 
| 227 | 
            +
                  "type": "error"
         | 
| 228 | 
            +
                },
         | 
| 229 | 
            +
                {
         | 
| 230 | 
            +
                  "inputs": [],
         | 
| 231 | 
            +
                  "name": "ErrorComponentServiceWithdrawAmountIsZero",
         | 
| 232 | 
            +
                  "type": "error"
         | 
| 233 | 
            +
                },
         | 
| 234 | 
            +
                {
         | 
| 235 | 
            +
                  "inputs": [
         | 
| 236 | 
            +
                    {
         | 
| 237 | 
            +
                      "internalType": "NftId",
         | 
| 238 | 
            +
                      "name": "componentNftId",
         | 
| 239 | 
            +
                      "type": "uint96"
         | 
| 240 | 
            +
                    }
         | 
| 241 | 
            +
                  ],
         | 
| 242 | 
            +
                  "name": "ErrorComponentVerifyingServiceComponentIsLocked",
         | 
| 243 | 
            +
                  "type": "error"
         | 
| 244 | 
            +
                },
         | 
| 245 | 
            +
                {
         | 
| 246 | 
            +
                  "inputs": [
         | 
| 247 | 
            +
                    {
         | 
| 248 | 
            +
                      "internalType": "NftId",
         | 
| 249 | 
            +
                      "name": "componentNftId",
         | 
| 250 | 
            +
                      "type": "uint96"
         | 
| 251 | 
            +
                    },
         | 
| 252 | 
            +
                    {
         | 
| 253 | 
            +
                      "internalType": "ObjectType",
         | 
| 254 | 
            +
                      "name": "expectedType",
         | 
| 255 | 
            +
                      "type": "uint8"
         | 
| 256 | 
            +
                    },
         | 
| 257 | 
            +
                    {
         | 
| 258 | 
            +
                      "internalType": "ObjectType",
         | 
| 259 | 
            +
                      "name": "actualType",
         | 
| 260 | 
            +
                      "type": "uint8"
         | 
| 261 | 
            +
                    }
         | 
| 262 | 
            +
                  ],
         | 
| 263 | 
            +
                  "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
         | 
| 264 | 
            +
                  "type": "error"
         | 
| 265 | 
            +
                },
         | 
| 266 | 
            +
                {
         | 
| 267 | 
            +
                  "inputs": [
         | 
| 268 | 
            +
                    {
         | 
| 269 | 
            +
                      "internalType": "NftId",
         | 
| 270 | 
            +
                      "name": "nftId",
         | 
| 271 | 
            +
                      "type": "uint96"
         | 
| 272 | 
            +
                    }
         | 
| 273 | 
            +
                  ],
         | 
| 274 | 
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         | 
| 275 | 
            +
                  "type": "error"
         | 
| 276 | 
            +
                },
         | 
| 277 | 
            +
                {
         | 
| 278 | 
            +
                  "inputs": [
         | 
| 279 | 
            +
                    {
         | 
| 280 | 
            +
                      "internalType": "address",
         | 
| 281 | 
            +
                      "name": "contractAddress",
         | 
| 282 | 
            +
                      "type": "address"
         | 
| 283 | 
            +
                    }
         | 
| 284 | 
            +
                  ],
         | 
| 285 | 
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         | 
| 286 | 
            +
                  "type": "error"
         | 
| 287 | 
            +
                },
         | 
| 288 | 
            +
                {
         | 
| 289 | 
            +
                  "inputs": [],
         | 
| 290 | 
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 291 | 
            +
                  "type": "error"
         | 
| 292 | 
            +
                },
         | 
| 293 | 
            +
                {
         | 
| 294 | 
            +
                  "inputs": [
         | 
| 295 | 
            +
                    {
         | 
| 296 | 
            +
                      "internalType": "address",
         | 
| 297 | 
            +
                      "name": "account",
         | 
| 298 | 
            +
                      "type": "address"
         | 
| 299 | 
            +
                    }
         | 
| 300 | 
            +
                  ],
         | 
| 301 | 
            +
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 302 | 
            +
                  "type": "error"
         | 
| 303 | 
            +
                },
         | 
| 304 | 
            +
                {
         | 
| 305 | 
            +
                  "inputs": [
         | 
| 306 | 
            +
                    {
         | 
| 307 | 
            +
                      "internalType": "address",
         | 
| 308 | 
            +
                      "name": "registryAddress",
         | 
| 309 | 
            +
                      "type": "address"
         | 
| 310 | 
            +
                    }
         | 
| 311 | 
            +
                  ],
         | 
| 312 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 313 | 
            +
                  "type": "error"
         | 
| 314 | 
            +
                },
         | 
| 315 | 
            +
                {
         | 
| 316 | 
            +
                  "inputs": [],
         | 
| 317 | 
            +
                  "name": "ErrorServiceNotImplemented",
         | 
| 318 | 
            +
                  "type": "error"
         | 
| 319 | 
            +
                },
         | 
| 320 | 
            +
                {
         | 
| 321 | 
            +
                  "inputs": [],
         | 
| 322 | 
            +
                  "name": "InvalidInitialization",
         | 
| 323 | 
            +
                  "type": "error"
         | 
| 324 | 
            +
                },
         | 
| 325 | 
            +
                {
         | 
| 326 | 
            +
                  "inputs": [],
         | 
| 327 | 
            +
                  "name": "NotInitializing",
         | 
| 328 | 
            +
                  "type": "error"
         | 
| 329 | 
            +
                },
         | 
| 330 | 
            +
                {
         | 
| 331 | 
            +
                  "anonymous": false,
         | 
| 332 | 
            +
                  "inputs": [
         | 
| 333 | 
            +
                    {
         | 
| 334 | 
            +
                      "indexed": false,
         | 
| 335 | 
            +
                      "internalType": "address",
         | 
| 336 | 
            +
                      "name": "authority",
         | 
| 337 | 
            +
                      "type": "address"
         | 
| 338 | 
            +
                    }
         | 
| 339 | 
            +
                  ],
         | 
| 340 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 341 | 
            +
                  "type": "event"
         | 
| 342 | 
            +
                },
         | 
| 343 | 
            +
                {
         | 
| 344 | 
            +
                  "anonymous": false,
         | 
| 345 | 
            +
                  "inputs": [
         | 
| 346 | 
            +
                    {
         | 
| 347 | 
            +
                      "indexed": false,
         | 
| 348 | 
            +
                      "internalType": "uint64",
         | 
| 349 | 
            +
                      "name": "version",
         | 
| 350 | 
            +
                      "type": "uint64"
         | 
| 351 | 
            +
                    }
         | 
| 352 | 
            +
                  ],
         | 
| 353 | 
            +
                  "name": "Initialized",
         | 
| 354 | 
            +
                  "type": "event"
         | 
| 355 | 
            +
                },
         | 
| 356 | 
            +
                {
         | 
| 357 | 
            +
                  "anonymous": false,
         | 
| 358 | 
            +
                  "inputs": [
         | 
| 359 | 
            +
                    {
         | 
| 360 | 
            +
                      "indexed": false,
         | 
| 361 | 
            +
                      "internalType": "NftId",
         | 
| 362 | 
            +
                      "name": "componentNftId",
         | 
| 363 | 
            +
                      "type": "uint96"
         | 
| 364 | 
            +
                    },
         | 
| 365 | 
            +
                    {
         | 
| 366 | 
            +
                      "indexed": false,
         | 
| 367 | 
            +
                      "internalType": "address",
         | 
| 368 | 
            +
                      "name": "recipient",
         | 
| 369 | 
            +
                      "type": "address"
         | 
| 370 | 
            +
                    },
         | 
| 371 | 
            +
                    {
         | 
| 372 | 
            +
                      "indexed": false,
         | 
| 373 | 
            +
                      "internalType": "address",
         | 
| 374 | 
            +
                      "name": "token",
         | 
| 375 | 
            +
                      "type": "address"
         | 
| 376 | 
            +
                    },
         | 
| 377 | 
            +
                    {
         | 
| 378 | 
            +
                      "indexed": false,
         | 
| 379 | 
            +
                      "internalType": "Amount",
         | 
| 380 | 
            +
                      "name": "withdrawnAmount",
         | 
| 381 | 
            +
                      "type": "uint96"
         | 
| 382 | 
            +
                    }
         | 
| 383 | 
            +
                  ],
         | 
| 384 | 
            +
                  "name": "LogComponentServiceComponentFeesWithdrawn",
         | 
| 385 | 
            +
                  "type": "event"
         | 
| 386 | 
            +
                },
         | 
| 387 | 
            +
                {
         | 
| 388 | 
            +
                  "anonymous": false,
         | 
| 389 | 
            +
                  "inputs": [
         | 
| 390 | 
            +
                    {
         | 
| 391 | 
            +
                      "indexed": false,
         | 
| 392 | 
            +
                      "internalType": "NftId",
         | 
| 393 | 
            +
                      "name": "distributionNftId",
         | 
| 394 | 
            +
                      "type": "uint96"
         | 
| 395 | 
            +
                    }
         | 
| 396 | 
            +
                  ],
         | 
| 397 | 
            +
                  "name": "LogComponentServiceDistributionFeesUpdated",
         | 
| 398 | 
            +
                  "type": "event"
         | 
| 399 | 
            +
                },
         | 
| 400 | 
            +
                {
         | 
| 401 | 
            +
                  "anonymous": false,
         | 
| 402 | 
            +
                  "inputs": [
         | 
| 403 | 
            +
                    {
         | 
| 404 | 
            +
                      "indexed": false,
         | 
| 405 | 
            +
                      "internalType": "NftId",
         | 
| 406 | 
            +
                      "name": "poolNftId",
         | 
| 407 | 
            +
                      "type": "uint96"
         | 
| 408 | 
            +
                    }
         | 
| 409 | 
            +
                  ],
         | 
| 410 | 
            +
                  "name": "LogComponentServicePoolFeesUpdated",
         | 
| 411 | 
            +
                  "type": "event"
         | 
| 412 | 
            +
                },
         | 
| 413 | 
            +
                {
         | 
| 414 | 
            +
                  "anonymous": false,
         | 
| 415 | 
            +
                  "inputs": [
         | 
| 416 | 
            +
                    {
         | 
| 417 | 
            +
                      "indexed": false,
         | 
| 418 | 
            +
                      "internalType": "NftId",
         | 
| 419 | 
            +
                      "name": "productNftId",
         | 
| 420 | 
            +
                      "type": "uint96"
         | 
| 421 | 
            +
                    }
         | 
| 422 | 
            +
                  ],
         | 
| 423 | 
            +
                  "name": "LogComponentServiceProductFeesUpdated",
         | 
| 424 | 
            +
                  "type": "event"
         | 
| 425 | 
            +
                },
         | 
| 426 | 
            +
                {
         | 
| 427 | 
            +
                  "anonymous": false,
         | 
| 428 | 
            +
                  "inputs": [
         | 
| 429 | 
            +
                    {
         | 
| 430 | 
            +
                      "indexed": false,
         | 
| 431 | 
            +
                      "internalType": "NftId",
         | 
| 432 | 
            +
                      "name": "nftId",
         | 
| 433 | 
            +
                      "type": "uint96"
         | 
| 434 | 
            +
                    },
         | 
| 435 | 
            +
                    {
         | 
| 436 | 
            +
                      "indexed": false,
         | 
| 437 | 
            +
                      "internalType": "string",
         | 
| 438 | 
            +
                      "name": "feeName",
         | 
| 439 | 
            +
                      "type": "string"
         | 
| 440 | 
            +
                    },
         | 
| 441 | 
            +
                    {
         | 
| 442 | 
            +
                      "indexed": false,
         | 
| 443 | 
            +
                      "internalType": "UFixed",
         | 
| 444 | 
            +
                      "name": "previousFractionalFee",
         | 
| 445 | 
            +
                      "type": "uint256"
         | 
| 446 | 
            +
                    },
         | 
| 447 | 
            +
                    {
         | 
| 448 | 
            +
                      "indexed": false,
         | 
| 449 | 
            +
                      "internalType": "uint256",
         | 
| 450 | 
            +
                      "name": "previousFixedFee",
         | 
| 451 | 
            +
                      "type": "uint256"
         | 
| 452 | 
            +
                    },
         | 
| 453 | 
            +
                    {
         | 
| 454 | 
            +
                      "indexed": false,
         | 
| 455 | 
            +
                      "internalType": "UFixed",
         | 
| 456 | 
            +
                      "name": "newFractionalFee",
         | 
| 457 | 
            +
                      "type": "uint256"
         | 
| 458 | 
            +
                    },
         | 
| 459 | 
            +
                    {
         | 
| 460 | 
            +
                      "indexed": false,
         | 
| 461 | 
            +
                      "internalType": "uint256",
         | 
| 462 | 
            +
                      "name": "newFixedFee",
         | 
| 463 | 
            +
                      "type": "uint256"
         | 
| 464 | 
            +
                    }
         | 
| 465 | 
            +
                  ],
         | 
| 466 | 
            +
                  "name": "LogComponentServiceUpdateFee",
         | 
| 467 | 
            +
                  "type": "event"
         | 
| 468 | 
            +
                },
         | 
| 469 | 
            +
                {
         | 
| 470 | 
            +
                  "anonymous": false,
         | 
| 471 | 
            +
                  "inputs": [
         | 
| 472 | 
            +
                    {
         | 
| 473 | 
            +
                      "indexed": false,
         | 
| 474 | 
            +
                      "internalType": "NftId",
         | 
| 475 | 
            +
                      "name": "componentNftId",
         | 
| 476 | 
            +
                      "type": "uint96"
         | 
| 477 | 
            +
                    },
         | 
| 478 | 
            +
                    {
         | 
| 479 | 
            +
                      "indexed": false,
         | 
| 480 | 
            +
                      "internalType": "address",
         | 
| 481 | 
            +
                      "name": "currentWallet",
         | 
| 482 | 
            +
                      "type": "address"
         | 
| 483 | 
            +
                    },
         | 
| 484 | 
            +
                    {
         | 
| 485 | 
            +
                      "indexed": false,
         | 
| 486 | 
            +
                      "internalType": "address",
         | 
| 487 | 
            +
                      "name": "newWallet",
         | 
| 488 | 
            +
                      "type": "address"
         | 
| 489 | 
            +
                    }
         | 
| 490 | 
            +
                  ],
         | 
| 491 | 
            +
                  "name": "LogComponentServiceWalletAddressChanged",
         | 
| 492 | 
            +
                  "type": "event"
         | 
| 493 | 
            +
                },
         | 
| 494 | 
            +
                {
         | 
| 495 | 
            +
                  "inputs": [],
         | 
| 496 | 
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         | 
| 497 | 
            +
                  "outputs": [
         | 
| 498 | 
            +
                    {
         | 
| 499 | 
            +
                      "internalType": "bytes32",
         | 
| 500 | 
            +
                      "name": "",
         | 
| 501 | 
            +
                      "type": "bytes32"
         | 
| 502 | 
            +
                    }
         | 
| 503 | 
            +
                  ],
         | 
| 504 | 
            +
                  "stateMutability": "view",
         | 
| 505 | 
            +
                  "type": "function"
         | 
| 506 | 
            +
                },
         | 
| 507 | 
            +
                {
         | 
| 508 | 
            +
                  "inputs": [],
         | 
| 509 | 
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         | 
| 510 | 
            +
                  "outputs": [
         | 
| 511 | 
            +
                    {
         | 
| 512 | 
            +
                      "internalType": "bytes32",
         | 
| 513 | 
            +
                      "name": "",
         | 
| 514 | 
            +
                      "type": "bytes32"
         | 
| 515 | 
            +
                    }
         | 
| 516 | 
            +
                  ],
         | 
| 517 | 
            +
                  "stateMutability": "view",
         | 
| 518 | 
            +
                  "type": "function"
         | 
| 519 | 
            +
                },
         | 
| 520 | 
            +
                {
         | 
| 521 | 
            +
                  "inputs": [],
         | 
| 522 | 
            +
                  "name": "authority",
         | 
| 523 | 
            +
                  "outputs": [
         | 
| 524 | 
            +
                    {
         | 
| 525 | 
            +
                      "internalType": "address",
         | 
| 526 | 
            +
                      "name": "",
         | 
| 527 | 
            +
                      "type": "address"
         | 
| 528 | 
            +
                    }
         | 
| 529 | 
            +
                  ],
         | 
| 530 | 
            +
                  "stateMutability": "view",
         | 
| 531 | 
            +
                  "type": "function"
         | 
| 532 | 
            +
                },
         | 
| 533 | 
            +
                {
         | 
| 534 | 
            +
                  "inputs": [
         | 
| 535 | 
            +
                    {
         | 
| 536 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 537 | 
            +
                      "name": "instanceStore",
         | 
| 538 | 
            +
                      "type": "address"
         | 
| 539 | 
            +
                    },
         | 
| 540 | 
            +
                    {
         | 
| 541 | 
            +
                      "internalType": "NftId",
         | 
| 542 | 
            +
                      "name": "bundleNftId",
         | 
| 543 | 
            +
                      "type": "uint96"
         | 
| 544 | 
            +
                    },
         | 
| 545 | 
            +
                    {
         | 
| 546 | 
            +
                      "internalType": "Amount",
         | 
| 547 | 
            +
                      "name": "amount",
         | 
| 548 | 
            +
                      "type": "uint96"
         | 
| 549 | 
            +
                    },
         | 
| 550 | 
            +
                    {
         | 
| 551 | 
            +
                      "internalType": "Amount",
         | 
| 552 | 
            +
                      "name": "feeAmount",
         | 
| 553 | 
            +
                      "type": "uint96"
         | 
| 554 | 
            +
                    }
         | 
| 555 | 
            +
                  ],
         | 
| 556 | 
            +
                  "name": "decreaseBundleBalance",
         | 
| 557 | 
            +
                  "outputs": [],
         | 
| 558 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 559 | 
            +
                  "type": "function"
         | 
| 560 | 
            +
                },
         | 
| 561 | 
            +
                {
         | 
| 562 | 
            +
                  "inputs": [
         | 
| 563 | 
            +
                    {
         | 
| 564 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 565 | 
            +
                      "name": "instanceStore",
         | 
| 566 | 
            +
                      "type": "address"
         | 
| 567 | 
            +
                    },
         | 
| 568 | 
            +
                    {
         | 
| 569 | 
            +
                      "internalType": "NftId",
         | 
| 570 | 
            +
                      "name": "distributionNftId",
         | 
| 571 | 
            +
                      "type": "uint96"
         | 
| 572 | 
            +
                    },
         | 
| 573 | 
            +
                    {
         | 
| 574 | 
            +
                      "internalType": "Amount",
         | 
| 575 | 
            +
                      "name": "amount",
         | 
| 576 | 
            +
                      "type": "uint96"
         | 
| 577 | 
            +
                    },
         | 
| 578 | 
            +
                    {
         | 
| 579 | 
            +
                      "internalType": "Amount",
         | 
| 580 | 
            +
                      "name": "feeAmount",
         | 
| 581 | 
            +
                      "type": "uint96"
         | 
| 582 | 
            +
                    }
         | 
| 583 | 
            +
                  ],
         | 
| 584 | 
            +
                  "name": "decreaseDistributionBalance",
         | 
| 585 | 
            +
                  "outputs": [],
         | 
| 586 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 587 | 
            +
                  "type": "function"
         | 
| 588 | 
            +
                },
         | 
| 589 | 
            +
                {
         | 
| 590 | 
            +
                  "inputs": [
         | 
| 591 | 
            +
                    {
         | 
| 592 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 593 | 
            +
                      "name": "instanceStore",
         | 
| 594 | 
            +
                      "type": "address"
         | 
| 595 | 
            +
                    },
         | 
| 596 | 
            +
                    {
         | 
| 597 | 
            +
                      "internalType": "NftId",
         | 
| 598 | 
            +
                      "name": "distributorNftId",
         | 
| 599 | 
            +
                      "type": "uint96"
         | 
| 600 | 
            +
                    },
         | 
| 601 | 
            +
                    {
         | 
| 602 | 
            +
                      "internalType": "Amount",
         | 
| 603 | 
            +
                      "name": "amount",
         | 
| 604 | 
            +
                      "type": "uint96"
         | 
| 605 | 
            +
                    },
         | 
| 606 | 
            +
                    {
         | 
| 607 | 
            +
                      "internalType": "Amount",
         | 
| 608 | 
            +
                      "name": "feeAmount",
         | 
| 609 | 
            +
                      "type": "uint96"
         | 
| 610 | 
            +
                    }
         | 
| 611 | 
            +
                  ],
         | 
| 612 | 
            +
                  "name": "decreaseDistributorBalance",
         | 
| 613 | 
            +
                  "outputs": [],
         | 
| 614 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 615 | 
            +
                  "type": "function"
         | 
| 616 | 
            +
                },
         | 
| 617 | 
            +
                {
         | 
| 618 | 
            +
                  "inputs": [
         | 
| 619 | 
            +
                    {
         | 
| 620 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 621 | 
            +
                      "name": "instanceStore",
         | 
| 622 | 
            +
                      "type": "address"
         | 
| 623 | 
            +
                    },
         | 
| 624 | 
            +
                    {
         | 
| 625 | 
            +
                      "internalType": "NftId",
         | 
| 626 | 
            +
                      "name": "poolNftId",
         | 
| 627 | 
            +
                      "type": "uint96"
         | 
| 628 | 
            +
                    },
         | 
| 629 | 
            +
                    {
         | 
| 630 | 
            +
                      "internalType": "Amount",
         | 
| 631 | 
            +
                      "name": "amount",
         | 
| 632 | 
            +
                      "type": "uint96"
         | 
| 633 | 
            +
                    },
         | 
| 634 | 
            +
                    {
         | 
| 635 | 
            +
                      "internalType": "Amount",
         | 
| 636 | 
            +
                      "name": "feeAmount",
         | 
| 637 | 
            +
                      "type": "uint96"
         | 
| 638 | 
            +
                    }
         | 
| 639 | 
            +
                  ],
         | 
| 640 | 
            +
                  "name": "decreasePoolBalance",
         | 
| 641 | 
            +
                  "outputs": [],
         | 
| 642 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 643 | 
            +
                  "type": "function"
         | 
| 644 | 
            +
                },
         | 
| 645 | 
            +
                {
         | 
| 646 | 
            +
                  "inputs": [
         | 
| 647 | 
            +
                    {
         | 
| 648 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 649 | 
            +
                      "name": "instanceStore",
         | 
| 650 | 
            +
                      "type": "address"
         | 
| 651 | 
            +
                    },
         | 
| 652 | 
            +
                    {
         | 
| 653 | 
            +
                      "internalType": "NftId",
         | 
| 654 | 
            +
                      "name": "productNftId",
         | 
| 655 | 
            +
                      "type": "uint96"
         | 
| 656 | 
            +
                    },
         | 
| 657 | 
            +
                    {
         | 
| 658 | 
            +
                      "internalType": "Amount",
         | 
| 659 | 
            +
                      "name": "feeAmount",
         | 
| 660 | 
            +
                      "type": "uint96"
         | 
| 661 | 
            +
                    }
         | 
| 662 | 
            +
                  ],
         | 
| 663 | 
            +
                  "name": "decreaseProductFees",
         | 
| 664 | 
            +
                  "outputs": [],
         | 
| 665 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 666 | 
            +
                  "type": "function"
         | 
| 667 | 
            +
                },
         | 
| 668 | 
            +
                {
         | 
| 669 | 
            +
                  "inputs": [],
         | 
| 670 | 
            +
                  "name": "getDomain",
         | 
| 671 | 
            +
                  "outputs": [
         | 
| 672 | 
            +
                    {
         | 
| 673 | 
            +
                      "internalType": "ObjectType",
         | 
| 674 | 
            +
                      "name": "serviceDomain",
         | 
| 675 | 
            +
                      "type": "uint8"
         | 
| 676 | 
            +
                    }
         | 
| 677 | 
            +
                  ],
         | 
| 678 | 
            +
                  "stateMutability": "pure",
         | 
| 679 | 
            +
                  "type": "function"
         | 
| 680 | 
            +
                },
         | 
| 681 | 
            +
                {
         | 
| 682 | 
            +
                  "inputs": [],
         | 
| 683 | 
            +
                  "name": "getInitialInfo",
         | 
| 684 | 
            +
                  "outputs": [
         | 
| 685 | 
            +
                    {
         | 
| 686 | 
            +
                      "components": [
         | 
| 687 | 
            +
                        {
         | 
| 688 | 
            +
                          "internalType": "NftId",
         | 
| 689 | 
            +
                          "name": "nftId",
         | 
| 690 | 
            +
                          "type": "uint96"
         | 
| 691 | 
            +
                        },
         | 
| 692 | 
            +
                        {
         | 
| 693 | 
            +
                          "internalType": "NftId",
         | 
| 694 | 
            +
                          "name": "parentNftId",
         | 
| 695 | 
            +
                          "type": "uint96"
         | 
| 696 | 
            +
                        },
         | 
| 697 | 
            +
                        {
         | 
| 698 | 
            +
                          "internalType": "ObjectType",
         | 
| 699 | 
            +
                          "name": "objectType",
         | 
| 700 | 
            +
                          "type": "uint8"
         | 
| 701 | 
            +
                        },
         | 
| 702 | 
            +
                        {
         | 
| 703 | 
            +
                          "internalType": "bool",
         | 
| 704 | 
            +
                          "name": "isInterceptor",
         | 
| 705 | 
            +
                          "type": "bool"
         | 
| 706 | 
            +
                        },
         | 
| 707 | 
            +
                        {
         | 
| 708 | 
            +
                          "internalType": "address",
         | 
| 709 | 
            +
                          "name": "objectAddress",
         | 
| 710 | 
            +
                          "type": "address"
         | 
| 711 | 
            +
                        },
         | 
| 712 | 
            +
                        {
         | 
| 713 | 
            +
                          "internalType": "address",
         | 
| 714 | 
            +
                          "name": "initialOwner",
         | 
| 715 | 
            +
                          "type": "address"
         | 
| 716 | 
            +
                        },
         | 
| 717 | 
            +
                        {
         | 
| 718 | 
            +
                          "internalType": "bytes",
         | 
| 719 | 
            +
                          "name": "data",
         | 
| 720 | 
            +
                          "type": "bytes"
         | 
| 721 | 
            +
                        }
         | 
| 722 | 
            +
                      ],
         | 
| 723 | 
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 724 | 
            +
                      "name": "info",
         | 
| 725 | 
            +
                      "type": "tuple"
         | 
| 726 | 
            +
                    }
         | 
| 727 | 
            +
                  ],
         | 
| 728 | 
            +
                  "stateMutability": "view",
         | 
| 729 | 
            +
                  "type": "function"
         | 
| 730 | 
            +
                },
         | 
| 731 | 
            +
                {
         | 
| 732 | 
            +
                  "inputs": [],
         | 
| 733 | 
            +
                  "name": "getNftId",
         | 
| 734 | 
            +
                  "outputs": [
         | 
| 735 | 
            +
                    {
         | 
| 736 | 
            +
                      "internalType": "NftId",
         | 
| 737 | 
            +
                      "name": "",
         | 
| 738 | 
            +
                      "type": "uint96"
         | 
| 739 | 
            +
                    }
         | 
| 740 | 
            +
                  ],
         | 
| 741 | 
            +
                  "stateMutability": "view",
         | 
| 742 | 
            +
                  "type": "function"
         | 
| 743 | 
            +
                },
         | 
| 744 | 
            +
                {
         | 
| 745 | 
            +
                  "inputs": [],
         | 
| 746 | 
            +
                  "name": "getOwner",
         | 
| 747 | 
            +
                  "outputs": [
         | 
| 748 | 
            +
                    {
         | 
| 749 | 
            +
                      "internalType": "address",
         | 
| 750 | 
            +
                      "name": "",
         | 
| 751 | 
            +
                      "type": "address"
         | 
| 752 | 
            +
                    }
         | 
| 753 | 
            +
                  ],
         | 
| 754 | 
            +
                  "stateMutability": "view",
         | 
| 755 | 
            +
                  "type": "function"
         | 
| 756 | 
            +
                },
         | 
| 757 | 
            +
                {
         | 
| 758 | 
            +
                  "inputs": [],
         | 
| 759 | 
            +
                  "name": "getRegistry",
         | 
| 760 | 
            +
                  "outputs": [
         | 
| 761 | 
            +
                    {
         | 
| 762 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 763 | 
            +
                      "name": "",
         | 
| 764 | 
            +
                      "type": "address"
         | 
| 765 | 
            +
                    }
         | 
| 766 | 
            +
                  ],
         | 
| 767 | 
            +
                  "stateMutability": "view",
         | 
| 768 | 
            +
                  "type": "function"
         | 
| 769 | 
            +
                },
         | 
| 770 | 
            +
                {
         | 
| 771 | 
            +
                  "inputs": [],
         | 
| 772 | 
            +
                  "name": "getRoleId",
         | 
| 773 | 
            +
                  "outputs": [
         | 
| 774 | 
            +
                    {
         | 
| 775 | 
            +
                      "internalType": "RoleId",
         | 
| 776 | 
            +
                      "name": "serviceRoleId",
         | 
| 777 | 
            +
                      "type": "uint64"
         | 
| 778 | 
            +
                    }
         | 
| 779 | 
            +
                  ],
         | 
| 780 | 
            +
                  "stateMutability": "pure",
         | 
| 781 | 
            +
                  "type": "function"
         | 
| 782 | 
            +
                },
         | 
| 783 | 
            +
                {
         | 
| 784 | 
            +
                  "inputs": [],
         | 
| 785 | 
            +
                  "name": "getVersion",
         | 
| 786 | 
            +
                  "outputs": [
         | 
| 787 | 
            +
                    {
         | 
| 788 | 
            +
                      "internalType": "Version",
         | 
| 789 | 
            +
                      "name": "",
         | 
| 790 | 
            +
                      "type": "uint24"
         | 
| 791 | 
            +
                    }
         | 
| 792 | 
            +
                  ],
         | 
| 793 | 
            +
                  "stateMutability": "pure",
         | 
| 794 | 
            +
                  "type": "function"
         | 
| 795 | 
            +
                },
         | 
| 796 | 
            +
                {
         | 
| 797 | 
            +
                  "inputs": [
         | 
| 798 | 
            +
                    {
         | 
| 799 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 800 | 
            +
                      "name": "instanceStore",
         | 
| 801 | 
            +
                      "type": "address"
         | 
| 802 | 
            +
                    },
         | 
| 803 | 
            +
                    {
         | 
| 804 | 
            +
                      "internalType": "NftId",
         | 
| 805 | 
            +
                      "name": "bundleNftId",
         | 
| 806 | 
            +
                      "type": "uint96"
         | 
| 807 | 
            +
                    },
         | 
| 808 | 
            +
                    {
         | 
| 809 | 
            +
                      "internalType": "Amount",
         | 
| 810 | 
            +
                      "name": "amount",
         | 
| 811 | 
            +
                      "type": "uint96"
         | 
| 812 | 
            +
                    },
         | 
| 813 | 
            +
                    {
         | 
| 814 | 
            +
                      "internalType": "Amount",
         | 
| 815 | 
            +
                      "name": "feeAmount",
         | 
| 816 | 
            +
                      "type": "uint96"
         | 
| 817 | 
            +
                    }
         | 
| 818 | 
            +
                  ],
         | 
| 819 | 
            +
                  "name": "increaseBundleBalance",
         | 
| 820 | 
            +
                  "outputs": [],
         | 
| 821 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 822 | 
            +
                  "type": "function"
         | 
| 823 | 
            +
                },
         | 
| 824 | 
            +
                {
         | 
| 825 | 
            +
                  "inputs": [
         | 
| 826 | 
            +
                    {
         | 
| 827 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 828 | 
            +
                      "name": "instanceStore",
         | 
| 829 | 
            +
                      "type": "address"
         | 
| 830 | 
            +
                    },
         | 
| 831 | 
            +
                    {
         | 
| 832 | 
            +
                      "internalType": "NftId",
         | 
| 833 | 
            +
                      "name": "distributionNftId",
         | 
| 834 | 
            +
                      "type": "uint96"
         | 
| 835 | 
            +
                    },
         | 
| 836 | 
            +
                    {
         | 
| 837 | 
            +
                      "internalType": "Amount",
         | 
| 838 | 
            +
                      "name": "amount",
         | 
| 839 | 
            +
                      "type": "uint96"
         | 
| 840 | 
            +
                    },
         | 
| 841 | 
            +
                    {
         | 
| 842 | 
            +
                      "internalType": "Amount",
         | 
| 843 | 
            +
                      "name": "feeAmount",
         | 
| 844 | 
            +
                      "type": "uint96"
         | 
| 845 | 
            +
                    }
         | 
| 846 | 
            +
                  ],
         | 
| 847 | 
            +
                  "name": "increaseDistributionBalance",
         | 
| 848 | 
            +
                  "outputs": [],
         | 
| 849 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 850 | 
            +
                  "type": "function"
         | 
| 851 | 
            +
                },
         | 
| 852 | 
            +
                {
         | 
| 853 | 
            +
                  "inputs": [
         | 
| 854 | 
            +
                    {
         | 
| 855 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 856 | 
            +
                      "name": "instanceStore",
         | 
| 857 | 
            +
                      "type": "address"
         | 
| 858 | 
            +
                    },
         | 
| 859 | 
            +
                    {
         | 
| 860 | 
            +
                      "internalType": "NftId",
         | 
| 861 | 
            +
                      "name": "distributorNftId",
         | 
| 862 | 
            +
                      "type": "uint96"
         | 
| 863 | 
            +
                    },
         | 
| 864 | 
            +
                    {
         | 
| 865 | 
            +
                      "internalType": "Amount",
         | 
| 866 | 
            +
                      "name": "amount",
         | 
| 867 | 
            +
                      "type": "uint96"
         | 
| 868 | 
            +
                    },
         | 
| 869 | 
            +
                    {
         | 
| 870 | 
            +
                      "internalType": "Amount",
         | 
| 871 | 
            +
                      "name": "feeAmount",
         | 
| 872 | 
            +
                      "type": "uint96"
         | 
| 873 | 
            +
                    }
         | 
| 874 | 
            +
                  ],
         | 
| 875 | 
            +
                  "name": "increaseDistributorBalance",
         | 
| 876 | 
            +
                  "outputs": [],
         | 
| 877 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 878 | 
            +
                  "type": "function"
         | 
| 879 | 
            +
                },
         | 
| 880 | 
            +
                {
         | 
| 881 | 
            +
                  "inputs": [
         | 
| 882 | 
            +
                    {
         | 
| 883 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 884 | 
            +
                      "name": "instanceStore",
         | 
| 885 | 
            +
                      "type": "address"
         | 
| 886 | 
            +
                    },
         | 
| 887 | 
            +
                    {
         | 
| 888 | 
            +
                      "internalType": "NftId",
         | 
| 889 | 
            +
                      "name": "poolNftId",
         | 
| 890 | 
            +
                      "type": "uint96"
         | 
| 891 | 
            +
                    },
         | 
| 892 | 
            +
                    {
         | 
| 893 | 
            +
                      "internalType": "Amount",
         | 
| 894 | 
            +
                      "name": "amount",
         | 
| 895 | 
            +
                      "type": "uint96"
         | 
| 896 | 
            +
                    },
         | 
| 897 | 
            +
                    {
         | 
| 898 | 
            +
                      "internalType": "Amount",
         | 
| 899 | 
            +
                      "name": "feeAmount",
         | 
| 900 | 
            +
                      "type": "uint96"
         | 
| 901 | 
            +
                    }
         | 
| 902 | 
            +
                  ],
         | 
| 903 | 
            +
                  "name": "increasePoolBalance",
         | 
| 904 | 
            +
                  "outputs": [],
         | 
| 905 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 906 | 
            +
                  "type": "function"
         | 
| 907 | 
            +
                },
         | 
| 908 | 
            +
                {
         | 
| 909 | 
            +
                  "inputs": [
         | 
| 910 | 
            +
                    {
         | 
| 911 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 912 | 
            +
                      "name": "instanceStore",
         | 
| 913 | 
            +
                      "type": "address"
         | 
| 914 | 
            +
                    },
         | 
| 915 | 
            +
                    {
         | 
| 916 | 
            +
                      "internalType": "NftId",
         | 
| 917 | 
            +
                      "name": "productNftId",
         | 
| 918 | 
            +
                      "type": "uint96"
         | 
| 919 | 
            +
                    },
         | 
| 920 | 
            +
                    {
         | 
| 921 | 
            +
                      "internalType": "Amount",
         | 
| 922 | 
            +
                      "name": "feeAmount",
         | 
| 923 | 
            +
                      "type": "uint96"
         | 
| 924 | 
            +
                    }
         | 
| 925 | 
            +
                  ],
         | 
| 926 | 
            +
                  "name": "increaseProductFees",
         | 
| 927 | 
            +
                  "outputs": [],
         | 
| 928 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 929 | 
            +
                  "type": "function"
         | 
| 930 | 
            +
                },
         | 
| 931 | 
            +
                {
         | 
| 932 | 
            +
                  "inputs": [],
         | 
| 933 | 
            +
                  "name": "initializeERC165",
         | 
| 934 | 
            +
                  "outputs": [],
         | 
| 935 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 936 | 
            +
                  "type": "function"
         | 
| 937 | 
            +
                },
         | 
| 938 | 
            +
                {
         | 
| 939 | 
            +
                  "inputs": [
         | 
| 940 | 
            +
                    {
         | 
| 941 | 
            +
                      "internalType": "address",
         | 
| 942 | 
            +
                      "name": "initialOwner",
         | 
| 943 | 
            +
                      "type": "address"
         | 
| 944 | 
            +
                    },
         | 
| 945 | 
            +
                    {
         | 
| 946 | 
            +
                      "internalType": "address",
         | 
| 947 | 
            +
                      "name": "registryAddress",
         | 
| 948 | 
            +
                      "type": "address"
         | 
| 949 | 
            +
                    }
         | 
| 950 | 
            +
                  ],
         | 
| 951 | 
            +
                  "name": "initializeNftOwnable",
         | 
| 952 | 
            +
                  "outputs": [],
         | 
| 953 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 954 | 
            +
                  "type": "function"
         | 
| 955 | 
            +
                },
         | 
| 956 | 
            +
                {
         | 
| 957 | 
            +
                  "inputs": [
         | 
| 958 | 
            +
                    {
         | 
| 959 | 
            +
                      "internalType": "address",
         | 
| 960 | 
            +
                      "name": "registryAddress",
         | 
| 961 | 
            +
                      "type": "address"
         | 
| 962 | 
            +
                    },
         | 
| 963 | 
            +
                    {
         | 
| 964 | 
            +
                      "internalType": "NftId",
         | 
| 965 | 
            +
                      "name": "parentNftId",
         | 
| 966 | 
            +
                      "type": "uint96"
         | 
| 967 | 
            +
                    },
         | 
| 968 | 
            +
                    {
         | 
| 969 | 
            +
                      "internalType": "ObjectType",
         | 
| 970 | 
            +
                      "name": "objectType",
         | 
| 971 | 
            +
                      "type": "uint8"
         | 
| 972 | 
            +
                    },
         | 
| 973 | 
            +
                    {
         | 
| 974 | 
            +
                      "internalType": "bool",
         | 
| 975 | 
            +
                      "name": "isInterceptor",
         | 
| 976 | 
            +
                      "type": "bool"
         | 
| 977 | 
            +
                    },
         | 
| 978 | 
            +
                    {
         | 
| 979 | 
            +
                      "internalType": "address",
         | 
| 980 | 
            +
                      "name": "initialOwner",
         | 
| 981 | 
            +
                      "type": "address"
         | 
| 982 | 
            +
                    },
         | 
| 983 | 
            +
                    {
         | 
| 984 | 
            +
                      "internalType": "bytes",
         | 
| 985 | 
            +
                      "name": "registryData",
         | 
| 986 | 
            +
                      "type": "bytes"
         | 
| 987 | 
            +
                    }
         | 
| 988 | 
            +
                  ],
         | 
| 989 | 
            +
                  "name": "initializeRegisterable",
         | 
| 990 | 
            +
                  "outputs": [],
         | 
| 991 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 992 | 
            +
                  "type": "function"
         | 
| 993 | 
            +
                },
         | 
| 994 | 
            +
                {
         | 
| 995 | 
            +
                  "inputs": [
         | 
| 996 | 
            +
                    {
         | 
| 997 | 
            +
                      "internalType": "address",
         | 
| 998 | 
            +
                      "name": "registryAddress",
         | 
| 999 | 
            +
                      "type": "address"
         | 
| 1000 | 
            +
                    }
         | 
| 1001 | 
            +
                  ],
         | 
| 1002 | 
            +
                  "name": "initializeRegistryLinked",
         | 
| 1003 | 
            +
                  "outputs": [],
         | 
| 1004 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1005 | 
            +
                  "type": "function"
         | 
| 1006 | 
            +
                },
         | 
| 1007 | 
            +
                {
         | 
| 1008 | 
            +
                  "inputs": [
         | 
| 1009 | 
            +
                    {
         | 
| 1010 | 
            +
                      "internalType": "address",
         | 
| 1011 | 
            +
                      "name": "registry",
         | 
| 1012 | 
            +
                      "type": "address"
         | 
| 1013 | 
            +
                    },
         | 
| 1014 | 
            +
                    {
         | 
| 1015 | 
            +
                      "internalType": "address",
         | 
| 1016 | 
            +
                      "name": "authority",
         | 
| 1017 | 
            +
                      "type": "address"
         | 
| 1018 | 
            +
                    },
         | 
| 1019 | 
            +
                    {
         | 
| 1020 | 
            +
                      "internalType": "address",
         | 
| 1021 | 
            +
                      "name": "initialOwner",
         | 
| 1022 | 
            +
                      "type": "address"
         | 
| 1023 | 
            +
                    }
         | 
| 1024 | 
            +
                  ],
         | 
| 1025 | 
            +
                  "name": "initializeService",
         | 
| 1026 | 
            +
                  "outputs": [],
         | 
| 1027 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1028 | 
            +
                  "type": "function"
         | 
| 1029 | 
            +
                },
         | 
| 1030 | 
            +
                {
         | 
| 1031 | 
            +
                  "inputs": [
         | 
| 1032 | 
            +
                    {
         | 
| 1033 | 
            +
                      "internalType": "address",
         | 
| 1034 | 
            +
                      "name": "activatedBy",
         | 
| 1035 | 
            +
                      "type": "address"
         | 
| 1036 | 
            +
                    },
         | 
| 1037 | 
            +
                    {
         | 
| 1038 | 
            +
                      "internalType": "bytes",
         | 
| 1039 | 
            +
                      "name": "data",
         | 
| 1040 | 
            +
                      "type": "bytes"
         | 
| 1041 | 
            +
                    }
         | 
| 1042 | 
            +
                  ],
         | 
| 1043 | 
            +
                  "name": "initializeVersionable",
         | 
| 1044 | 
            +
                  "outputs": [],
         | 
| 1045 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1046 | 
            +
                  "type": "function"
         | 
| 1047 | 
            +
                },
         | 
| 1048 | 
            +
                {
         | 
| 1049 | 
            +
                  "inputs": [],
         | 
| 1050 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 1051 | 
            +
                  "outputs": [
         | 
| 1052 | 
            +
                    {
         | 
| 1053 | 
            +
                      "internalType": "bytes4",
         | 
| 1054 | 
            +
                      "name": "",
         | 
| 1055 | 
            +
                      "type": "bytes4"
         | 
| 1056 | 
            +
                    }
         | 
| 1057 | 
            +
                  ],
         | 
| 1058 | 
            +
                  "stateMutability": "view",
         | 
| 1059 | 
            +
                  "type": "function"
         | 
| 1060 | 
            +
                },
         | 
| 1061 | 
            +
                {
         | 
| 1062 | 
            +
                  "inputs": [],
         | 
| 1063 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 1064 | 
            +
                  "outputs": [
         | 
| 1065 | 
            +
                    {
         | 
| 1066 | 
            +
                      "internalType": "NftId",
         | 
| 1067 | 
            +
                      "name": "nftId",
         | 
| 1068 | 
            +
                      "type": "uint96"
         | 
| 1069 | 
            +
                    }
         | 
| 1070 | 
            +
                  ],
         | 
| 1071 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1072 | 
            +
                  "type": "function"
         | 
| 1073 | 
            +
                },
         | 
| 1074 | 
            +
                {
         | 
| 1075 | 
            +
                  "inputs": [],
         | 
| 1076 | 
            +
                  "name": "lock",
         | 
| 1077 | 
            +
                  "outputs": [],
         | 
| 1078 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1079 | 
            +
                  "type": "function"
         | 
| 1080 | 
            +
                },
         | 
| 1081 | 
            +
                {
         | 
| 1082 | 
            +
                  "inputs": [],
         | 
| 1083 | 
            +
                  "name": "registerDistribution",
         | 
| 1084 | 
            +
                  "outputs": [],
         | 
| 1085 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1086 | 
            +
                  "type": "function"
         | 
| 1087 | 
            +
                },
         | 
| 1088 | 
            +
                {
         | 
| 1089 | 
            +
                  "inputs": [
         | 
| 1090 | 
            +
                    {
         | 
| 1091 | 
            +
                      "internalType": "bytes4",
         | 
| 1092 | 
            +
                      "name": "interfaceId",
         | 
| 1093 | 
            +
                      "type": "bytes4"
         | 
| 1094 | 
            +
                    }
         | 
| 1095 | 
            +
                  ],
         | 
| 1096 | 
            +
                  "name": "registerInterface",
         | 
| 1097 | 
            +
                  "outputs": [],
         | 
| 1098 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1099 | 
            +
                  "type": "function"
         | 
| 1100 | 
            +
                },
         | 
| 1101 | 
            +
                {
         | 
| 1102 | 
            +
                  "inputs": [],
         | 
| 1103 | 
            +
                  "name": "registerOracle",
         | 
| 1104 | 
            +
                  "outputs": [],
         | 
| 1105 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1106 | 
            +
                  "type": "function"
         | 
| 1107 | 
            +
                },
         | 
| 1108 | 
            +
                {
         | 
| 1109 | 
            +
                  "inputs": [],
         | 
| 1110 | 
            +
                  "name": "registerPool",
         | 
| 1111 | 
            +
                  "outputs": [],
         | 
| 1112 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1113 | 
            +
                  "type": "function"
         | 
| 1114 | 
            +
                },
         | 
| 1115 | 
            +
                {
         | 
| 1116 | 
            +
                  "inputs": [],
         | 
| 1117 | 
            +
                  "name": "registerProduct",
         | 
| 1118 | 
            +
                  "outputs": [],
         | 
| 1119 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1120 | 
            +
                  "type": "function"
         | 
| 1121 | 
            +
                },
         | 
| 1122 | 
            +
                {
         | 
| 1123 | 
            +
                  "inputs": [
         | 
| 1124 | 
            +
                    {
         | 
| 1125 | 
            +
                      "internalType": "address",
         | 
| 1126 | 
            +
                      "name": "newAuthority",
         | 
| 1127 | 
            +
                      "type": "address"
         | 
| 1128 | 
            +
                    }
         | 
| 1129 | 
            +
                  ],
         | 
| 1130 | 
            +
                  "name": "setAuthority",
         | 
| 1131 | 
            +
                  "outputs": [],
         | 
| 1132 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1133 | 
            +
                  "type": "function"
         | 
| 1134 | 
            +
                },
         | 
| 1135 | 
            +
                {
         | 
| 1136 | 
            +
                  "inputs": [
         | 
| 1137 | 
            +
                    {
         | 
| 1138 | 
            +
                      "components": [
         | 
| 1139 | 
            +
                        {
         | 
| 1140 | 
            +
                          "internalType": "UFixed",
         | 
| 1141 | 
            +
                          "name": "fractionalFee",
         | 
| 1142 | 
            +
                          "type": "uint256"
         | 
| 1143 | 
            +
                        },
         | 
| 1144 | 
            +
                        {
         | 
| 1145 | 
            +
                          "internalType": "uint256",
         | 
| 1146 | 
            +
                          "name": "fixedFee",
         | 
| 1147 | 
            +
                          "type": "uint256"
         | 
| 1148 | 
            +
                        }
         | 
| 1149 | 
            +
                      ],
         | 
| 1150 | 
            +
                      "internalType": "struct Fee",
         | 
| 1151 | 
            +
                      "name": "distributionFee",
         | 
| 1152 | 
            +
                      "type": "tuple"
         | 
| 1153 | 
            +
                    },
         | 
| 1154 | 
            +
                    {
         | 
| 1155 | 
            +
                      "components": [
         | 
| 1156 | 
            +
                        {
         | 
| 1157 | 
            +
                          "internalType": "UFixed",
         | 
| 1158 | 
            +
                          "name": "fractionalFee",
         | 
| 1159 | 
            +
                          "type": "uint256"
         | 
| 1160 | 
            +
                        },
         | 
| 1161 | 
            +
                        {
         | 
| 1162 | 
            +
                          "internalType": "uint256",
         | 
| 1163 | 
            +
                          "name": "fixedFee",
         | 
| 1164 | 
            +
                          "type": "uint256"
         | 
| 1165 | 
            +
                        }
         | 
| 1166 | 
            +
                      ],
         | 
| 1167 | 
            +
                      "internalType": "struct Fee",
         | 
| 1168 | 
            +
                      "name": "minDistributionOwnerFee",
         | 
| 1169 | 
            +
                      "type": "tuple"
         | 
| 1170 | 
            +
                    }
         | 
| 1171 | 
            +
                  ],
         | 
| 1172 | 
            +
                  "name": "setDistributionFees",
         | 
| 1173 | 
            +
                  "outputs": [],
         | 
| 1174 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1175 | 
            +
                  "type": "function"
         | 
| 1176 | 
            +
                },
         | 
| 1177 | 
            +
                {
         | 
| 1178 | 
            +
                  "inputs": [
         | 
| 1179 | 
            +
                    {
         | 
| 1180 | 
            +
                      "components": [
         | 
| 1181 | 
            +
                        {
         | 
| 1182 | 
            +
                          "internalType": "UFixed",
         | 
| 1183 | 
            +
                          "name": "fractionalFee",
         | 
| 1184 | 
            +
                          "type": "uint256"
         | 
| 1185 | 
            +
                        },
         | 
| 1186 | 
            +
                        {
         | 
| 1187 | 
            +
                          "internalType": "uint256",
         | 
| 1188 | 
            +
                          "name": "fixedFee",
         | 
| 1189 | 
            +
                          "type": "uint256"
         | 
| 1190 | 
            +
                        }
         | 
| 1191 | 
            +
                      ],
         | 
| 1192 | 
            +
                      "internalType": "struct Fee",
         | 
| 1193 | 
            +
                      "name": "poolFee",
         | 
| 1194 | 
            +
                      "type": "tuple"
         | 
| 1195 | 
            +
                    },
         | 
| 1196 | 
            +
                    {
         | 
| 1197 | 
            +
                      "components": [
         | 
| 1198 | 
            +
                        {
         | 
| 1199 | 
            +
                          "internalType": "UFixed",
         | 
| 1200 | 
            +
                          "name": "fractionalFee",
         | 
| 1201 | 
            +
                          "type": "uint256"
         | 
| 1202 | 
            +
                        },
         | 
| 1203 | 
            +
                        {
         | 
| 1204 | 
            +
                          "internalType": "uint256",
         | 
| 1205 | 
            +
                          "name": "fixedFee",
         | 
| 1206 | 
            +
                          "type": "uint256"
         | 
| 1207 | 
            +
                        }
         | 
| 1208 | 
            +
                      ],
         | 
| 1209 | 
            +
                      "internalType": "struct Fee",
         | 
| 1210 | 
            +
                      "name": "stakingFee",
         | 
| 1211 | 
            +
                      "type": "tuple"
         | 
| 1212 | 
            +
                    },
         | 
| 1213 | 
            +
                    {
         | 
| 1214 | 
            +
                      "components": [
         | 
| 1215 | 
            +
                        {
         | 
| 1216 | 
            +
                          "internalType": "UFixed",
         | 
| 1217 | 
            +
                          "name": "fractionalFee",
         | 
| 1218 | 
            +
                          "type": "uint256"
         | 
| 1219 | 
            +
                        },
         | 
| 1220 | 
            +
                        {
         | 
| 1221 | 
            +
                          "internalType": "uint256",
         | 
| 1222 | 
            +
                          "name": "fixedFee",
         | 
| 1223 | 
            +
                          "type": "uint256"
         | 
| 1224 | 
            +
                        }
         | 
| 1225 | 
            +
                      ],
         | 
| 1226 | 
            +
                      "internalType": "struct Fee",
         | 
| 1227 | 
            +
                      "name": "performanceFee",
         | 
| 1228 | 
            +
                      "type": "tuple"
         | 
| 1229 | 
            +
                    }
         | 
| 1230 | 
            +
                  ],
         | 
| 1231 | 
            +
                  "name": "setPoolFees",
         | 
| 1232 | 
            +
                  "outputs": [],
         | 
| 1233 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1234 | 
            +
                  "type": "function"
         | 
| 1235 | 
            +
                },
         | 
| 1236 | 
            +
                {
         | 
| 1237 | 
            +
                  "inputs": [
         | 
| 1238 | 
            +
                    {
         | 
| 1239 | 
            +
                      "components": [
         | 
| 1240 | 
            +
                        {
         | 
| 1241 | 
            +
                          "internalType": "UFixed",
         | 
| 1242 | 
            +
                          "name": "fractionalFee",
         | 
| 1243 | 
            +
                          "type": "uint256"
         | 
| 1244 | 
            +
                        },
         | 
| 1245 | 
            +
                        {
         | 
| 1246 | 
            +
                          "internalType": "uint256",
         | 
| 1247 | 
            +
                          "name": "fixedFee",
         | 
| 1248 | 
            +
                          "type": "uint256"
         | 
| 1249 | 
            +
                        }
         | 
| 1250 | 
            +
                      ],
         | 
| 1251 | 
            +
                      "internalType": "struct Fee",
         | 
| 1252 | 
            +
                      "name": "productFee",
         | 
| 1253 | 
            +
                      "type": "tuple"
         | 
| 1254 | 
            +
                    },
         | 
| 1255 | 
            +
                    {
         | 
| 1256 | 
            +
                      "components": [
         | 
| 1257 | 
            +
                        {
         | 
| 1258 | 
            +
                          "internalType": "UFixed",
         | 
| 1259 | 
            +
                          "name": "fractionalFee",
         | 
| 1260 | 
            +
                          "type": "uint256"
         | 
| 1261 | 
            +
                        },
         | 
| 1262 | 
            +
                        {
         | 
| 1263 | 
            +
                          "internalType": "uint256",
         | 
| 1264 | 
            +
                          "name": "fixedFee",
         | 
| 1265 | 
            +
                          "type": "uint256"
         | 
| 1266 | 
            +
                        }
         | 
| 1267 | 
            +
                      ],
         | 
| 1268 | 
            +
                      "internalType": "struct Fee",
         | 
| 1269 | 
            +
                      "name": "processingFee",
         | 
| 1270 | 
            +
                      "type": "tuple"
         | 
| 1271 | 
            +
                    }
         | 
| 1272 | 
            +
                  ],
         | 
| 1273 | 
            +
                  "name": "setProductFees",
         | 
| 1274 | 
            +
                  "outputs": [],
         | 
| 1275 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1276 | 
            +
                  "type": "function"
         | 
| 1277 | 
            +
                },
         | 
| 1278 | 
            +
                {
         | 
| 1279 | 
            +
                  "inputs": [
         | 
| 1280 | 
            +
                    {
         | 
| 1281 | 
            +
                      "internalType": "address",
         | 
| 1282 | 
            +
                      "name": "newWallet",
         | 
| 1283 | 
            +
                      "type": "address"
         | 
| 1284 | 
            +
                    }
         | 
| 1285 | 
            +
                  ],
         | 
| 1286 | 
            +
                  "name": "setWallet",
         | 
| 1287 | 
            +
                  "outputs": [],
         | 
| 1288 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1289 | 
            +
                  "type": "function"
         | 
| 1290 | 
            +
                },
         | 
| 1291 | 
            +
                {
         | 
| 1292 | 
            +
                  "inputs": [
         | 
| 1293 | 
            +
                    {
         | 
| 1294 | 
            +
                      "internalType": "bytes4",
         | 
| 1295 | 
            +
                      "name": "interfaceId",
         | 
| 1296 | 
            +
                      "type": "bytes4"
         | 
| 1297 | 
            +
                    }
         | 
| 1298 | 
            +
                  ],
         | 
| 1299 | 
            +
                  "name": "supportsInterface",
         | 
| 1300 | 
            +
                  "outputs": [
         | 
| 1301 | 
            +
                    {
         | 
| 1302 | 
            +
                      "internalType": "bool",
         | 
| 1303 | 
            +
                      "name": "",
         | 
| 1304 | 
            +
                      "type": "bool"
         | 
| 1305 | 
            +
                    }
         | 
| 1306 | 
            +
                  ],
         | 
| 1307 | 
            +
                  "stateMutability": "view",
         | 
| 1308 | 
            +
                  "type": "function"
         | 
| 1309 | 
            +
                },
         | 
| 1310 | 
            +
                {
         | 
| 1311 | 
            +
                  "inputs": [],
         | 
| 1312 | 
            +
                  "name": "unlock",
         | 
| 1313 | 
            +
                  "outputs": [],
         | 
| 1314 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1315 | 
            +
                  "type": "function"
         | 
| 1316 | 
            +
                },
         | 
| 1317 | 
            +
                {
         | 
| 1318 | 
            +
                  "inputs": [
         | 
| 1319 | 
            +
                    {
         | 
| 1320 | 
            +
                      "internalType": "bytes",
         | 
| 1321 | 
            +
                      "name": "data",
         | 
| 1322 | 
            +
                      "type": "bytes"
         | 
| 1323 | 
            +
                    }
         | 
| 1324 | 
            +
                  ],
         | 
| 1325 | 
            +
                  "name": "upgradeVersionable",
         | 
| 1326 | 
            +
                  "outputs": [],
         | 
| 1327 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1328 | 
            +
                  "type": "function"
         | 
| 1329 | 
            +
                },
         | 
| 1330 | 
            +
                {
         | 
| 1331 | 
            +
                  "inputs": [
         | 
| 1332 | 
            +
                    {
         | 
| 1333 | 
            +
                      "internalType": "Amount",
         | 
| 1334 | 
            +
                      "name": "amount",
         | 
| 1335 | 
            +
                      "type": "uint96"
         | 
| 1336 | 
            +
                    }
         | 
| 1337 | 
            +
                  ],
         | 
| 1338 | 
            +
                  "name": "withdrawFees",
         | 
| 1339 | 
            +
                  "outputs": [
         | 
| 1340 | 
            +
                    {
         | 
| 1341 | 
            +
                      "internalType": "Amount",
         | 
| 1342 | 
            +
                      "name": "withdrawnAmount",
         | 
| 1343 | 
            +
                      "type": "uint96"
         | 
| 1344 | 
            +
                    }
         | 
| 1345 | 
            +
                  ],
         | 
| 1346 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1347 | 
            +
                  "type": "function"
         | 
| 1348 | 
            +
                }
         | 
| 1349 | 
            +
              ],
         | 
| 1350 | 
            +
              "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615813806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610260575f3560e01c80636c741e781161014b578063be495be5116100bf578063d7740ee111610084578063d7740ee11461052d578063deaa59df14610535578063dfd92f8a14610548578063e618053f146102d6578063f7c34ee014610550578063f83d08ba146102e9575f80fd5b8063be495be5146104f5578063bf7e214f146104fd578063c142a3031461051a578063d165cb6414610366578063d56cd3d514610366575f80fd5b806389fad8a21161011057806389fad8a2146102d65780638e32e9791461049e5780638fb36037146104b1578063a69df4b5146102e9578063ada9652e146104d2578063b68d1809146104e6575f80fd5b80636c741e78146104505780636e1728071461047057806374933c2f146103665780637a9e5e4b14610483578063893d20e814610496575f80fd5b8063329d6e74116101e25780635ab1bd53116101a75780635ab1bd53146103d5578063644c45e0146103fa57806366101781146102d657806367438c5014610417578063675393bf1461042a57806367ba1c101461043d575f80fd5b8063329d6e741461038c578063339d25901461039f57806336fc697e146103a757806337a897ee146103af57806349bb9e4b146103c2575f80fd5b80631c6b2190116102285780631c6b21901461030b5780631eff4b221461031e578063214cdb801461035357806325e451d31461036657806327bb7a3314610379575f80fd5b806301ffc9a7146102645780630d8e6e2c146102a55780630fec111c146102c157806311a14677146102d6578063138461e0146102eb575b5f80fd5b61029061027236600461435a565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102ad610563565b60405162ffffff909116815260200161029c565b6102c96105ea565b60405161029c91906143af565b6102e96102e436600461446b565b610776565b005b6102f3610789565b6040516001600160601b03909116815260200161029c565b6102f36103193660046144c4565b610793565b6103457f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161029c565b6102e961036136600461435a565b611074565b6102e961037436600461446b565b6110a0565b6102e9610387366004614668565b6110ae565b6102e961039a3660046146fb565b611153565b6102e961129d565b6102e96112bb565b6102e96103bd36600461475b565b611300565b6102e96103d0366004614785565b61161d565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161029c565b5f8051602061577e833981519152546001600160601b03166102f3565b6102e96104253660046147d1565b61170b565b6102e9610438366004614819565b611788565b6102e961044b36600461475b565b611895565b610458611c00565b6040516001600160401b03909116815260200161029c565b6102e961047e3660046147d1565b611cf7565b6102e9610491366004614819565b611d44565b6103e2611ddc565b6102e96104ac366004614834565b611f0d565b6104b9612045565b6040516001600160e01b0319909116815260200161029c565b6103455f8051602061577e83398151915281565b604051600b815260200161029c565b6102e961207c565b5f8051602061579e833981519152546001600160a01b03166103e2565b6102e9610528366004614871565b61208b565b6102e9612425565b6102e9610543366004614819565b6124f2565b6102e9612794565b6102e961055e3660046148b4565b612892565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e591906148eb565b905090565b6105f2614206565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610668573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068c919061491d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106d4611ddc565b6001600160a01b031681526020018260010180546106f190614938565b80601f016020809104026020016040519081016040528092919081815260200182805461071d90614938565b80156107685780601f1061073f57610100808354040283529160200191610768565b820191905f5260205f20905b81548152906001019060200180831161074b57829003601f168201915b505050505081525091505090565b6107835f85858585612908565b50505050565b5f6105e530612d02565b5f80806107a0600b612efb565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107e2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108069190614970565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610852573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261087991908101906149e5565b90505f81608001519050859450846001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610917919061491d565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610960573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109849190614ac8565b15610a6157826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e99190614970565b604051630232ca4960e01b81526001600160601b03861660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610a36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5a919061491d565b9450610c88565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610ab7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610adb9190614ac8565b15610af95760405163b079ec2b60e01b815260040160405180910390fd5b5f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614970565b604051630232ca4960e01b81526001600160601b03871660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610ba7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcb919061491d565b604051632601631360e21b81526001600160601b0388811660048301528216602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015610c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c509190614ac8565b15610c865760405163151dbb3f60e01b81526001600160601b038088166004830152821660248201526044015b60405180910390fd5b505b60608201516040808401519051636eb1769f60e11b81526001600160a01b03848116600483015280841660248301525f919083169063dd62ed3e90604401602060405180830381865afa158015610ce1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d059190614ae3565b60405163046e44af60e11b81526001600160601b038a16600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610d5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d829190614ae3565b811015610e415760405163046e44af60e11b81526001600160601b038916600482015284908490839073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610de5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e099190614ae3565b604051636e7bbd3560e01b81526001600160a01b03948516600482015293909216602484015260448301526064820152608401610c7d565b610f175f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ea59190614970565b8973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610eed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f11919061491d565b8c612908565b5f610f2a6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038a1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f9b9190614970565b60405163c661667d60e01b81526001600160a01b03878116600483015280831660248301526001600160601b038c1660448301529192509085169063c661667d906064015f604051808303815f87803b158015610ff6575f80fd5b505af1158015611008573d5f803e3d5ffd5b5050604080516001600160601b038c811682526001600160a01b0386811660208401528816828401528d16606082015290517f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde99350908190036080019150a15050505050505050919050565b61107c612f97565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b610783600185858585612908565b6110b6612f97565b6110c08287612892565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016111498382614b3e565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611175610563565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156111b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d79190614c17565b5f805160206157be8339815191528054600160401b900460ff1680611209575080546001600160401b03808416911610155b156112275760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561125183612fcd565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b335f806112b383600d6112ae612fd5565b61300f565b505050505050565b6112c3612f97565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f8061130c600e612efb565b92505091505f8061137c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611352573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113769190614970565b8561343f565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b81526004016113be929190614c32565b602060405180830381865af41580156113d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113fd9190614ac8565b61144357611438836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a613539565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161147f91908a90600401614c32565b602060405180830381865af415801561149a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114be9190614ac8565b61151257611507836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189613539565b5060a0810185905260015b801561161457836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611554573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115789190614970565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b81526004016115a893929190614d30565b5f604051808303815f87803b1580156115bf575f80fd5b505af11580156115d1573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b5f805160206157be8339815191528054600160401b810460ff1615906001600160401b03165f8115801561164e5750825b90505f826001600160401b031660011480156116695750303b155b905081158015611677575080155b156116955760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156116bf57845460ff60401b1916600160401b1785555b6116c9878761358c565b831561161457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161160b565b6117836001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611759573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061177d919061491d565b85612908565b505050565b611790612f97565b806001600160a01b03163b5f036117c55760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c7d565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa92505050801561183f575060408051601f3d908101601f1916820190925261183c91810190614ac8565b60015b6118675760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c7d565b806118905760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c7d565b505b50565b5f806118a1600c612efb565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119079190614970565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa158015611955573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119799190614d8f565b90505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b81526004016119b9929190614c32565b602060405180830381865af41580156119d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f89190614ac8565b611a3957611a2e846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189613539565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a7591908990600401614c32565b602060405180830381865af4158015611a90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab49190614ac8565b611af857611aed846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188613539565b506060810184905260015b80156112b357826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b5e9190614970565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b8152600401611b8e93929190614d30565b5f604051808303815f87803b158015611ba5575f80fd5b505af1158015611bb7573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a1505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611c6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c8f9190614e5b565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611cd3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e59190614c17565b6117835f848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611759573d5f803e3d5ffd5b33611d635f8051602061579e833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614611d9e5760405162d1953b60e31b81526001600160a01b0382166004820152602401610c7d565b816001600160a01b03163b5f03611dd3576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c7d565b611890826136fc565b5f805f8051602061577e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611e48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6c9190614ac8565b15611ef7576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611ecd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ef19190614970565b91505090565b54600160601b90046001600160a01b0316919050565b611f15612f97565b611f9183846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f79919061491d565b60085f8560405180602001604052805f8152506110ae565b6001600160a01b03821615611fae57611fa98261375c565b612025565b5f611fb9600261376d565b9050612023816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201e9190614970565b61375c565b505b612035634a531f3360e01b611074565b61178363daf9067160e01b611074565b5f8051602061579e83398151915280545f9190600160a01b900460ff1661206c575f611ef1565b638fb3603760e01b91505090565b565b3361078381600e6112ae613874565b5f80612097600f612efb565b92505091505f806120dd836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611352573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b815260040161211f929190614c32565b602060405180830381865af415801561213a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215e9190614ac8565b61219c576121918360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b613539565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916121d891908b90600401614c32565b602060405180830381865af41580156121f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122179190614ac8565b6122585761224d836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a613539565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161229591908a90600401614c32565b602060405180830381865af41580156122b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d49190614ac8565b61231b5761230f836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189613539565b50610100810185905260015b801561114957836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561235d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123819190614970565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b81526004016123b193929190614d30565b5f604051808303815f87803b1580156123c8575f80fd5b505af11580156123da573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b335f8061243683600f6112ae6138ae565b9250925050816001600160a01b0316637892982382856001600160a01b03166385ba83446040518163ffffffff1660e01b81526004016101c060405180830381865afa158015612488573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124ac9190614e76565b6040518363ffffffff1660e01b81526004016124c9929190614f48565b5f604051808303815f87803b1580156124e0575f80fd5b505af1158015611614573d5f803e3d5ffd5b5f806124fe600b612efb565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612540573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125649190614970565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156125b0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125d791908101906149e5565b60808101519091506001600160a01b0385166126065760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b03811661262d5760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b03160361265f5760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126dd9190614970565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b815260040161270d939291906150a2565b5f604051808303815f87803b158015612724575f80fd5b505af1158015612736573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b335f80806127a684600c6112ae6138e8565b9250925092505f846001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa1580156127ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061280e9190614d8f565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f9061283f90859085906004016150d6565b5f604051808303815f87803b158015612856575f80fd5b505af1158015612868573d5f803e3d5ffd5b5050505061287b8484835f015185613922565b61288b8484836020015185613922565b5050505050565b61289a612f97565b6128a381611788565b6128ab6112bb565b6001600160a01b0382166128d25760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061577e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f6129138383613a89565b90508515612b12576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612971573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129959190614ac8565b15612a1457604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303815f875af11580156129ee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a12919061491d565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612a6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a8e9190614ac8565b15612b0d5760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303815f875af1158015612ae7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b0b919061491d565b505b6112b3565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612b68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b8c9190614ac8565b15612c0b5760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303815f875af1158015612be5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c09919061491d565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612c61573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c859190614ac8565b156112b3576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303815f875af1158015612cde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611614919061491d565b5f805f8051602061577e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612d6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d929190614ac8565b15612dbe5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c7d565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612e10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e349190614ac8565b612e5c5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610c7d565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612eae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ed2919061491d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f612f04614206565b5f612f176001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612f5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f7f919061491d565b9250612f8d83856001613b14565b9395909450915050565b5f805160206157be83398151915254600160401b900460ff1661207a57604051631afcd79f60e31b815260040160405180910390fd5b610260612f97565b604051637c3940bf60e01b8152600c60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611cb8565b5f805f805f80613020898989613db1565b60025460405163d943342d60e01b81526001600160a01b03808516600483015260ff8e1660248301528084166044830152949750929550909350919091169063d943342d906064015f604051808303815f875af1158015613083573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526130aa91908101906150f4565b5f01519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156130ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613110919061491d565b5060035f9054906101000a90046001600160a01b03166001600160a01b0316633931d6da846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613170573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613194919061491d565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526001600160a01b03851660248201526044015f604051808303815f87803b1580156131e1575f80fd5b505af11580156131f3573d5f803e3d5ffd5b50505050826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613233573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132579190614970565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613295573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132b99190614970565b94505f826001600160a01b03166390edbd356040518163ffffffff1660e01b81526004015f60405180830381865afa1580156132f7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261331e91908101906149e5565b9050806040015160405161333190614243565b6001600160a01b039091168152602001604051809103905ff08015801561335a573d5f803e3d5ffd5b5081606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133e7919061491d565b836040518363ffffffff1660e01b81526004016134059291906151c4565b5f604051808303815f87803b15801561341c575f80fd5b505af115801561342e573d5f803e3d5ffd5b505050505050505093509350939050565b5f613448614250565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c3906024015f60405180830381865afa158015613492573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134b991908101906149e5565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa15801561350c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135309190614d8f565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db9461357e948a948a9492939092906151e5565b60405180910390a150505050565b5f805160206157be8339815191528054600160401b810460ff1615906001600160401b03165f811580156135bd5750825b90505f826001600160401b031660011480156135d85750303b155b9050811580156135e6575080155b156136045760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561362e57845460ff60401b1916600160401b1785555b5f8087806020019051810190613644919061522b565b9092509050613654825f8b611f0d565b61365e600261376d565b600280546001600160a01b0319166001600160a01b0392909216919091179055613688600a61376d565b600380546001600160a01b0319166001600160a01b03929092169190911790556136b8636618d76960e11b611074565b5050831561161457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161160b565b5f8051602061579e83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613764612f97565b61189281614165565b5f6137806001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156137e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138079190614e5b565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561384a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061386e9190614970565b92915050565b604051637c3940bf60e01b8152600d60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611cb8565b604051637c3940bf60e01b8152600e60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611cb8565b604051637c3940bf60e01b8152600b60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611cb8565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613978573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061399c9190614ac8565b6107835760405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156139ec573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a1391908101906149e5565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac90613a55908690859060ff906004016150a2565b5f604051808303815f87803b158015613a6c575f80fd5b505af1158015613a7e573d5f803e3d5ffd5b505050505050505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613ae9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b0d919061491d565b9392505050565b613b1c614206565b5f80613b306001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613b7d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613ba491908101906150f4565b925060ff8516600b14613c0257604083015160ff868116911614613bfd57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c7d565b613c9e565b613c1d8360400151613c12600c90565b60ff90811691161490565b80613c335750613c338360400151613c12600f90565b80613c495750613c498360400151613c12600e90565b80613c5f5750613c5f8360400151613c12600d90565b613c9e57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c7d565b613cab8360200151614176565b91508315613da857816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d139190614970565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d7f9190614ac8565b15613da857604051637d71120960e11b81526001600160601b0387166004820152602401610c7d565b50935093915050565b6040516301ffc9a760e01b81526376c9b41160e11b60048201525f90849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015613e00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e249190614ac8565b613e4c576040516359bff0e360e11b81526001600160a01b0387166004820152602401610c7d565b5f826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613e88573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613eaf91908101906150f4565b9050613ec681604001518760ff9081169116141590565b15613f06576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff80891660248301529091166044820152606401610c7d565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038981166004830152919091169063d272ac1e90602401602060405180830381865afa158015613f58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f7c919061491d565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613fd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ff79190614ac8565b15614020576040516322e6526160e11b81526001600160a01b0388166004820152602401610c7d565b61402d8160200151614176565b93508060a001519150836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015614072573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140969190614970565b60405163327e18a160e11b81526001600160a01b0384811660048301526001600160401b038816602483015291909116906364fc314290604401602060405180830381865afa1580156140eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061410f9190614ac8565b61415b576020810151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03861660248201526001600160a01b0383166044820152606401610c7d565b5093509350939050565b61416d612f97565b611892816136fc565b5f6141896001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa1580156141d5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526141fc91908101906150f4565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6105258061525983390190565b6040518061012001604052805f6001600160601b031681526020015f6001600160601b0316815260200161429560405180604001604052805f81526020015f81525090565b81526020016142b560405180604001604052805f81526020015f81525090565b81526020016142d560405180604001604052805f81526020015f81525090565b81526020016142f560405180604001604052805f81526020015f81525090565b815260200161431560405180604001604052805f81526020015f81525090565b815260200161433560405180604001604052805f81526020015f81525090565b815260200161435560405180604001604052805f81526020015f81525090565b905290565b5f6020828403121561436a575f80fd5b81356001600160e01b031981168114613b0d575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516143f7608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261443b610100840182614381565b949350505050565b6001600160a01b0381168114611892575f80fd5b6001600160601b0381168114611892575f80fd5b5f805f806080858703121561447e575f80fd5b843561448981614443565b9350602085013561449981614457565b925060408501356144a981614457565b915060608501356144b981614457565b939692955090935050565b5f602082840312156144d4575f80fd5b8135613b0d81614457565b60ff81168114611892575f80fd5b8015158114611892575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614530576145306144fa565b60405290565b60405160c081016001600160401b0381118282101715614530576145306144fa565b60405161012081016001600160401b0381118282101715614530576145306144fa565b60405161016081016001600160401b0381118282101715614530576145306144fa565b60405160e081016001600160401b0381118282101715614530576145306144fa565b604051601f8201601f191681016001600160401b03811182821017156145e8576145e86144fa565b604052919050565b5f6001600160401b03821115614608576146086144fa565b50601f01601f191660200190565b5f82601f830112614625575f80fd5b8135614638614633826145f0565b6145c0565b81815284602083860101111561464c575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c0878903121561467d575f80fd5b863561468881614443565b9550602087013561469881614457565b945060408701356146a8816144df565b935060608701356146b8816144ed565b925060808701356146c881614443565b915060a08701356001600160401b038111156146e2575f80fd5b6146ee89828a01614616565b9150509295509295509295565b5f6020828403121561470b575f80fd5b81356001600160401b03811115614720575f80fd5b61443b84828501614616565b5f6040828403121561473c575f80fd5b61474461450e565b823581526020928301359281019290925250919050565b5f806080838503121561476c575f80fd5b614776848461472c565b9150613530846040850161472c565b5f8060408385031215614796575f80fd5b82356147a181614443565b915060208301356001600160401b038111156147bb575f80fd5b6147c785828601614616565b9150509250929050565b5f805f606084860312156147e3575f80fd5b83356147ee81614443565b925060208401356147fe81614457565b9150604084013561480e81614457565b809150509250925092565b5f60208284031215614829575f80fd5b8135613b0d81614443565b5f805f60608486031215614846575f80fd5b833561485181614443565b9250602084013561486181614443565b9150604084013561480e81614443565b5f805f60c08486031215614883575f80fd5b61488d858561472c565b925061489c856040860161472c565b91506148ab856080860161472c565b90509250925092565b5f80604083850312156148c5575f80fd5b82356148d081614443565b915060208301356148e081614443565b809150509250929050565b5f602082840312156148fb575f80fd5b815162ffffff81168114613b0d575f80fd5b805161491881614457565b919050565b5f6020828403121561492d575f80fd5b8151613b0d81614457565b600181811c9082168061494c57607f821691505b60208210810361496a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614980575f80fd5b8151613b0d81614443565b5f82601f83011261499a575f80fd5b8151602083015f6149ad614633846145f0565b90508281528583830111156149c0575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161491881614443565b5f602082840312156149f5575f80fd5b81516001600160401b03811115614a0a575f80fd5b820160c08185031215614a1b575f80fd5b614a23614536565b81516001600160401b03811115614a38575f80fd5b614a448682850161498b565b825250614a536020830161490d565b6020820152614a64604083016149da565b6040820152614a75606083016149da565b6060820152614a86608083016149da565b608082015260a08201516001600160401b03811115614aa3575f80fd5b614aaf8682850161498b565b60a083015250949350505050565b8051614918816144ed565b5f60208284031215614ad8575f80fd5b8151613b0d816144ed565b5f60208284031215614af3575f80fd5b5051919050565b601f82111561178357805f5260205f20601f840160051c81016020851015614b1f5750805b601f840160051c820191505b8181101561288b575f8155600101614b2b565b81516001600160401b03811115614b5757614b576144fa565b614b6b81614b658454614938565b84614afa565b6020601f821160018114614b9d575f8315614b865750848201515b5f19600385901b1c1916600184901b17845561288b565b5f84815260208120601f198516915b82811015614bcc5787850151825560209485019460019092019101614bac565b5084821015614be957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114611892575f80fd5b805161491881614bf8565b5f60208284031215614c27575f80fd5b8151613b0d81614bf8565b825181526020808401518183015282516040830152820151606082015260808101613b0d565b6001600160601b0381511682526020810151614c7f60208401826001600160601b03169052565b506040810151614c9c604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a0810151805161010084015260208101516101208401525060c0810151805161014084015260208101516101608401525060e0810151805161018084015260208101516101a084015250610100015180516101c0830152602001516101e090910152565b6001600160601b03841681526102408101614d4e6020830185614c58565b60ff8316610220830152949350505050565b5f60408284031215614d70575f80fd5b614d7861450e565b825181526020928301519281019290925250919050565b5f610200828403128015614da1575f80fd5b50614daa614558565b614db38361490d565b8152614dc16020840161490d565b6020820152614dd38460408501614d60565b6040820152614de58460808501614d60565b6060820152614df78460c08501614d60565b6080820152614e0a846101008501614d60565b60a0820152614e1d846101408501614d60565b60c0820152614e30846101808501614d60565b60e0820152614e43846101c08501614d60565b6101008201529392505050565b8051614918816144df565b5f60208284031215614e6b575f80fd5b8151613b0d816144df565b5f6101c0828403128015614e88575f80fd5b50614e9161457b565b614e9a8361490d565b8152614ea860208401614c0c565b6020820152614eb96040840161490d565b6040820152614eca60608401614abd565b6060820152614edb60808401614abd565b6080820152614eec60a08401614abd565b60a082015260c0838101519082015260e08084015190820152614f13846101008501614d60565b610100820152614f27846101408501614d60565b610120820152614f3b846101808501614d60565b6101408201529392505050565b6001600160601b03838116825282511660208201526101e0810160208301516001600160401b03811660408401525060408301516001600160601b0381166060840152506060830151801515608084015250608083015180151560a08401525060a083015180151560c08401525060c083015160e083015260e0830151610100830152610100830151614fe961012084018280518252602090810151910152565b5061012083015180516101608401526020908101516101808401526101409093015180516101a0840152909201516101c090910152919050565b5f815160c0845261503760c0850182614381565b90506001600160601b03602084015116602085015260018060a01b03604084015116604085015260018060a01b03606084015116606085015260018060a01b03608084015116608085015260a083015184820360a08601526150998282614381565b95945050505050565b6001600160601b0384168152606060208201525f6150c36060830185615023565b905060ff83166040830152949350505050565b6001600160601b03831681526102208101613b0d6020830184614c58565b5f60208284031215615104575f80fd5b81516001600160401b03811115615119575f80fd5b820160e0818503121561512a575f80fd5b61513261459e565b61513b8261490d565b81526151496020830161490d565b602082015261515a60408301614e50565b604082015261516b60608301614abd565b606082015261517c608083016149da565b608082015261518d60a083016149da565b60a082015260c08201516001600160401b038111156151aa575f80fd5b6151b68682850161498b565b60c083015250949350505050565b6001600160601b0383168152604060208201525f61443b6040830184615023565b6001600160601b038716815260c060208201525f61520660c0830188614381565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f806040838503121561523c575f80fd5b825161524781614443565b60208401519092506148e08161444356fe6080604052348015600e575f80fd5b50604051610525380380610525833981016040819052602b91604e565b5f80546001600160a01b0319166001600160a01b03929092169190911790556079565b5f60208284031215605d575f80fd5b81516001600160a01b03811681146072575f80fd5b9392505050565b61049f806100865f395ff3fe608060405234801561000f575f80fd5b506004361061003f575f3560e01c806321df0da7146100435780638d7271c314610061578063c661667d14610076575b5f80fd5b5f54604080516001600160a01b039092168252519081900360200190f35b61007461006f36600461038c565b610089565b005b6100746100843660046103dd565b610119565b60405163046e44af60e11b81526001600160601b03821660048201526101139085908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af41580156100ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061010e919061041d565b610172565b50505050565b5f5460405163046e44af60e11b81526001600160601b038316600482015261016d916001600160a01b0316908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024016100cf565b505050565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610113918691905f906101d790841683610229565b905080515f141580156101fb5750808060200190518101906101f99190610434565b155b1561016d57604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061023683835f61023d565b9392505050565b6060814710156102625760405163cd78605960e01b8152306004820152602401610220565b5f80856001600160a01b0316848660405161027d9190610453565b5f6040518083038185875af1925050503d805f81146102b7576040519150601f19603f3d011682016040523d82523d5f602084013e6102bc565b606091505b50915091506102cc8683836102d6565b9695505050505050565b6060826102eb576102e682610332565b610236565b815115801561030257506001600160a01b0384163b155b1561032b57604051639996b31560e01b81526001600160a01b0385166004820152602401610220565b5080610236565b8051156103425780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b0381168114610371575f80fd5b919050565b80356001600160601b0381168114610371575f80fd5b5f805f806080858703121561039f575f80fd5b6103a88561035b565b93506103b66020860161035b565b92506103c46040860161035b565b91506103d260608601610376565b905092959194509250565b5f805f606084860312156103ef575f80fd5b6103f88461035b565b92506104066020850161035b565b915061041460408501610376565b90509250925092565b5f6020828403121561042d575f80fd5b5051919050565b5f60208284031215610444575f80fd5b81518015158114610236575f80fd5b5f82518060208501845e5f92019182525091905056fea2646970667358221220539f547adb392249ed7070a99baf9312312fb2b11f1cc725a2c1af466c2626f064736f6c634300081a003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220b0ff497429278fce228fcf4f89d185176580c8cbd41023a31a3482f9b9d6bcb064736f6c634300081a0033",
         | 
| 1351 | 
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610260575f3560e01c80636c741e781161014b578063be495be5116100bf578063d7740ee111610084578063d7740ee11461052d578063deaa59df14610535578063dfd92f8a14610548578063e618053f146102d6578063f7c34ee014610550578063f83d08ba146102e9575f80fd5b8063be495be5146104f5578063bf7e214f146104fd578063c142a3031461051a578063d165cb6414610366578063d56cd3d514610366575f80fd5b806389fad8a21161011057806389fad8a2146102d65780638e32e9791461049e5780638fb36037146104b1578063a69df4b5146102e9578063ada9652e146104d2578063b68d1809146104e6575f80fd5b80636c741e78146104505780636e1728071461047057806374933c2f146103665780637a9e5e4b14610483578063893d20e814610496575f80fd5b8063329d6e74116101e25780635ab1bd53116101a75780635ab1bd53146103d5578063644c45e0146103fa57806366101781146102d657806367438c5014610417578063675393bf1461042a57806367ba1c101461043d575f80fd5b8063329d6e741461038c578063339d25901461039f57806336fc697e146103a757806337a897ee146103af57806349bb9e4b146103c2575f80fd5b80631c6b2190116102285780631c6b21901461030b5780631eff4b221461031e578063214cdb801461035357806325e451d31461036657806327bb7a3314610379575f80fd5b806301ffc9a7146102645780630d8e6e2c146102a55780630fec111c146102c157806311a14677146102d6578063138461e0146102eb575b5f80fd5b61029061027236600461435a565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102ad610563565b60405162ffffff909116815260200161029c565b6102c96105ea565b60405161029c91906143af565b6102e96102e436600461446b565b610776565b005b6102f3610789565b6040516001600160601b03909116815260200161029c565b6102f36103193660046144c4565b610793565b6103457f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161029c565b6102e961036136600461435a565b611074565b6102e961037436600461446b565b6110a0565b6102e9610387366004614668565b6110ae565b6102e961039a3660046146fb565b611153565b6102e961129d565b6102e96112bb565b6102e96103bd36600461475b565b611300565b6102e96103d0366004614785565b61161d565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161029c565b5f8051602061577e833981519152546001600160601b03166102f3565b6102e96104253660046147d1565b61170b565b6102e9610438366004614819565b611788565b6102e961044b36600461475b565b611895565b610458611c00565b6040516001600160401b03909116815260200161029c565b6102e961047e3660046147d1565b611cf7565b6102e9610491366004614819565b611d44565b6103e2611ddc565b6102e96104ac366004614834565b611f0d565b6104b9612045565b6040516001600160e01b0319909116815260200161029c565b6103455f8051602061577e83398151915281565b604051600b815260200161029c565b6102e961207c565b5f8051602061579e833981519152546001600160a01b03166103e2565b6102e9610528366004614871565b61208b565b6102e9612425565b6102e9610543366004614819565b6124f2565b6102e9612794565b6102e961055e3660046148b4565b612892565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e591906148eb565b905090565b6105f2614206565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610668573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068c919061491d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016106d4611ddc565b6001600160a01b031681526020018260010180546106f190614938565b80601f016020809104026020016040519081016040528092919081815260200182805461071d90614938565b80156107685780601f1061073f57610100808354040283529160200191610768565b820191905f5260205f20905b81548152906001019060200180831161074b57829003601f168201915b505050505081525091505090565b6107835f85858585612908565b50505050565b5f6105e530612d02565b5f80806107a0600b612efb565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107e2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108069190614970565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610852573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261087991908101906149e5565b90505f81608001519050859450846001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610917919061491d565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610960573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109849190614ac8565b15610a6157826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e99190614970565b604051630232ca4960e01b81526001600160601b03861660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610a36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5a919061491d565b9450610c88565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610ab7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610adb9190614ac8565b15610af95760405163b079ec2b60e01b815260040160405180910390fd5b5f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a9190614970565b604051630232ca4960e01b81526001600160601b03871660048201526001600160a01b039190911690630232ca4990602401602060405180830381865afa158015610ba7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcb919061491d565b604051632601631360e21b81526001600160601b0388811660048301528216602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af4158015610c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c509190614ac8565b15610c865760405163151dbb3f60e01b81526001600160601b038088166004830152821660248201526044015b60405180910390fd5b505b60608201516040808401519051636eb1769f60e11b81526001600160a01b03848116600483015280841660248301525f919083169063dd62ed3e90604401602060405180830381865afa158015610ce1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d059190614ae3565b60405163046e44af60e11b81526001600160601b038a16600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610d5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d829190614ae3565b811015610e415760405163046e44af60e11b81526001600160601b038916600482015284908490839073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610de5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e099190614ae3565b604051636e7bbd3560e01b81526001600160a01b03948516600482015293909216602484015260448301526064820152608401610c7d565b610f175f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ea59190614970565b8973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610eed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f11919061491d565b8c612908565b5f610f2a6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038a1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f77573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f9b9190614970565b60405163c661667d60e01b81526001600160a01b03878116600483015280831660248301526001600160601b038c1660448301529192509085169063c661667d906064015f604051808303815f87803b158015610ff6575f80fd5b505af1158015611008573d5f803e3d5ffd5b5050604080516001600160601b038c811682526001600160a01b0386811660208401528816828401528d16606082015290517f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde99350908190036080019150a15050505050505050919050565b61107c612f97565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b610783600185858585612908565b6110b6612f97565b6110c08287612892565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016111498382614b3e565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611175610563565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156111b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d79190614c17565b5f805160206157be8339815191528054600160401b900460ff1680611209575080546001600160401b03808416911610155b156112275760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561125183612fcd565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b335f806112b383600d6112ae612fd5565b61300f565b505050505050565b6112c3612f97565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f8061130c600e612efb565b92505091505f8061137c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611352573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113769190614970565b8561343f565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b81526004016113be929190614c32565b602060405180830381865af41580156113d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113fd9190614ac8565b61144357611438836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a613539565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161147f91908a90600401614c32565b602060405180830381865af415801561149a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114be9190614ac8565b61151257611507836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189613539565b5060a0810185905260015b801561161457836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611554573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115789190614970565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b81526004016115a893929190614d30565b5f604051808303815f87803b1580156115bf575f80fd5b505af11580156115d1573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b5f805160206157be8339815191528054600160401b810460ff1615906001600160401b03165f8115801561164e5750825b90505f826001600160401b031660011480156116695750303b155b905081158015611677575080155b156116955760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156116bf57845460ff60401b1916600160401b1785555b6116c9878761358c565b831561161457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161160b565b6117836001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611759573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061177d919061491d565b85612908565b505050565b611790612f97565b806001600160a01b03163b5f036117c55760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c7d565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa92505050801561183f575060408051601f3d908101601f1916820190925261183c91810190614ac8565b60015b6118675760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c7d565b806118905760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c7d565b505b50565b5f806118a1600c612efb565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119079190614970565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa158015611955573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119799190614d8f565b90505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b81526004016119b9929190614c32565b602060405180830381865af41580156119d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f89190614ac8565b611a3957611a2e846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189613539565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a7591908990600401614c32565b602060405180830381865af4158015611a90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ab49190614ac8565b611af857611aed846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188613539565b506060810184905260015b80156112b357826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b5e9190614970565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b8152600401611b8e93929190614d30565b5f604051808303815f87803b158015611ba5575f80fd5b505af1158015611bb7573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a1505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611c6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c8f9190614e5b565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015611cd3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105e59190614c17565b6117835f848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611759573d5f803e3d5ffd5b33611d635f8051602061579e833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614611d9e5760405162d1953b60e31b81526001600160a01b0382166004820152602401610c7d565b816001600160a01b03163b5f03611dd3576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c7d565b611890826136fc565b5f805f8051602061577e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611e48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6c9190614ac8565b15611ef7576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611ecd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ef19190614970565b91505090565b54600160601b90046001600160a01b0316919050565b611f15612f97565b611f9183846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f79919061491d565b60085f8560405180602001604052805f8152506110ae565b6001600160a01b03821615611fae57611fa98261375c565b612025565b5f611fb9600261376d565b9050612023816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061201e9190614970565b61375c565b505b612035634a531f3360e01b611074565b61178363daf9067160e01b611074565b5f8051602061579e83398151915280545f9190600160a01b900460ff1661206c575f611ef1565b638fb3603760e01b91505090565b565b3361078381600e6112ae613874565b5f80612097600f612efb565b92505091505f806120dd836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611352573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b815260040161211f929190614c32565b602060405180830381865af415801561213a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215e9190614ac8565b61219c576121918360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b613539565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916121d891908b90600401614c32565b602060405180830381865af41580156121f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122179190614ac8565b6122585761224d836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a613539565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161229591908a90600401614c32565b602060405180830381865af41580156122b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d49190614ac8565b61231b5761230f836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189613539565b50610100810185905260015b801561114957836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561235d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123819190614970565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b81526004016123b193929190614d30565b5f604051808303815f87803b1580156123c8575f80fd5b505af11580156123da573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b335f8061243683600f6112ae6138ae565b9250925050816001600160a01b0316637892982382856001600160a01b03166385ba83446040518163ffffffff1660e01b81526004016101c060405180830381865afa158015612488573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124ac9190614e76565b6040518363ffffffff1660e01b81526004016124c9929190614f48565b5f604051808303815f87803b1580156124e0575f80fd5b505af1158015611614573d5f803e3d5ffd5b5f806124fe600b612efb565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612540573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125649190614970565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156125b0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125d791908101906149e5565b60808101519091506001600160a01b0385166126065760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b03811661262d5760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b03160361265f5760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126dd9190614970565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b815260040161270d939291906150a2565b5f604051808303815f87803b158015612724575f80fd5b505af1158015612736573d5f803e3d5ffd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b335f80806127a684600c6112ae6138e8565b9250925092505f846001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa1580156127ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061280e9190614d8f565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f9061283f90859085906004016150d6565b5f604051808303815f87803b158015612856575f80fd5b505af1158015612868573d5f803e3d5ffd5b5050505061287b8484835f015185613922565b61288b8484836020015185613922565b5050505050565b61289a612f97565b6128a381611788565b6128ab6112bb565b6001600160a01b0382166128d25760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061577e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f6129138383613a89565b90508515612b12576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612971573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129959190614ac8565b15612a1457604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303815f875af11580156129ee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a12919061491d565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612a6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a8e9190614ac8565b15612b0d5760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303815f875af1158015612ae7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b0b919061491d565b505b6112b3565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612b68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b8c9190614ac8565b15612c0b5760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303815f875af1158015612be5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c09919061491d565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612c61573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c859190614ac8565b156112b3576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303815f875af1158015612cde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611614919061491d565b5f805f8051602061577e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612d6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d929190614ac8565b15612dbe5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c7d565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612e10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e349190614ac8565b612e5c5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610c7d565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612eae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ed2919061491d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f612f04614206565b5f612f176001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612f5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f7f919061491d565b9250612f8d83856001613b14565b9395909450915050565b5f805160206157be83398151915254600160401b900460ff1661207a57604051631afcd79f60e31b815260040160405180910390fd5b610260612f97565b604051637c3940bf60e01b8152600c60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611cb8565b5f805f805f80613020898989613db1565b60025460405163d943342d60e01b81526001600160a01b03808516600483015260ff8e1660248301528084166044830152949750929550909350919091169063d943342d906064015f604051808303815f875af1158015613083573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526130aa91908101906150f4565b5f01519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156130ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613110919061491d565b5060035f9054906101000a90046001600160a01b03166001600160a01b0316633931d6da846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613170573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613194919061491d565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526001600160a01b03851660248201526044015f604051808303815f87803b1580156131e1575f80fd5b505af11580156131f3573d5f803e3d5ffd5b50505050826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613233573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132579190614970565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613295573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132b99190614970565b94505f826001600160a01b03166390edbd356040518163ffffffff1660e01b81526004015f60405180830381865afa1580156132f7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261331e91908101906149e5565b9050806040015160405161333190614243565b6001600160a01b039091168152602001604051809103905ff08015801561335a573d5f803e3d5ffd5b5081606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133e7919061491d565b836040518363ffffffff1660e01b81526004016134059291906151c4565b5f604051808303815f87803b15801561341c575f80fd5b505af115801561342e573d5f803e3d5ffd5b505050505050505093509350939050565b5f613448614250565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c3906024015f60405180830381865afa158015613492573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134b991908101906149e5565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa15801561350c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135309190614d8f565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db9461357e948a948a9492939092906151e5565b60405180910390a150505050565b5f805160206157be8339815191528054600160401b810460ff1615906001600160401b03165f811580156135bd5750825b90505f826001600160401b031660011480156135d85750303b155b9050811580156135e6575080155b156136045760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561362e57845460ff60401b1916600160401b1785555b5f8087806020019051810190613644919061522b565b9092509050613654825f8b611f0d565b61365e600261376d565b600280546001600160a01b0319166001600160a01b0392909216919091179055613688600a61376d565b600380546001600160a01b0319166001600160a01b03929092169190911790556136b8636618d76960e11b611074565b5050831561161457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161160b565b5f8051602061579e83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613764612f97565b61189281614165565b5f6137806001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156137e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138079190614e5b565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561384a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061386e9190614970565b92915050565b604051637c3940bf60e01b8152600d60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611cb8565b604051637c3940bf60e01b8152600e60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611cb8565b604051637c3940bf60e01b8152600b60048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401611cb8565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613978573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061399c9190614ac8565b6107835760405163f0ea17c360e01b81526001600160601b03831660048201525f906001600160a01b0386169063f0ea17c3906024015f60405180830381865afa1580156139ec573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a1391908101906149e5565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac90613a55908690859060ff906004016150a2565b5f604051808303815f87803b158015613a6c575f80fd5b505af1158015613a7e573d5f803e3d5ffd5b505050505050505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015613ae9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b0d919061491d565b9392505050565b613b1c614206565b5f80613b306001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613b7d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613ba491908101906150f4565b925060ff8516600b14613c0257604083015160ff868116911614613bfd57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c7d565b613c9e565b613c1d8360400151613c12600c90565b60ff90811691161490565b80613c335750613c338360400151613c12600f90565b80613c495750613c498360400151613c12600e90565b80613c5f5750613c5f8360400151613c12600d90565b613c9e57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c7d565b613cab8360200151614176565b91508315613da857816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613cef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d139190614970565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015613d5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d7f9190614ac8565b15613da857604051637d71120960e11b81526001600160601b0387166004820152602401610c7d565b50935093915050565b6040516301ffc9a760e01b81526376c9b41160e11b60048201525f90849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015613e00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e249190614ac8565b613e4c576040516359bff0e360e11b81526001600160a01b0387166004820152602401610c7d565b5f826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613e88573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613eaf91908101906150f4565b9050613ec681604001518760ff9081169116141590565b15613f06576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff80891660248301529091166044820152606401610c7d565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038981166004830152919091169063d272ac1e90602401602060405180830381865afa158015613f58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f7c919061491d565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613fd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ff79190614ac8565b15614020576040516322e6526160e11b81526001600160a01b0388166004820152602401610c7d565b61402d8160200151614176565b93508060a001519150836001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015614072573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140969190614970565b60405163327e18a160e11b81526001600160a01b0384811660048301526001600160401b038816602483015291909116906364fc314290604401602060405180830381865afa1580156140eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061410f9190614ac8565b61415b576020810151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03861660248201526001600160a01b0383166044820152606401610c7d565b5093509350939050565b61416d612f97565b611892816136fc565b5f6141896001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa1580156141d5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526141fc91908101906150f4565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6105258061525983390190565b6040518061012001604052805f6001600160601b031681526020015f6001600160601b0316815260200161429560405180604001604052805f81526020015f81525090565b81526020016142b560405180604001604052805f81526020015f81525090565b81526020016142d560405180604001604052805f81526020015f81525090565b81526020016142f560405180604001604052805f81526020015f81525090565b815260200161431560405180604001604052805f81526020015f81525090565b815260200161433560405180604001604052805f81526020015f81525090565b815260200161435560405180604001604052805f81526020015f81525090565b905290565b5f6020828403121561436a575f80fd5b81356001600160e01b031981168114613b0d575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516143f7608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261443b610100840182614381565b949350505050565b6001600160a01b0381168114611892575f80fd5b6001600160601b0381168114611892575f80fd5b5f805f806080858703121561447e575f80fd5b843561448981614443565b9350602085013561449981614457565b925060408501356144a981614457565b915060608501356144b981614457565b939692955090935050565b5f602082840312156144d4575f80fd5b8135613b0d81614457565b60ff81168114611892575f80fd5b8015158114611892575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614530576145306144fa565b60405290565b60405160c081016001600160401b0381118282101715614530576145306144fa565b60405161012081016001600160401b0381118282101715614530576145306144fa565b60405161016081016001600160401b0381118282101715614530576145306144fa565b60405160e081016001600160401b0381118282101715614530576145306144fa565b604051601f8201601f191681016001600160401b03811182821017156145e8576145e86144fa565b604052919050565b5f6001600160401b03821115614608576146086144fa565b50601f01601f191660200190565b5f82601f830112614625575f80fd5b8135614638614633826145f0565b6145c0565b81815284602083860101111561464c575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c0878903121561467d575f80fd5b863561468881614443565b9550602087013561469881614457565b945060408701356146a8816144df565b935060608701356146b8816144ed565b925060808701356146c881614443565b915060a08701356001600160401b038111156146e2575f80fd5b6146ee89828a01614616565b9150509295509295509295565b5f6020828403121561470b575f80fd5b81356001600160401b03811115614720575f80fd5b61443b84828501614616565b5f6040828403121561473c575f80fd5b61474461450e565b823581526020928301359281019290925250919050565b5f806080838503121561476c575f80fd5b614776848461472c565b9150613530846040850161472c565b5f8060408385031215614796575f80fd5b82356147a181614443565b915060208301356001600160401b038111156147bb575f80fd5b6147c785828601614616565b9150509250929050565b5f805f606084860312156147e3575f80fd5b83356147ee81614443565b925060208401356147fe81614457565b9150604084013561480e81614457565b809150509250925092565b5f60208284031215614829575f80fd5b8135613b0d81614443565b5f805f60608486031215614846575f80fd5b833561485181614443565b9250602084013561486181614443565b9150604084013561480e81614443565b5f805f60c08486031215614883575f80fd5b61488d858561472c565b925061489c856040860161472c565b91506148ab856080860161472c565b90509250925092565b5f80604083850312156148c5575f80fd5b82356148d081614443565b915060208301356148e081614443565b809150509250929050565b5f602082840312156148fb575f80fd5b815162ffffff81168114613b0d575f80fd5b805161491881614457565b919050565b5f6020828403121561492d575f80fd5b8151613b0d81614457565b600181811c9082168061494c57607f821691505b60208210810361496a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614980575f80fd5b8151613b0d81614443565b5f82601f83011261499a575f80fd5b8151602083015f6149ad614633846145f0565b90508281528583830111156149c0575f80fd5b8282602083015e5f92810160200192909252509392505050565b805161491881614443565b5f602082840312156149f5575f80fd5b81516001600160401b03811115614a0a575f80fd5b820160c08185031215614a1b575f80fd5b614a23614536565b81516001600160401b03811115614a38575f80fd5b614a448682850161498b565b825250614a536020830161490d565b6020820152614a64604083016149da565b6040820152614a75606083016149da565b6060820152614a86608083016149da565b608082015260a08201516001600160401b03811115614aa3575f80fd5b614aaf8682850161498b565b60a083015250949350505050565b8051614918816144ed565b5f60208284031215614ad8575f80fd5b8151613b0d816144ed565b5f60208284031215614af3575f80fd5b5051919050565b601f82111561178357805f5260205f20601f840160051c81016020851015614b1f5750805b601f840160051c820191505b8181101561288b575f8155600101614b2b565b81516001600160401b03811115614b5757614b576144fa565b614b6b81614b658454614938565b84614afa565b6020601f821160018114614b9d575f8315614b865750848201515b5f19600385901b1c1916600184901b17845561288b565b5f84815260208120601f198516915b82811015614bcc5787850151825560209485019460019092019101614bac565b5084821015614be957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114611892575f80fd5b805161491881614bf8565b5f60208284031215614c27575f80fd5b8151613b0d81614bf8565b825181526020808401518183015282516040830152820151606082015260808101613b0d565b6001600160601b0381511682526020810151614c7f60208401826001600160601b03169052565b506040810151614c9c604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a0810151805161010084015260208101516101208401525060c0810151805161014084015260208101516101608401525060e0810151805161018084015260208101516101a084015250610100015180516101c0830152602001516101e090910152565b6001600160601b03841681526102408101614d4e6020830185614c58565b60ff8316610220830152949350505050565b5f60408284031215614d70575f80fd5b614d7861450e565b825181526020928301519281019290925250919050565b5f610200828403128015614da1575f80fd5b50614daa614558565b614db38361490d565b8152614dc16020840161490d565b6020820152614dd38460408501614d60565b6040820152614de58460808501614d60565b6060820152614df78460c08501614d60565b6080820152614e0a846101008501614d60565b60a0820152614e1d846101408501614d60565b60c0820152614e30846101808501614d60565b60e0820152614e43846101c08501614d60565b6101008201529392505050565b8051614918816144df565b5f60208284031215614e6b575f80fd5b8151613b0d816144df565b5f6101c0828403128015614e88575f80fd5b50614e9161457b565b614e9a8361490d565b8152614ea860208401614c0c565b6020820152614eb96040840161490d565b6040820152614eca60608401614abd565b6060820152614edb60808401614abd565b6080820152614eec60a08401614abd565b60a082015260c0838101519082015260e08084015190820152614f13846101008501614d60565b610100820152614f27846101408501614d60565b610120820152614f3b846101808501614d60565b6101408201529392505050565b6001600160601b03838116825282511660208201526101e0810160208301516001600160401b03811660408401525060408301516001600160601b0381166060840152506060830151801515608084015250608083015180151560a08401525060a083015180151560c08401525060c083015160e083015260e0830151610100830152610100830151614fe961012084018280518252602090810151910152565b5061012083015180516101608401526020908101516101808401526101409093015180516101a0840152909201516101c090910152919050565b5f815160c0845261503760c0850182614381565b90506001600160601b03602084015116602085015260018060a01b03604084015116604085015260018060a01b03606084015116606085015260018060a01b03608084015116608085015260a083015184820360a08601526150998282614381565b95945050505050565b6001600160601b0384168152606060208201525f6150c36060830185615023565b905060ff83166040830152949350505050565b6001600160601b03831681526102208101613b0d6020830184614c58565b5f60208284031215615104575f80fd5b81516001600160401b03811115615119575f80fd5b820160e0818503121561512a575f80fd5b61513261459e565b61513b8261490d565b81526151496020830161490d565b602082015261515a60408301614e50565b604082015261516b60608301614abd565b606082015261517c608083016149da565b608082015261518d60a083016149da565b60a082015260c08201516001600160401b038111156151aa575f80fd5b6151b68682850161498b565b60c083015250949350505050565b6001600160601b0383168152604060208201525f61443b6040830184615023565b6001600160601b038716815260c060208201525f61520660c0830188614381565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f806040838503121561523c575f80fd5b825161524781614443565b60208401519092506148e08161444356fe6080604052348015600e575f80fd5b50604051610525380380610525833981016040819052602b91604e565b5f80546001600160a01b0319166001600160a01b03929092169190911790556079565b5f60208284031215605d575f80fd5b81516001600160a01b03811681146072575f80fd5b9392505050565b61049f806100865f395ff3fe608060405234801561000f575f80fd5b506004361061003f575f3560e01c806321df0da7146100435780638d7271c314610061578063c661667d14610076575b5f80fd5b5f54604080516001600160a01b039092168252519081900360200190f35b61007461006f36600461038c565b610089565b005b6100746100843660046103dd565b610119565b60405163046e44af60e11b81526001600160601b03821660048201526101139085908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af41580156100ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061010e919061041d565b610172565b50505050565b5f5460405163046e44af60e11b81526001600160601b038316600482015261016d916001600160a01b0316908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024016100cf565b505050565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610113918691905f906101d790841683610229565b905080515f141580156101fb5750808060200190518101906101f99190610434565b155b1561016d57604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061023683835f61023d565b9392505050565b6060814710156102625760405163cd78605960e01b8152306004820152602401610220565b5f80856001600160a01b0316848660405161027d9190610453565b5f6040518083038185875af1925050503d805f81146102b7576040519150601f19603f3d011682016040523d82523d5f602084013e6102bc565b606091505b50915091506102cc8683836102d6565b9695505050505050565b6060826102eb576102e682610332565b610236565b815115801561030257506001600160a01b0384163b155b1561032b57604051639996b31560e01b81526001600160a01b0385166004820152602401610220565b5080610236565b8051156103425780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b0381168114610371575f80fd5b919050565b80356001600160601b0381168114610371575f80fd5b5f805f806080858703121561039f575f80fd5b6103a88561035b565b93506103b66020860161035b565b92506103c46040860161035b565b91506103d260608601610376565b905092959194509250565b5f805f606084860312156103ef575f80fd5b6103f88461035b565b92506104066020850161035b565b915061041460408501610376565b90509250925092565b5f6020828403121561042d575f80fd5b5051919050565b5f60208284031215610444575f80fd5b81518015158114610236575f80fd5b5f82518060208501845e5f92019182525091905056fea2646970667358221220539f547adb392249ed7070a99baf9312312fb2b11f1cc725a2c1af466c2626f064736f6c634300081a003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220b0ff497429278fce228fcf4f89d185176580c8cbd41023a31a3482f9b9d6bcb064736f6c634300081a0033",
         | 
| 1352 | 
            +
              "linkReferences": {
         | 
| 1353 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1354 | 
            +
                  "AmountLib": [
         | 
| 1355 | 
            +
                    {
         | 
| 1356 | 
            +
                      "length": 20,
         | 
| 1357 | 
            +
                      "start": 2408
         | 
| 1358 | 
            +
                    },
         | 
| 1359 | 
            +
                    {
         | 
| 1360 | 
            +
                      "length": 20,
         | 
| 1361 | 
            +
                      "start": 2436
         | 
| 1362 | 
            +
                    },
         | 
| 1363 | 
            +
                    {
         | 
| 1364 | 
            +
                      "length": 20,
         | 
| 1365 | 
            +
                      "start": 2901
         | 
| 1366 | 
            +
                    },
         | 
| 1367 | 
            +
                    {
         | 
| 1368 | 
            +
                      "length": 20,
         | 
| 1369 | 
            +
                      "start": 3274
         | 
| 1370 | 
            +
                    },
         | 
| 1371 | 
            +
                    {
         | 
| 1372 | 
            +
                      "length": 20,
         | 
| 1373 | 
            +
                      "start": 3580
         | 
| 1374 | 
            +
                    },
         | 
| 1375 | 
            +
                    {
         | 
| 1376 | 
            +
                      "length": 20,
         | 
| 1377 | 
            +
                      "start": 3715
         | 
| 1378 | 
            +
                    },
         | 
| 1379 | 
            +
                    {
         | 
| 1380 | 
            +
                      "length": 20,
         | 
| 1381 | 
            +
                      "start": 3966
         | 
| 1382 | 
            +
                    },
         | 
| 1383 | 
            +
                    {
         | 
| 1384 | 
            +
                      "length": 20,
         | 
| 1385 | 
            +
                      "start": 6122
         | 
| 1386 | 
            +
                    },
         | 
| 1387 | 
            +
                    {
         | 
| 1388 | 
            +
                      "length": 20,
         | 
| 1389 | 
            +
                      "start": 7637
         | 
| 1390 | 
            +
                    },
         | 
| 1391 | 
            +
                    {
         | 
| 1392 | 
            +
                      "length": 20,
         | 
| 1393 | 
            +
                      "start": 10767
         | 
| 1394 | 
            +
                    },
         | 
| 1395 | 
            +
                    {
         | 
| 1396 | 
            +
                      "length": 20,
         | 
| 1397 | 
            +
                      "start": 11016
         | 
| 1398 | 
            +
                    },
         | 
| 1399 | 
            +
                    {
         | 
| 1400 | 
            +
                      "length": 20,
         | 
| 1401 | 
            +
                      "start": 11270
         | 
| 1402 | 
            +
                    },
         | 
| 1403 | 
            +
                    {
         | 
| 1404 | 
            +
                      "length": 20,
         | 
| 1405 | 
            +
                      "start": 11519
         | 
| 1406 | 
            +
                    },
         | 
| 1407 | 
            +
                    {
         | 
| 1408 | 
            +
                      "length": 20,
         | 
| 1409 | 
            +
                      "start": 15239
         | 
| 1410 | 
            +
                    },
         | 
| 1411 | 
            +
                    {
         | 
| 1412 | 
            +
                      "length": 20,
         | 
| 1413 | 
            +
                      "start": 21606
         | 
| 1414 | 
            +
                    },
         | 
| 1415 | 
            +
                    {
         | 
| 1416 | 
            +
                      "length": 20,
         | 
| 1417 | 
            +
                      "start": 21760
         | 
| 1418 | 
            +
                    }
         | 
| 1419 | 
            +
                  ]
         | 
| 1420 | 
            +
                },
         | 
| 1421 | 
            +
                "contracts/type/Fee.sol": {
         | 
| 1422 | 
            +
                  "FeeLib": [
         | 
| 1423 | 
            +
                    {
         | 
| 1424 | 
            +
                      "length": 20,
         | 
| 1425 | 
            +
                      "start": 5209
         | 
| 1426 | 
            +
                    },
         | 
| 1427 | 
            +
                    {
         | 
| 1428 | 
            +
                      "length": 20,
         | 
| 1429 | 
            +
                      "start": 5420
         | 
| 1430 | 
            +
                    },
         | 
| 1431 | 
            +
                    {
         | 
| 1432 | 
            +
                      "length": 20,
         | 
| 1433 | 
            +
                      "start": 6740
         | 
| 1434 | 
            +
                    },
         | 
| 1435 | 
            +
                    {
         | 
| 1436 | 
            +
                      "length": 20,
         | 
| 1437 | 
            +
                      "start": 6946
         | 
| 1438 | 
            +
                    },
         | 
| 1439 | 
            +
                    {
         | 
| 1440 | 
            +
                      "length": 20,
         | 
| 1441 | 
            +
                      "start": 8634
         | 
| 1442 | 
            +
                    },
         | 
| 1443 | 
            +
                    {
         | 
| 1444 | 
            +
                      "length": 20,
         | 
| 1445 | 
            +
                      "start": 8837
         | 
| 1446 | 
            +
                    },
         | 
| 1447 | 
            +
                    {
         | 
| 1448 | 
            +
                      "length": 20,
         | 
| 1449 | 
            +
                      "start": 9026
         | 
| 1450 | 
            +
                    }
         | 
| 1451 | 
            +
                  ]
         | 
| 1452 | 
            +
                },
         | 
| 1453 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1454 | 
            +
                  "NftIdLib": [
         | 
| 1455 | 
            +
                    {
         | 
| 1456 | 
            +
                      "length": 20,
         | 
| 1457 | 
            +
                      "start": 1785
         | 
| 1458 | 
            +
                    },
         | 
| 1459 | 
            +
                    {
         | 
| 1460 | 
            +
                      "length": 20,
         | 
| 1461 | 
            +
                      "start": 7910
         | 
| 1462 | 
            +
                    },
         | 
| 1463 | 
            +
                    {
         | 
| 1464 | 
            +
                      "length": 20,
         | 
| 1465 | 
            +
                      "start": 11788
         | 
| 1466 | 
            +
                    },
         | 
| 1467 | 
            +
                    {
         | 
| 1468 | 
            +
                      "length": 20,
         | 
| 1469 | 
            +
                      "start": 14870
         | 
| 1470 | 
            +
                    },
         | 
| 1471 | 
            +
                    {
         | 
| 1472 | 
            +
                      "length": 20,
         | 
| 1473 | 
            +
                      "start": 16497
         | 
| 1474 | 
            +
                    }
         | 
| 1475 | 
            +
                  ]
         | 
| 1476 | 
            +
                },
         | 
| 1477 | 
            +
                "contracts/type/RoleId.sol": {
         | 
| 1478 | 
            +
                  "RoleIdLib": [
         | 
| 1479 | 
            +
                    {
         | 
| 1480 | 
            +
                      "length": 20,
         | 
| 1481 | 
            +
                      "start": 7385
         | 
| 1482 | 
            +
                    },
         | 
| 1483 | 
            +
                    {
         | 
| 1484 | 
            +
                      "length": 20,
         | 
| 1485 | 
            +
                      "start": 12483
         | 
| 1486 | 
            +
                    },
         | 
| 1487 | 
            +
                    {
         | 
| 1488 | 
            +
                      "length": 20,
         | 
| 1489 | 
            +
                      "start": 14690
         | 
| 1490 | 
            +
                    },
         | 
| 1491 | 
            +
                    {
         | 
| 1492 | 
            +
                      "length": 20,
         | 
| 1493 | 
            +
                      "start": 14748
         | 
| 1494 | 
            +
                    },
         | 
| 1495 | 
            +
                    {
         | 
| 1496 | 
            +
                      "length": 20,
         | 
| 1497 | 
            +
                      "start": 14806
         | 
| 1498 | 
            +
                    }
         | 
| 1499 | 
            +
                  ]
         | 
| 1500 | 
            +
                },
         | 
| 1501 | 
            +
                "contracts/type/Version.sol": {
         | 
| 1502 | 
            +
                  "VersionLib": [
         | 
| 1503 | 
            +
                    {
         | 
| 1504 | 
            +
                      "length": 20,
         | 
| 1505 | 
            +
                      "start": 1631
         | 
| 1506 | 
            +
                    },
         | 
| 1507 | 
            +
                    {
         | 
| 1508 | 
            +
                      "length": 20,
         | 
| 1509 | 
            +
                      "start": 4651
         | 
| 1510 | 
            +
                    }
         | 
| 1511 | 
            +
                  ],
         | 
| 1512 | 
            +
                  "VersionPartLib": [
         | 
| 1513 | 
            +
                    {
         | 
| 1514 | 
            +
                      "length": 20,
         | 
| 1515 | 
            +
                      "start": 7433
         | 
| 1516 | 
            +
                    },
         | 
| 1517 | 
            +
                    {
         | 
| 1518 | 
            +
                      "length": 20,
         | 
| 1519 | 
            +
                      "start": 14465
         | 
| 1520 | 
            +
                    }
         | 
| 1521 | 
            +
                  ]
         | 
| 1522 | 
            +
                }
         | 
| 1523 | 
            +
              },
         | 
| 1524 | 
            +
              "deployedLinkReferences": {
         | 
| 1525 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1526 | 
            +
                  "AmountLib": [
         | 
| 1527 | 
            +
                    {
         | 
| 1528 | 
            +
                      "length": 20,
         | 
| 1529 | 
            +
                      "start": 2194
         | 
| 1530 | 
            +
                    },
         | 
| 1531 | 
            +
                    {
         | 
| 1532 | 
            +
                      "length": 20,
         | 
| 1533 | 
            +
                      "start": 2222
         | 
| 1534 | 
            +
                    },
         | 
| 1535 | 
            +
                    {
         | 
| 1536 | 
            +
                      "length": 20,
         | 
| 1537 | 
            +
                      "start": 2687
         | 
| 1538 | 
            +
                    },
         | 
| 1539 | 
            +
                    {
         | 
| 1540 | 
            +
                      "length": 20,
         | 
| 1541 | 
            +
                      "start": 3060
         | 
| 1542 | 
            +
                    },
         | 
| 1543 | 
            +
                    {
         | 
| 1544 | 
            +
                      "length": 20,
         | 
| 1545 | 
            +
                      "start": 3366
         | 
| 1546 | 
            +
                    },
         | 
| 1547 | 
            +
                    {
         | 
| 1548 | 
            +
                      "length": 20,
         | 
| 1549 | 
            +
                      "start": 3501
         | 
| 1550 | 
            +
                    },
         | 
| 1551 | 
            +
                    {
         | 
| 1552 | 
            +
                      "length": 20,
         | 
| 1553 | 
            +
                      "start": 3752
         | 
| 1554 | 
            +
                    },
         | 
| 1555 | 
            +
                    {
         | 
| 1556 | 
            +
                      "length": 20,
         | 
| 1557 | 
            +
                      "start": 5908
         | 
| 1558 | 
            +
                    },
         | 
| 1559 | 
            +
                    {
         | 
| 1560 | 
            +
                      "length": 20,
         | 
| 1561 | 
            +
                      "start": 7423
         | 
| 1562 | 
            +
                    },
         | 
| 1563 | 
            +
                    {
         | 
| 1564 | 
            +
                      "length": 20,
         | 
| 1565 | 
            +
                      "start": 10553
         | 
| 1566 | 
            +
                    },
         | 
| 1567 | 
            +
                    {
         | 
| 1568 | 
            +
                      "length": 20,
         | 
| 1569 | 
            +
                      "start": 10802
         | 
| 1570 | 
            +
                    },
         | 
| 1571 | 
            +
                    {
         | 
| 1572 | 
            +
                      "length": 20,
         | 
| 1573 | 
            +
                      "start": 11056
         | 
| 1574 | 
            +
                    },
         | 
| 1575 | 
            +
                    {
         | 
| 1576 | 
            +
                      "length": 20,
         | 
| 1577 | 
            +
                      "start": 11305
         | 
| 1578 | 
            +
                    },
         | 
| 1579 | 
            +
                    {
         | 
| 1580 | 
            +
                      "length": 20,
         | 
| 1581 | 
            +
                      "start": 15025
         | 
| 1582 | 
            +
                    },
         | 
| 1583 | 
            +
                    {
         | 
| 1584 | 
            +
                      "length": 20,
         | 
| 1585 | 
            +
                      "start": 21392
         | 
| 1586 | 
            +
                    },
         | 
| 1587 | 
            +
                    {
         | 
| 1588 | 
            +
                      "length": 20,
         | 
| 1589 | 
            +
                      "start": 21546
         | 
| 1590 | 
            +
                    }
         | 
| 1591 | 
            +
                  ]
         | 
| 1592 | 
            +
                },
         | 
| 1593 | 
            +
                "contracts/type/Fee.sol": {
         | 
| 1594 | 
            +
                  "FeeLib": [
         | 
| 1595 | 
            +
                    {
         | 
| 1596 | 
            +
                      "length": 20,
         | 
| 1597 | 
            +
                      "start": 4995
         | 
| 1598 | 
            +
                    },
         | 
| 1599 | 
            +
                    {
         | 
| 1600 | 
            +
                      "length": 20,
         | 
| 1601 | 
            +
                      "start": 5206
         | 
| 1602 | 
            +
                    },
         | 
| 1603 | 
            +
                    {
         | 
| 1604 | 
            +
                      "length": 20,
         | 
| 1605 | 
            +
                      "start": 6526
         | 
| 1606 | 
            +
                    },
         | 
| 1607 | 
            +
                    {
         | 
| 1608 | 
            +
                      "length": 20,
         | 
| 1609 | 
            +
                      "start": 6732
         | 
| 1610 | 
            +
                    },
         | 
| 1611 | 
            +
                    {
         | 
| 1612 | 
            +
                      "length": 20,
         | 
| 1613 | 
            +
                      "start": 8420
         | 
| 1614 | 
            +
                    },
         | 
| 1615 | 
            +
                    {
         | 
| 1616 | 
            +
                      "length": 20,
         | 
| 1617 | 
            +
                      "start": 8623
         | 
| 1618 | 
            +
                    },
         | 
| 1619 | 
            +
                    {
         | 
| 1620 | 
            +
                      "length": 20,
         | 
| 1621 | 
            +
                      "start": 8812
         | 
| 1622 | 
            +
                    }
         | 
| 1623 | 
            +
                  ]
         | 
| 1624 | 
            +
                },
         | 
| 1625 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1626 | 
            +
                  "NftIdLib": [
         | 
| 1627 | 
            +
                    {
         | 
| 1628 | 
            +
                      "length": 20,
         | 
| 1629 | 
            +
                      "start": 1571
         | 
| 1630 | 
            +
                    },
         | 
| 1631 | 
            +
                    {
         | 
| 1632 | 
            +
                      "length": 20,
         | 
| 1633 | 
            +
                      "start": 7696
         | 
| 1634 | 
            +
                    },
         | 
| 1635 | 
            +
                    {
         | 
| 1636 | 
            +
                      "length": 20,
         | 
| 1637 | 
            +
                      "start": 11574
         | 
| 1638 | 
            +
                    },
         | 
| 1639 | 
            +
                    {
         | 
| 1640 | 
            +
                      "length": 20,
         | 
| 1641 | 
            +
                      "start": 14656
         | 
| 1642 | 
            +
                    },
         | 
| 1643 | 
            +
                    {
         | 
| 1644 | 
            +
                      "length": 20,
         | 
| 1645 | 
            +
                      "start": 16283
         | 
| 1646 | 
            +
                    }
         | 
| 1647 | 
            +
                  ]
         | 
| 1648 | 
            +
                },
         | 
| 1649 | 
            +
                "contracts/type/RoleId.sol": {
         | 
| 1650 | 
            +
                  "RoleIdLib": [
         | 
| 1651 | 
            +
                    {
         | 
| 1652 | 
            +
                      "length": 20,
         | 
| 1653 | 
            +
                      "start": 7171
         | 
| 1654 | 
            +
                    },
         | 
| 1655 | 
            +
                    {
         | 
| 1656 | 
            +
                      "length": 20,
         | 
| 1657 | 
            +
                      "start": 12269
         | 
| 1658 | 
            +
                    },
         | 
| 1659 | 
            +
                    {
         | 
| 1660 | 
            +
                      "length": 20,
         | 
| 1661 | 
            +
                      "start": 14476
         | 
| 1662 | 
            +
                    },
         | 
| 1663 | 
            +
                    {
         | 
| 1664 | 
            +
                      "length": 20,
         | 
| 1665 | 
            +
                      "start": 14534
         | 
| 1666 | 
            +
                    },
         | 
| 1667 | 
            +
                    {
         | 
| 1668 | 
            +
                      "length": 20,
         | 
| 1669 | 
            +
                      "start": 14592
         | 
| 1670 | 
            +
                    }
         | 
| 1671 | 
            +
                  ]
         | 
| 1672 | 
            +
                },
         | 
| 1673 | 
            +
                "contracts/type/Version.sol": {
         | 
| 1674 | 
            +
                  "VersionLib": [
         | 
| 1675 | 
            +
                    {
         | 
| 1676 | 
            +
                      "length": 20,
         | 
| 1677 | 
            +
                      "start": 1417
         | 
| 1678 | 
            +
                    },
         | 
| 1679 | 
            +
                    {
         | 
| 1680 | 
            +
                      "length": 20,
         | 
| 1681 | 
            +
                      "start": 4437
         | 
| 1682 | 
            +
                    }
         | 
| 1683 | 
            +
                  ],
         | 
| 1684 | 
            +
                  "VersionPartLib": [
         | 
| 1685 | 
            +
                    {
         | 
| 1686 | 
            +
                      "length": 20,
         | 
| 1687 | 
            +
                      "start": 7219
         | 
| 1688 | 
            +
                    },
         | 
| 1689 | 
            +
                    {
         | 
| 1690 | 
            +
                      "length": 20,
         | 
| 1691 | 
            +
                      "start": 14251
         | 
| 1692 | 
            +
                    }
         | 
| 1693 | 
            +
                  ]
         | 
| 1694 | 
            +
                }
         | 
| 1695 | 
            +
              }
         | 
| 1696 | 
            +
            }
         |