@etherisc/gif-next 0.0.2-f398177-971 → 0.0.2-f47f21f-178
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -5
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1293 -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 +414 -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 +1060 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +295 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
- package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +4 -0
- package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +1196 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1402 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +470 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1048 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1439 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +830 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +221 -292
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +216 -95
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1538 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +470 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2077 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +470 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1471 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1231 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1592 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2095 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +118 -97
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +171 -85
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +126 -226
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1653 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +561 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +874 -385
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +247 -231
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +151 -85
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1288 -398
- 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 +223 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +8 -116
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1039 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +478 -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 +788 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +262 -204
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → oracle/Oracle.sol/Oracle.json} +318 -272
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +966 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +722 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +305 -413
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +470 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1465 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +834 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +257 -32
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +960 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +463 -257
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +379 -376
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1625 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +766 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +771 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +710 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +387 -412
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +470 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1431 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +838 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +55 -2
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → product}/IClaimService.sol/IClaimService.json +207 -8
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +925 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → product}/IPricingService.sol/IPricingService.json +155 -87
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1012 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +44 -57
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1302 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +782 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +907 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +762 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1131 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +622 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +694 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +435 -29
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +270 -109
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +865 -68
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1886 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +334 -238
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +138 -82
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1067 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -140
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +725 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1768 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +814 -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} +59 -216
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +111 -115
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1335 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +723 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +23 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +16 -30
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +36 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +49 -1
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/{components/Component.sol/Component.json → shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json} +213 -257
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -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 +28 -57
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +20 -124
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +70 -87
- 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 +55 -101
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +364 -9
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +688 -599
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1043 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1888 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +776 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1249 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +710 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -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 +398 -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 +203 -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 +142 -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 +246 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +39 -7
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -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 +602 -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 +596 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +289 -0
- package/contracts/authorization/IAccess.sol +49 -0
- package/contracts/authorization/IAccessAdmin.sol +137 -0
- package/contracts/authorization/IAuthorization.sol +60 -0
- package/contracts/authorization/IServiceAuthorization.sol +40 -0
- package/contracts/authorization/ReleaseAccessManager.sol +38 -0
- package/contracts/authorization/ServiceAuthorization.sol +106 -0
- package/contracts/distribution/BasicDistribution.sol +139 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
- package/contracts/{components → distribution}/Distribution.sol +160 -160
- package/contracts/distribution/DistributionService.sol +355 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/{instance/service → distribution}/IDistributionService.sol +32 -18
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +75 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
- package/contracts/examples/fire/FireProduct.sol +418 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +44 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
- package/contracts/instance/{BundleManager.sol → BundleSet.sol} +27 -27
- package/contracts/instance/IInstance.sol +33 -44
- package/contracts/instance/IInstanceService.sol +34 -35
- package/contracts/instance/Instance.sol +129 -126
- package/contracts/instance/InstanceAdmin.sol +277 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +194 -0
- package/contracts/instance/InstanceReader.sol +202 -75
- package/contracts/instance/InstanceService.sol +250 -147
- package/contracts/instance/InstanceServiceManager.sol +14 -29
- package/contracts/instance/InstanceStore.sol +148 -73
- 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 +111 -0
- package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +18 -21
- package/contracts/instance/module/IAccess.sol +4 -12
- package/contracts/instance/module/IBundle.sol +6 -9
- package/contracts/instance/module/IComponents.sol +26 -16
- package/contracts/instance/module/IDistribution.sol +5 -6
- package/contracts/instance/module/IPolicy.sol +40 -33
- package/contracts/instance/module/IRisk.sol +1 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +47 -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 +66 -0
- package/contracts/oracle/Oracle.sol +156 -0
- package/contracts/oracle/OracleService.sol +291 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +154 -0
- package/contracts/pool/BasicPoolAuthorization.sol +57 -0
- package/contracts/pool/BundleService.sol +493 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/{instance/service → pool}/IBundleService.sol +54 -29
- package/contracts/pool/IPoolComponent.sol +68 -0
- package/contracts/pool/IPoolService.sol +167 -0
- package/contracts/pool/Pool.sol +335 -0
- package/contracts/pool/PoolService.sol +544 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +259 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
- package/contracts/product/BasicProduct.sol +53 -0
- package/contracts/product/BasicProductAuthorization.sol +42 -0
- package/contracts/product/ClaimService.sol +612 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
- package/contracts/{instance/service → product}/IApplicationService.sol +10 -9
- package/contracts/{instance/service → product}/IClaimService.sol +51 -18
- package/contracts/product/IPolicyService.sol +80 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +59 -0
- package/contracts/product/IRiskService.sol +33 -0
- package/contracts/product/PolicyService.sol +697 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +455 -0
- package/contracts/product/RiskService.sol +96 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +75 -38
- package/contracts/registry/IRegistry.sol +96 -26
- package/contracts/registry/IRegistryService.sol +34 -38
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +445 -195
- package/contracts/registry/RegistryAdmin.sol +448 -0
- package/contracts/registry/RegistryService.sol +87 -132
- package/contracts/registry/RegistryServiceManager.sol +23 -32
- package/contracts/registry/ReleaseLifecycle.sol +30 -0
- package/contracts/registry/ReleaseRegistry.sol +501 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +194 -0
- package/contracts/registry/TokenRegistry.sol +261 -62
- package/contracts/shared/Component.sol +265 -0
- package/contracts/shared/ComponentService.sol +735 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +126 -0
- package/contracts/shared/ContractLib.sol +38 -0
- package/contracts/{components → shared}/IComponent.sol +25 -41
- package/contracts/shared/IComponentService.sol +120 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +41 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
- package/contracts/shared/INftOwnable.sol +4 -2
- package/contracts/shared/IPolicyHolder.sol +16 -21
- package/contracts/shared/IRegisterable.sol +11 -0
- package/contracts/shared/IService.sol +10 -3
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
- package/contracts/shared/InstanceLinkedComponent.sol +213 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +88 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +32 -23
- package/contracts/shared/PolicyHolder.sol +20 -52
- package/contracts/shared/Registerable.sol +22 -12
- package/contracts/shared/RegistryLinked.sol +3 -2
- package/contracts/shared/Service.sol +48 -36
- package/contracts/shared/TokenHandler.sol +113 -9
- package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +157 -0
- package/contracts/staking/StakeManagerLib.sol +224 -0
- package/contracts/staking/Staking.sol +497 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +190 -0
- package/contracts/staking/StakingService.sol +393 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/{types → type}/Amount.sol +44 -3
- package/contracts/{types → type}/Blocknumber.sol +26 -3
- package/contracts/{types → type}/ClaimId.sol +6 -1
- package/contracts/{types → type}/Fee.sol +17 -16
- package/contracts/{types → type}/NftId.sol +15 -16
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +276 -0
- package/contracts/{types → type}/PayoutId.sol +10 -10
- package/contracts/{types → type}/Referral.sol +2 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/{types → type}/RiskId.sol +16 -2
- package/contracts/type/RoleId.sol +162 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +41 -2
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +17 -3
- package/contracts/{types → type}/UFixed.sol +38 -9
- package/contracts/{types → type}/Version.sol +4 -2
- package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +93 -30
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
- package/package.json +9 -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/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 -1348
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +0 -124
- 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 -918
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -648
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1288
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -696
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -1384
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -752
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1556
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -780
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1281
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -740
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1622
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -708
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +0 -1004
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +0 -688
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -864
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -640
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
- 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 -569
- 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 -370
- 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 -588
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -281
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -179
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -312
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -209
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
- 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 -272
- package/contracts/components/IDistributionComponent.sol +0 -71
- package/contracts/components/IPoolComponent.sol +0 -114
- package/contracts/components/IProductComponent.sol +0 -41
- package/contracts/components/Pool.sol +0 -302
- package/contracts/components/Product.sol +0 -375
- package/contracts/instance/Cloneable.sol +0 -51
- package/contracts/instance/InstanceAccessManager.sol +0 -541
- package/contracts/instance/InstanceAuthorizationsLib.sol +0 -308
- package/contracts/instance/base/ComponentService.sol +0 -148
- package/contracts/instance/base/KeyValueStore.sol +0 -149
- package/contracts/instance/base/Lifecycle.sol +0 -120
- package/contracts/instance/module/ISetup.sol +0 -33
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -186
- package/contracts/instance/service/BundleService.sol +0 -382
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -437
- package/contracts/instance/service/DistributionService.sol +0 -348
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IPolicyService.sol +0 -80
- package/contracts/instance/service/IPoolService.sol +0 -114
- package/contracts/instance/service/IPricingService.sol +0 -37
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -376
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -403
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/PricingService.sol +0 -275
- package/contracts/instance/service/PricingServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -210
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -324
- package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +0 -13
- 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 -161
- package/contracts/types/RoleId.sol +0 -97
- package/contracts/types/Seconds.sol +0 -54
- /package/contracts/{types → type}/DistributorType.sol +0 -0
- /package/contracts/{types → type}/Key32.sol +0 -0
| @@ -0,0 +1,1293 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "AccessAdmin",
         | 
| 4 | 
            +
              "sourceName": "contracts/authorization/AccessAdmin.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [],
         | 
| 8 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 9 | 
            +
                  "type": "constructor"
         | 
| 10 | 
            +
                },
         | 
| 11 | 
            +
                {
         | 
| 12 | 
            +
                  "inputs": [
         | 
| 13 | 
            +
                    {
         | 
| 14 | 
            +
                      "internalType": "address",
         | 
| 15 | 
            +
                      "name": "authority",
         | 
| 16 | 
            +
                      "type": "address"
         | 
| 17 | 
            +
                    }
         | 
| 18 | 
            +
                  ],
         | 
| 19 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 20 | 
            +
                  "type": "error"
         | 
| 21 | 
            +
                },
         | 
| 22 | 
            +
                {
         | 
| 23 | 
            +
                  "inputs": [
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "address",
         | 
| 26 | 
            +
                      "name": "caller",
         | 
| 27 | 
            +
                      "type": "address"
         | 
| 28 | 
            +
                    },
         | 
| 29 | 
            +
                    {
         | 
| 30 | 
            +
                      "internalType": "uint32",
         | 
| 31 | 
            +
                      "name": "delay",
         | 
| 32 | 
            +
                      "type": "uint32"
         | 
| 33 | 
            +
                    }
         | 
| 34 | 
            +
                  ],
         | 
| 35 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 36 | 
            +
                  "type": "error"
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
                {
         | 
| 39 | 
            +
                  "inputs": [
         | 
| 40 | 
            +
                    {
         | 
| 41 | 
            +
                      "internalType": "address",
         | 
| 42 | 
            +
                      "name": "caller",
         | 
| 43 | 
            +
                      "type": "address"
         | 
| 44 | 
            +
                    }
         | 
| 45 | 
            +
                  ],
         | 
| 46 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 47 | 
            +
                  "type": "error"
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                {
         | 
| 50 | 
            +
                  "inputs": [],
         | 
| 51 | 
            +
                  "name": "ErrorAdminRoleMissing",
         | 
| 52 | 
            +
                  "type": "error"
         | 
| 53 | 
            +
                },
         | 
| 54 | 
            +
                {
         | 
| 55 | 
            +
                  "inputs": [],
         | 
| 56 | 
            +
                  "name": "ErrorAuthorityAlreadySet",
         | 
| 57 | 
            +
                  "type": "error"
         | 
| 58 | 
            +
                },
         | 
| 59 | 
            +
                {
         | 
| 60 | 
            +
                  "inputs": [
         | 
| 61 | 
            +
                    {
         | 
| 62 | 
            +
                      "internalType": "address",
         | 
| 63 | 
            +
                      "name": "target",
         | 
| 64 | 
            +
                      "type": "address"
         | 
| 65 | 
            +
                    }
         | 
| 66 | 
            +
                  ],
         | 
| 67 | 
            +
                  "name": "ErrorAuthorizeForAdminRoleInvalid",
         | 
| 68 | 
            +
                  "type": "error"
         | 
| 69 | 
            +
                },
         | 
| 70 | 
            +
                {
         | 
| 71 | 
            +
                  "inputs": [
         | 
| 72 | 
            +
                    {
         | 
| 73 | 
            +
                      "internalType": "RoleId",
         | 
| 74 | 
            +
                      "name": "adminRoleId",
         | 
| 75 | 
            +
                      "type": "uint64"
         | 
| 76 | 
            +
                    }
         | 
| 77 | 
            +
                  ],
         | 
| 78 | 
            +
                  "name": "ErrorNotAdminOfRole",
         | 
| 79 | 
            +
                  "type": "error"
         | 
| 80 | 
            +
                },
         | 
| 81 | 
            +
                {
         | 
| 82 | 
            +
                  "inputs": [],
         | 
| 83 | 
            +
                  "name": "ErrorNotDeployer",
         | 
| 84 | 
            +
                  "type": "error"
         | 
| 85 | 
            +
                },
         | 
| 86 | 
            +
                {
         | 
| 87 | 
            +
                  "inputs": [
         | 
| 88 | 
            +
                    {
         | 
| 89 | 
            +
                      "internalType": "RoleId",
         | 
| 90 | 
            +
                      "name": "roleId",
         | 
| 91 | 
            +
                      "type": "uint64"
         | 
| 92 | 
            +
                    }
         | 
| 93 | 
            +
                  ],
         | 
| 94 | 
            +
                  "name": "ErrorNotRoleOwner",
         | 
| 95 | 
            +
                  "type": "error"
         | 
| 96 | 
            +
                },
         | 
| 97 | 
            +
                {
         | 
| 98 | 
            +
                  "inputs": [
         | 
| 99 | 
            +
                    {
         | 
| 100 | 
            +
                      "internalType": "RoleId",
         | 
| 101 | 
            +
                      "name": "adminRoleId",
         | 
| 102 | 
            +
                      "type": "uint64"
         | 
| 103 | 
            +
                    }
         | 
| 104 | 
            +
                  ],
         | 
| 105 | 
            +
                  "name": "ErrorRoleAdminNotExisting",
         | 
| 106 | 
            +
                  "type": "error"
         | 
| 107 | 
            +
                },
         | 
| 108 | 
            +
                {
         | 
| 109 | 
            +
                  "inputs": [
         | 
| 110 | 
            +
                    {
         | 
| 111 | 
            +
                      "internalType": "RoleId",
         | 
| 112 | 
            +
                      "name": "roleId",
         | 
| 113 | 
            +
                      "type": "uint64"
         | 
| 114 | 
            +
                    },
         | 
| 115 | 
            +
                    {
         | 
| 116 | 
            +
                      "internalType": "string",
         | 
| 117 | 
            +
                      "name": "name",
         | 
| 118 | 
            +
                      "type": "string"
         | 
| 119 | 
            +
                    }
         | 
| 120 | 
            +
                  ],
         | 
| 121 | 
            +
                  "name": "ErrorRoleAlreadyCreated",
         | 
| 122 | 
            +
                  "type": "error"
         | 
| 123 | 
            +
                },
         | 
| 124 | 
            +
                {
         | 
| 125 | 
            +
                  "inputs": [
         | 
| 126 | 
            +
                    {
         | 
| 127 | 
            +
                      "internalType": "RoleId",
         | 
| 128 | 
            +
                      "name": "roleId",
         | 
| 129 | 
            +
                      "type": "uint64"
         | 
| 130 | 
            +
                    }
         | 
| 131 | 
            +
                  ],
         | 
| 132 | 
            +
                  "name": "ErrorRoleIsLocked",
         | 
| 133 | 
            +
                  "type": "error"
         | 
| 134 | 
            +
                },
         | 
| 135 | 
            +
                {
         | 
| 136 | 
            +
                  "inputs": [
         | 
| 137 | 
            +
                    {
         | 
| 138 | 
            +
                      "internalType": "RoleId",
         | 
| 139 | 
            +
                      "name": "roleId",
         | 
| 140 | 
            +
                      "type": "uint64"
         | 
| 141 | 
            +
                    }
         | 
| 142 | 
            +
                  ],
         | 
| 143 | 
            +
                  "name": "ErrorRoleIsPaused",
         | 
| 144 | 
            +
                  "type": "error"
         | 
| 145 | 
            +
                },
         | 
| 146 | 
            +
                {
         | 
| 147 | 
            +
                  "inputs": [
         | 
| 148 | 
            +
                    {
         | 
| 149 | 
            +
                      "internalType": "RoleId",
         | 
| 150 | 
            +
                      "name": "roleId",
         | 
| 151 | 
            +
                      "type": "uint64"
         | 
| 152 | 
            +
                    },
         | 
| 153 | 
            +
                    {
         | 
| 154 | 
            +
                      "internalType": "address",
         | 
| 155 | 
            +
                      "name": "notContract",
         | 
| 156 | 
            +
                      "type": "address"
         | 
| 157 | 
            +
                    }
         | 
| 158 | 
            +
                  ],
         | 
| 159 | 
            +
                  "name": "ErrorRoleMemberNotContract",
         | 
| 160 | 
            +
                  "type": "error"
         | 
| 161 | 
            +
                },
         | 
| 162 | 
            +
                {
         | 
| 163 | 
            +
                  "inputs": [
         | 
| 164 | 
            +
                    {
         | 
| 165 | 
            +
                      "internalType": "RoleId",
         | 
| 166 | 
            +
                      "name": "roleId",
         | 
| 167 | 
            +
                      "type": "uint64"
         | 
| 168 | 
            +
                    },
         | 
| 169 | 
            +
                    {
         | 
| 170 | 
            +
                      "internalType": "address",
         | 
| 171 | 
            +
                      "name": "expectedMember",
         | 
| 172 | 
            +
                      "type": "address"
         | 
| 173 | 
            +
                    }
         | 
| 174 | 
            +
                  ],
         | 
| 175 | 
            +
                  "name": "ErrorRoleMemberRemovalDisabled",
         | 
| 176 | 
            +
                  "type": "error"
         | 
| 177 | 
            +
                },
         | 
| 178 | 
            +
                {
         | 
| 179 | 
            +
                  "inputs": [
         | 
| 180 | 
            +
                    {
         | 
| 181 | 
            +
                      "internalType": "RoleId",
         | 
| 182 | 
            +
                      "name": "roleId",
         | 
| 183 | 
            +
                      "type": "uint64"
         | 
| 184 | 
            +
                    },
         | 
| 185 | 
            +
                    {
         | 
| 186 | 
            +
                      "internalType": "uint256",
         | 
| 187 | 
            +
                      "name": "memberCountLimit",
         | 
| 188 | 
            +
                      "type": "uint256"
         | 
| 189 | 
            +
                    }
         | 
| 190 | 
            +
                  ],
         | 
| 191 | 
            +
                  "name": "ErrorRoleMembersLimitReached",
         | 
| 192 | 
            +
                  "type": "error"
         | 
| 193 | 
            +
                },
         | 
| 194 | 
            +
                {
         | 
| 195 | 
            +
                  "inputs": [
         | 
| 196 | 
            +
                    {
         | 
| 197 | 
            +
                      "internalType": "RoleId",
         | 
| 198 | 
            +
                      "name": "roleId",
         | 
| 199 | 
            +
                      "type": "uint64"
         | 
| 200 | 
            +
                    },
         | 
| 201 | 
            +
                    {
         | 
| 202 | 
            +
                      "internalType": "string",
         | 
| 203 | 
            +
                      "name": "name",
         | 
| 204 | 
            +
                      "type": "string"
         | 
| 205 | 
            +
                    },
         | 
| 206 | 
            +
                    {
         | 
| 207 | 
            +
                      "internalType": "RoleId",
         | 
| 208 | 
            +
                      "name": "existingRoleId",
         | 
| 209 | 
            +
                      "type": "uint64"
         | 
| 210 | 
            +
                    }
         | 
| 211 | 
            +
                  ],
         | 
| 212 | 
            +
                  "name": "ErrorRoleNameAlreadyExists",
         | 
| 213 | 
            +
                  "type": "error"
         | 
| 214 | 
            +
                },
         | 
| 215 | 
            +
                {
         | 
| 216 | 
            +
                  "inputs": [
         | 
| 217 | 
            +
                    {
         | 
| 218 | 
            +
                      "internalType": "RoleId",
         | 
| 219 | 
            +
                      "name": "roleId",
         | 
| 220 | 
            +
                      "type": "uint64"
         | 
| 221 | 
            +
                    }
         | 
| 222 | 
            +
                  ],
         | 
| 223 | 
            +
                  "name": "ErrorRoleNameEmpty",
         | 
| 224 | 
            +
                  "type": "error"
         | 
| 225 | 
            +
                },
         | 
| 226 | 
            +
                {
         | 
| 227 | 
            +
                  "inputs": [
         | 
| 228 | 
            +
                    {
         | 
| 229 | 
            +
                      "internalType": "RoleId",
         | 
| 230 | 
            +
                      "name": "roleId",
         | 
| 231 | 
            +
                      "type": "uint64"
         | 
| 232 | 
            +
                    }
         | 
| 233 | 
            +
                  ],
         | 
| 234 | 
            +
                  "name": "ErrorRoleUnknown",
         | 
| 235 | 
            +
                  "type": "error"
         | 
| 236 | 
            +
                },
         | 
| 237 | 
            +
                {
         | 
| 238 | 
            +
                  "inputs": [],
         | 
| 239 | 
            +
                  "name": "ErrorTagetNotLockable",
         | 
| 240 | 
            +
                  "type": "error"
         | 
| 241 | 
            +
                },
         | 
| 242 | 
            +
                {
         | 
| 243 | 
            +
                  "inputs": [
         | 
| 244 | 
            +
                    {
         | 
| 245 | 
            +
                      "internalType": "address",
         | 
| 246 | 
            +
                      "name": "target",
         | 
| 247 | 
            +
                      "type": "address"
         | 
| 248 | 
            +
                    },
         | 
| 249 | 
            +
                    {
         | 
| 250 | 
            +
                      "internalType": "string",
         | 
| 251 | 
            +
                      "name": "name",
         | 
| 252 | 
            +
                      "type": "string"
         | 
| 253 | 
            +
                    }
         | 
| 254 | 
            +
                  ],
         | 
| 255 | 
            +
                  "name": "ErrorTargetAlreadyCreated",
         | 
| 256 | 
            +
                  "type": "error"
         | 
| 257 | 
            +
                },
         | 
| 258 | 
            +
                {
         | 
| 259 | 
            +
                  "inputs": [
         | 
| 260 | 
            +
                    {
         | 
| 261 | 
            +
                      "internalType": "address",
         | 
| 262 | 
            +
                      "name": "target",
         | 
| 263 | 
            +
                      "type": "address"
         | 
| 264 | 
            +
                    },
         | 
| 265 | 
            +
                    {
         | 
| 266 | 
            +
                      "internalType": "bool",
         | 
| 267 | 
            +
                      "name": "isLocked",
         | 
| 268 | 
            +
                      "type": "bool"
         | 
| 269 | 
            +
                    }
         | 
| 270 | 
            +
                  ],
         | 
| 271 | 
            +
                  "name": "ErrorTargetAlreadyLocked",
         | 
| 272 | 
            +
                  "type": "error"
         | 
| 273 | 
            +
                },
         | 
| 274 | 
            +
                {
         | 
| 275 | 
            +
                  "inputs": [
         | 
| 276 | 
            +
                    {
         | 
| 277 | 
            +
                      "internalType": "address",
         | 
| 278 | 
            +
                      "name": "expectedAuthority",
         | 
| 279 | 
            +
                      "type": "address"
         | 
| 280 | 
            +
                    },
         | 
| 281 | 
            +
                    {
         | 
| 282 | 
            +
                      "internalType": "address",
         | 
| 283 | 
            +
                      "name": "actualAuthority",
         | 
| 284 | 
            +
                      "type": "address"
         | 
| 285 | 
            +
                    }
         | 
| 286 | 
            +
                  ],
         | 
| 287 | 
            +
                  "name": "ErrorTargetAuthorityMismatch",
         | 
| 288 | 
            +
                  "type": "error"
         | 
| 289 | 
            +
                },
         | 
| 290 | 
            +
                {
         | 
| 291 | 
            +
                  "inputs": [
         | 
| 292 | 
            +
                    {
         | 
| 293 | 
            +
                      "internalType": "address",
         | 
| 294 | 
            +
                      "name": "target",
         | 
| 295 | 
            +
                      "type": "address"
         | 
| 296 | 
            +
                    },
         | 
| 297 | 
            +
                    {
         | 
| 298 | 
            +
                      "internalType": "string",
         | 
| 299 | 
            +
                      "name": "name",
         | 
| 300 | 
            +
                      "type": "string"
         | 
| 301 | 
            +
                    },
         | 
| 302 | 
            +
                    {
         | 
| 303 | 
            +
                      "internalType": "address",
         | 
| 304 | 
            +
                      "name": "existingTarget",
         | 
| 305 | 
            +
                      "type": "address"
         | 
| 306 | 
            +
                    }
         | 
| 307 | 
            +
                  ],
         | 
| 308 | 
            +
                  "name": "ErrorTargetNameAlreadyExists",
         | 
| 309 | 
            +
                  "type": "error"
         | 
| 310 | 
            +
                },
         | 
| 311 | 
            +
                {
         | 
| 312 | 
            +
                  "inputs": [
         | 
| 313 | 
            +
                    {
         | 
| 314 | 
            +
                      "internalType": "address",
         | 
| 315 | 
            +
                      "name": "target",
         | 
| 316 | 
            +
                      "type": "address"
         | 
| 317 | 
            +
                    }
         | 
| 318 | 
            +
                  ],
         | 
| 319 | 
            +
                  "name": "ErrorTargetNameEmpty",
         | 
| 320 | 
            +
                  "type": "error"
         | 
| 321 | 
            +
                },
         | 
| 322 | 
            +
                {
         | 
| 323 | 
            +
                  "inputs": [
         | 
| 324 | 
            +
                    {
         | 
| 325 | 
            +
                      "internalType": "address",
         | 
| 326 | 
            +
                      "name": "target",
         | 
| 327 | 
            +
                      "type": "address"
         | 
| 328 | 
            +
                    }
         | 
| 329 | 
            +
                  ],
         | 
| 330 | 
            +
                  "name": "ErrorTargetNotAccessManaged",
         | 
| 331 | 
            +
                  "type": "error"
         | 
| 332 | 
            +
                },
         | 
| 333 | 
            +
                {
         | 
| 334 | 
            +
                  "inputs": [
         | 
| 335 | 
            +
                    {
         | 
| 336 | 
            +
                      "internalType": "address",
         | 
| 337 | 
            +
                      "name": "target",
         | 
| 338 | 
            +
                      "type": "address"
         | 
| 339 | 
            +
                    }
         | 
| 340 | 
            +
                  ],
         | 
| 341 | 
            +
                  "name": "ErrorTargetUnknown",
         | 
| 342 | 
            +
                  "type": "error"
         | 
| 343 | 
            +
                },
         | 
| 344 | 
            +
                {
         | 
| 345 | 
            +
                  "inputs": [],
         | 
| 346 | 
            +
                  "name": "InvalidInitialization",
         | 
| 347 | 
            +
                  "type": "error"
         | 
| 348 | 
            +
                },
         | 
| 349 | 
            +
                {
         | 
| 350 | 
            +
                  "inputs": [],
         | 
| 351 | 
            +
                  "name": "NotInitializing",
         | 
| 352 | 
            +
                  "type": "error"
         | 
| 353 | 
            +
                },
         | 
| 354 | 
            +
                {
         | 
| 355 | 
            +
                  "inputs": [],
         | 
| 356 | 
            +
                  "name": "ReentrancyGuardReentrantCall",
         | 
| 357 | 
            +
                  "type": "error"
         | 
| 358 | 
            +
                },
         | 
| 359 | 
            +
                {
         | 
| 360 | 
            +
                  "anonymous": false,
         | 
| 361 | 
            +
                  "inputs": [
         | 
| 362 | 
            +
                    {
         | 
| 363 | 
            +
                      "indexed": false,
         | 
| 364 | 
            +
                      "internalType": "address",
         | 
| 365 | 
            +
                      "name": "authority",
         | 
| 366 | 
            +
                      "type": "address"
         | 
| 367 | 
            +
                    }
         | 
| 368 | 
            +
                  ],
         | 
| 369 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 370 | 
            +
                  "type": "event"
         | 
| 371 | 
            +
                },
         | 
| 372 | 
            +
                {
         | 
| 373 | 
            +
                  "anonymous": false,
         | 
| 374 | 
            +
                  "inputs": [
         | 
| 375 | 
            +
                    {
         | 
| 376 | 
            +
                      "indexed": false,
         | 
| 377 | 
            +
                      "internalType": "uint64",
         | 
| 378 | 
            +
                      "name": "version",
         | 
| 379 | 
            +
                      "type": "uint64"
         | 
| 380 | 
            +
                    }
         | 
| 381 | 
            +
                  ],
         | 
| 382 | 
            +
                  "name": "Initialized",
         | 
| 383 | 
            +
                  "type": "event"
         | 
| 384 | 
            +
                },
         | 
| 385 | 
            +
                {
         | 
| 386 | 
            +
                  "anonymous": false,
         | 
| 387 | 
            +
                  "inputs": [
         | 
| 388 | 
            +
                    {
         | 
| 389 | 
            +
                      "indexed": false,
         | 
| 390 | 
            +
                      "internalType": "address",
         | 
| 391 | 
            +
                      "name": "target",
         | 
| 392 | 
            +
                      "type": "address"
         | 
| 393 | 
            +
                    },
         | 
| 394 | 
            +
                    {
         | 
| 395 | 
            +
                      "indexed": false,
         | 
| 396 | 
            +
                      "internalType": "Selector",
         | 
| 397 | 
            +
                      "name": "selector",
         | 
| 398 | 
            +
                      "type": "bytes4"
         | 
| 399 | 
            +
                    },
         | 
| 400 | 
            +
                    {
         | 
| 401 | 
            +
                      "indexed": false,
         | 
| 402 | 
            +
                      "internalType": "string",
         | 
| 403 | 
            +
                      "name": "name",
         | 
| 404 | 
            +
                      "type": "string"
         | 
| 405 | 
            +
                    }
         | 
| 406 | 
            +
                  ],
         | 
| 407 | 
            +
                  "name": "LogFunctionCreated",
         | 
| 408 | 
            +
                  "type": "event"
         | 
| 409 | 
            +
                },
         | 
| 410 | 
            +
                {
         | 
| 411 | 
            +
                  "anonymous": false,
         | 
| 412 | 
            +
                  "inputs": [
         | 
| 413 | 
            +
                    {
         | 
| 414 | 
            +
                      "indexed": false,
         | 
| 415 | 
            +
                      "internalType": "RoleId",
         | 
| 416 | 
            +
                      "name": "roleId",
         | 
| 417 | 
            +
                      "type": "uint64"
         | 
| 418 | 
            +
                    },
         | 
| 419 | 
            +
                    {
         | 
| 420 | 
            +
                      "indexed": false,
         | 
| 421 | 
            +
                      "internalType": "enum IAccess.RoleType",
         | 
| 422 | 
            +
                      "name": "roleType",
         | 
| 423 | 
            +
                      "type": "uint8"
         | 
| 424 | 
            +
                    },
         | 
| 425 | 
            +
                    {
         | 
| 426 | 
            +
                      "indexed": false,
         | 
| 427 | 
            +
                      "internalType": "RoleId",
         | 
| 428 | 
            +
                      "name": "roleAdminId",
         | 
| 429 | 
            +
                      "type": "uint64"
         | 
| 430 | 
            +
                    },
         | 
| 431 | 
            +
                    {
         | 
| 432 | 
            +
                      "indexed": false,
         | 
| 433 | 
            +
                      "internalType": "string",
         | 
| 434 | 
            +
                      "name": "name",
         | 
| 435 | 
            +
                      "type": "string"
         | 
| 436 | 
            +
                    }
         | 
| 437 | 
            +
                  ],
         | 
| 438 | 
            +
                  "name": "LogRoleCreated",
         | 
| 439 | 
            +
                  "type": "event"
         | 
| 440 | 
            +
                },
         | 
| 441 | 
            +
                {
         | 
| 442 | 
            +
                  "anonymous": false,
         | 
| 443 | 
            +
                  "inputs": [
         | 
| 444 | 
            +
                    {
         | 
| 445 | 
            +
                      "indexed": false,
         | 
| 446 | 
            +
                      "internalType": "address",
         | 
| 447 | 
            +
                      "name": "target",
         | 
| 448 | 
            +
                      "type": "address"
         | 
| 449 | 
            +
                    },
         | 
| 450 | 
            +
                    {
         | 
| 451 | 
            +
                      "indexed": false,
         | 
| 452 | 
            +
                      "internalType": "string",
         | 
| 453 | 
            +
                      "name": "name",
         | 
| 454 | 
            +
                      "type": "string"
         | 
| 455 | 
            +
                    }
         | 
| 456 | 
            +
                  ],
         | 
| 457 | 
            +
                  "name": "LogTargetCreated",
         | 
| 458 | 
            +
                  "type": "event"
         | 
| 459 | 
            +
                },
         | 
| 460 | 
            +
                {
         | 
| 461 | 
            +
                  "inputs": [],
         | 
| 462 | 
            +
                  "name": "ADMIN_ROLE_NAME",
         | 
| 463 | 
            +
                  "outputs": [
         | 
| 464 | 
            +
                    {
         | 
| 465 | 
            +
                      "internalType": "string",
         | 
| 466 | 
            +
                      "name": "",
         | 
| 467 | 
            +
                      "type": "string"
         | 
| 468 | 
            +
                    }
         | 
| 469 | 
            +
                  ],
         | 
| 470 | 
            +
                  "stateMutability": "view",
         | 
| 471 | 
            +
                  "type": "function"
         | 
| 472 | 
            +
                },
         | 
| 473 | 
            +
                {
         | 
| 474 | 
            +
                  "inputs": [],
         | 
| 475 | 
            +
                  "name": "PUBLIC_ROLE_NAME",
         | 
| 476 | 
            +
                  "outputs": [
         | 
| 477 | 
            +
                    {
         | 
| 478 | 
            +
                      "internalType": "string",
         | 
| 479 | 
            +
                      "name": "",
         | 
| 480 | 
            +
                      "type": "string"
         | 
| 481 | 
            +
                    }
         | 
| 482 | 
            +
                  ],
         | 
| 483 | 
            +
                  "stateMutability": "view",
         | 
| 484 | 
            +
                  "type": "function"
         | 
| 485 | 
            +
                },
         | 
| 486 | 
            +
                {
         | 
| 487 | 
            +
                  "inputs": [],
         | 
| 488 | 
            +
                  "name": "authority",
         | 
| 489 | 
            +
                  "outputs": [
         | 
| 490 | 
            +
                    {
         | 
| 491 | 
            +
                      "internalType": "address",
         | 
| 492 | 
            +
                      "name": "",
         | 
| 493 | 
            +
                      "type": "address"
         | 
| 494 | 
            +
                    }
         | 
| 495 | 
            +
                  ],
         | 
| 496 | 
            +
                  "stateMutability": "view",
         | 
| 497 | 
            +
                  "type": "function"
         | 
| 498 | 
            +
                },
         | 
| 499 | 
            +
                {
         | 
| 500 | 
            +
                  "inputs": [
         | 
| 501 | 
            +
                    {
         | 
| 502 | 
            +
                      "internalType": "address",
         | 
| 503 | 
            +
                      "name": "target",
         | 
| 504 | 
            +
                      "type": "address"
         | 
| 505 | 
            +
                    }
         | 
| 506 | 
            +
                  ],
         | 
| 507 | 
            +
                  "name": "authorizedFunctions",
         | 
| 508 | 
            +
                  "outputs": [
         | 
| 509 | 
            +
                    {
         | 
| 510 | 
            +
                      "internalType": "uint256",
         | 
| 511 | 
            +
                      "name": "numberOfFunctions",
         | 
| 512 | 
            +
                      "type": "uint256"
         | 
| 513 | 
            +
                    }
         | 
| 514 | 
            +
                  ],
         | 
| 515 | 
            +
                  "stateMutability": "view",
         | 
| 516 | 
            +
                  "type": "function"
         | 
| 517 | 
            +
                },
         | 
| 518 | 
            +
                {
         | 
| 519 | 
            +
                  "inputs": [
         | 
| 520 | 
            +
                    {
         | 
| 521 | 
            +
                      "internalType": "address",
         | 
| 522 | 
            +
                      "name": "caller",
         | 
| 523 | 
            +
                      "type": "address"
         | 
| 524 | 
            +
                    },
         | 
| 525 | 
            +
                    {
         | 
| 526 | 
            +
                      "internalType": "address",
         | 
| 527 | 
            +
                      "name": "target",
         | 
| 528 | 
            +
                      "type": "address"
         | 
| 529 | 
            +
                    },
         | 
| 530 | 
            +
                    {
         | 
| 531 | 
            +
                      "internalType": "Selector",
         | 
| 532 | 
            +
                      "name": "selector",
         | 
| 533 | 
            +
                      "type": "bytes4"
         | 
| 534 | 
            +
                    }
         | 
| 535 | 
            +
                  ],
         | 
| 536 | 
            +
                  "name": "canCall",
         | 
| 537 | 
            +
                  "outputs": [
         | 
| 538 | 
            +
                    {
         | 
| 539 | 
            +
                      "internalType": "bool",
         | 
| 540 | 
            +
                      "name": "can",
         | 
| 541 | 
            +
                      "type": "bool"
         | 
| 542 | 
            +
                    }
         | 
| 543 | 
            +
                  ],
         | 
| 544 | 
            +
                  "stateMutability": "view",
         | 
| 545 | 
            +
                  "type": "function"
         | 
| 546 | 
            +
                },
         | 
| 547 | 
            +
                {
         | 
| 548 | 
            +
                  "inputs": [],
         | 
| 549 | 
            +
                  "name": "deployer",
         | 
| 550 | 
            +
                  "outputs": [
         | 
| 551 | 
            +
                    {
         | 
| 552 | 
            +
                      "internalType": "address",
         | 
| 553 | 
            +
                      "name": "",
         | 
| 554 | 
            +
                      "type": "address"
         | 
| 555 | 
            +
                    }
         | 
| 556 | 
            +
                  ],
         | 
| 557 | 
            +
                  "stateMutability": "view",
         | 
| 558 | 
            +
                  "type": "function"
         | 
| 559 | 
            +
                },
         | 
| 560 | 
            +
                {
         | 
| 561 | 
            +
                  "inputs": [],
         | 
| 562 | 
            +
                  "name": "getAdminRole",
         | 
| 563 | 
            +
                  "outputs": [
         | 
| 564 | 
            +
                    {
         | 
| 565 | 
            +
                      "internalType": "RoleId",
         | 
| 566 | 
            +
                      "name": "roleId",
         | 
| 567 | 
            +
                      "type": "uint64"
         | 
| 568 | 
            +
                    }
         | 
| 569 | 
            +
                  ],
         | 
| 570 | 
            +
                  "stateMutability": "view",
         | 
| 571 | 
            +
                  "type": "function"
         | 
| 572 | 
            +
                },
         | 
| 573 | 
            +
                {
         | 
| 574 | 
            +
                  "inputs": [
         | 
| 575 | 
            +
                    {
         | 
| 576 | 
            +
                      "internalType": "address",
         | 
| 577 | 
            +
                      "name": "target",
         | 
| 578 | 
            +
                      "type": "address"
         | 
| 579 | 
            +
                    },
         | 
| 580 | 
            +
                    {
         | 
| 581 | 
            +
                      "internalType": "uint256",
         | 
| 582 | 
            +
                      "name": "idx",
         | 
| 583 | 
            +
                      "type": "uint256"
         | 
| 584 | 
            +
                    }
         | 
| 585 | 
            +
                  ],
         | 
| 586 | 
            +
                  "name": "getAuthorizedFunction",
         | 
| 587 | 
            +
                  "outputs": [
         | 
| 588 | 
            +
                    {
         | 
| 589 | 
            +
                      "components": [
         | 
| 590 | 
            +
                        {
         | 
| 591 | 
            +
                          "internalType": "Str",
         | 
| 592 | 
            +
                          "name": "name",
         | 
| 593 | 
            +
                          "type": "bytes32"
         | 
| 594 | 
            +
                        },
         | 
| 595 | 
            +
                        {
         | 
| 596 | 
            +
                          "internalType": "Selector",
         | 
| 597 | 
            +
                          "name": "selector",
         | 
| 598 | 
            +
                          "type": "bytes4"
         | 
| 599 | 
            +
                        },
         | 
| 600 | 
            +
                        {
         | 
| 601 | 
            +
                          "internalType": "Timestamp",
         | 
| 602 | 
            +
                          "name": "createdAt",
         | 
| 603 | 
            +
                          "type": "uint40"
         | 
| 604 | 
            +
                        }
         | 
| 605 | 
            +
                      ],
         | 
| 606 | 
            +
                      "internalType": "struct IAccess.FunctionInfo",
         | 
| 607 | 
            +
                      "name": "func",
         | 
| 608 | 
            +
                      "type": "tuple"
         | 
| 609 | 
            +
                    },
         | 
| 610 | 
            +
                    {
         | 
| 611 | 
            +
                      "internalType": "RoleId",
         | 
| 612 | 
            +
                      "name": "roleId",
         | 
| 613 | 
            +
                      "type": "uint64"
         | 
| 614 | 
            +
                    }
         | 
| 615 | 
            +
                  ],
         | 
| 616 | 
            +
                  "stateMutability": "view",
         | 
| 617 | 
            +
                  "type": "function"
         | 
| 618 | 
            +
                },
         | 
| 619 | 
            +
                {
         | 
| 620 | 
            +
                  "inputs": [],
         | 
| 621 | 
            +
                  "name": "getPublicRole",
         | 
| 622 | 
            +
                  "outputs": [
         | 
| 623 | 
            +
                    {
         | 
| 624 | 
            +
                      "internalType": "RoleId",
         | 
| 625 | 
            +
                      "name": "roleId",
         | 
| 626 | 
            +
                      "type": "uint64"
         | 
| 627 | 
            +
                    }
         | 
| 628 | 
            +
                  ],
         | 
| 629 | 
            +
                  "stateMutability": "view",
         | 
| 630 | 
            +
                  "type": "function"
         | 
| 631 | 
            +
                },
         | 
| 632 | 
            +
                {
         | 
| 633 | 
            +
                  "inputs": [
         | 
| 634 | 
            +
                    {
         | 
| 635 | 
            +
                      "internalType": "Str",
         | 
| 636 | 
            +
                      "name": "name",
         | 
| 637 | 
            +
                      "type": "bytes32"
         | 
| 638 | 
            +
                    }
         | 
| 639 | 
            +
                  ],
         | 
| 640 | 
            +
                  "name": "getRoleForName",
         | 
| 641 | 
            +
                  "outputs": [
         | 
| 642 | 
            +
                    {
         | 
| 643 | 
            +
                      "components": [
         | 
| 644 | 
            +
                        {
         | 
| 645 | 
            +
                          "internalType": "RoleId",
         | 
| 646 | 
            +
                          "name": "roleId",
         | 
| 647 | 
            +
                          "type": "uint64"
         | 
| 648 | 
            +
                        },
         | 
| 649 | 
            +
                        {
         | 
| 650 | 
            +
                          "internalType": "bool",
         | 
| 651 | 
            +
                          "name": "exists",
         | 
| 652 | 
            +
                          "type": "bool"
         | 
| 653 | 
            +
                        }
         | 
| 654 | 
            +
                      ],
         | 
| 655 | 
            +
                      "internalType": "struct IAccess.RoleNameInfo",
         | 
| 656 | 
            +
                      "name": "",
         | 
| 657 | 
            +
                      "type": "tuple"
         | 
| 658 | 
            +
                    }
         | 
| 659 | 
            +
                  ],
         | 
| 660 | 
            +
                  "stateMutability": "view",
         | 
| 661 | 
            +
                  "type": "function"
         | 
| 662 | 
            +
                },
         | 
| 663 | 
            +
                {
         | 
| 664 | 
            +
                  "inputs": [
         | 
| 665 | 
            +
                    {
         | 
| 666 | 
            +
                      "internalType": "uint256",
         | 
| 667 | 
            +
                      "name": "idx",
         | 
| 668 | 
            +
                      "type": "uint256"
         | 
| 669 | 
            +
                    }
         | 
| 670 | 
            +
                  ],
         | 
| 671 | 
            +
                  "name": "getRoleId",
         | 
| 672 | 
            +
                  "outputs": [
         | 
| 673 | 
            +
                    {
         | 
| 674 | 
            +
                      "internalType": "RoleId",
         | 
| 675 | 
            +
                      "name": "roleId",
         | 
| 676 | 
            +
                      "type": "uint64"
         | 
| 677 | 
            +
                    }
         | 
| 678 | 
            +
                  ],
         | 
| 679 | 
            +
                  "stateMutability": "view",
         | 
| 680 | 
            +
                  "type": "function"
         | 
| 681 | 
            +
                },
         | 
| 682 | 
            +
                {
         | 
| 683 | 
            +
                  "inputs": [
         | 
| 684 | 
            +
                    {
         | 
| 685 | 
            +
                      "internalType": "RoleId",
         | 
| 686 | 
            +
                      "name": "roleId",
         | 
| 687 | 
            +
                      "type": "uint64"
         | 
| 688 | 
            +
                    }
         | 
| 689 | 
            +
                  ],
         | 
| 690 | 
            +
                  "name": "getRoleInfo",
         | 
| 691 | 
            +
                  "outputs": [
         | 
| 692 | 
            +
                    {
         | 
| 693 | 
            +
                      "components": [
         | 
| 694 | 
            +
                        {
         | 
| 695 | 
            +
                          "internalType": "RoleId",
         | 
| 696 | 
            +
                          "name": "adminRoleId",
         | 
| 697 | 
            +
                          "type": "uint64"
         | 
| 698 | 
            +
                        },
         | 
| 699 | 
            +
                        {
         | 
| 700 | 
            +
                          "internalType": "enum IAccess.RoleType",
         | 
| 701 | 
            +
                          "name": "roleType",
         | 
| 702 | 
            +
                          "type": "uint8"
         | 
| 703 | 
            +
                        },
         | 
| 704 | 
            +
                        {
         | 
| 705 | 
            +
                          "internalType": "uint32",
         | 
| 706 | 
            +
                          "name": "maxMemberCount",
         | 
| 707 | 
            +
                          "type": "uint32"
         | 
| 708 | 
            +
                        },
         | 
| 709 | 
            +
                        {
         | 
| 710 | 
            +
                          "internalType": "Str",
         | 
| 711 | 
            +
                          "name": "name",
         | 
| 712 | 
            +
                          "type": "bytes32"
         | 
| 713 | 
            +
                        },
         | 
| 714 | 
            +
                        {
         | 
| 715 | 
            +
                          "internalType": "Timestamp",
         | 
| 716 | 
            +
                          "name": "createdAt",
         | 
| 717 | 
            +
                          "type": "uint40"
         | 
| 718 | 
            +
                        },
         | 
| 719 | 
            +
                        {
         | 
| 720 | 
            +
                          "internalType": "Timestamp",
         | 
| 721 | 
            +
                          "name": "pausedAt",
         | 
| 722 | 
            +
                          "type": "uint40"
         | 
| 723 | 
            +
                        }
         | 
| 724 | 
            +
                      ],
         | 
| 725 | 
            +
                      "internalType": "struct IAccess.RoleInfo",
         | 
| 726 | 
            +
                      "name": "",
         | 
| 727 | 
            +
                      "type": "tuple"
         | 
| 728 | 
            +
                    }
         | 
| 729 | 
            +
                  ],
         | 
| 730 | 
            +
                  "stateMutability": "view",
         | 
| 731 | 
            +
                  "type": "function"
         | 
| 732 | 
            +
                },
         | 
| 733 | 
            +
                {
         | 
| 734 | 
            +
                  "inputs": [
         | 
| 735 | 
            +
                    {
         | 
| 736 | 
            +
                      "internalType": "RoleId",
         | 
| 737 | 
            +
                      "name": "roleId",
         | 
| 738 | 
            +
                      "type": "uint64"
         | 
| 739 | 
            +
                    },
         | 
| 740 | 
            +
                    {
         | 
| 741 | 
            +
                      "internalType": "uint256",
         | 
| 742 | 
            +
                      "name": "idx",
         | 
| 743 | 
            +
                      "type": "uint256"
         | 
| 744 | 
            +
                    }
         | 
| 745 | 
            +
                  ],
         | 
| 746 | 
            +
                  "name": "getRoleMember",
         | 
| 747 | 
            +
                  "outputs": [
         | 
| 748 | 
            +
                    {
         | 
| 749 | 
            +
                      "internalType": "address",
         | 
| 750 | 
            +
                      "name": "account",
         | 
| 751 | 
            +
                      "type": "address"
         | 
| 752 | 
            +
                    }
         | 
| 753 | 
            +
                  ],
         | 
| 754 | 
            +
                  "stateMutability": "view",
         | 
| 755 | 
            +
                  "type": "function"
         | 
| 756 | 
            +
                },
         | 
| 757 | 
            +
                {
         | 
| 758 | 
            +
                  "inputs": [
         | 
| 759 | 
            +
                    {
         | 
| 760 | 
            +
                      "internalType": "uint256",
         | 
| 761 | 
            +
                      "name": "idx",
         | 
| 762 | 
            +
                      "type": "uint256"
         | 
| 763 | 
            +
                    }
         | 
| 764 | 
            +
                  ],
         | 
| 765 | 
            +
                  "name": "getTargetAddress",
         | 
| 766 | 
            +
                  "outputs": [
         | 
| 767 | 
            +
                    {
         | 
| 768 | 
            +
                      "internalType": "address",
         | 
| 769 | 
            +
                      "name": "target",
         | 
| 770 | 
            +
                      "type": "address"
         | 
| 771 | 
            +
                    }
         | 
| 772 | 
            +
                  ],
         | 
| 773 | 
            +
                  "stateMutability": "view",
         | 
| 774 | 
            +
                  "type": "function"
         | 
| 775 | 
            +
                },
         | 
| 776 | 
            +
                {
         | 
| 777 | 
            +
                  "inputs": [
         | 
| 778 | 
            +
                    {
         | 
| 779 | 
            +
                      "internalType": "Str",
         | 
| 780 | 
            +
                      "name": "name",
         | 
| 781 | 
            +
                      "type": "bytes32"
         | 
| 782 | 
            +
                    }
         | 
| 783 | 
            +
                  ],
         | 
| 784 | 
            +
                  "name": "getTargetForName",
         | 
| 785 | 
            +
                  "outputs": [
         | 
| 786 | 
            +
                    {
         | 
| 787 | 
            +
                      "internalType": "address",
         | 
| 788 | 
            +
                      "name": "target",
         | 
| 789 | 
            +
                      "type": "address"
         | 
| 790 | 
            +
                    }
         | 
| 791 | 
            +
                  ],
         | 
| 792 | 
            +
                  "stateMutability": "view",
         | 
| 793 | 
            +
                  "type": "function"
         | 
| 794 | 
            +
                },
         | 
| 795 | 
            +
                {
         | 
| 796 | 
            +
                  "inputs": [
         | 
| 797 | 
            +
                    {
         | 
| 798 | 
            +
                      "internalType": "address",
         | 
| 799 | 
            +
                      "name": "target",
         | 
| 800 | 
            +
                      "type": "address"
         | 
| 801 | 
            +
                    }
         | 
| 802 | 
            +
                  ],
         | 
| 803 | 
            +
                  "name": "getTargetInfo",
         | 
| 804 | 
            +
                  "outputs": [
         | 
| 805 | 
            +
                    {
         | 
| 806 | 
            +
                      "components": [
         | 
| 807 | 
            +
                        {
         | 
| 808 | 
            +
                          "internalType": "Str",
         | 
| 809 | 
            +
                          "name": "name",
         | 
| 810 | 
            +
                          "type": "bytes32"
         | 
| 811 | 
            +
                        },
         | 
| 812 | 
            +
                        {
         | 
| 813 | 
            +
                          "internalType": "bool",
         | 
| 814 | 
            +
                          "name": "isCustom",
         | 
| 815 | 
            +
                          "type": "bool"
         | 
| 816 | 
            +
                        },
         | 
| 817 | 
            +
                        {
         | 
| 818 | 
            +
                          "internalType": "Timestamp",
         | 
| 819 | 
            +
                          "name": "createdAt",
         | 
| 820 | 
            +
                          "type": "uint40"
         | 
| 821 | 
            +
                        }
         | 
| 822 | 
            +
                      ],
         | 
| 823 | 
            +
                      "internalType": "struct IAccess.TargetInfo",
         | 
| 824 | 
            +
                      "name": "targetInfo",
         | 
| 825 | 
            +
                      "type": "tuple"
         | 
| 826 | 
            +
                    }
         | 
| 827 | 
            +
                  ],
         | 
| 828 | 
            +
                  "stateMutability": "view",
         | 
| 829 | 
            +
                  "type": "function"
         | 
| 830 | 
            +
                },
         | 
| 831 | 
            +
                {
         | 
| 832 | 
            +
                  "inputs": [
         | 
| 833 | 
            +
                    {
         | 
| 834 | 
            +
                      "internalType": "address",
         | 
| 835 | 
            +
                      "name": "account",
         | 
| 836 | 
            +
                      "type": "address"
         | 
| 837 | 
            +
                    },
         | 
| 838 | 
            +
                    {
         | 
| 839 | 
            +
                      "internalType": "RoleId",
         | 
| 840 | 
            +
                      "name": "roleId",
         | 
| 841 | 
            +
                      "type": "uint64"
         | 
| 842 | 
            +
                    }
         | 
| 843 | 
            +
                  ],
         | 
| 844 | 
            +
                  "name": "hasAdminRole",
         | 
| 845 | 
            +
                  "outputs": [
         | 
| 846 | 
            +
                    {
         | 
| 847 | 
            +
                      "internalType": "bool",
         | 
| 848 | 
            +
                      "name": "",
         | 
| 849 | 
            +
                      "type": "bool"
         | 
| 850 | 
            +
                    }
         | 
| 851 | 
            +
                  ],
         | 
| 852 | 
            +
                  "stateMutability": "view",
         | 
| 853 | 
            +
                  "type": "function"
         | 
| 854 | 
            +
                },
         | 
| 855 | 
            +
                {
         | 
| 856 | 
            +
                  "inputs": [
         | 
| 857 | 
            +
                    {
         | 
| 858 | 
            +
                      "internalType": "address",
         | 
| 859 | 
            +
                      "name": "account",
         | 
| 860 | 
            +
                      "type": "address"
         | 
| 861 | 
            +
                    },
         | 
| 862 | 
            +
                    {
         | 
| 863 | 
            +
                      "internalType": "RoleId",
         | 
| 864 | 
            +
                      "name": "roleId",
         | 
| 865 | 
            +
                      "type": "uint64"
         | 
| 866 | 
            +
                    }
         | 
| 867 | 
            +
                  ],
         | 
| 868 | 
            +
                  "name": "hasRole",
         | 
| 869 | 
            +
                  "outputs": [
         | 
| 870 | 
            +
                    {
         | 
| 871 | 
            +
                      "internalType": "bool",
         | 
| 872 | 
            +
                      "name": "",
         | 
| 873 | 
            +
                      "type": "bool"
         | 
| 874 | 
            +
                    }
         | 
| 875 | 
            +
                  ],
         | 
| 876 | 
            +
                  "stateMutability": "view",
         | 
| 877 | 
            +
                  "type": "function"
         | 
| 878 | 
            +
                },
         | 
| 879 | 
            +
                {
         | 
| 880 | 
            +
                  "inputs": [],
         | 
| 881 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 882 | 
            +
                  "outputs": [
         | 
| 883 | 
            +
                    {
         | 
| 884 | 
            +
                      "internalType": "bytes4",
         | 
| 885 | 
            +
                      "name": "",
         | 
| 886 | 
            +
                      "type": "bytes4"
         | 
| 887 | 
            +
                    }
         | 
| 888 | 
            +
                  ],
         | 
| 889 | 
            +
                  "stateMutability": "view",
         | 
| 890 | 
            +
                  "type": "function"
         | 
| 891 | 
            +
                },
         | 
| 892 | 
            +
                {
         | 
| 893 | 
            +
                  "inputs": [
         | 
| 894 | 
            +
                    {
         | 
| 895 | 
            +
                      "internalType": "address",
         | 
| 896 | 
            +
                      "name": "target",
         | 
| 897 | 
            +
                      "type": "address"
         | 
| 898 | 
            +
                    }
         | 
| 899 | 
            +
                  ],
         | 
| 900 | 
            +
                  "name": "isTargetLocked",
         | 
| 901 | 
            +
                  "outputs": [
         | 
| 902 | 
            +
                    {
         | 
| 903 | 
            +
                      "internalType": "bool",
         | 
| 904 | 
            +
                      "name": "locked",
         | 
| 905 | 
            +
                      "type": "bool"
         | 
| 906 | 
            +
                    }
         | 
| 907 | 
            +
                  ],
         | 
| 908 | 
            +
                  "stateMutability": "view",
         | 
| 909 | 
            +
                  "type": "function"
         | 
| 910 | 
            +
                },
         | 
| 911 | 
            +
                {
         | 
| 912 | 
            +
                  "inputs": [
         | 
| 913 | 
            +
                    {
         | 
| 914 | 
            +
                      "internalType": "RoleId",
         | 
| 915 | 
            +
                      "name": "roleId",
         | 
| 916 | 
            +
                      "type": "uint64"
         | 
| 917 | 
            +
                    }
         | 
| 918 | 
            +
                  ],
         | 
| 919 | 
            +
                  "name": "roleExists",
         | 
| 920 | 
            +
                  "outputs": [
         | 
| 921 | 
            +
                    {
         | 
| 922 | 
            +
                      "internalType": "bool",
         | 
| 923 | 
            +
                      "name": "exists",
         | 
| 924 | 
            +
                      "type": "bool"
         | 
| 925 | 
            +
                    }
         | 
| 926 | 
            +
                  ],
         | 
| 927 | 
            +
                  "stateMutability": "view",
         | 
| 928 | 
            +
                  "type": "function"
         | 
| 929 | 
            +
                },
         | 
| 930 | 
            +
                {
         | 
| 931 | 
            +
                  "inputs": [
         | 
| 932 | 
            +
                    {
         | 
| 933 | 
            +
                      "internalType": "RoleId",
         | 
| 934 | 
            +
                      "name": "roleId",
         | 
| 935 | 
            +
                      "type": "uint64"
         | 
| 936 | 
            +
                    }
         | 
| 937 | 
            +
                  ],
         | 
| 938 | 
            +
                  "name": "roleMembers",
         | 
| 939 | 
            +
                  "outputs": [
         | 
| 940 | 
            +
                    {
         | 
| 941 | 
            +
                      "internalType": "uint256",
         | 
| 942 | 
            +
                      "name": "numberOfMembers",
         | 
| 943 | 
            +
                      "type": "uint256"
         | 
| 944 | 
            +
                    }
         | 
| 945 | 
            +
                  ],
         | 
| 946 | 
            +
                  "stateMutability": "view",
         | 
| 947 | 
            +
                  "type": "function"
         | 
| 948 | 
            +
                },
         | 
| 949 | 
            +
                {
         | 
| 950 | 
            +
                  "inputs": [],
         | 
| 951 | 
            +
                  "name": "roles",
         | 
| 952 | 
            +
                  "outputs": [
         | 
| 953 | 
            +
                    {
         | 
| 954 | 
            +
                      "internalType": "uint256",
         | 
| 955 | 
            +
                      "name": "numberOfRoles",
         | 
| 956 | 
            +
                      "type": "uint256"
         | 
| 957 | 
            +
                    }
         | 
| 958 | 
            +
                  ],
         | 
| 959 | 
            +
                  "stateMutability": "view",
         | 
| 960 | 
            +
                  "type": "function"
         | 
| 961 | 
            +
                },
         | 
| 962 | 
            +
                {
         | 
| 963 | 
            +
                  "inputs": [
         | 
| 964 | 
            +
                    {
         | 
| 965 | 
            +
                      "internalType": "address",
         | 
| 966 | 
            +
                      "name": "newAuthority",
         | 
| 967 | 
            +
                      "type": "address"
         | 
| 968 | 
            +
                    }
         | 
| 969 | 
            +
                  ],
         | 
| 970 | 
            +
                  "name": "setAuthority",
         | 
| 971 | 
            +
                  "outputs": [],
         | 
| 972 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 973 | 
            +
                  "type": "function"
         | 
| 974 | 
            +
                },
         | 
| 975 | 
            +
                {
         | 
| 976 | 
            +
                  "inputs": [
         | 
| 977 | 
            +
                    {
         | 
| 978 | 
            +
                      "internalType": "address",
         | 
| 979 | 
            +
                      "name": "target",
         | 
| 980 | 
            +
                      "type": "address"
         | 
| 981 | 
            +
                    }
         | 
| 982 | 
            +
                  ],
         | 
| 983 | 
            +
                  "name": "targetExists",
         | 
| 984 | 
            +
                  "outputs": [
         | 
| 985 | 
            +
                    {
         | 
| 986 | 
            +
                      "internalType": "bool",
         | 
| 987 | 
            +
                      "name": "exists",
         | 
| 988 | 
            +
                      "type": "bool"
         | 
| 989 | 
            +
                    }
         | 
| 990 | 
            +
                  ],
         | 
| 991 | 
            +
                  "stateMutability": "view",
         | 
| 992 | 
            +
                  "type": "function"
         | 
| 993 | 
            +
                },
         | 
| 994 | 
            +
                {
         | 
| 995 | 
            +
                  "inputs": [],
         | 
| 996 | 
            +
                  "name": "targets",
         | 
| 997 | 
            +
                  "outputs": [
         | 
| 998 | 
            +
                    {
         | 
| 999 | 
            +
                      "internalType": "uint256",
         | 
| 1000 | 
            +
                      "name": "numberOfTargets",
         | 
| 1001 | 
            +
                      "type": "uint256"
         | 
| 1002 | 
            +
                    }
         | 
| 1003 | 
            +
                  ],
         | 
| 1004 | 
            +
                  "stateMutability": "view",
         | 
| 1005 | 
            +
                  "type": "function"
         | 
| 1006 | 
            +
                },
         | 
| 1007 | 
            +
                {
         | 
| 1008 | 
            +
                  "inputs": [
         | 
| 1009 | 
            +
                    {
         | 
| 1010 | 
            +
                      "internalType": "bytes4",
         | 
| 1011 | 
            +
                      "name": "selector",
         | 
| 1012 | 
            +
                      "type": "bytes4"
         | 
| 1013 | 
            +
                    },
         | 
| 1014 | 
            +
                    {
         | 
| 1015 | 
            +
                      "internalType": "string",
         | 
| 1016 | 
            +
                      "name": "name",
         | 
| 1017 | 
            +
                      "type": "string"
         | 
| 1018 | 
            +
                    }
         | 
| 1019 | 
            +
                  ],
         | 
| 1020 | 
            +
                  "name": "toFunction",
         | 
| 1021 | 
            +
                  "outputs": [
         | 
| 1022 | 
            +
                    {
         | 
| 1023 | 
            +
                      "components": [
         | 
| 1024 | 
            +
                        {
         | 
| 1025 | 
            +
                          "internalType": "Str",
         | 
| 1026 | 
            +
                          "name": "name",
         | 
| 1027 | 
            +
                          "type": "bytes32"
         | 
| 1028 | 
            +
                        },
         | 
| 1029 | 
            +
                        {
         | 
| 1030 | 
            +
                          "internalType": "Selector",
         | 
| 1031 | 
            +
                          "name": "selector",
         | 
| 1032 | 
            +
                          "type": "bytes4"
         | 
| 1033 | 
            +
                        },
         | 
| 1034 | 
            +
                        {
         | 
| 1035 | 
            +
                          "internalType": "Timestamp",
         | 
| 1036 | 
            +
                          "name": "createdAt",
         | 
| 1037 | 
            +
                          "type": "uint40"
         | 
| 1038 | 
            +
                        }
         | 
| 1039 | 
            +
                      ],
         | 
| 1040 | 
            +
                      "internalType": "struct IAccess.FunctionInfo",
         | 
| 1041 | 
            +
                      "name": "",
         | 
| 1042 | 
            +
                      "type": "tuple"
         | 
| 1043 | 
            +
                    }
         | 
| 1044 | 
            +
                  ],
         | 
| 1045 | 
            +
                  "stateMutability": "view",
         | 
| 1046 | 
            +
                  "type": "function"
         | 
| 1047 | 
            +
                },
         | 
| 1048 | 
            +
                {
         | 
| 1049 | 
            +
                  "inputs": [
         | 
| 1050 | 
            +
                    {
         | 
| 1051 | 
            +
                      "internalType": "RoleId",
         | 
| 1052 | 
            +
                      "name": "adminRoleId",
         | 
| 1053 | 
            +
                      "type": "uint64"
         | 
| 1054 | 
            +
                    },
         | 
| 1055 | 
            +
                    {
         | 
| 1056 | 
            +
                      "internalType": "enum IAccess.RoleType",
         | 
| 1057 | 
            +
                      "name": "roleType",
         | 
| 1058 | 
            +
                      "type": "uint8"
         | 
| 1059 | 
            +
                    },
         | 
| 1060 | 
            +
                    {
         | 
| 1061 | 
            +
                      "internalType": "uint32",
         | 
| 1062 | 
            +
                      "name": "maxMemberCount",
         | 
| 1063 | 
            +
                      "type": "uint32"
         | 
| 1064 | 
            +
                    },
         | 
| 1065 | 
            +
                    {
         | 
| 1066 | 
            +
                      "internalType": "string",
         | 
| 1067 | 
            +
                      "name": "name",
         | 
| 1068 | 
            +
                      "type": "string"
         | 
| 1069 | 
            +
                    }
         | 
| 1070 | 
            +
                  ],
         | 
| 1071 | 
            +
                  "name": "toRole",
         | 
| 1072 | 
            +
                  "outputs": [
         | 
| 1073 | 
            +
                    {
         | 
| 1074 | 
            +
                      "components": [
         | 
| 1075 | 
            +
                        {
         | 
| 1076 | 
            +
                          "internalType": "RoleId",
         | 
| 1077 | 
            +
                          "name": "adminRoleId",
         | 
| 1078 | 
            +
                          "type": "uint64"
         | 
| 1079 | 
            +
                        },
         | 
| 1080 | 
            +
                        {
         | 
| 1081 | 
            +
                          "internalType": "enum IAccess.RoleType",
         | 
| 1082 | 
            +
                          "name": "roleType",
         | 
| 1083 | 
            +
                          "type": "uint8"
         | 
| 1084 | 
            +
                        },
         | 
| 1085 | 
            +
                        {
         | 
| 1086 | 
            +
                          "internalType": "uint32",
         | 
| 1087 | 
            +
                          "name": "maxMemberCount",
         | 
| 1088 | 
            +
                          "type": "uint32"
         | 
| 1089 | 
            +
                        },
         | 
| 1090 | 
            +
                        {
         | 
| 1091 | 
            +
                          "internalType": "Str",
         | 
| 1092 | 
            +
                          "name": "name",
         | 
| 1093 | 
            +
                          "type": "bytes32"
         | 
| 1094 | 
            +
                        },
         | 
| 1095 | 
            +
                        {
         | 
| 1096 | 
            +
                          "internalType": "Timestamp",
         | 
| 1097 | 
            +
                          "name": "createdAt",
         | 
| 1098 | 
            +
                          "type": "uint40"
         | 
| 1099 | 
            +
                        },
         | 
| 1100 | 
            +
                        {
         | 
| 1101 | 
            +
                          "internalType": "Timestamp",
         | 
| 1102 | 
            +
                          "name": "pausedAt",
         | 
| 1103 | 
            +
                          "type": "uint40"
         | 
| 1104 | 
            +
                        }
         | 
| 1105 | 
            +
                      ],
         | 
| 1106 | 
            +
                      "internalType": "struct IAccess.RoleInfo",
         | 
| 1107 | 
            +
                      "name": "",
         | 
| 1108 | 
            +
                      "type": "tuple"
         | 
| 1109 | 
            +
                    }
         | 
| 1110 | 
            +
                  ],
         | 
| 1111 | 
            +
                  "stateMutability": "view",
         | 
| 1112 | 
            +
                  "type": "function"
         | 
| 1113 | 
            +
                }
         | 
| 1114 | 
            +
              ],
         | 
| 1115 | 
            +
              "bytecode": "0x608060405234801561000f575f80fd5b50600180546001600160a01b0319163317905560405161002e906108a8565b604051809103905ff080158015610047573d5f803e3d5ffd5b505f80546001600160a01b0319166001600160a01b0392909216918217905560405163189acdbd60e31b815230600482015263c4d66de8906024015f604051808303815f87803b158015610099575f80fd5b505af11580156100ab573d5f803e3d5ffd5b50505f546100c492506001600160a01b031690506100d1565b6100cc610145565b610a9c565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020015b60405180910390a15050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__637c3940bf5f8054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101d291906108c9565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610214573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061023891906108c9565b90506102856102456102f5565b6102806102506102f5565b6001806040518060400160405280600981526020016841646d696e526f6c6560b81b81525061036f60201b60201c565b61054c565b6001600160401b0381165f9081526005602052604090206102a690306107ff565b506102f26102b261081c565b6102806102bd6102f5565b600263ffffffff6040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525061036f60201b60201c565b50565b604051637c3940bf60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024015b602060405180830381865af4158015610346573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061036a91906108c9565b905090565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b031681526020018560038111156103cc576103cc6108eb565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610414919061092d565b602060405180830381865af415801561042f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610453919061093f565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561049f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104c39190610956565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610516573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061053a9190610956565b64ffffffffff16905295945050505050565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610593573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b79190610956565b64ffffffffff1660808201526001600160401b038083165f9081526002602090815260409091208351815493166001600160401b03198416811782559184015184939192909183916001600160481b03199091161768010000000000000000836003811115610628576106286108eb565b0217905550604082810151825463ffffffff90911669010000000000000000000263ffffffff60481b1990911617825560608084015160018085019190915560808501516002909401805460a09096015164ffffffffff90811665010000000000026001600160501b031990971695169490941794909417909255805180820182526001600160401b03808716808352602080840187815295880180515f9081526003808452878220965187549951151568010000000000000000026001600160481b0319909a169087161798909817909555600480549889018155948590528488047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b018054989097166008026101000a92830292909302199096161790935592840151845192519151631623433d60e31b81527f450614a3feeef5c4e204a5b960f0b368083de37223fc452a8b3c2cb93d075a05948794929373__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e8926107ae92910190815260200190565b5f60405180830381865af41580156107c8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107ef919081019061098e565b6040516101399493929190610a3e565b5f610813836001600160a01b03841661085c565b90505b92915050565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf9060240161032b565b5f8181526001830160205260408120546108a157508154600181810184555f848152602080822090930184905584548482528286019093526040902091909155610816565b505f610816565b612bbd8061227c83390190565b6001600160401b03811681146102f2575f80fd5b5f602082840312156108d9575f80fd5b81516108e4816108b5565b9392505050565b634e487b7160e01b5f52602160045260245ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61081360208301846108ff565b5f6020828403121561094f575f80fd5b5051919050565b5f60208284031215610966575f80fd5b815164ffffffffff811681146108e4575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f6020828403121561099e575f80fd5b81516001600160401b038111156109b3575f80fd5b8201601f810184136109c3575f80fd5b80516001600160401b038111156109dc576109dc61097a565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610a0a57610a0a61097a565b604052818152828201602001861015610a21575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b6001600160401b03851681525f60048510610a6757634e487b7160e01b5f52602160045260245ffd5b602082018590526001600160401b0384166040830152608060608301819052610a92908301846108ff565b9695505050505050565b6117d380610aa95f395ff3fe608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063728a61a8116100f3578063bc62a0a511610093578063c6a001791161006e578063c6a0017914610566578063cd55e51b14610579578063d5f394881461058c578063d78a83b11461059d575f80fd5b8063bc62a0a5146104eb578063bcfb11b014610520578063bf7e214f14610549575f80fd5b80638fb36037116100ce5780638fb360371461042e57806392bdd9bd1461044f578063b3ecf236146104d0578063b7009613146104d8575f80fd5b8063728a61a8146103fe5780637a9e5e4b146104115780638308ceb114610426575f80fd5b806335471f801161015e5780635bfa5027116101395780635bfa5027146103a55780635cb870b1146103c5578063605aa10a146103d857806364fc3142146103eb575f80fd5b806335471f801461035f578063392f5f64146103725780633fd855611461037a575f80fd5b806324913ce61161019957806324913ce6146102a057806326d60fb4146102f457806326decd40146102fc5780633406b1521461031f575f80fd5b806303014974146101bf57806312e1ebc5146101e557806315fb0abb14610280575b5f80fd5b6101d26101cd3660046112f9565b6105b0565b6040519081526020015b60405180910390f35b6102556101f336600461132f565b60408051606080820183525f80835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352805484526001015460ff8116151591840191909152610100900464ffffffffff169082015290565b60408051825181526020808401511515908201529181015164ffffffffff16908201526060016101dc565b61029361028e3660046113fa565b6105d6565b6040516101dc919061143c565b6102b36102ae36600461146e565b610779565b60408051835181526020808501516001600160e01b031916908201529281015164ffffffffff16908301526001600160401b031660608201526080016101dc565b6008546101d2565b61030f61030a36600461132f565b610a07565b60405190151581526020016101dc565b61034761032d366004611496565b5f908152600760205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016101dc565b6101d261036d36600461132f565b610a73565b6004546101d2565b61038d610388366004611496565b610afd565b6040516001600160401b0390911681526020016101dc565b6103b86103b33660046112f9565b610b3f565b6040516101dc91906114c1565b6103b86103d336600461155e565b610c19565b61030f6103e636600461132f565b610df6565b61030f6103f93660046115d1565b610e6b565b61034761040c366004611496565b610eee565b61042461041f36600461132f565b610f1c565b005b61038d610fbd565b610436611036565b6040516001600160e01b031990911681526020016101dc565b6104aa61045d366004611496565b604080518082019091525f8082526020820152505f908152600360209081526040918290208251808401909352546001600160401b0381168352600160401b900460ff1615159082015290565b6040805182516001600160401b03168152602092830151151592810192909252016101dc565b61038d61106c565b61030f6104e6366004611606565b6110bc565b6105136040518060400160405280600981526020016841646d696e526f6c6560b81b81525081565b6040516101dc9190611678565b6105136040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525081565b5f8051602061177e833981519152546001600160a01b0316610347565b61030f6105743660046112f9565b6111a2565b61030f6105873660046115d1565b6111fe565b6001546001600160a01b0316610347565b6103476105ab36600461168a565b61122c565b6001600160401b0381165f9081526005602052604081206105d09061124d565b92915050565b60408051606080820183525f808352602083018190528284015282519081019283905263cdc23e6960e01b909252908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e6961062d8660648501611678565b602060405180830381865af4158015610648573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066c91906116a6565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af41580156106cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ef91906116bd565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610745573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061076991906116d8565b64ffffffffff1690529392505050565b604080516060810182525f80825260208083018290528284018290526001600160a01b038616825260099052828120925163dfe63db960e01b81526004810193909352602483018490529091819073__$8df0087758613aef8a614b5774fdb3323b$__9063dfe63db990604401602060405180830381865af4158015610801573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082591906116bd565b6001600160a01b038681165f908152600a602090815260408083206001600160e01b031986811680865291845282852083516060810185528154815260019091015460e081901b90921694810194909452640100000000900464ffffffffff168383015292549051636ea1af2560e11b8152600481019390935290965092935073__$1d92393fa9ccd763988368ce8a1cb90d26$__92637c3940bf921690636d5115bd90899073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af4158015610905573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061092991906116bd565b6040516001600160e01b031960e085901b811682526001600160a01b03909316600482015291166024820152604401602060405180830381865afa158015610973573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061099791906116fc565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af41580156109d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fd91906116fc565b9150509250929050565b5f805460405163a166aa8960e01b81526001600160a01b0384811660048301529091169063a166aa8990602401602060405180830381865afa158015610a4f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105d09190611726565b6001600160a01b0381165f90815260096020526040808220905163868b3e0760e01b8152600481019190915273__$8df0087758613aef8a614b5774fdb3323b$__9063868b3e0790602401602060405180830381865af4158015610ad9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105d091906116a6565b5f60048281548110610b1157610b1161173f565b905f5260205f2090600491828204019190066008029054906101000a90046001600160401b03169050919050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600282529185902085519384019095528454918216835292939192830190600160401b900460ff166003811115610bb757610bb76114ad565b6003811115610bc857610bc86114ad565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115610c7657610c766114ad565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610cbe9190611678565b602060405180830381865af4158015610cd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfd91906116a6565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6d91906116d8565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610dc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de491906116d8565b64ffffffffff16905295945050505050565b6001600160a01b0381165f90815260066020526040808220600101549051638d38cd4b60e01b815261010090910464ffffffffff16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b906024015b602060405180830381865af4158015610a4f573d5f803e3d5ffd5b5f80546040516368fc2b7760e11b81526001600160401b03841660048201526001600160a01b0385811660248301528392169063d1f856ee906044016040805180830381865afa158015610ec1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ee59190611753565b50949350505050565b5f60088281548110610f0257610f0261173f565b5f918252602090912001546001600160a01b031692915050565b33610f3b5f8051602061177e833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610f7b5760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b5f03610fb0576040516361798f2f60e11b81526001600160a01b0383166004820152602401610f72565b610fb982611256565b5050565b5f805f9054906101000a90046001600160a01b03166001600160a01b0316633ca7c02a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561100d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103191906116fc565b905090565b5f8051602061177e83398151915280545f9190600160a01b900460ff1661105d575f611066565b638fb3603760e01b5b91505090565b5f805f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561100d573d5f803e3d5ffd5b5f8054604051636ea1af2560e11b81526001600160e01b0319841660048201526001600160a01b039091169063b7009613908690869073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af415801561112c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115091906116bd565b60405160e085901b6001600160e01b031990811682526001600160a01b0394851660048301529290931660248401521660448201526064016040805180830381865afa158015610ec1573d5f803e3d5ffd5b6001600160401b0381165f908152600260208190526040808320909101549051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401610e50565b6001600160401b038082165f90815260026020526040812054909161122591859116610e6b565b9392505050565b6001600160401b0382165f90815260056020526040812061122590836112b6565b5f6105d0825490565b5f8051602061177e83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f61122583835f825f0182815481106112d1576112d161173f565b905f5260205f200154905092915050565b6001600160401b03811681146112f6575f80fd5b50565b5f60208284031215611309575f80fd5b8135611225816112e2565b80356001600160a01b038116811461132a575f80fd5b919050565b5f6020828403121561133f575f80fd5b61122582611314565b6001600160e01b0319811681146112f6575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611380575f80fd5b81356001600160401b038111156113995761139961135d565b604051601f8201601f19908116603f011681016001600160401b03811182821017156113c7576113c761135d565b6040528181528382016020018510156113de575f80fd5b816020850160208301375f918101602001919091529392505050565b5f806040838503121561140b575f80fd5b823561141681611348565b915060208301356001600160401b03811115611430575f80fd5b6109fd85828601611371565b815181526020808301516001600160e01b0319169082015260408083015164ffffffffff1690820152606081016105d0565b5f806040838503121561147f575f80fd5b61148883611314565b946020939093013593505050565b5f602082840312156114a6575f80fd5b5035919050565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c0820190600481106114f457634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff604084015116604083015260608301516060830152608083015161152d608084018264ffffffffff169052565b5060a083015161154660a084018264ffffffffff169052565b5092915050565b63ffffffff811681146112f6575f80fd5b5f805f8060808587031215611571575f80fd5b843561157c816112e2565b935060208501356004811061158f575f80fd5b9250604085013561159f8161154d565b915060608501356001600160401b038111156115b9575f80fd5b6115c587828801611371565b91505092959194509250565b5f80604083850312156115e2575f80fd5b6115eb83611314565b915060208301356115fb816112e2565b809150509250929050565b5f805f60608486031215611618575f80fd5b61162184611314565b925061162f60208501611314565b9150604084013561163f81611348565b809150509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611225602083018461164a565b5f806040838503121561169b575f80fd5b8235611488816112e2565b5f602082840312156116b6575f80fd5b5051919050565b5f602082840312156116cd575f80fd5b815161122581611348565b5f602082840312156116e8575f80fd5b815164ffffffffff81168114611225575f80fd5b5f6020828403121561170c575f80fd5b8151611225816112e2565b8051801515811461132a575f80fd5b5f60208284031215611736575f80fd5b61122582611717565b634e487b7160e01b5f52603260045260245ffd5b5f8060408385031215611764575f80fd5b61176d83611717565b915060208301516115fb8161154d56fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212207debde64f1e9276f11762bf1642f1d5dcf77e193aa4e2f3cb2c820f1fead953b64736f6c634300081a00336080604052348015600e575f80fd5b50612ba18061001c5f395ff3fe6080604052600436106101e6575f3560e01c80636d5115bd11610108578063b70096131161009d578063d1f856ee1161006d578063d1f856ee146105e9578063d22b598914610608578063d6bb62c614610627578063f801a69814610646578063fe0776f51461067f575f80fd5b8063b70096131461055b578063b7d2b16214610596578063c4d66de8146105b5578063cc1b6c81146105d4575f80fd5b8063a166aa89116100d8578063a166aa89146104b4578063a64d95ce146104e3578063abd9bd2a14610502578063ac9650d81461052f575f80fd5b80636d5115bd1461044457806375b238fc14610463578063853551b81461047657806394c7d7ee14610495575f80fd5b806330cae1871161017e5780634665096d1161014e5780634665096d146103d25780634c1da1e2146103e75780635296295214610406578063530dd45614610425575f80fd5b806330cae187146103445780633adc277a146103635780633ca7c02a146103995780634136a33c146103b3575f80fd5b806318ff183c116101b957806318ff183c1461029a5780631cff79cd146102b957806325c471a0146102cc5780633078f114146102eb575f80fd5b806308d6122d146101ea5780630b0a93ba1461020b57806312be872714610247578063167bd3951461027b575b5f80fd5b3480156101f5575f80fd5b50610209610204366004612483565b61069e565b005b348015610216575f80fd5b5061022a6102253660046124e5565b6106f0565b6040516001600160401b0390911681526020015b60405180910390f35b348015610252575f80fd5b506102666102613660046124e5565b610727565b60405163ffffffff909116815260200161023e565b348015610286575f80fd5b506102096102953660046124fe565b610771565b3480156102a5575f80fd5b506102096102b4366004612539565b610787565b6102666102c73660046125a2565b6107e9565b3480156102d7575f80fd5b506102096102e6366004612605565b61092a565b3480156102f6575f80fd5b5061030a610305366004612647565b61094c565b60405161023e949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b34801561034f575f80fd5b5061020961035e366004612661565b6109bf565b34801561036e575f80fd5b5061038261037d366004612692565b6109d1565b60405165ffffffffffff909116815260200161023e565b3480156103a4575f80fd5b5061022a6001600160401b0381565b3480156103be575f80fd5b506102666103cd366004612692565b610a13565b3480156103dd575f80fd5b5062093a80610266565b3480156103f2575f80fd5b506102666104013660046126a9565b610a3e565b348015610411575f80fd5b50610209610420366004612661565b610a78565b348015610430575f80fd5b5061022a61043f3660046124e5565b610a8a565b34801561044f575f80fd5b5061022a61045e3660046126d9565b610aba565b34801561046e575f80fd5b5061022a5f81565b348015610481575f80fd5b50610209610490366004612705565b610b01565b3480156104a0575f80fd5b506102096104af3660046125a2565b610b98565b3480156104bf575f80fd5b506104d36104ce3660046126a9565b610c42565b604051901515815260200161023e565b3480156104ee575f80fd5b506102096104fd366004612720565b610c79565b34801561050d575f80fd5b5061052161051c366004612748565b610c8b565b60405190815260200161023e565b34801561053a575f80fd5b5061054e6105493660046127a8565b610cc3565b60405161023e91906127e6565b348015610566575f80fd5b5061057a61057536600461286a565b610da8565b60408051921515835263ffffffff90911660208301520161023e565b3480156105a1575f80fd5b506102096105b0366004612647565b610e29565b3480156105c0575f80fd5b506102096105cf3660046126a9565b610e40565b3480156105df575f80fd5b5062069780610266565b3480156105f4575f80fd5b5061057a610603366004612647565b610f4b565b348015610613575f80fd5b506102096106223660046128b2565b610fc4565b348015610632575f80fd5b50610266610641366004612748565b610fd6565b348015610651575f80fd5b506106656106603660046128ce565b611139565b6040805192835263ffffffff90911660208301520161023e565b34801561068a575f80fd5b50610209610699366004612647565b6112d5565b6106a66112fe565b5f5b828110156106e9576106e1858585848181106106c6576106c661293b565b90506020020160208101906106db919061294f565b84611375565b6001016106a8565b5050505050565b5f806106fa611401565b6001600160401b039384165f9081526001918201602052604090200154600160401b900490921692915050565b5f80610731611401565b6001600160401b0384165f90815260018281016020526040909120015490915061076a90600160801b90046001600160701b0316611425565b9392505050565b6107796112fe565b6107838282611443565b5050565b61078f6112fe565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107cf575f80fd5b505af11580156107e1573d5f803e3d5ffd5b505050505050565b5f806107f3611401565b9050335f80610804838989896114e7565b915091508115801561081a575063ffffffff8116155b1561086d57828861082b8989611538565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61087a848a8a8a610c8b565b90505f63ffffffff83161515806108a05750610895826109d1565b65ffffffffffff1615155b156108b1576108ae8261154f565b90505b60038601546108c98b6108c48c8c611538565b611660565b87600301819055506109128b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506116a2915050565b50600390960195909555509293505050509392505050565b6109326112fe565b610946838361094086610727565b8461173b565b50505050565b5f805f805f610959611401565b6001600160401b0388165f90815260018201602090815260408083206001600160a01b038b1684529091529020805465ffffffffffff81169750919250906109b090600160301b90046001600160701b0316611995565b979a9199509750945050505050565b6109c76112fe565b61078382826119b6565b5f806109db611401565b5f84815260028201602052604090205490915065ffffffffffff166109ff81611a66565b610a095780610a0b565b5f5b949350505050565b5f80610a1d611401565b5f93845260020160205250506040902054600160301b900463ffffffff1690565b5f80610a48611401565b6001600160a01b0384165f9081526020829052604090206001015490915061076a906001600160701b0316611425565b610a806112fe565b6107838282611a94565b5f80610a94611401565b6001600160401b039384165f908152600191820160205260409020015490921692915050565b5f80610ac4611401565b6001600160a01b0385165f908152602091825260408082206001600160e01b03198716835290925220546001600160401b03169150505b92915050565b610b096112fe565b6001600160401b0383161580610b2757506001600160401b03838116145b15610b505760405163061c6a4360e21b81526001600160401b0384166004820152602401610864565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610b8b929190612992565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610bd7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bfb91906129a5565b6001600160e01b03191614610c2e57604051630641fee960e31b81526001600160a01b0382166004820152602401610864565b6106e9610c3d85838686610c8b565b61154f565b5f80610c4c611401565b6001600160a01b039093165f9081526020939093525050604090206001015460ff600160701b9091041690565b610c816112fe565b6107838282611b52565b5f84848484604051602001610ca394939291906129c0565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610cec57610cec612a27565b604051908082528060200260200182016040528015610d1f57816020015b6060815260200190600190039081610d0a5790505b5091505f5b83811015610da057610d7b30868684818110610d4257610d4261293b565b9050602002810190610d549190612a3b565b85604051602001610d6793929190612a94565b604051602081830303815290604052611c7c565b838281518110610d8d57610d8d61293b565b6020908102919091010152600101610d24565b505092915050565b5f80610db384610c42565b15610dc257505f905080610e21565b306001600160a01b03861603610de657610ddc8484611cee565b5f91509150610e21565b5f610df18585610aba565b90505f80610dff8389610f4b565b9150915081610e0f575f80610e19565b63ffffffff811615815b945094505050505b935093915050565b610e316112fe565b610e3b8282611d12565b505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015610e845750825b90505f826001600160401b03166001148015610e9f5750303b155b905081158015610ead575080155b15610ecb5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ef557845460ff60401b1916600160401b1785555b610efe86611e0d565b83156107e157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050505050565b5f8067fffffffffffffffe196001600160401b03851601610f715750600190505f610fbd565b5f80610f7d868661094c565b5050915091508165ffffffffffff165f14158015610fb25750610f9e611e21565b65ffffffffffff168265ffffffffffff1611155b93509150610fbd9050565b9250929050565b610fcc6112fe565b6107838282611e30565b5f80610fe0611401565b9050335f610fee8686611538565b90505f610ffd89898989610c8b565b5f81815260028601602052604081205491925065ffffffffffff909116900361103c5760405163060a299b60e41b815260048101829052602401610864565b826001600160a01b0316896001600160a01b0316146110d5575f6110605f85610f4b565b5090505f61107a6110746102258c87610aba565b86610f4b565b50905081158015611089575080155b156110d257604051630ff89d4760e21b81526001600160a01b038087166004830152808d1660248301528b1660448201526001600160e01b031985166064820152608401610864565b50505b5f818152600285016020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a39998505050505050505050565b5f805f611144611401565b9050335f611154828a8a8a6114e7565b9150505f8163ffffffff16611167611e21565b6111719190612aa9565b905063ffffffff821615806111a757505f8765ffffffffffff161180156111a757508065ffffffffffff168765ffffffffffff16105b156111b857828a61082b8b8b611538565b6111d28765ffffffffffff168265ffffffffffff16611ef8565b96506111e0838b8b8b610c8b565b95506111eb86611f0d565b836002015f8781526020019081526020015f205f0160069054906101000a900463ffffffff16600101945086846002015f8881526020019081526020015f205f015f6101000a81548165ffffffffffff021916908365ffffffffffff16021790555084846002015f8881526020019081526020015f205f0160066101000a81548163ffffffff021916908363ffffffff1602179055508463ffffffff16867f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b489868e8e8e6040516112c0959493929190612ac7565b60405180910390a35050505094509492505050565b6001600160a01b0381163314610e3157604051635f159e6360e01b815260040160405180910390fd5b335f8061130c838236611f67565b9150915081610e3b578063ffffffff165f03611366575f61132d8136612018565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610864565b610946610c3d84305f36610c8b565b5f61137e611401565b6001600160a01b0385165f818152602083815260408083206001600160e01b0319891680855290835292819020805467ffffffffffffffff19166001600160401b03891690811790915590519283529394507f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a350505050565b7f40c6c8c28789853c7efd823ab20824bbd71718a8a5915e855f6f288c9a26ad0090565b5f80611439836001600160701b0316611995565b5090949350505050565b5f61144c611401565b9050306001600160a01b0384160361148257604051630b40d17960e31b81526001600160a01b0384166004820152602401610864565b6001600160a01b0383165f81815260208390526040908190206001018054851515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb13890610b8b90851515815260200190565b5f80306001600160a01b0386160361150d57611504868585611f67565b9150915061152f565b600483106115295761152486866105758787611538565b611504565b505f9050805b94509492505050565b5f6115466004828486612a00565b61076a91612b0c565b5f80611559611401565b5f84815260028201602052604081205491925065ffffffffffff821691600160301b900463ffffffff16908290036115a75760405163060a299b60e41b815260048101869052602401610864565b6115af611e21565b65ffffffffffff168265ffffffffffff1611156115e257604051630c65b5bd60e11b815260048101869052602401610864565b6115eb82611a66565b1561160c57604051631e2975b960e21b815260048101869052602401610864565b5f858152600284016020526040808220805465ffffffffffff191690555163ffffffff83169187917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a3949350505050565b604080516001600160a01b03939093166020808501919091526001600160e01b0319929092168382015280518084038201815260609093019052815191012090565b6060814710156116c75760405163cd78605960e01b8152306004820152602401610864565b5f80856001600160a01b031684866040516116e29190612b44565b5f6040518083038185875af1925050503d805f811461171c576040519150601f19603f3d011682016040523d82523d5f602084013e611721565b606091505b50915091506117318683836121d9565b9695505050505050565b5f80611745611401565b905067fffffffffffffffe196001600160401b038716016117845760405163061c6a4360e21b81526001600160401b0387166004820152602401610864565b6001600160401b0386165f90815260018201602090815260408083206001600160a01b038916845290915281205465ffffffffffff1615908115611878578563ffffffff166117d1611e21565b6117db9190612aa9565b905060405180604001604052808265ffffffffffff1681526020016118098763ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b038a165f90815260018601602090815260408083206001600160a01b038d1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff90911617919091179055611926565b6001600160401b0388165f90815260018401602090815260408083206001600160a01b038b1684529091528120546118c391600160301b9091046001600160701b0316908790612235565b6001600160401b038a165f90815260018601602090815260408083206001600160a01b038d168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8716815265ffffffffffff831660208201528315158183015290516001600160a01b038916916001600160401b038b16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a3509695505050505050565b5f805f6119a9846119a4611e21565b6122db565b9250925092509193909250565b5f6119bf611401565b90506001600160401b03831615806119df57506001600160401b03838116145b15611a085760405163061c6a4360e21b81526001600160401b0384166004820152602401610864565b6001600160401b038381165f81815260018481016020526040808320909101805467ffffffffffffffff19169487169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a3505050565b5f611a6f611e21565b65ffffffffffff16611a8462093a8084612aa9565b65ffffffffffff16111592915050565b5f611a9d611401565b90506001600160401b0383161580611abd57506001600160401b03838116145b15611ae65760405163061c6a4360e21b81526001600160401b0384166004820152602401610864565b6001600160401b038381165f8181526001848101602052604080832090910180546fffffffffffffffff00000000000000001916600160401b958816958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a3505050565b5f611b5b611401565b905067fffffffffffffffe196001600160401b03841601611b9a5760405163061c6a4360e21b81526001600160401b0384166004820152602401610864565b6001600160401b0383165f9081526001828101602052604082200154611bd490600160801b90046001600160701b03168462069780612235565b6001600160401b0386165f81815260018087016020526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890611c6e908690859063ffffffff92909216825265ffffffffffff16602082015260400190565b60405180910390a250505050565b60605f80846001600160a01b031684604051611c989190612b44565b5f60405180830381855af49150503d805f8114611cd0576040519150601f19603f3d011682016040523d82523d5f602084013e611cd5565b606091505b5091509150611ce58583836121d9565b95945050505050565b5f80611cf8611401565b9050611d048484611660565b600390910154149392505050565b5f80611d1c611401565b905067fffffffffffffffe196001600160401b03851601611d5b5760405163061c6a4360e21b81526001600160401b0385166004820152602401610864565b6001600160401b0384165f90815260018201602090815260408083206001600160a01b038716845290915281205465ffffffffffff169003611da0575f915050610afb565b6001600160401b0384165f81815260018301602090815260408083206001600160a01b038816808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a35060019392505050565b611e1561232d565b611e1e81612378565b50565b5f611e2b426123b5565b905090565b5f611e39611401565b90505f611e6f83620697806001600160a01b0387165f908152602086905260409020600101546001600160701b03169190612235565b6001600160a01b0386165f818152602086815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8816815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101611c6e565b5f818311611f06578161076a565b5090919050565b5f611f16611401565b5f83815260028201602052604090205490915065ffffffffffff168015801590611f465750611f4481611a66565b155b15610e3b5760405163813e945960e01b815260048101849052602401610864565b5f806004831015611f7c57505f905080610e21565b306001600160a01b03861603611f9f57610ddc30611f9a8686611538565b611cee565b5f805f611fac8787612018565b92509250925082611fc5575f8094509450505050610e21565b5f80611fd1848b610f4b565b9150915081611fea575f80965096505050505050610e21565b6120008363ffffffff168263ffffffff16611ef8565b63ffffffff8116159b909a5098505050505050505050565b5f8080600484101561203157505f9150819050806121d2565b5f61203c8686611538565b90506001600160e01b031981166310a6aa3760e31b148061206d57506001600160e01b031981166330cae18760e01b145b8061208857506001600160e01b0319811663294b14a960e11b145b806120a357506001600160e01b03198116635326cae760e11b145b806120be57506001600160e01b0319811663d22b598960e01b145b156120d35760015f80935093509350506121d2565b6001600160e01b0319811663063fc60f60e21b148061210257506001600160e01b0319811663167bd39560e01b145b8061211d57506001600160e01b031981166308d6122d60e01b145b1561215c575f61213160246004888a612a00565b81019061213e91906126a9565b90505f61214a82610a3e565b600196505f955093506121d292505050565b6001600160e01b0319811663012e238d60e51b148061218b57506001600160e01b03198116635be958b160e11b145b156121c7575f61219f60246004888a612a00565b8101906121ac91906124e5565b905060016121b982610a8a565b5f94509450945050506121d2565b5f805f935093509350505b9250925092565b6060826121ee576121e9826123eb565b61076a565b815115801561220557506001600160a01b0384163b155b1561222e57604051639996b31560e01b81526001600160a01b0385166004820152602401610864565b508061076a565b5f805f61224a866001600160701b0316611425565b90505f6122858563ffffffff168763ffffffff168463ffffffff1611612270575f61227a565b61227a8885612b4f565b63ffffffff16611ef8565b90508063ffffffff16612296611e21565b6122a09190612aa9565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f808069ffffffffffffffffffff602086901c166001600160701b03861665ffffffffffff604088901c81169087168111156123195782828261231d565b815f805b9550955095505050509250925092565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661237657604051631afcd79f60e31b815260040160405180910390fd5b565b61238061232d565b6001600160a01b0381166123a957604051630409d6d160e11b81525f6004820152602401610864565b6107835f825f8061173b565b5f65ffffffffffff8211156123e7576040516306dfcc6560e41b81526030600482015260248101839052604401610864565b5090565b8051156123fb5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b0381168114611e1e575f80fd5b5f8083601f840112612438575f80fd5b5081356001600160401b0381111561244e575f80fd5b6020830191508360208260051b8501011115610fbd575f80fd5b80356001600160401b038116811461247e575f80fd5b919050565b5f805f8060608587031215612496575f80fd5b84356124a181612414565b935060208501356001600160401b038111156124bb575f80fd5b6124c787828801612428565b90945092506124da905060408601612468565b905092959194509250565b5f602082840312156124f5575f80fd5b61076a82612468565b5f806040838503121561250f575f80fd5b823561251a81612414565b91506020830135801515811461252e575f80fd5b809150509250929050565b5f806040838503121561254a575f80fd5b823561255581612414565b9150602083013561252e81612414565b5f8083601f840112612575575f80fd5b5081356001600160401b0381111561258b575f80fd5b602083019150836020828501011115610fbd575f80fd5b5f805f604084860312156125b4575f80fd5b83356125bf81612414565b925060208401356001600160401b038111156125d9575f80fd5b6125e586828701612565565b9497909650939450505050565b803563ffffffff8116811461247e575f80fd5b5f805f60608486031215612617575f80fd5b61262084612468565b9250602084013561263081612414565b915061263e604085016125f2565b90509250925092565b5f8060408385031215612658575f80fd5b61255583612468565b5f8060408385031215612672575f80fd5b61267b83612468565b915061268960208401612468565b90509250929050565b5f602082840312156126a2575f80fd5b5035919050565b5f602082840312156126b9575f80fd5b813561076a81612414565b6001600160e01b031981168114611e1e575f80fd5b5f80604083850312156126ea575f80fd5b82356126f581612414565b9150602083013561252e816126c4565b5f805f60408486031215612717575f80fd5b6125bf84612468565b5f8060408385031215612731575f80fd5b61273a83612468565b9150612689602084016125f2565b5f805f806060858703121561275b575f80fd5b843561276681612414565b9350602085013561277681612414565b925060408501356001600160401b03811115612790575f80fd5b61279c87828801612565565b95989497509550505050565b5f80602083850312156127b9575f80fd5b82356001600160401b038111156127ce575f80fd5b6127da85828601612428565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561285e57603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f8301168801019650505060208201915060208401935060018101905061280c565b50929695505050505050565b5f805f6060848603121561287c575f80fd5b833561288781612414565b9250602084013561289781612414565b915060408401356128a7816126c4565b809150509250925092565b5f80604083850312156128c3575f80fd5b823561273a81612414565b5f805f80606085870312156128e1575f80fd5b84356128ec81612414565b935060208501356001600160401b03811115612906575f80fd5b61291287828801612565565b909450925050604085013565ffffffffffff81168114612930575f80fd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561295f575f80fd5b813561076a816126c4565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f610a0b60208301848661296a565b5f602082840312156129b5575f80fd5b815161076a816126c4565b6001600160a01b038581168252841660208201526060604082018190525f90611731908301848661296a565b634e487b7160e01b5f52601160045260245ffd5b5f8085851115612a0e575f80fd5b83861115612a1a575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f808335601e19843603018112612a50575f80fd5b8301803591506001600160401b03821115612a69575f80fd5b602001915036819003821315610fbd575f80fd5b5f81518060208401855e5f93019283525090919050565b828482375f8382015f81526117318185612a7d565b65ffffffffffff8181168382160190811115610afb57610afb6129ec565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f90612b01908301848661296a565b979650505050505050565b80356001600160e01b03198116906004841015612b3d576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f61076a8284612a7d565b63ffffffff8281168282160390811115610afb57610afb6129ec56fea264697066735822122072759d7b5f96dd0caaed8321f069e3fdd1f047ae911241936fca832d24aebe4c64736f6c634300081a0033",
         | 
| 1116 | 
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101bb575f3560e01c8063728a61a8116100f3578063bc62a0a511610093578063c6a001791161006e578063c6a0017914610566578063cd55e51b14610579578063d5f394881461058c578063d78a83b11461059d575f80fd5b8063bc62a0a5146104eb578063bcfb11b014610520578063bf7e214f14610549575f80fd5b80638fb36037116100ce5780638fb360371461042e57806392bdd9bd1461044f578063b3ecf236146104d0578063b7009613146104d8575f80fd5b8063728a61a8146103fe5780637a9e5e4b146104115780638308ceb114610426575f80fd5b806335471f801161015e5780635bfa5027116101395780635bfa5027146103a55780635cb870b1146103c5578063605aa10a146103d857806364fc3142146103eb575f80fd5b806335471f801461035f578063392f5f64146103725780633fd855611461037a575f80fd5b806324913ce61161019957806324913ce6146102a057806326d60fb4146102f457806326decd40146102fc5780633406b1521461031f575f80fd5b806303014974146101bf57806312e1ebc5146101e557806315fb0abb14610280575b5f80fd5b6101d26101cd3660046112f9565b6105b0565b6040519081526020015b60405180910390f35b6102556101f336600461132f565b60408051606080820183525f80835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352805484526001015460ff8116151591840191909152610100900464ffffffffff169082015290565b60408051825181526020808401511515908201529181015164ffffffffff16908201526060016101dc565b61029361028e3660046113fa565b6105d6565b6040516101dc919061143c565b6102b36102ae36600461146e565b610779565b60408051835181526020808501516001600160e01b031916908201529281015164ffffffffff16908301526001600160401b031660608201526080016101dc565b6008546101d2565b61030f61030a36600461132f565b610a07565b60405190151581526020016101dc565b61034761032d366004611496565b5f908152600760205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016101dc565b6101d261036d36600461132f565b610a73565b6004546101d2565b61038d610388366004611496565b610afd565b6040516001600160401b0390911681526020016101dc565b6103b86103b33660046112f9565b610b3f565b6040516101dc91906114c1565b6103b86103d336600461155e565b610c19565b61030f6103e636600461132f565b610df6565b61030f6103f93660046115d1565b610e6b565b61034761040c366004611496565b610eee565b61042461041f36600461132f565b610f1c565b005b61038d610fbd565b610436611036565b6040516001600160e01b031990911681526020016101dc565b6104aa61045d366004611496565b604080518082019091525f8082526020820152505f908152600360209081526040918290208251808401909352546001600160401b0381168352600160401b900460ff1615159082015290565b6040805182516001600160401b03168152602092830151151592810192909252016101dc565b61038d61106c565b61030f6104e6366004611606565b6110bc565b6105136040518060400160405280600981526020016841646d696e526f6c6560b81b81525081565b6040516101dc9190611678565b6105136040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525081565b5f8051602061177e833981519152546001600160a01b0316610347565b61030f6105743660046112f9565b6111a2565b61030f6105873660046115d1565b6111fe565b6001546001600160a01b0316610347565b6103476105ab36600461168a565b61122c565b6001600160401b0381165f9081526005602052604081206105d09061124d565b92915050565b60408051606080820183525f808352602083018190528284015282519081019283905263cdc23e6960e01b909252908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e6961062d8660648501611678565b602060405180830381865af4158015610648573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066c91906116a6565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af41580156106cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ef91906116bd565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610745573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061076991906116d8565b64ffffffffff1690529392505050565b604080516060810182525f80825260208083018290528284018290526001600160a01b038616825260099052828120925163dfe63db960e01b81526004810193909352602483018490529091819073__$8df0087758613aef8a614b5774fdb3323b$__9063dfe63db990604401602060405180830381865af4158015610801573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082591906116bd565b6001600160a01b038681165f908152600a602090815260408083206001600160e01b031986811680865291845282852083516060810185528154815260019091015460e081901b90921694810194909452640100000000900464ffffffffff168383015292549051636ea1af2560e11b8152600481019390935290965092935073__$1d92393fa9ccd763988368ce8a1cb90d26$__92637c3940bf921690636d5115bd90899073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af4158015610905573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061092991906116bd565b6040516001600160e01b031960e085901b811682526001600160a01b03909316600482015291166024820152604401602060405180830381865afa158015610973573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061099791906116fc565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af41580156109d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fd91906116fc565b9150509250929050565b5f805460405163a166aa8960e01b81526001600160a01b0384811660048301529091169063a166aa8990602401602060405180830381865afa158015610a4f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105d09190611726565b6001600160a01b0381165f90815260096020526040808220905163868b3e0760e01b8152600481019190915273__$8df0087758613aef8a614b5774fdb3323b$__9063868b3e0790602401602060405180830381865af4158015610ad9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105d091906116a6565b5f60048281548110610b1157610b1161173f565b905f5260205f2090600491828204019190066008029054906101000a90046001600160401b03169050919050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600282529185902085519384019095528454918216835292939192830190600160401b900460ff166003811115610bb757610bb76114ad565b6003811115610bc857610bc86114ad565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115610c7657610c766114ad565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610cbe9190611678565b602060405180830381865af4158015610cd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfd91906116a6565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6d91906116d8565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610dc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de491906116d8565b64ffffffffff16905295945050505050565b6001600160a01b0381165f90815260066020526040808220600101549051638d38cd4b60e01b815261010090910464ffffffffff16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b906024015b602060405180830381865af4158015610a4f573d5f803e3d5ffd5b5f80546040516368fc2b7760e11b81526001600160401b03841660048201526001600160a01b0385811660248301528392169063d1f856ee906044016040805180830381865afa158015610ec1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ee59190611753565b50949350505050565b5f60088281548110610f0257610f0261173f565b5f918252602090912001546001600160a01b031692915050565b33610f3b5f8051602061177e833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610f7b5760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b5f03610fb0576040516361798f2f60e11b81526001600160a01b0383166004820152602401610f72565b610fb982611256565b5050565b5f805f9054906101000a90046001600160a01b03166001600160a01b0316633ca7c02a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561100d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103191906116fc565b905090565b5f8051602061177e83398151915280545f9190600160a01b900460ff1661105d575f611066565b638fb3603760e01b5b91505090565b5f805f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561100d573d5f803e3d5ffd5b5f8054604051636ea1af2560e11b81526001600160e01b0319841660048201526001600160a01b039091169063b7009613908690869073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af415801561112c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115091906116bd565b60405160e085901b6001600160e01b031990811682526001600160a01b0394851660048301529290931660248401521660448201526064016040805180830381865afa158015610ec1573d5f803e3d5ffd5b6001600160401b0381165f908152600260208190526040808320909101549051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401610e50565b6001600160401b038082165f90815260026020526040812054909161122591859116610e6b565b9392505050565b6001600160401b0382165f90815260056020526040812061122590836112b6565b5f6105d0825490565b5f8051602061177e83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f61122583835f825f0182815481106112d1576112d161173f565b905f5260205f200154905092915050565b6001600160401b03811681146112f6575f80fd5b50565b5f60208284031215611309575f80fd5b8135611225816112e2565b80356001600160a01b038116811461132a575f80fd5b919050565b5f6020828403121561133f575f80fd5b61122582611314565b6001600160e01b0319811681146112f6575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611380575f80fd5b81356001600160401b038111156113995761139961135d565b604051601f8201601f19908116603f011681016001600160401b03811182821017156113c7576113c761135d565b6040528181528382016020018510156113de575f80fd5b816020850160208301375f918101602001919091529392505050565b5f806040838503121561140b575f80fd5b823561141681611348565b915060208301356001600160401b03811115611430575f80fd5b6109fd85828601611371565b815181526020808301516001600160e01b0319169082015260408083015164ffffffffff1690820152606081016105d0565b5f806040838503121561147f575f80fd5b61148883611314565b946020939093013593505050565b5f602082840312156114a6575f80fd5b5035919050565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c0820190600481106114f457634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff604084015116604083015260608301516060830152608083015161152d608084018264ffffffffff169052565b5060a083015161154660a084018264ffffffffff169052565b5092915050565b63ffffffff811681146112f6575f80fd5b5f805f8060808587031215611571575f80fd5b843561157c816112e2565b935060208501356004811061158f575f80fd5b9250604085013561159f8161154d565b915060608501356001600160401b038111156115b9575f80fd5b6115c587828801611371565b91505092959194509250565b5f80604083850312156115e2575f80fd5b6115eb83611314565b915060208301356115fb816112e2565b809150509250929050565b5f805f60608486031215611618575f80fd5b61162184611314565b925061162f60208501611314565b9150604084013561163f81611348565b809150509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611225602083018461164a565b5f806040838503121561169b575f80fd5b8235611488816112e2565b5f602082840312156116b6575f80fd5b5051919050565b5f602082840312156116cd575f80fd5b815161122581611348565b5f602082840312156116e8575f80fd5b815164ffffffffff81168114611225575f80fd5b5f6020828403121561170c575f80fd5b8151611225816112e2565b8051801515811461132a575f80fd5b5f60208284031215611736575f80fd5b61122582611717565b634e487b7160e01b5f52603260045260245ffd5b5f8060408385031215611764575f80fd5b61176d83611717565b915060208301516115fb8161154d56fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212207debde64f1e9276f11762bf1642f1d5dcf77e193aa4e2f3cb2c820f1fead953b64736f6c634300081a0033",
         | 
| 1117 | 
            +
              "linkReferences": {
         | 
| 1118 | 
            +
                "contracts/type/RoleId.sol": {
         | 
| 1119 | 
            +
                  "RoleIdLib": [
         | 
| 1120 | 
            +
                    {
         | 
| 1121 | 
            +
                      "length": 20,
         | 
| 1122 | 
            +
                      "start": 328
         | 
| 1123 | 
            +
                    },
         | 
| 1124 | 
            +
                    {
         | 
| 1125 | 
            +
                      "length": 20,
         | 
| 1126 | 
            +
                      "start": 781
         | 
| 1127 | 
            +
                    },
         | 
| 1128 | 
            +
                    {
         | 
| 1129 | 
            +
                      "length": 20,
         | 
| 1130 | 
            +
                      "start": 2106
         | 
| 1131 | 
            +
                    },
         | 
| 1132 | 
            +
                    {
         | 
| 1133 | 
            +
                      "length": 20,
         | 
| 1134 | 
            +
                      "start": 4944
         | 
| 1135 | 
            +
                    }
         | 
| 1136 | 
            +
                  ]
         | 
| 1137 | 
            +
                },
         | 
| 1138 | 
            +
                "contracts/type/Selector.sol": {
         | 
| 1139 | 
            +
                  "SelectorLib": [
         | 
| 1140 | 
            +
                    {
         | 
| 1141 | 
            +
                      "length": 20,
         | 
| 1142 | 
            +
                      "start": 4412
         | 
| 1143 | 
            +
                    },
         | 
| 1144 | 
            +
                    {
         | 
| 1145 | 
            +
                      "length": 20,
         | 
| 1146 | 
            +
                      "start": 4982
         | 
| 1147 | 
            +
                    },
         | 
| 1148 | 
            +
                    {
         | 
| 1149 | 
            +
                      "length": 20,
         | 
| 1150 | 
            +
                      "start": 7069
         | 
| 1151 | 
            +
                    }
         | 
| 1152 | 
            +
                  ],
         | 
| 1153 | 
            +
                  "SelectorSetLib": [
         | 
| 1154 | 
            +
                    {
         | 
| 1155 | 
            +
                      "length": 20,
         | 
| 1156 | 
            +
                      "start": 4722
         | 
| 1157 | 
            +
                    },
         | 
| 1158 | 
            +
                    {
         | 
| 1159 | 
            +
                      "length": 20,
         | 
| 1160 | 
            +
                      "start": 5450
         | 
| 1161 | 
            +
                    }
         | 
| 1162 | 
            +
                  ]
         | 
| 1163 | 
            +
                },
         | 
| 1164 | 
            +
                "contracts/type/String.sol": {
         | 
| 1165 | 
            +
                  "StrLib": [
         | 
| 1166 | 
            +
                    {
         | 
| 1167 | 
            +
                      "length": 20,
         | 
| 1168 | 
            +
                      "start": 991
         | 
| 1169 | 
            +
                    },
         | 
| 1170 | 
            +
                    {
         | 
| 1171 | 
            +
                      "length": 20,
         | 
| 1172 | 
            +
                      "start": 1925
         | 
| 1173 | 
            +
                    },
         | 
| 1174 | 
            +
                    {
         | 
| 1175 | 
            +
                      "length": 20,
         | 
| 1176 | 
            +
                      "start": 4273
         | 
| 1177 | 
            +
                    },
         | 
| 1178 | 
            +
                    {
         | 
| 1179 | 
            +
                      "length": 20,
         | 
| 1180 | 
            +
                      "start": 5938
         | 
| 1181 | 
            +
                    }
         | 
| 1182 | 
            +
                  ]
         | 
| 1183 | 
            +
                },
         | 
| 1184 | 
            +
                "contracts/type/Timestamp.sol": {
         | 
| 1185 | 
            +
                  "TimestampLib": [
         | 
| 1186 | 
            +
                    {
         | 
| 1187 | 
            +
                      "length": 20,
         | 
| 1188 | 
            +
                      "start": 1114
         | 
| 1189 | 
            +
                    },
         | 
| 1190 | 
            +
                    {
         | 
| 1191 | 
            +
                      "length": 20,
         | 
| 1192 | 
            +
                      "start": 1233
         | 
| 1193 | 
            +
                    },
         | 
| 1194 | 
            +
                    {
         | 
| 1195 | 
            +
                      "length": 20,
         | 
| 1196 | 
            +
                      "start": 1358
         | 
| 1197 | 
            +
                    },
         | 
| 1198 | 
            +
                    {
         | 
| 1199 | 
            +
                      "length": 20,
         | 
| 1200 | 
            +
                      "start": 4521
         | 
| 1201 | 
            +
                    },
         | 
| 1202 | 
            +
                    {
         | 
| 1203 | 
            +
                      "length": 20,
         | 
| 1204 | 
            +
                      "start": 6061
         | 
| 1205 | 
            +
                    },
         | 
| 1206 | 
            +
                    {
         | 
| 1207 | 
            +
                      "length": 20,
         | 
| 1208 | 
            +
                      "start": 6180
         | 
| 1209 | 
            +
                    },
         | 
| 1210 | 
            +
                    {
         | 
| 1211 | 
            +
                      "length": 20,
         | 
| 1212 | 
            +
                      "start": 6363
         | 
| 1213 | 
            +
                    },
         | 
| 1214 | 
            +
                    {
         | 
| 1215 | 
            +
                      "length": 20,
         | 
| 1216 | 
            +
                      "start": 7301
         | 
| 1217 | 
            +
                    }
         | 
| 1218 | 
            +
                  ]
         | 
| 1219 | 
            +
                }
         | 
| 1220 | 
            +
              },
         | 
| 1221 | 
            +
              "deployedLinkReferences": {
         | 
| 1222 | 
            +
                "contracts/type/RoleId.sol": {
         | 
| 1223 | 
            +
                  "RoleIdLib": [
         | 
| 1224 | 
            +
                    {
         | 
| 1225 | 
            +
                      "length": 20,
         | 
| 1226 | 
            +
                      "start": 2215
         | 
| 1227 | 
            +
                    }
         | 
| 1228 | 
            +
                  ]
         | 
| 1229 | 
            +
                },
         | 
| 1230 | 
            +
                "contracts/type/Selector.sol": {
         | 
| 1231 | 
            +
                  "SelectorLib": [
         | 
| 1232 | 
            +
                    {
         | 
| 1233 | 
            +
                      "length": 20,
         | 
| 1234 | 
            +
                      "start": 1683
         | 
| 1235 | 
            +
                    },
         | 
| 1236 | 
            +
                    {
         | 
| 1237 | 
            +
                      "length": 20,
         | 
| 1238 | 
            +
                      "start": 2253
         | 
| 1239 | 
            +
                    },
         | 
| 1240 | 
            +
                    {
         | 
| 1241 | 
            +
                      "length": 20,
         | 
| 1242 | 
            +
                      "start": 4340
         | 
| 1243 | 
            +
                    }
         | 
| 1244 | 
            +
                  ],
         | 
| 1245 | 
            +
                  "SelectorSetLib": [
         | 
| 1246 | 
            +
                    {
         | 
| 1247 | 
            +
                      "length": 20,
         | 
| 1248 | 
            +
                      "start": 1993
         | 
| 1249 | 
            +
                    },
         | 
| 1250 | 
            +
                    {
         | 
| 1251 | 
            +
                      "length": 20,
         | 
| 1252 | 
            +
                      "start": 2721
         | 
| 1253 | 
            +
                    }
         | 
| 1254 | 
            +
                  ]
         | 
| 1255 | 
            +
                },
         | 
| 1256 | 
            +
                "contracts/type/String.sol": {
         | 
| 1257 | 
            +
                  "StrLib": [
         | 
| 1258 | 
            +
                    {
         | 
| 1259 | 
            +
                      "length": 20,
         | 
| 1260 | 
            +
                      "start": 1544
         | 
| 1261 | 
            +
                    },
         | 
| 1262 | 
            +
                    {
         | 
| 1263 | 
            +
                      "length": 20,
         | 
| 1264 | 
            +
                      "start": 3209
         | 
| 1265 | 
            +
                    }
         | 
| 1266 | 
            +
                  ]
         | 
| 1267 | 
            +
                },
         | 
| 1268 | 
            +
                "contracts/type/Timestamp.sol": {
         | 
| 1269 | 
            +
                  "TimestampLib": [
         | 
| 1270 | 
            +
                    {
         | 
| 1271 | 
            +
                      "length": 20,
         | 
| 1272 | 
            +
                      "start": 1792
         | 
| 1273 | 
            +
                    },
         | 
| 1274 | 
            +
                    {
         | 
| 1275 | 
            +
                      "length": 20,
         | 
| 1276 | 
            +
                      "start": 3332
         | 
| 1277 | 
            +
                    },
         | 
| 1278 | 
            +
                    {
         | 
| 1279 | 
            +
                      "length": 20,
         | 
| 1280 | 
            +
                      "start": 3451
         | 
| 1281 | 
            +
                    },
         | 
| 1282 | 
            +
                    {
         | 
| 1283 | 
            +
                      "length": 20,
         | 
| 1284 | 
            +
                      "start": 3634
         | 
| 1285 | 
            +
                    },
         | 
| 1286 | 
            +
                    {
         | 
| 1287 | 
            +
                      "length": 20,
         | 
| 1288 | 
            +
                      "start": 4572
         | 
| 1289 | 
            +
                    }
         | 
| 1290 | 
            +
                  ]
         | 
| 1291 | 
            +
                }
         | 
| 1292 | 
            +
              }
         | 
| 1293 | 
            +
            }
         |