@etherisc/gif-next 0.0.2-e987ccf-894 → 0.0.2-e9c25ee-730
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 +81 -7
 - package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
 - package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
 - package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
 - package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
 - package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
 - package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +677 -258
 - package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
 - package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
 - package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1255 -0
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
 - package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
 - package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +456 -24
 - package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
 - package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +496 -206
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +215 -18
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +265 -16
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +473 -17
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
 - package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +159 -450
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +431 -36
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +90 -330
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +410 -289
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +180 -122
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +84 -172
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +238 -70
 - 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 +1445 -0
 - package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
 - package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2002 -0
 - package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -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 +1388 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1612 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2389 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
 - package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +471 -48
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +222 -64
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +475 -144
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1132 -392
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +369 -68
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1319 -452
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +239 -238
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +106 -106
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +822 -806
 - package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
 - package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +46 -5
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
 - package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
 - 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 +1 -1
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +123 -322
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +429 -37
 - package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +98 -121
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
 - package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +69 -11
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
 - package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +99 -274
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
 - package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +153 -190
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +132 -98
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
 - package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +139 -314
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +430 -35
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +164 -377
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +116 -138
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +90 -117
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +129 -163
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +287 -265
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/pool/Pool.sol/Pool.json +127 -313
 - package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +494 -511
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +170 -108
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +191 -164
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +116 -98
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
 - package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +258 -372
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
 - package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +430 -35
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +407 -242
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +150 -124
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +131 -9
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +293 -17
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +245 -59
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +117 -43
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +252 -214
 - package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
 - package/artifacts/contracts/product/{IProductService.sol/IProductService.json → IRiskService.sol/IRiskService.json} +88 -8
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +358 -264
 - package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +349 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +151 -109
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +180 -241
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +111 -113
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/product/Product.sol/Product.json +250 -364
 - package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
 - package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
 - package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -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 +341 -41
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +144 -41
 - package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
 - package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
 - 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 +547 -102
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +821 -372
 - package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +109 -292
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +104 -90
 - package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2160 -0
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +47 -6
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +487 -253
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
 - package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +489 -20
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +15 -15
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/shared/Component.sol/Component.json +81 -227
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +520 -644
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +143 -131
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
 - package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +57 -111
 - package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +616 -0
 - package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
 - package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.json +81 -75
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +463 -300
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +98 -121
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +36 -0
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +36 -0
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +16 -0
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +15 -47
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +148 -0
 - 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 +55 -2
 - package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -22
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
 - package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +98 -273
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +42 -1
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +42 -1
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +22 -57
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +19 -141
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +122 -97
 - 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 +57 -111
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +327 -73
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
 - package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +88 -24
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStaking.sol/IStaking.json +197 -118
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +152 -20
 - package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
 - package/artifacts/contracts/staking/Staking.sol/Staking.json +288 -341
 - package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +46 -5
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +136 -105
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +41 -73
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +205 -168
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +113 -95
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
 - package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +205 -150
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
 - package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +91 -50
 - package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Amount.sol/AmountLib.json +35 -11
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +28 -4
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
 - package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Fee.sol/FeeLib.json +94 -38
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
 - package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +33 -31
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +19 -19
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +125 -7
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +42 -157
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +26 -2
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/type/StateId.sol/StateIdLib.json +15 -2
 - package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +2 -2
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +73 -36
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.json +101 -2
 - package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +81 -80
 - package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
 - package/contracts/accounting/AccountingService.sol +262 -0
 - package/contracts/accounting/AccountingServiceManager.sol +38 -0
 - package/contracts/accounting/IAccountingService.sol +45 -0
 - package/contracts/authorization/AccessAdmin.sol +545 -261
 - package/contracts/authorization/AccessAdminLib.sol +379 -0
 - package/contracts/authorization/AccessManagerCloneable.sol +146 -4
 - package/contracts/authorization/Authorization.sol +246 -202
 - package/contracts/authorization/IAccess.sol +25 -6
 - package/contracts/authorization/IAccessAdmin.sol +79 -79
 - package/contracts/authorization/IAuthorization.sol +9 -36
 - package/contracts/authorization/IServiceAuthorization.sol +57 -17
 - package/contracts/authorization/ServiceAuthorization.sol +254 -24
 - package/contracts/distribution/BasicDistribution.sol +20 -17
 - package/contracts/distribution/BasicDistributionAuthorization.sol +30 -10
 - package/contracts/distribution/Distribution.sol +39 -89
 - package/contracts/distribution/DistributionService.sol +215 -111
 - package/contracts/distribution/DistributionServiceManager.sol +6 -6
 - package/contracts/distribution/IDistributionComponent.sol +6 -8
 - package/contracts/distribution/IDistributionService.sol +32 -24
 - package/contracts/examples/fire/DamageLevel.sol +59 -0
 - package/contracts/examples/fire/FirePool.sol +86 -0
 - package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
 - package/contracts/examples/fire/FireProduct.sol +433 -0
 - package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
 - package/contracts/examples/fire/FireUSD.sol +26 -0
 - package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
 - package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
 - package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
 - package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
 - package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
 - package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
 - package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
 - package/contracts/instance/BundleSet.sol +42 -38
 - package/contracts/instance/IInstance.sol +96 -43
 - package/contracts/instance/IInstanceService.sol +43 -30
 - package/contracts/instance/Instance.sol +183 -96
 - package/contracts/instance/InstanceAdmin.sol +462 -178
 - package/contracts/instance/InstanceAuthorizationV3.sol +113 -54
 - package/contracts/instance/InstanceReader.sol +384 -67
 - package/contracts/instance/InstanceService.sol +262 -205
 - package/contracts/instance/InstanceServiceManager.sol +6 -7
 - package/contracts/instance/InstanceStore.sol +13 -6
 - package/contracts/instance/RiskSet.sol +118 -0
 - package/contracts/instance/base/ObjectCounter.sol +1 -2
 - package/contracts/instance/base/ObjectLifecycle.sol +6 -3
 - package/contracts/instance/base/ObjectSet.sol +31 -33
 - package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
 - package/contracts/instance/module/IBundle.sol +6 -5
 - package/contracts/instance/module/IComponents.sol +29 -13
 - package/contracts/instance/module/IDistribution.sol +21 -8
 - package/contracts/instance/module/IPolicy.sol +33 -12
 - package/contracts/instance/module/IRisk.sol +5 -0
 - package/contracts/oracle/BasicOracle.sol +1 -4
 - package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
 - package/contracts/oracle/IOracle.sol +9 -4
 - package/contracts/oracle/IOracleService.sol +2 -1
 - package/contracts/oracle/Oracle.sol +7 -19
 - package/contracts/oracle/OracleService.sol +113 -81
 - package/contracts/oracle/OracleServiceManager.sol +6 -6
 - package/contracts/pool/BasicPool.sol +32 -25
 - package/contracts/pool/BasicPoolAuthorization.sol +33 -9
 - package/contracts/pool/BundleService.sol +93 -136
 - package/contracts/pool/BundleServiceManager.sol +6 -6
 - package/contracts/pool/IBundleService.sol +15 -34
 - package/contracts/pool/IPoolComponent.sol +19 -15
 - package/contracts/pool/IPoolService.sol +70 -65
 - package/contracts/pool/Pool.sol +137 -120
 - package/contracts/pool/PoolLib.sol +260 -0
 - package/contracts/pool/PoolService.sol +462 -238
 - package/contracts/pool/PoolServiceManager.sol +4 -4
 - package/contracts/product/ApplicationService.sol +48 -23
 - package/contracts/product/ApplicationServiceManager.sol +4 -4
 - package/contracts/product/BasicProduct.sol +10 -13
 - package/contracts/product/BasicProductAuthorization.sol +30 -12
 - package/contracts/product/ClaimService.sol +364 -150
 - package/contracts/product/ClaimServiceManager.sol +4 -4
 - package/contracts/product/IApplicationService.sol +8 -2
 - package/contracts/product/IClaimService.sol +43 -8
 - package/contracts/product/IPolicyService.sol +35 -13
 - package/contracts/product/IPricingService.sol +10 -9
 - package/contracts/product/IProductComponent.sol +27 -4
 - package/contracts/product/{IProductService.sol → IRiskService.sol} +8 -9
 - package/contracts/product/PolicyService.sol +343 -255
 - package/contracts/product/PolicyServiceLib.sol +86 -0
 - package/contracts/product/PolicyServiceManager.sol +4 -4
 - package/contracts/product/PricingService.sol +38 -30
 - package/contracts/product/PricingServiceManager.sol +4 -4
 - package/contracts/product/Product.sol +139 -78
 - package/contracts/product/RiskService.sol +154 -0
 - package/contracts/product/RiskServiceManager.sol +39 -0
 - package/contracts/registry/ChainNft.sol +72 -40
 - package/contracts/registry/IRegistry.sol +63 -27
 - package/contracts/registry/IRegistryService.sol +5 -12
 - package/contracts/registry/IRelease.sol +29 -0
 - package/contracts/registry/ITransferInterceptor.sol +1 -2
 - package/contracts/registry/Registry.sol +356 -202
 - package/contracts/registry/RegistryAdmin.sol +203 -286
 - package/contracts/registry/RegistryAuthorization.sol +277 -0
 - package/contracts/registry/RegistryService.sol +37 -48
 - package/contracts/registry/RegistryServiceManager.sol +3 -3
 - package/contracts/registry/ReleaseAdmin.sol +268 -0
 - package/contracts/registry/ReleaseLifecycle.sol +8 -3
 - package/contracts/registry/ReleaseRegistry.sol +272 -240
 - package/contracts/registry/ServiceAuthorizationV3.sol +197 -55
 - package/contracts/registry/TokenRegistry.sol +10 -9
 - package/contracts/shared/Component.sol +65 -123
 - package/contracts/shared/ComponentService.sol +437 -370
 - package/contracts/shared/ComponentServiceManager.sol +8 -5
 - package/contracts/shared/ComponentVerifyingService.sol +27 -16
 - package/contracts/shared/ContractLib.sol +292 -0
 - package/contracts/shared/IComponent.sol +5 -17
 - package/contracts/shared/IComponentService.sol +44 -40
 - package/contracts/shared/IInstanceLinkedComponent.sol +2 -28
 - package/contracts/shared/ILifecycle.sol +3 -1
 - package/contracts/shared/INftOwnable.sol +2 -0
 - package/contracts/shared/IPolicyHolder.sol +12 -22
 - package/contracts/shared/IRegisterable.sol +23 -1
 - package/contracts/shared/IService.sol +4 -5
 - package/contracts/shared/InitializableERC165.sol +10 -2
 - package/contracts/shared/InstanceLinkedComponent.sol +72 -49
 - package/contracts/shared/KeyValueStore.sol +1 -1
 - package/contracts/shared/Lifecycle.sol +15 -4
 - package/contracts/shared/NftOwnable.sol +28 -8
 - package/contracts/shared/PolicyHolder.sol +15 -52
 - package/contracts/shared/Registerable.sol +52 -21
 - package/contracts/shared/RegistryLinked.sol +9 -14
 - package/contracts/shared/Service.sol +17 -33
 - package/contracts/shared/TokenHandler.sol +275 -72
 - package/contracts/shared/TokenHandlerDeployerLib.sol +10 -2
 - package/contracts/staking/IStaking.sol +25 -13
 - package/contracts/staking/IStakingService.sol +16 -4
 - package/contracts/staking/Staking.sol +101 -52
 - package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +96 -21
 - package/contracts/staking/StakingManager.sol +8 -6
 - package/contracts/staking/StakingReader.sol +18 -21
 - package/contracts/staking/StakingService.sol +82 -25
 - package/contracts/staking/StakingServiceManager.sol +6 -5
 - package/contracts/staking/StakingStore.sol +2 -1
 - package/contracts/staking/TargetManagerLib.sol +8 -4
 - package/contracts/type/Amount.sol +15 -0
 - package/contracts/type/ClaimId.sol +6 -1
 - package/contracts/type/Fee.sol +8 -8
 - package/contracts/type/Key32.sol +2 -2
 - package/contracts/type/Key32Set.sol +62 -0
 - package/contracts/type/NftId.sol +7 -0
 - package/contracts/type/ObjectType.sol +69 -37
 - package/contracts/type/PayoutId.sol +10 -10
 - package/contracts/type/RiskId.sol +38 -6
 - package/contracts/type/RoleId.sol +61 -55
 - package/contracts/type/Seconds.sol +8 -0
 - package/contracts/type/Selector.sol +5 -0
 - package/contracts/type/StateId.sol +15 -1
 - package/contracts/type/Timestamp.sol +0 -5
 - package/contracts/type/UFixed.sol +37 -126
 - package/contracts/type/Version.sol +54 -5
 - package/contracts/upgradeability/ProxyManager.sol +79 -43
 - package/contracts/upgradeability/Versionable.sol +6 -3
 - package/package.json +5 -4
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +0 -4
 - package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +0 -290
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +0 -4
 - package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +0 -390
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
 - package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/product/ProductService.sol/ProductService.json +0 -708
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +0 -702
 - package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +0 -4
 - package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +0 -39
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
 - package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -387
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
 - package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
 - package/contracts/authorization/IModuleAuthorization.sol +0 -21
 - package/contracts/authorization/ModuleAuthorization.sol +0 -78
 - package/contracts/instance/module/IAccess.sol +0 -46
 - package/contracts/product/ProductService.sol +0 -99
 - package/contracts/product/ProductServiceManager.sol +0 -39
 - package/contracts/shared/InitializableCustom.sol +0 -177
 
| 
         @@ -3,11 +3,6 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
              "contractName": "AccessAdmin",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/authorization/AccessAdmin.sol",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
       6 
     | 
    
         
            -
                {
         
     | 
| 
       7 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       8 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       9 
     | 
    
         
            -
                  "type": "constructor"
         
     | 
| 
       10 
     | 
    
         
            -
                },
         
     | 
| 
       11 
6 
     | 
    
         
             
                {
         
     | 
| 
       12 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       13 
8 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -48,12 +43,93 @@ 
     | 
|
| 
       48 
43 
     | 
    
         
             
                },
         
     | 
| 
       49 
44 
     | 
    
         
             
                {
         
     | 
| 
       50 
45 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       51 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 46 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAccessManagerEmptyName",
         
     | 
| 
      
 47 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 48 
     | 
    
         
            +
                },
         
     | 
| 
      
 49 
     | 
    
         
            +
                {
         
     | 
| 
      
 50 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    }
         
     | 
| 
      
 56 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAccessManagerNotAccessManager",
         
     | 
| 
       52 
58 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       53 
59 
     | 
    
         
             
                },
         
     | 
| 
       54 
60 
     | 
    
         
             
                {
         
     | 
| 
       55 
61 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       56 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 62 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAdminRoleMissing",
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 64 
     | 
    
         
            +
                },
         
     | 
| 
      
 65 
     | 
    
         
            +
                {
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 67 
     | 
    
         
            +
                    {
         
     | 
| 
      
 68 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 71 
     | 
    
         
            +
                    }
         
     | 
| 
      
 72 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 73 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAlreadyInitialized",
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 75 
     | 
    
         
            +
                },
         
     | 
| 
      
 76 
     | 
    
         
            +
                {
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 78 
     | 
    
         
            +
                    {
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 82 
     | 
    
         
            +
                    }
         
     | 
| 
      
 83 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAuthorityNotContract",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 86 
     | 
    
         
            +
                },
         
     | 
| 
      
 87 
     | 
    
         
            +
                {
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 89 
     | 
    
         
            +
                    {
         
     | 
| 
      
 90 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 91 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 92 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 93 
     | 
    
         
            +
                    }
         
     | 
| 
      
 94 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "name": "ErrorAccessAdminAuthorizeForAdminRoleInvalid",
         
     | 
| 
      
 96 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 97 
     | 
    
         
            +
                },
         
     | 
| 
      
 98 
     | 
    
         
            +
                {
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 100 
     | 
    
         
            +
                    {
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 102 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 103 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 104 
     | 
    
         
            +
                    },
         
     | 
| 
      
 105 
     | 
    
         
            +
                    {
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "name": "expectedDomain",
         
     | 
| 
      
 108 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 109 
     | 
    
         
            +
                    },
         
     | 
| 
      
 110 
     | 
    
         
            +
                    {
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "name": "actualDomain",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 114 
     | 
    
         
            +
                    }
         
     | 
| 
      
 115 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "name": "ErrorAccessAdminDomainMismatch",
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 118 
     | 
    
         
            +
                },
         
     | 
| 
      
 119 
     | 
    
         
            +
                {
         
     | 
| 
      
 120 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 121 
     | 
    
         
            +
                    {
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 124 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 125 
     | 
    
         
            +
                    },
         
     | 
| 
      
 126 
     | 
    
         
            +
                    {
         
     | 
| 
      
 127 
     | 
    
         
            +
                      "internalType": "enum IAccess.TargetType",
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "name": "serviceTargetType",
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 130 
     | 
    
         
            +
                    }
         
     | 
| 
      
 131 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 132 
     | 
    
         
            +
                  "name": "ErrorAccessAdminInvalidServiceType",
         
     | 
| 
       57 
133 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       58 
134 
     | 
    
         
             
                },
         
     | 
| 
       59 
135 
     | 
    
         
             
                {
         
     | 
| 
         @@ -62,9 +138,14 @@ 
     | 
|
| 
       62 
138 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       63 
139 
     | 
    
         
             
                      "name": "target",
         
     | 
| 
       64 
140 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 141 
     | 
    
         
            +
                    },
         
     | 
| 
      
 142 
     | 
    
         
            +
                    {
         
     | 
| 
      
 143 
     | 
    
         
            +
                      "internalType": "enum IAccess.TargetType",
         
     | 
| 
      
 144 
     | 
    
         
            +
                      "name": "targetType",
         
     | 
| 
      
 145 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       65 
146 
     | 
    
         
             
                    }
         
     | 
| 
       66 
147 
     | 
    
         
             
                  ],
         
     | 
| 
       67 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 148 
     | 
    
         
            +
                  "name": "ErrorAccessAdminInvalidTargetType",
         
     | 
| 
       68 
149 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       69 
150 
     | 
    
         
             
                },
         
     | 
| 
       70 
151 
     | 
    
         
             
                {
         
     | 
| 
         @@ -73,14 +154,52 @@ 
     | 
|
| 
       73 
154 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       74 
155 
     | 
    
         
             
                      "name": "adminRoleId",
         
     | 
| 
       75 
156 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
      
 157 
     | 
    
         
            +
                    },
         
     | 
| 
      
 158 
     | 
    
         
            +
                    {
         
     | 
| 
      
 159 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 162 
     | 
    
         
            +
                    }
         
     | 
| 
      
 163 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotAdminOfRole",
         
     | 
| 
      
 165 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 166 
     | 
    
         
            +
                },
         
     | 
| 
      
 167 
     | 
    
         
            +
                {
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 169 
     | 
    
         
            +
                    {
         
     | 
| 
      
 170 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       76 
173 
     | 
    
         
             
                    }
         
     | 
| 
       77 
174 
     | 
    
         
             
                  ],
         
     | 
| 
       78 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 175 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotAuthorization",
         
     | 
| 
       79 
176 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       80 
177 
     | 
    
         
             
                },
         
     | 
| 
       81 
178 
     | 
    
         
             
                {
         
     | 
| 
       82 
179 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       83 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 180 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotDeployer",
         
     | 
| 
      
 181 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 182 
     | 
    
         
            +
                },
         
     | 
| 
      
 183 
     | 
    
         
            +
                {
         
     | 
| 
      
 184 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 185 
     | 
    
         
            +
                    {
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "name": "registerable",
         
     | 
| 
      
 188 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 189 
     | 
    
         
            +
                    }
         
     | 
| 
      
 190 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 191 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotRegistered",
         
     | 
| 
      
 192 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 193 
     | 
    
         
            +
                },
         
     | 
| 
      
 194 
     | 
    
         
            +
                {
         
     | 
| 
      
 195 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 196 
     | 
    
         
            +
                    {
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 199 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 200 
     | 
    
         
            +
                    }
         
     | 
| 
      
 201 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 202 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotRegistry",
         
     | 
| 
       84 
203 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       85 
204 
     | 
    
         
             
                },
         
     | 
| 
       86 
205 
     | 
    
         
             
                {
         
     | 
| 
         @@ -89,9 +208,35 @@ 
     | 
|
| 
       89 
208 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       90 
209 
     | 
    
         
             
                      "name": "roleId",
         
     | 
| 
       91 
210 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
      
 211 
     | 
    
         
            +
                    },
         
     | 
| 
      
 212 
     | 
    
         
            +
                    {
         
     | 
| 
      
 213 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 214 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 215 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 216 
     | 
    
         
            +
                    }
         
     | 
| 
      
 217 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 218 
     | 
    
         
            +
                  "name": "ErrorAccessAdminNotRoleOwner",
         
     | 
| 
      
 219 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 220 
     | 
    
         
            +
                },
         
     | 
| 
      
 221 
     | 
    
         
            +
                {
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 223 
     | 
    
         
            +
                    {
         
     | 
| 
      
 224 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 225 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 226 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 227 
     | 
    
         
            +
                    },
         
     | 
| 
      
 228 
     | 
    
         
            +
                    {
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 230 
     | 
    
         
            +
                      "name": "expectedRelease",
         
     | 
| 
      
 231 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 232 
     | 
    
         
            +
                    },
         
     | 
| 
      
 233 
     | 
    
         
            +
                    {
         
     | 
| 
      
 234 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 235 
     | 
    
         
            +
                      "name": "actualRelease",
         
     | 
| 
      
 236 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       92 
237 
     | 
    
         
             
                    }
         
     | 
| 
       93 
238 
     | 
    
         
             
                  ],
         
     | 
| 
       94 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 239 
     | 
    
         
            +
                  "name": "ErrorAccessAdminReleaseMismatch",
         
     | 
| 
       95 
240 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       96 
241 
     | 
    
         
             
                },
         
     | 
| 
       97 
242 
     | 
    
         
             
                {
         
     | 
| 
         @@ -102,7 +247,7 @@ 
     | 
|
| 
       102 
247 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       103 
248 
     | 
    
         
             
                    }
         
     | 
| 
       104 
249 
     | 
    
         
             
                  ],
         
     | 
| 
       105 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 250 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleAdminNotExisting",
         
     | 
| 
       106 
251 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       107 
252 
     | 
    
         
             
                },
         
     | 
| 
       108 
253 
     | 
    
         
             
                {
         
     | 
| 
         @@ -118,7 +263,29 @@ 
     | 
|
| 
       118 
263 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       119 
264 
     | 
    
         
             
                    }
         
     | 
| 
       120 
265 
     | 
    
         
             
                  ],
         
     | 
| 
       121 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 266 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleAlreadyCreated",
         
     | 
| 
      
 267 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 268 
     | 
    
         
            +
                },
         
     | 
| 
      
 269 
     | 
    
         
            +
                {
         
     | 
| 
      
 270 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 271 
     | 
    
         
            +
                    {
         
     | 
| 
      
 272 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 273 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 274 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 275 
     | 
    
         
            +
                    }
         
     | 
| 
      
 276 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 277 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleIsLocked",
         
     | 
| 
      
 278 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 279 
     | 
    
         
            +
                },
         
     | 
| 
      
 280 
     | 
    
         
            +
                {
         
     | 
| 
      
 281 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 282 
     | 
    
         
            +
                    {
         
     | 
| 
      
 283 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 284 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 285 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 286 
     | 
    
         
            +
                    }
         
     | 
| 
      
 287 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 288 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleIsPaused",
         
     | 
| 
       122 
289 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       123 
290 
     | 
    
         
             
                },
         
     | 
| 
       124 
291 
     | 
    
         
             
                {
         
     | 
| 
         @@ -127,9 +294,14 @@ 
     | 
|
| 
       127 
294 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       128 
295 
     | 
    
         
             
                      "name": "roleId",
         
     | 
| 
       129 
296 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
      
 297 
     | 
    
         
            +
                    },
         
     | 
| 
      
 298 
     | 
    
         
            +
                    {
         
     | 
| 
      
 299 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 300 
     | 
    
         
            +
                      "name": "notContract",
         
     | 
| 
      
 301 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       130 
302 
     | 
    
         
             
                    }
         
     | 
| 
       131 
303 
     | 
    
         
             
                  ],
         
     | 
| 
       132 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 304 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleMemberNotContract",
         
     | 
| 
       133 
305 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       134 
306 
     | 
    
         
             
                },
         
     | 
| 
       135 
307 
     | 
    
         
             
                {
         
     | 
| 
         @@ -138,9 +310,14 @@ 
     | 
|
| 
       138 
310 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       139 
311 
     | 
    
         
             
                      "name": "roleId",
         
     | 
| 
       140 
312 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
      
 313 
     | 
    
         
            +
                    },
         
     | 
| 
      
 314 
     | 
    
         
            +
                    {
         
     | 
| 
      
 315 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 316 
     | 
    
         
            +
                      "name": "expectedMember",
         
     | 
| 
      
 317 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       141 
318 
     | 
    
         
             
                    }
         
     | 
| 
       142 
319 
     | 
    
         
             
                  ],
         
     | 
| 
       143 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 320 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleMemberRemovalDisabled",
         
     | 
| 
       144 
321 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       145 
322 
     | 
    
         
             
                },
         
     | 
| 
       146 
323 
     | 
    
         
             
                {
         
     | 
| 
         @@ -156,7 +333,7 @@ 
     | 
|
| 
       156 
333 
     | 
    
         
             
                      "type": "uint256"
         
     | 
| 
       157 
334 
     | 
    
         
             
                    }
         
     | 
| 
       158 
335 
     | 
    
         
             
                  ],
         
     | 
| 
       159 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 336 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleMembersLimitReached",
         
     | 
| 
       160 
337 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       161 
338 
     | 
    
         
             
                },
         
     | 
| 
       162 
339 
     | 
    
         
             
                {
         
     | 
| 
         @@ -177,7 +354,7 @@ 
     | 
|
| 
       177 
354 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       178 
355 
     | 
    
         
             
                    }
         
     | 
| 
       179 
356 
     | 
    
         
             
                  ],
         
     | 
| 
       180 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 357 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleNameAlreadyExists",
         
     | 
| 
       181 
358 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       182 
359 
     | 
    
         
             
                },
         
     | 
| 
       183 
360 
     | 
    
         
             
                {
         
     | 
| 
         @@ -188,7 +365,7 @@ 
     | 
|
| 
       188 
365 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       189 
366 
     | 
    
         
             
                    }
         
     | 
| 
       190 
367 
     | 
    
         
             
                  ],
         
     | 
| 
       191 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 368 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleNameEmpty",
         
     | 
| 
       192 
369 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       193 
370 
     | 
    
         
             
                },
         
     | 
| 
       194 
371 
     | 
    
         
             
                {
         
     | 
| 
         @@ -199,7 +376,7 @@ 
     | 
|
| 
       199 
376 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       200 
377 
     | 
    
         
             
                    }
         
     | 
| 
       201 
378 
     | 
    
         
             
                  ],
         
     | 
| 
       202 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 379 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleNotCustom",
         
     | 
| 
       203 
380 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       204 
381 
     | 
    
         
             
                },
         
     | 
| 
       205 
382 
     | 
    
         
             
                {
         
     | 
| 
         @@ -210,12 +387,12 @@ 
     | 
|
| 
       210 
387 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       211 
388 
     | 
    
         
             
                    }
         
     | 
| 
       212 
389 
     | 
    
         
             
                  ],
         
     | 
| 
       213 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 390 
     | 
    
         
            +
                  "name": "ErrorAccessAdminRoleUnknown",
         
     | 
| 
       214 
391 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       215 
392 
     | 
    
         
             
                },
         
     | 
| 
       216 
393 
     | 
    
         
             
                {
         
     | 
| 
       217 
394 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       218 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 395 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTagetNotLockable",
         
     | 
| 
       219 
396 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       220 
397 
     | 
    
         
             
                },
         
     | 
| 
       221 
398 
     | 
    
         
             
                {
         
     | 
| 
         @@ -231,7 +408,23 @@ 
     | 
|
| 
       231 
408 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       232 
409 
     | 
    
         
             
                    }
         
     | 
| 
       233 
410 
     | 
    
         
             
                  ],
         
     | 
| 
       234 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 411 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetAlreadyCreated",
         
     | 
| 
      
 412 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 413 
     | 
    
         
            +
                },
         
     | 
| 
      
 414 
     | 
    
         
            +
                {
         
     | 
| 
      
 415 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 416 
     | 
    
         
            +
                    {
         
     | 
| 
      
 417 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 418 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 419 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 420 
     | 
    
         
            +
                    },
         
     | 
| 
      
 421 
     | 
    
         
            +
                    {
         
     | 
| 
      
 422 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 423 
     | 
    
         
            +
                      "name": "isLocked",
         
     | 
| 
      
 424 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 425 
     | 
    
         
            +
                    }
         
     | 
| 
      
 426 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 427 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetAlreadyLocked",
         
     | 
| 
       235 
428 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       236 
429 
     | 
    
         
             
                },
         
     | 
| 
       237 
430 
     | 
    
         
             
                {
         
     | 
| 
         @@ -247,7 +440,7 @@ 
     | 
|
| 
       247 
440 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       248 
441 
     | 
    
         
             
                    }
         
     | 
| 
       249 
442 
     | 
    
         
             
                  ],
         
     | 
| 
       250 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 443 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetAuthorityMismatch",
         
     | 
| 
       251 
444 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       252 
445 
     | 
    
         
             
                },
         
     | 
| 
       253 
446 
     | 
    
         
             
                {
         
     | 
| 
         @@ -268,7 +461,40 @@ 
     | 
|
| 
       268 
461 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       269 
462 
     | 
    
         
             
                    }
         
     | 
| 
       270 
463 
     | 
    
         
             
                  ],
         
     | 
| 
       271 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 464 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNameAlreadyExists",
         
     | 
| 
      
 465 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 466 
     | 
    
         
            +
                },
         
     | 
| 
      
 467 
     | 
    
         
            +
                {
         
     | 
| 
      
 468 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 469 
     | 
    
         
            +
                    {
         
     | 
| 
      
 470 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 471 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 473 
     | 
    
         
            +
                    }
         
     | 
| 
      
 474 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNameEmpty",
         
     | 
| 
      
 476 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 477 
     | 
    
         
            +
                },
         
     | 
| 
      
 478 
     | 
    
         
            +
                {
         
     | 
| 
      
 479 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 480 
     | 
    
         
            +
                    {
         
     | 
| 
      
 481 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 482 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 483 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 484 
     | 
    
         
            +
                    }
         
     | 
| 
      
 485 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 486 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNotAccessManaged",
         
     | 
| 
      
 487 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 488 
     | 
    
         
            +
                },
         
     | 
| 
      
 489 
     | 
    
         
            +
                {
         
     | 
| 
      
 490 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 491 
     | 
    
         
            +
                    {
         
     | 
| 
      
 492 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 493 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 494 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 495 
     | 
    
         
            +
                    }
         
     | 
| 
      
 496 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 497 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNotCreated",
         
     | 
| 
       272 
498 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       273 
499 
     | 
    
         
             
                },
         
     | 
| 
       274 
500 
     | 
    
         
             
                {
         
     | 
| 
         @@ -279,7 +505,7 @@ 
     | 
|
| 
       279 
505 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       280 
506 
     | 
    
         
             
                    }
         
     | 
| 
       281 
507 
     | 
    
         
             
                  ],
         
     | 
| 
       282 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 508 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetNotRegistered",
         
     | 
| 
       283 
509 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       284 
510 
     | 
    
         
             
                },
         
     | 
| 
       285 
511 
     | 
    
         
             
                {
         
     | 
| 
         @@ -288,9 +514,19 @@ 
     | 
|
| 
       288 
514 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       289 
515 
     | 
    
         
             
                      "name": "target",
         
     | 
| 
       290 
516 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 517 
     | 
    
         
            +
                    },
         
     | 
| 
      
 518 
     | 
    
         
            +
                    {
         
     | 
| 
      
 519 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 520 
     | 
    
         
            +
                      "name": "expectedType",
         
     | 
| 
      
 521 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 522 
     | 
    
         
            +
                    },
         
     | 
| 
      
 523 
     | 
    
         
            +
                    {
         
     | 
| 
      
 524 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 525 
     | 
    
         
            +
                      "name": "actualType",
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
       291 
527 
     | 
    
         
             
                    }
         
     | 
| 
       292 
528 
     | 
    
         
             
                  ],
         
     | 
| 
       293 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 529 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetTypeMismatch",
         
     | 
| 
       294 
530 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       295 
531 
     | 
    
         
             
                },
         
     | 
| 
       296 
532 
     | 
    
         
             
                {
         
     | 
| 
         @@ -301,7 +537,18 @@ 
     | 
|
| 
       301 
537 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       302 
538 
     | 
    
         
             
                    }
         
     | 
| 
       303 
539 
     | 
    
         
             
                  ],
         
     | 
| 
       304 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 540 
     | 
    
         
            +
                  "name": "ErrorAccessAdminTargetUnknown",
         
     | 
| 
      
 541 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 542 
     | 
    
         
            +
                },
         
     | 
| 
      
 543 
     | 
    
         
            +
                {
         
     | 
| 
      
 544 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 545 
     | 
    
         
            +
                    {
         
     | 
| 
      
 546 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 547 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 548 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 549 
     | 
    
         
            +
                    }
         
     | 
| 
      
 550 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 551 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
       305 
552 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       306 
553 
     | 
    
         
             
                },
         
     | 
| 
       307 
554 
     | 
    
         
             
                {
         
     | 
| 
         @@ -348,6 +595,12 @@ 
     | 
|
| 
       348 
595 
     | 
    
         
             
                {
         
     | 
| 
       349 
596 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       350 
597 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 598 
     | 
    
         
            +
                    {
         
     | 
| 
      
 599 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 600 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 601 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 602 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 603 
     | 
    
         
            +
                    },
         
     | 
| 
       351 
604 
     | 
    
         
             
                    {
         
     | 
| 
       352 
605 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       353 
606 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
         @@ -356,23 +609,54 @@ 
     | 
|
| 
       356 
609 
     | 
    
         
             
                    },
         
     | 
| 
       357 
610 
     | 
    
         
             
                    {
         
     | 
| 
       358 
611 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       359 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       360 
     | 
    
         
            -
                      "name": " 
     | 
| 
       361 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 612 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 613 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 614 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 615 
     | 
    
         
            +
                    },
         
     | 
| 
      
 616 
     | 
    
         
            +
                    {
         
     | 
| 
      
 617 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 618 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 619 
     | 
    
         
            +
                      "name": "authorizedRoleId",
         
     | 
| 
      
 620 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 621 
     | 
    
         
            +
                    }
         
     | 
| 
      
 622 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 623 
     | 
    
         
            +
                  "name": "LogAccessAdminDebugTarget",
         
     | 
| 
      
 624 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 625 
     | 
    
         
            +
                },
         
     | 
| 
      
 626 
     | 
    
         
            +
                {
         
     | 
| 
      
 627 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 628 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 629 
     | 
    
         
            +
                    {
         
     | 
| 
      
 630 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 631 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 632 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 633 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 634 
     | 
    
         
            +
                    },
         
     | 
| 
      
 635 
     | 
    
         
            +
                    {
         
     | 
| 
      
 636 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 637 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 638 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 639 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       362 
640 
     | 
    
         
             
                    },
         
     | 
| 
       363 
641 
     | 
    
         
             
                    {
         
     | 
| 
       364 
642 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       365 
643 
     | 
    
         
             
                      "internalType": "string",
         
     | 
| 
       366 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 644 
     | 
    
         
            +
                      "name": "func",
         
     | 
| 
       367 
645 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       368 
646 
     | 
    
         
             
                    }
         
     | 
| 
       369 
647 
     | 
    
         
             
                  ],
         
     | 
| 
       370 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 648 
     | 
    
         
            +
                  "name": "LogAccessAdminFunctionGranted",
         
     | 
| 
       371 
649 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       372 
650 
     | 
    
         
             
                },
         
     | 
| 
       373 
651 
     | 
    
         
             
                {
         
     | 
| 
       374 
652 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       375 
653 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 654 
     | 
    
         
            +
                    {
         
     | 
| 
      
 655 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 656 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 657 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 658 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 659 
     | 
    
         
            +
                    },
         
     | 
| 
       376 
660 
     | 
    
         
             
                    {
         
     | 
| 
       377 
661 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       378 
662 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
         @@ -398,7 +682,7 @@ 
     | 
|
| 
       398 
682 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       399 
683 
     | 
    
         
             
                    }
         
     | 
| 
       400 
684 
     | 
    
         
             
                  ],
         
     | 
| 
       401 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 685 
     | 
    
         
            +
                  "name": "LogAccessAdminRoleCreated",
         
     | 
| 
       402 
686 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       403 
687 
     | 
    
         
             
                },
         
     | 
| 
       404 
688 
     | 
    
         
             
                {
         
     | 
| 
         @@ -406,45 +690,87 @@ 
     | 
|
| 
       406 
690 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       407 
691 
     | 
    
         
             
                    {
         
     | 
| 
       408 
692 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       409 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       410 
     | 
    
         
            -
                      "name": " 
     | 
| 
       411 
     | 
    
         
            -
                      "type": " 
     | 
| 
       412 
     | 
    
         
            -
                    },
         
     | 
| 
      
 693 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 694 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 695 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 696 
     | 
    
         
            +
                    },
         
     | 
| 
      
 697 
     | 
    
         
            +
                    {
         
     | 
| 
      
 698 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 699 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 700 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 701 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 702 
     | 
    
         
            +
                    },
         
     | 
| 
       413 
703 
     | 
    
         
             
                    {
         
     | 
| 
       414 
704 
     | 
    
         
             
                      "indexed": false,
         
     | 
| 
       415 
705 
     | 
    
         
             
                      "internalType": "string",
         
     | 
| 
       416 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 706 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
       417 
707 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       418 
708 
     | 
    
         
             
                    }
         
     | 
| 
       419 
709 
     | 
    
         
             
                  ],
         
     | 
| 
       420 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 710 
     | 
    
         
            +
                  "name": "LogAccessAdminRoleGranted",
         
     | 
| 
       421 
711 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       422 
712 
     | 
    
         
             
                },
         
     | 
| 
       423 
713 
     | 
    
         
             
                {
         
     | 
| 
       424 
     | 
    
         
            -
                  " 
     | 
| 
       425 
     | 
    
         
            -
                  " 
     | 
| 
       426 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 714 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 715 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       427 
716 
     | 
    
         
             
                    {
         
     | 
| 
      
 717 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
       428 
718 
     | 
    
         
             
                      "internalType": "string",
         
     | 
| 
       429 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 719 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
      
 720 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 721 
     | 
    
         
            +
                    },
         
     | 
| 
      
 722 
     | 
    
         
            +
                    {
         
     | 
| 
      
 723 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 724 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 725 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 726 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 727 
     | 
    
         
            +
                    },
         
     | 
| 
      
 728 
     | 
    
         
            +
                    {
         
     | 
| 
      
 729 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 730 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 731 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
       430 
732 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
       431 
733 
     | 
    
         
             
                    }
         
     | 
| 
       432 
734 
     | 
    
         
             
                  ],
         
     | 
| 
       433 
     | 
    
         
            -
                  " 
     | 
| 
       434 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 735 
     | 
    
         
            +
                  "name": "LogAccessAdminRoleRevoked",
         
     | 
| 
      
 736 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
       435 
737 
     | 
    
         
             
                },
         
     | 
| 
       436 
738 
     | 
    
         
             
                {
         
     | 
| 
       437 
     | 
    
         
            -
                  " 
     | 
| 
       438 
     | 
    
         
            -
                  " 
     | 
| 
       439 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 739 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 740 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       440 
741 
     | 
    
         
             
                    {
         
     | 
| 
      
 742 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
       441 
743 
     | 
    
         
             
                      "internalType": "string",
         
     | 
| 
       442 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 744 
     | 
    
         
            +
                      "name": "admin",
         
     | 
| 
       443 
745 
     | 
    
         
             
                      "type": "string"
         
     | 
| 
      
 746 
     | 
    
         
            +
                    },
         
     | 
| 
      
 747 
     | 
    
         
            +
                    {
         
     | 
| 
      
 748 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 749 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 750 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 751 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 752 
     | 
    
         
            +
                    },
         
     | 
| 
      
 753 
     | 
    
         
            +
                    {
         
     | 
| 
      
 754 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 755 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 756 
     | 
    
         
            +
                      "name": "managed",
         
     | 
| 
      
 757 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 758 
     | 
    
         
            +
                    },
         
     | 
| 
      
 759 
     | 
    
         
            +
                    {
         
     | 
| 
      
 760 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 761 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 762 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 763 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 764 
     | 
    
         
            +
                    },
         
     | 
| 
      
 765 
     | 
    
         
            +
                    {
         
     | 
| 
      
 766 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 767 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 768 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 769 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       444 
770 
     | 
    
         
             
                    }
         
     | 
| 
       445 
771 
     | 
    
         
             
                  ],
         
     | 
| 
       446 
     | 
    
         
            -
                  " 
     | 
| 
       447 
     | 
    
         
            -
                  "type": " 
     | 
| 
      
 772 
     | 
    
         
            +
                  "name": "LogAccessAdminTargetCreated",
         
     | 
| 
      
 773 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
       448 
774 
     | 
    
         
             
                },
         
     | 
| 
       449 
775 
     | 
    
         
             
                {
         
     | 
| 
       450 
776 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
         @@ -479,29 +805,13 @@ 
     | 
|
| 
       479 
805 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       480 
806 
     | 
    
         
             
                },
         
     | 
| 
       481 
807 
     | 
    
         
             
                {
         
     | 
| 
       482 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       483 
     | 
    
         
            -
             
     | 
| 
       484 
     | 
    
         
            -
             
     | 
| 
       485 
     | 
    
         
            -
                      "name": "caller",
         
     | 
| 
       486 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       487 
     | 
    
         
            -
                    },
         
     | 
| 
      
 808 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 809 
     | 
    
         
            +
                  "name": "deployer",
         
     | 
| 
      
 810 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       488 
811 
     | 
    
         
             
                    {
         
     | 
| 
       489 
812 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       490 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 813 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       491 
814 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       492 
     | 
    
         
            -
                    },
         
     | 
| 
       493 
     | 
    
         
            -
                    {
         
     | 
| 
       494 
     | 
    
         
            -
                      "internalType": "Selector",
         
     | 
| 
       495 
     | 
    
         
            -
                      "name": "selector",
         
     | 
| 
       496 
     | 
    
         
            -
                      "type": "bytes4"
         
     | 
| 
       497 
     | 
    
         
            -
                    }
         
     | 
| 
       498 
     | 
    
         
            -
                  ],
         
     | 
| 
       499 
     | 
    
         
            -
                  "name": "canCall",
         
     | 
| 
       500 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       501 
     | 
    
         
            -
                    {
         
     | 
| 
       502 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       503 
     | 
    
         
            -
                      "name": "can",
         
     | 
| 
       504 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       505 
815 
     | 
    
         
             
                    }
         
     | 
| 
       506 
816 
     | 
    
         
             
                  ],
         
     | 
| 
       507 
817 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -509,12 +819,12 @@ 
     | 
|
| 
       509 
819 
     | 
    
         
             
                },
         
     | 
| 
       510 
820 
     | 
    
         
             
                {
         
     | 
| 
       511 
821 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       512 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 822 
     | 
    
         
            +
                  "name": "getAdminRole",
         
     | 
| 
       513 
823 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       514 
824 
     | 
    
         
             
                    {
         
     | 
| 
       515 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       516 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       517 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 825 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 826 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 827 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       518 
828 
     | 
    
         
             
                    }
         
     | 
| 
       519 
829 
     | 
    
         
             
                  ],
         
     | 
| 
       520 
830 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -522,12 +832,12 @@ 
     | 
|
| 
       522 
832 
     | 
    
         
             
                },
         
     | 
| 
       523 
833 
     | 
    
         
             
                {
         
     | 
| 
       524 
834 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       525 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 835 
     | 
    
         
            +
                  "name": "getAuthorization",
         
     | 
| 
       526 
836 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       527 
837 
     | 
    
         
             
                    {
         
     | 
| 
       528 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       529 
     | 
    
         
            -
                      "name": " 
     | 
| 
       530 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 838 
     | 
    
         
            +
                      "internalType": "contract IAuthorization",
         
     | 
| 
      
 839 
     | 
    
         
            +
                      "name": "authorization",
         
     | 
| 
      
 840 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       531 
841 
     | 
    
         
             
                    }
         
     | 
| 
       532 
842 
     | 
    
         
             
                  ],
         
     | 
| 
       533 
843 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -579,6 +889,32 @@ 
     | 
|
| 
       579 
889 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       580 
890 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       581 
891 
     | 
    
         
             
                },
         
     | 
| 
      
 892 
     | 
    
         
            +
                {
         
     | 
| 
      
 893 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 894 
     | 
    
         
            +
                  "name": "getLinkedNftId",
         
     | 
| 
      
 895 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 896 
     | 
    
         
            +
                    {
         
     | 
| 
      
 897 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 898 
     | 
    
         
            +
                      "name": "linkedNftId",
         
     | 
| 
      
 899 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 900 
     | 
    
         
            +
                    }
         
     | 
| 
      
 901 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 902 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 903 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 904 
     | 
    
         
            +
                },
         
     | 
| 
      
 905 
     | 
    
         
            +
                {
         
     | 
| 
      
 906 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 907 
     | 
    
         
            +
                  "name": "getLinkedOwner",
         
     | 
| 
      
 908 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 909 
     | 
    
         
            +
                    {
         
     | 
| 
      
 910 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 911 
     | 
    
         
            +
                      "name": "linkedOwner",
         
     | 
| 
      
 912 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 913 
     | 
    
         
            +
                    }
         
     | 
| 
      
 914 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 915 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 916 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 917 
     | 
    
         
            +
                },
         
     | 
| 
       582 
918 
     | 
    
         
             
                {
         
     | 
| 
       583 
919 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       584 
920 
     | 
    
         
             
                  "name": "getPublicRole",
         
     | 
| 
         @@ -592,32 +928,46 @@ 
     | 
|
| 
       592 
928 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       593 
929 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       594 
930 
     | 
    
         
             
                },
         
     | 
| 
      
 931 
     | 
    
         
            +
                {
         
     | 
| 
      
 932 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 933 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 934 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 935 
     | 
    
         
            +
                    {
         
     | 
| 
      
 936 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 937 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 938 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 939 
     | 
    
         
            +
                    }
         
     | 
| 
      
 940 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 941 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 942 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 943 
     | 
    
         
            +
                },
         
     | 
| 
      
 944 
     | 
    
         
            +
                {
         
     | 
| 
      
 945 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 946 
     | 
    
         
            +
                  "name": "getRelease",
         
     | 
| 
      
 947 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 948 
     | 
    
         
            +
                    {
         
     | 
| 
      
 949 
     | 
    
         
            +
                      "internalType": "VersionPart",
         
     | 
| 
      
 950 
     | 
    
         
            +
                      "name": "release",
         
     | 
| 
      
 951 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 952 
     | 
    
         
            +
                    }
         
     | 
| 
      
 953 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 954 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 955 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 956 
     | 
    
         
            +
                },
         
     | 
| 
       595 
957 
     | 
    
         
             
                {
         
     | 
| 
       596 
958 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       597 
959 
     | 
    
         
             
                    {
         
     | 
| 
       598 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 960 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
       599 
961 
     | 
    
         
             
                      "name": "name",
         
     | 
| 
       600 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 962 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
       601 
963 
     | 
    
         
             
                    }
         
     | 
| 
       602 
964 
     | 
    
         
             
                  ],
         
     | 
| 
       603 
965 
     | 
    
         
             
                  "name": "getRoleForName",
         
     | 
| 
       604 
966 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       605 
967 
     | 
    
         
             
                    {
         
     | 
| 
       606 
     | 
    
         
            -
                      " 
     | 
| 
       607 
     | 
    
         
            -
             
     | 
| 
       608 
     | 
    
         
            -
             
     | 
| 
       609 
     | 
    
         
            -
                          "name": "roleId",
         
     | 
| 
       610 
     | 
    
         
            -
                          "type": "uint64"
         
     | 
| 
       611 
     | 
    
         
            -
                        },
         
     | 
| 
       612 
     | 
    
         
            -
                        {
         
     | 
| 
       613 
     | 
    
         
            -
                          "internalType": "bool",
         
     | 
| 
       614 
     | 
    
         
            -
                          "name": "exists",
         
     | 
| 
       615 
     | 
    
         
            -
                          "type": "bool"
         
     | 
| 
       616 
     | 
    
         
            -
                        }
         
     | 
| 
       617 
     | 
    
         
            -
                      ],
         
     | 
| 
       618 
     | 
    
         
            -
                      "internalType": "struct IAccess.RoleNameInfo",
         
     | 
| 
       619 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       620 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 968 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 969 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 970 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       621 
971 
     | 
    
         
             
                    }
         
     | 
| 
       622 
972 
     | 
    
         
             
                  ],
         
     | 
| 
       623 
973 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -670,14 +1020,19 @@ 
     | 
|
| 
       670 
1020 
     | 
    
         
             
                          "type": "uint32"
         
     | 
| 
       671 
1021 
     | 
    
         
             
                        },
         
     | 
| 
       672 
1022 
     | 
    
         
             
                        {
         
     | 
| 
       673 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       674 
     | 
    
         
            -
                          "name": " 
     | 
| 
       675 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1023 
     | 
    
         
            +
                          "internalType": "Timestamp",
         
     | 
| 
      
 1024 
     | 
    
         
            +
                          "name": "createdAt",
         
     | 
| 
      
 1025 
     | 
    
         
            +
                          "type": "uint40"
         
     | 
| 
       676 
1026 
     | 
    
         
             
                        },
         
     | 
| 
       677 
1027 
     | 
    
         
             
                        {
         
     | 
| 
       678 
1028 
     | 
    
         
             
                          "internalType": "Timestamp",
         
     | 
| 
       679 
     | 
    
         
            -
                          "name": " 
     | 
| 
      
 1029 
     | 
    
         
            +
                          "name": "pausedAt",
         
     | 
| 
       680 
1030 
     | 
    
         
             
                          "type": "uint40"
         
     | 
| 
      
 1031 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1032 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1033 
     | 
    
         
            +
                          "internalType": "Str",
         
     | 
| 
      
 1034 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 1035 
     | 
    
         
            +
                          "type": "bytes32"
         
     | 
| 
       681 
1036 
     | 
    
         
             
                        }
         
     | 
| 
       682 
1037 
     | 
    
         
             
                      ],
         
     | 
| 
       683 
1038 
     | 
    
         
             
                      "internalType": "struct IAccess.RoleInfo",
         
     | 
| 
         @@ -768,9 +1123,14 @@ 
     | 
|
| 
       768 
1123 
     | 
    
         
             
                          "type": "bytes32"
         
     | 
| 
       769 
1124 
     | 
    
         
             
                        },
         
     | 
| 
       770 
1125 
     | 
    
         
             
                        {
         
     | 
| 
       771 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       772 
     | 
    
         
            -
                          "name": " 
     | 
| 
       773 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 1126 
     | 
    
         
            +
                          "internalType": "enum IAccess.TargetType",
         
     | 
| 
      
 1127 
     | 
    
         
            +
                          "name": "targetType",
         
     | 
| 
      
 1128 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 1129 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1130 
     | 
    
         
            +
                        {
         
     | 
| 
      
 1131 
     | 
    
         
            +
                          "internalType": "RoleId",
         
     | 
| 
      
 1132 
     | 
    
         
            +
                          "name": "roleId",
         
     | 
| 
      
 1133 
     | 
    
         
            +
                          "type": "uint64"
         
     | 
| 
       774 
1134 
     | 
    
         
             
                        },
         
     | 
| 
       775 
1135 
     | 
    
         
             
                        {
         
     | 
| 
       776 
1136 
     | 
    
         
             
                          "internalType": "Timestamp",
         
     | 
| 
         @@ -790,20 +1150,59 @@ 
     | 
|
| 
       790 
1150 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       791 
1151 
     | 
    
         
             
                    {
         
     | 
| 
       792 
1152 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       793 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 1153 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
       794 
1154 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       795 
1155 
     | 
    
         
             
                    },
         
     | 
| 
      
 1156 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1157 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 1158 
     | 
    
         
            +
                      "name": "adminName",
         
     | 
| 
      
 1159 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 1160 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1161 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1162 
     | 
    
         
            +
                  "name": "initialize",
         
     | 
| 
      
 1163 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1164 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1165 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1166 
     | 
    
         
            +
                },
         
     | 
| 
      
 1167 
     | 
    
         
            +
                {
         
     | 
| 
      
 1168 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1169 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 1170 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1171 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1172 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 1173 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 1174 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 1175 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1176 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1177 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1178 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1179 
     | 
    
         
            +
                },
         
     | 
| 
      
 1180 
     | 
    
         
            +
                {
         
     | 
| 
      
 1181 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 1182 
     | 
    
         
            +
                  "name": "isLocked",
         
     | 
| 
      
 1183 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1184 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1185 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1186 
     | 
    
         
            +
                      "name": "locked",
         
     | 
| 
      
 1187 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1188 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1189 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1190 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1191 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1192 
     | 
    
         
            +
                },
         
     | 
| 
      
 1193 
     | 
    
         
            +
                {
         
     | 
| 
      
 1194 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       796 
1195 
     | 
    
         
             
                    {
         
     | 
| 
       797 
1196 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       798 
1197 
     | 
    
         
             
                      "name": "roleId",
         
     | 
| 
       799 
1198 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
       800 
1199 
     | 
    
         
             
                    }
         
     | 
| 
       801 
1200 
     | 
    
         
             
                  ],
         
     | 
| 
       802 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1201 
     | 
    
         
            +
                  "name": "isRoleActive",
         
     | 
| 
       803 
1202 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       804 
1203 
     | 
    
         
             
                    {
         
     | 
| 
       805 
1204 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
       806 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 1205 
     | 
    
         
            +
                      "name": "isActive",
         
     | 
| 
       807 
1206 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
       808 
1207 
     | 
    
         
             
                    }
         
     | 
| 
       809 
1208 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -812,18 +1211,18 @@ 
     | 
|
| 
       812 
1211 
     | 
    
         
             
                },
         
     | 
| 
       813 
1212 
     | 
    
         
             
                {
         
     | 
| 
       814 
1213 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       815 
     | 
    
         
            -
                    {
         
     | 
| 
       816 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       817 
     | 
    
         
            -
                      "name": "account",
         
     | 
| 
       818 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       819 
     | 
    
         
            -
                    },
         
     | 
| 
       820 
1214 
     | 
    
         
             
                    {
         
     | 
| 
       821 
1215 
     | 
    
         
             
                      "internalType": "RoleId",
         
     | 
| 
       822 
1216 
     | 
    
         
             
                      "name": "roleId",
         
     | 
| 
       823 
1217 
     | 
    
         
             
                      "type": "uint64"
         
     | 
| 
      
 1218 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1219 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1220 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1221 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 1222 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       824 
1223 
     | 
    
         
             
                    }
         
     | 
| 
       825 
1224 
     | 
    
         
             
                  ],
         
     | 
| 
       826 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1225 
     | 
    
         
            +
                  "name": "isRoleAdmin",
         
     | 
| 
       827 
1226 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       828 
1227 
     | 
    
         
             
                    {
         
     | 
| 
       829 
1228 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
         @@ -837,16 +1236,16 @@ 
     | 
|
| 
       837 
1236 
     | 
    
         
             
                {
         
     | 
| 
       838 
1237 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       839 
1238 
     | 
    
         
             
                    {
         
     | 
| 
       840 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       841 
     | 
    
         
            -
                      "name": " 
     | 
| 
       842 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 1239 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 1240 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 1241 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
       843 
1242 
     | 
    
         
             
                    }
         
     | 
| 
       844 
1243 
     | 
    
         
             
                  ],
         
     | 
| 
       845 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 1244 
     | 
    
         
            +
                  "name": "isRoleCustom",
         
     | 
| 
       846 
1245 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       847 
1246 
     | 
    
         
             
                    {
         
     | 
| 
       848 
1247 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
       849 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 1248 
     | 
    
         
            +
                      "name": "isActive",
         
     | 
| 
       850 
1249 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
       851 
1250 
     | 
    
         
             
                    }
         
     | 
| 
       852 
1251 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -854,13 +1253,24 @@ 
     | 
|
| 
       854 
1253 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       855 
1254 
     | 
    
         
             
                },
         
     | 
| 
       856 
1255 
     | 
    
         
             
                {
         
     | 
| 
       857 
     | 
    
         
            -
                  "inputs": [ 
     | 
| 
       858 
     | 
    
         
            -
             
     | 
| 
      
 1256 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1257 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1258 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 1259 
     | 
    
         
            +
                      "name": "roleId",
         
     | 
| 
      
 1260 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 1261 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1262 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1263 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1264 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 1265 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1266 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1267 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1268 
     | 
    
         
            +
                  "name": "isRoleMember",
         
     | 
| 
       859 
1269 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       860 
1270 
     | 
    
         
             
                    {
         
     | 
| 
       861 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 1271 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
       862 
1272 
     | 
    
         
             
                      "name": "",
         
     | 
| 
       863 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 1273 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
       864 
1274 
     | 
    
         
             
                    }
         
     | 
| 
       865 
1275 
     | 
    
         
             
                  ],
         
     | 
| 
       866 
1276 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -885,6 +1295,25 @@ 
     | 
|
| 
       885 
1295 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       886 
1296 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       887 
1297 
     | 
    
         
             
                },
         
     | 
| 
      
 1298 
     | 
    
         
            +
                {
         
     | 
| 
      
 1299 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1300 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1301 
     | 
    
         
            +
                      "internalType": "Str",
         
     | 
| 
      
 1302 
     | 
    
         
            +
                      "name": "roleName",
         
     | 
| 
      
 1303 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 1304 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1305 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1306 
     | 
    
         
            +
                  "name": "roleExists",
         
     | 
| 
      
 1307 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 1308 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1309 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 1310 
     | 
    
         
            +
                      "name": "exists",
         
     | 
| 
      
 1311 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 1312 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1313 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1314 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1315 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1316 
     | 
    
         
            +
                },
         
     | 
| 
       888 
1317 
     | 
    
         
             
                {
         
     | 
| 
       889 
1318 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       890 
1319 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -980,130 +1409,64 @@ 
     | 
|
| 
       980 
1409 
     | 
    
         
             
                  ],
         
     | 
| 
       981 
1410 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       982 
1411 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       983 
     | 
    
         
            -
                } 
     | 
| 
       984 
     | 
    
         
            -
             
     | 
| 
       985 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
      
 1412 
     | 
    
         
            +
                }
         
     | 
| 
      
 1413 
     | 
    
         
            +
              ],
         
     | 
| 
      
 1414 
     | 
    
         
            +
              "bytecode": "0x6080604052348015600e575f80fd5b506127568061001c5f395ff3fe608060405234801561000f575f80fd5b50600436106101f2575f3560e01c806376b707b711610114578063b3ecf236116100a9578063d5f3948811610079578063d5f39488146104aa578063d78a83b1146104bb578063dd22b08a146104ce578063f399e22e146104d6578063f60458ba146104e9575f80fd5b8063b3ecf2361461045f578063b41406f914610467578063bf7e214f1461047a578063c6a0017914610497575f80fd5b806387c73e5a116100e457806387c73e5a146104105780638fb36037146104235780639cad005214610444578063a4e2d63414610457575f80fd5b806376b707b7146103c65780637a9e5e4b146103e05780637f0cf947146103f55780638308ceb114610408575f80fd5b80633fd855611161018a578063605aa10a1161015a578063605aa10a1461037c57806366c3bc951461038f5780636bd1c0eb146103a2578063728a61a8146103b3575f80fd5b80633fd8556114610316578063480cebd1146103415780635ab1bd53146103545780635bfa50271461035c575f80fd5b806326decd40116101c557806326decd40146102985780633406b152146102bb57806335471f80146102fb578063392f5f641461030e575f80fd5b806303014974146101f657806312e1ebc51461021c57806324913ce61461023c57806326d60fb414610290575b5f80fd5b610209610204366004611eef565b610514565b6040519081526020015b60405180910390f35b61022f61022a366004611f1e565b61053a565b6040516102139190611f4d565b61024f61024a366004611f9c565b6105e6565b60408051835181526020808501516001600160e01b031916908201529281015164ffffffffff16908301526001600160401b03166060820152608001610213565b600a54610209565b6102ab6102a6366004611f1e565b610876565b6040519015158152602001610213565b6102e36102c9366004611fc6565b5f908152600960205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610213565b610209610309366004611f1e565b6108e2565b600654610209565b610329610324366004611fc6565b61096c565b6040516001600160401b039091168152602001610213565b6102ab61034f366004611fdd565b6109ae565b6102e36109db565b61036f61036a366004611eef565b610a4b565b6040516102139190612028565b6102ab61038a366004611f1e565b610b1e565b6102ab61039d366004611eef565b610b95565b6002546001600160a01b03166102e3565b6102e36103c1366004611fc6565b610c3d565b6103ce610c6b565b60405160ff9091168152602001610213565b6103f36103ee366004611f1e565b610cd6565b005b6102ab610403366004611fdd565b610d77565b610329610dfd565b6102ab61041e366004611eef565b610e68565b61042b610ea5565b6040516001600160e01b03199091168152602001610213565b610329610452366004612173565b610edb565b6102ab610f74565b610329610fdf565b6102ab610475366004611fc6565b611026565b5f80516020612701833981519152546001600160a01b03166102e3565b6102ab6104a5366004611eef565b611256565b6003546001600160a01b03166102e3565b6102e36104c93660046121ac565b6112b7565b6102e36112d8565b6103f36104e43660046121c8565b611338565b600354600160a01b90046001600160601b03166040516001600160601b039091168152602001610213565b6001600160401b0381165f90815260076020526040812061053490611446565b92915050565b60408051608080820183525f8083526020808401829052838501829052606084018290526001600160a01b038616825260088152908490208451928301909452835482526001840154929391929083019060ff16600681111561059f5761059f611f39565b60068111156105b0576105b0611f39565b81526001919091015461010081046001600160401b03166020830152600160481b900464ffffffffff1660409091015292915050565b604080516060810182525f80825260208083018290528284018290526001600160a01b0386168252600b9052828120925163dfe63db960e01b81526004810193909352602483018490529091819073__$8df0087758613aef8a614b5774fdb3323b$__9063dfe63db990604401602060405180830381865af415801561066e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610692919061221f565b6001600160a01b038681165f908152600c602090815260408083206001600160e01b03198681168086529184529382902082516060810184528154815260019182015460e081901b9096169481019490945264010000000090940464ffffffffff168383015292549051636ea1af2560e11b8152600481019390935290965092935073__$1d92393fa9ccd763988368ce8a1cb90d26$__926368aebf7b921690636d5115bd90899073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af4158015610774573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610798919061221f565b6040516001600160e01b031960e085901b811682526001600160a01b03909316600482015291166024820152604401602060405180830381865afa1580156107e2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610806919061223a565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610848573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086c919061223a565b9150509250929050565b60015460405163a166aa8960e01b81526001600160a01b0383811660048301525f92169063a166aa8990602401602060405180830381865afa1580156108be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105349190612269565b6001600160a01b0381165f908152600b6020526040808220905163868b3e0760e01b8152600481019190915273__$8df0087758613aef8a614b5774fdb3323b$__9063868b3e0790602401602060405180830381865af4158015610948573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105349190612282565b5f6006828154811061098057610980612299565b905f5260205f2090600491828204019190066008029054906101000a90046001600160401b03169050919050565b6001600160401b038083165f9081526004602052604081205490916109d4911683610d77565b9392505050565b60015460408051635ab1bd5360e01b815290515f926001600160a01b031691635ab1bd539160048083019260209291908290030181865afa158015610a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4691906122ad565b905090565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600482529185902085519384019095528454918216835292939192830190600160401b900460ff166003811115610ac357610ac3611f39565b6003811115610ad457610ad4611f39565b8152815463ffffffff600160481b820416602083015264ffffffffff600160681b820481166040840152600160901b90910416606082015260019091015460809091015292915050565b6001600160a01b0381165f90815260086020526040808220600101549051638d38cd4b60e01b8152600160481b90910464ffffffffff16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b906024015b602060405180830381865af41580156108be573d5f803e3d5ffd5b6001600160401b0381165f9081526004602081815260408084205481516356db0c1960e11b8152915161053494600160901b90920464ffffffffff169373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb618329381810193918290030181865af4158015610c0a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2e91906122dc565b64ffffffffff90811691161190565b5f600a8281548110610c5157610c51612299565b5f918252602090912001546001600160a01b031692915050565b600154604080516376b707b760e01b815290515f926001600160a01b0316916376b707b79160048083019260209291908290030181865afa158015610cb2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4691906122f5565b33610cf55f80516020612701833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610d355760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b5f03610d6a576040516361798f2f60e11b81526001600160a01b0383166004820152602401610d2c565b610d738261144f565b5050565b6001546040516368fc2b7760e11b81526001600160401b03841660048201526001600160a01b0383811660248301525f92839291169063d1f856ee906044016040805180830381865afa158015610dd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610df49190612328565b50949350505050565b60015460408051631e53e01560e11b815290515f926001600160a01b031691633ca7c02a9160048083019260209291908290030181865afa158015610e44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a46919061223a565b5f60036001600160401b0383165f90815260046020526040902054600160401b900460ff166003811115610e9e57610e9e611f39565b1492915050565b5f8051602061270183398151915280545f9190600160a01b900460ff16610ecc575f610ed5565b638fb3603760e01b5b91505090565b5f60055f73__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610f169190612387565b602060405180830381865af4158015610f31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f559190612282565b815260208101919091526040015f20546001600160401b031692915050565b60015460408051632938b58d60e21b815290515f926001600160a01b03169163a4e2d6349160048083019260209291908290030181865afa158015610fbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a469190612269565b60015460408051631d6c8e3f60e21b815290515f926001600160a01b0316916375b238fc9160048083019260209291908290030181865afa158015610e44573d5f803e3d5ffd5b5f6110cb8273__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e6961106b60408051808201909152600981526841646d696e526f6c6560b81b602082015290565b6040518263ffffffff1660e01b81526004016110879190612387565b602060405180830381865af41580156110a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c69190612282565b6114b0565b8061111657506111168273__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e6961106b60408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b1561112357506001919050565b5f828152600560205260409081902054905163015c60ad60e21b81526001600160401b03909116600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063057182b490602401602060405180830381865af415801561118c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b09190612269565b156111bd57505f92915050565b6001600160401b0381165f90815260046020819052604091829020549151638d38cd4b60e01b8152600160681b90920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015611232573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d49190612269565b6001600160401b0381165f908152600460208190526040808320549051638d38cd4b60e01b8152600160681b90910464ffffffffff169181019190915273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401610b7a565b6001600160401b0382165f9081526007602052604081206109d49083611507565b5f6112e16109db565b600354604051631c5da14d60e11b8152600160a01b9091046001600160601b031660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a22573d5f803e3d5ffd5b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561137c5750825b90505f826001600160401b031660011480156113975750303b155b9050811580156113a5575080155b156113c35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113ed57845460ff60401b1916600160401b1785555b6113f78787611512565b831561143d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f610534825490565b5f8051602061270183398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020015b60405180910390a15050565b6040516303447c0360e41b815260048101839052602481018290525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__90633447c03090604401602060405180830381865af4158015611232573d5f803e3d5ffd5b5f6109d483836117e2565b61151a611808565b6003546001600160a01b031661153d57600380546001600160a01b031916331790555b6003546001600160a01b031633146115685760405163410f583d60e11b815260040160405180910390fd5b604051631627905560e01b81526001600160a01b038316600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af41580156115be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115e29190612269565b61160a5760405163a91c340960e01b81526001600160a01b0383166004820152602401610d2c565b80515f0361162b5760405163ea69a8ad60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b03841690811790915560405163189acdbd60e31b815230600482015263c4d66de8906024015f604051808303815f87803b15801561167c575f80fd5b505af115801561168e573d5f803e3d5ffd5b5050604051632330f24760e01b81526001600160a01b038516600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9250632330f2479150602401602060405180830381865af41580156116e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061170c9190612269565b61173457604051637595cb1960e01b81526001600160a01b0383166004820152602401610d2c565b61173d82611853565b5f611748828261241d565b5073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611790573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b491906124d7565b600360146101000a8154816001600160601b0302191690836001600160601b03160217905550610d73611867565b5f825f0182815481106117f7576117f7612299565b905f5260205f200154905092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661185157604051631afcd79f60e31b815260040160405180910390fd5b565b61185b611808565b61186481611a9e565b50565b61186f611808565b61192961187a611aaf565b73__$7ca0443fea8aec4ba68c2e8d18c5a8d73e$__635a81966261189c611aaf565b600260016118c660408051808201909152600981526841646d696e526f6c6560b81b602082015290565b6040518563ffffffff1660e01b81526004016118e594939291906124fd565b60c060405180830381865af4158015611900573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119249190612541565b611b00565b611a423060075f73__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b60015f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561199a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119be919061223a565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015611a00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a24919061223a565b6001600160401b0316815260208101919091526040015f2090611e3b565b50611851611a4e611e4f565b73__$7ca0443fea8aec4ba68c2e8d18c5a8d73e$__635a819662611a70611aaf565b600163ffffffff6118c660408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b611aa6611808565b6118648161144f565b6040516368aebf7b60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af4158015610e44573d5f803e3d5ffd5b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b6b91906122dc565b64ffffffffff16606082015260408051636ac5db1960e01b8152905173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__91636ac5db199160048083019260209291908290030181865af4158015611bc5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611be991906122dc565b64ffffffffff1660808201526001600160401b038083165f90815260046020908152604090912083518154931667ffffffffffffffff1984168117825591840151849391929091839168ffffffffffffffffff1990911617600160401b836003811115611c5857611c58611f39565b021790555060408281015182546060850151608086015164ffffffffff908116600160901b0264ffffffffff60901b1991909216600160681b0264ffffffffff60681b1963ffffffff909516600160481b029490941671ffffffffffffffffff0000000000000000001990931692909217929092171617825560a092830151600192830155805180820182526001600160401b03808716808352602080840186815296880180515f908152600583528681209551865499511515600160401b0268ffffffffffffffffff19909a169086161798909817909455600680549687018155875260048087047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805460039098166008026101000a938402939094021990961691909117909155850151855191519251631623433d60e31b81527f089dc3e37715ee5f5f527a09ca053081e6a74ab2cde2b4471c37f8b9b81af45c9594889492939273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e892611de992910190815260200190565b5f60405180830381865af4158015611e03573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611e2a91908101906125c4565b6040516114a4959493929190612638565b5f6109d4836001600160a01b038416611e8f565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401611ae5565b5f818152600183016020526040812054611ed457508154600181810184555f848152602080822090930184905584548482528286019093526040902091909155610534565b505f610534565b6001600160401b0381168114611864575f80fd5b5f60208284031215611eff575f80fd5b81356109d481611edb565b6001600160a01b0381168114611864575f80fd5b5f60208284031215611f2e575f80fd5b81356109d481611f0a565b634e487b7160e01b5f52602160045260245ffd5b815181526020820151608082019060078110611f6b57611f6b611f39565b806020840152506001600160401b03604084015116604083015264ffffffffff606084015116606083015292915050565b5f8060408385031215611fad575f80fd5b8235611fb881611f0a565b946020939093013593505050565b5f60208284031215611fd6575f80fd5b5035919050565b5f8060408385031215611fee575f80fd5b8235611ff981611edb565b9150602083013561200981611f0a565b809150509250929050565b6004811061202457612024611f39565b9052565b81516001600160401b0316815260208083015160c083019161204c90840182612014565b5063ffffffff604084015116604083015264ffffffffff606084015116606083015264ffffffffff608084015116608083015260a083015160a083015292915050565b634e487b7160e01b5f52604160045260245ffd5b60405160c081016001600160401b03811182821017156120c5576120c561208f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156120f3576120f361208f565b604052919050565b5f6001600160401b038211156121135761211361208f565b50601f01601f191660200190565b5f82601f830112612130575f80fd5b813561214361213e826120fb565b6120cb565b818152846020838601011115612157575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215612183575f80fd5b81356001600160401b03811115612198575f80fd5b6121a484828501612121565b949350505050565b5f80604083850312156121bd575f80fd5b8235611fb881611edb565b5f80604083850312156121d9575f80fd5b82356121e481611f0a565b915060208301356001600160401b038111156121fe575f80fd5b61086c85828601612121565b6001600160e01b031981168114611864575f80fd5b5f6020828403121561222f575f80fd5b81516109d48161220a565b5f6020828403121561224a575f80fd5b81516109d481611edb565b80518015158114612264575f80fd5b919050565b5f60208284031215612279575f80fd5b6109d482612255565b5f60208284031215612292575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156122bd575f80fd5b81516109d481611f0a565b805164ffffffffff81168114612264575f80fd5b5f602082840312156122ec575f80fd5b6109d4826122c8565b5f60208284031215612305575f80fd5b815160ff811681146109d4575f80fd5b805163ffffffff81168114612264575f80fd5b5f8060408385031215612339575f80fd5b61234283612255565b915061235060208401612315565b90509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6109d46020830184612359565b600181811c908216806123ad57607f821691505b6020821081036123cb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561241857805f5260205f20601f840160051c810160208510156123f65750805b601f840160051c820191505b81811015612415575f8155600101612402565b50505b505050565b81516001600160401b038111156124365761243661208f565b61244a816124448454612399565b846123d1565b6020601f82116001811461247c575f83156124655750848201515b5f19600385901b1c1916600184901b178455612415565b5f84815260208120601f198516915b828110156124ab578785015182556020948501946001909201910161248b565b50848210156124c857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f602082840312156124e7575f80fd5b81516001600160601b03811681146109d4575f80fd5b6001600160401b03851681526125166020820185612014565b63ffffffff83166040820152608060608201525f6125376080830184612359565b9695505050505050565b5f60c0828403128015612552575f80fd5b5061255b6120a3565b825161256681611edb565b8152602083015160048110612579575f80fd5b602082015261258a60408401612315565b604082015261259b606084016122c8565b60608201526125ac608084016122c8565b608082015260a0928301519281019290925250919050565b5f602082840312156125d4575f80fd5b81516001600160401b038111156125e9575f80fd5b8201601f810184136125f9575f80fd5b805161260761213e826120fb565b81815285602083850101111561261b575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b60a081525f80875461264981612399565b8060a0860152600182165f81146126675760018114612683576126b4565b60ff19831660c087015260c082151560051b87010193506126b4565b8a5f5260205f205f5b838110156126ab57815488820160c0015260019091019060200161268c565b870160c0019450505b5050506001600160401b03871660208401526126d36040840187612014565b6001600160401b038516606084015282810360808401526126f48185612359565b9897505050505050505056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220c107405d19ea3111941e6f3a18a8c12d78ec8c525975e2156db6f1e28ec9c88b64736f6c634300081a0033",
         
     | 
| 
      
 1415 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101f2575f3560e01c806376b707b711610114578063b3ecf236116100a9578063d5f3948811610079578063d5f39488146104aa578063d78a83b1146104bb578063dd22b08a146104ce578063f399e22e146104d6578063f60458ba146104e9575f80fd5b8063b3ecf2361461045f578063b41406f914610467578063bf7e214f1461047a578063c6a0017914610497575f80fd5b806387c73e5a116100e457806387c73e5a146104105780638fb36037146104235780639cad005214610444578063a4e2d63414610457575f80fd5b806376b707b7146103c65780637a9e5e4b146103e05780637f0cf947146103f55780638308ceb114610408575f80fd5b80633fd855611161018a578063605aa10a1161015a578063605aa10a1461037c57806366c3bc951461038f5780636bd1c0eb146103a2578063728a61a8146103b3575f80fd5b80633fd8556114610316578063480cebd1146103415780635ab1bd53146103545780635bfa50271461035c575f80fd5b806326decd40116101c557806326decd40146102985780633406b152146102bb57806335471f80146102fb578063392f5f641461030e575f80fd5b806303014974146101f657806312e1ebc51461021c57806324913ce61461023c57806326d60fb414610290575b5f80fd5b610209610204366004611eef565b610514565b6040519081526020015b60405180910390f35b61022f61022a366004611f1e565b61053a565b6040516102139190611f4d565b61024f61024a366004611f9c565b6105e6565b60408051835181526020808501516001600160e01b031916908201529281015164ffffffffff16908301526001600160401b03166060820152608001610213565b600a54610209565b6102ab6102a6366004611f1e565b610876565b6040519015158152602001610213565b6102e36102c9366004611fc6565b5f908152600960205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610213565b610209610309366004611f1e565b6108e2565b600654610209565b610329610324366004611fc6565b61096c565b6040516001600160401b039091168152602001610213565b6102ab61034f366004611fdd565b6109ae565b6102e36109db565b61036f61036a366004611eef565b610a4b565b6040516102139190612028565b6102ab61038a366004611f1e565b610b1e565b6102ab61039d366004611eef565b610b95565b6002546001600160a01b03166102e3565b6102e36103c1366004611fc6565b610c3d565b6103ce610c6b565b60405160ff9091168152602001610213565b6103f36103ee366004611f1e565b610cd6565b005b6102ab610403366004611fdd565b610d77565b610329610dfd565b6102ab61041e366004611eef565b610e68565b61042b610ea5565b6040516001600160e01b03199091168152602001610213565b610329610452366004612173565b610edb565b6102ab610f74565b610329610fdf565b6102ab610475366004611fc6565b611026565b5f80516020612701833981519152546001600160a01b03166102e3565b6102ab6104a5366004611eef565b611256565b6003546001600160a01b03166102e3565b6102e36104c93660046121ac565b6112b7565b6102e36112d8565b6103f36104e43660046121c8565b611338565b600354600160a01b90046001600160601b03166040516001600160601b039091168152602001610213565b6001600160401b0381165f90815260076020526040812061053490611446565b92915050565b60408051608080820183525f8083526020808401829052838501829052606084018290526001600160a01b038616825260088152908490208451928301909452835482526001840154929391929083019060ff16600681111561059f5761059f611f39565b60068111156105b0576105b0611f39565b81526001919091015461010081046001600160401b03166020830152600160481b900464ffffffffff1660409091015292915050565b604080516060810182525f80825260208083018290528284018290526001600160a01b0386168252600b9052828120925163dfe63db960e01b81526004810193909352602483018490529091819073__$8df0087758613aef8a614b5774fdb3323b$__9063dfe63db990604401602060405180830381865af415801561066e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610692919061221f565b6001600160a01b038681165f908152600c602090815260408083206001600160e01b03198681168086529184529382902082516060810184528154815260019182015460e081901b9096169481019490945264010000000090940464ffffffffff168383015292549051636ea1af2560e11b8152600481019390935290965092935073__$1d92393fa9ccd763988368ce8a1cb90d26$__926368aebf7b921690636d5115bd90899073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af4158015610774573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610798919061221f565b6040516001600160e01b031960e085901b811682526001600160a01b03909316600482015291166024820152604401602060405180830381865afa1580156107e2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610806919061223a565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610848573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086c919061223a565b9150509250929050565b60015460405163a166aa8960e01b81526001600160a01b0383811660048301525f92169063a166aa8990602401602060405180830381865afa1580156108be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105349190612269565b6001600160a01b0381165f908152600b6020526040808220905163868b3e0760e01b8152600481019190915273__$8df0087758613aef8a614b5774fdb3323b$__9063868b3e0790602401602060405180830381865af4158015610948573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105349190612282565b5f6006828154811061098057610980612299565b905f5260205f2090600491828204019190066008029054906101000a90046001600160401b03169050919050565b6001600160401b038083165f9081526004602052604081205490916109d4911683610d77565b9392505050565b60015460408051635ab1bd5360e01b815290515f926001600160a01b031691635ab1bd539160048083019260209291908290030181865afa158015610a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4691906122ad565b905090565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600482529185902085519384019095528454918216835292939192830190600160401b900460ff166003811115610ac357610ac3611f39565b6003811115610ad457610ad4611f39565b8152815463ffffffff600160481b820416602083015264ffffffffff600160681b820481166040840152600160901b90910416606082015260019091015460809091015292915050565b6001600160a01b0381165f90815260086020526040808220600101549051638d38cd4b60e01b8152600160481b90910464ffffffffff16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b906024015b602060405180830381865af41580156108be573d5f803e3d5ffd5b6001600160401b0381165f9081526004602081815260408084205481516356db0c1960e11b8152915161053494600160901b90920464ffffffffff169373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb618329381810193918290030181865af4158015610c0a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2e91906122dc565b64ffffffffff90811691161190565b5f600a8281548110610c5157610c51612299565b5f918252602090912001546001600160a01b031692915050565b600154604080516376b707b760e01b815290515f926001600160a01b0316916376b707b79160048083019260209291908290030181865afa158015610cb2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4691906122f5565b33610cf55f80516020612701833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610d355760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b5f03610d6a576040516361798f2f60e11b81526001600160a01b0383166004820152602401610d2c565b610d738261144f565b5050565b6001546040516368fc2b7760e11b81526001600160401b03841660048201526001600160a01b0383811660248301525f92839291169063d1f856ee906044016040805180830381865afa158015610dd0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610df49190612328565b50949350505050565b60015460408051631e53e01560e11b815290515f926001600160a01b031691633ca7c02a9160048083019260209291908290030181865afa158015610e44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a46919061223a565b5f60036001600160401b0383165f90815260046020526040902054600160401b900460ff166003811115610e9e57610e9e611f39565b1492915050565b5f8051602061270183398151915280545f9190600160a01b900460ff16610ecc575f610ed5565b638fb3603760e01b5b91505090565b5f60055f73__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610f169190612387565b602060405180830381865af4158015610f31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f559190612282565b815260208101919091526040015f20546001600160401b031692915050565b60015460408051632938b58d60e21b815290515f926001600160a01b03169163a4e2d6349160048083019260209291908290030181865afa158015610fbb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a469190612269565b60015460408051631d6c8e3f60e21b815290515f926001600160a01b0316916375b238fc9160048083019260209291908290030181865afa158015610e44573d5f803e3d5ffd5b5f6110cb8273__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e6961106b60408051808201909152600981526841646d696e526f6c6560b81b602082015290565b6040518263ffffffff1660e01b81526004016110879190612387565b602060405180830381865af41580156110a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c69190612282565b6114b0565b8061111657506111168273__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e6961106b60408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b1561112357506001919050565b5f828152600560205260409081902054905163015c60ad60e21b81526001600160401b03909116600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063057182b490602401602060405180830381865af415801561118c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b09190612269565b156111bd57505f92915050565b6001600160401b0381165f90815260046020819052604091829020549151638d38cd4b60e01b8152600160681b90920464ffffffffff169082015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015611232573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d49190612269565b6001600160401b0381165f908152600460208190526040808320549051638d38cd4b60e01b8152600160681b90910464ffffffffff169181019190915273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401610b7a565b6001600160401b0382165f9081526007602052604081206109d49083611507565b5f6112e16109db565b600354604051631c5da14d60e11b8152600160a01b9091046001600160601b031660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a22573d5f803e3d5ffd5b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561137c5750825b90505f826001600160401b031660011480156113975750303b155b9050811580156113a5575080155b156113c35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113ed57845460ff60401b1916600160401b1785555b6113f78787611512565b831561143d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f610534825490565b5f8051602061270183398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020015b60405180910390a15050565b6040516303447c0360e41b815260048101839052602481018290525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__90633447c03090604401602060405180830381865af4158015611232573d5f803e3d5ffd5b5f6109d483836117e2565b61151a611808565b6003546001600160a01b031661153d57600380546001600160a01b031916331790555b6003546001600160a01b031633146115685760405163410f583d60e11b815260040160405180910390fd5b604051631627905560e01b81526001600160a01b038316600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af41580156115be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115e29190612269565b61160a5760405163a91c340960e01b81526001600160a01b0383166004820152602401610d2c565b80515f0361162b5760405163ea69a8ad60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b03841690811790915560405163189acdbd60e31b815230600482015263c4d66de8906024015f604051808303815f87803b15801561167c575f80fd5b505af115801561168e573d5f803e3d5ffd5b5050604051632330f24760e01b81526001600160a01b038516600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9250632330f2479150602401602060405180830381865af41580156116e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061170c9190612269565b61173457604051637595cb1960e01b81526001600160a01b0383166004820152602401610d2c565b61173d82611853565b5f611748828261241d565b5073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611790573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b491906124d7565b600360146101000a8154816001600160601b0302191690836001600160601b03160217905550610d73611867565b5f825f0182815481106117f7576117f7612299565b905f5260205f200154905092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661185157604051631afcd79f60e31b815260040160405180910390fd5b565b61185b611808565b61186481611a9e565b50565b61186f611808565b61192961187a611aaf565b73__$7ca0443fea8aec4ba68c2e8d18c5a8d73e$__635a81966261189c611aaf565b600260016118c660408051808201909152600981526841646d696e526f6c6560b81b602082015290565b6040518563ffffffff1660e01b81526004016118e594939291906124fd565b60c060405180830381865af4158015611900573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119249190612541565b611b00565b611a423060075f73__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b60015f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561199a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119be919061223a565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015611a00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a24919061223a565b6001600160401b0316815260208101919091526040015f2090611e3b565b50611851611a4e611e4f565b73__$7ca0443fea8aec4ba68c2e8d18c5a8d73e$__635a819662611a70611aaf565b600163ffffffff6118c660408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b611aa6611808565b6118648161144f565b6040516368aebf7b60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af4158015610e44573d5f803e3d5ffd5b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b6b91906122dc565b64ffffffffff16606082015260408051636ac5db1960e01b8152905173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__91636ac5db199160048083019260209291908290030181865af4158015611bc5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611be991906122dc565b64ffffffffff1660808201526001600160401b038083165f90815260046020908152604090912083518154931667ffffffffffffffff1984168117825591840151849391929091839168ffffffffffffffffff1990911617600160401b836003811115611c5857611c58611f39565b021790555060408281015182546060850151608086015164ffffffffff908116600160901b0264ffffffffff60901b1991909216600160681b0264ffffffffff60681b1963ffffffff909516600160481b029490941671ffffffffffffffffff0000000000000000001990931692909217929092171617825560a092830151600192830155805180820182526001600160401b03808716808352602080840186815296880180515f908152600583528681209551865499511515600160401b0268ffffffffffffffffff19909a169086161798909817909455600680549687018155875260048087047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805460039098166008026101000a938402939094021990961691909117909155850151855191519251631623433d60e31b81527f089dc3e37715ee5f5f527a09ca053081e6a74ab2cde2b4471c37f8b9b81af45c9594889492939273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e892611de992910190815260200190565b5f60405180830381865af4158015611e03573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611e2a91908101906125c4565b6040516114a4959493929190612638565b5f6109d4836001600160a01b038416611e8f565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401611ae5565b5f818152600183016020526040812054611ed457508154600181810184555f848152602080822090930184905584548482528286019093526040902091909155610534565b505f610534565b6001600160401b0381168114611864575f80fd5b5f60208284031215611eff575f80fd5b81356109d481611edb565b6001600160a01b0381168114611864575f80fd5b5f60208284031215611f2e575f80fd5b81356109d481611f0a565b634e487b7160e01b5f52602160045260245ffd5b815181526020820151608082019060078110611f6b57611f6b611f39565b806020840152506001600160401b03604084015116604083015264ffffffffff606084015116606083015292915050565b5f8060408385031215611fad575f80fd5b8235611fb881611f0a565b946020939093013593505050565b5f60208284031215611fd6575f80fd5b5035919050565b5f8060408385031215611fee575f80fd5b8235611ff981611edb565b9150602083013561200981611f0a565b809150509250929050565b6004811061202457612024611f39565b9052565b81516001600160401b0316815260208083015160c083019161204c90840182612014565b5063ffffffff604084015116604083015264ffffffffff606084015116606083015264ffffffffff608084015116608083015260a083015160a083015292915050565b634e487b7160e01b5f52604160045260245ffd5b60405160c081016001600160401b03811182821017156120c5576120c561208f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156120f3576120f361208f565b604052919050565b5f6001600160401b038211156121135761211361208f565b50601f01601f191660200190565b5f82601f830112612130575f80fd5b813561214361213e826120fb565b6120cb565b818152846020838601011115612157575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215612183575f80fd5b81356001600160401b03811115612198575f80fd5b6121a484828501612121565b949350505050565b5f80604083850312156121bd575f80fd5b8235611fb881611edb565b5f80604083850312156121d9575f80fd5b82356121e481611f0a565b915060208301356001600160401b038111156121fe575f80fd5b61086c85828601612121565b6001600160e01b031981168114611864575f80fd5b5f6020828403121561222f575f80fd5b81516109d48161220a565b5f6020828403121561224a575f80fd5b81516109d481611edb565b80518015158114612264575f80fd5b919050565b5f60208284031215612279575f80fd5b6109d482612255565b5f60208284031215612292575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156122bd575f80fd5b81516109d481611f0a565b805164ffffffffff81168114612264575f80fd5b5f602082840312156122ec575f80fd5b6109d4826122c8565b5f60208284031215612305575f80fd5b815160ff811681146109d4575f80fd5b805163ffffffff81168114612264575f80fd5b5f8060408385031215612339575f80fd5b61234283612255565b915061235060208401612315565b90509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6109d46020830184612359565b600181811c908216806123ad57607f821691505b6020821081036123cb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561241857805f5260205f20601f840160051c810160208510156123f65750805b601f840160051c820191505b81811015612415575f8155600101612402565b50505b505050565b81516001600160401b038111156124365761243661208f565b61244a816124448454612399565b846123d1565b6020601f82116001811461247c575f83156124655750848201515b5f19600385901b1c1916600184901b178455612415565b5f84815260208120601f198516915b828110156124ab578785015182556020948501946001909201910161248b565b50848210156124c857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f602082840312156124e7575f80fd5b81516001600160601b03811681146109d4575f80fd5b6001600160401b03851681526125166020820185612014565b63ffffffff83166040820152608060608201525f6125376080830184612359565b9695505050505050565b5f60c0828403128015612552575f80fd5b5061255b6120a3565b825161256681611edb565b8152602083015160048110612579575f80fd5b602082015261258a60408401612315565b604082015261259b606084016122c8565b60608201526125ac608084016122c8565b608082015260a0928301519281019290925250919050565b5f602082840312156125d4575f80fd5b81516001600160401b038111156125e9575f80fd5b8201601f810184136125f9575f80fd5b805161260761213e826120fb565b81815285602083850101111561261b575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b60a081525f80875461264981612399565b8060a0860152600182165f81146126675760018114612683576126b4565b60ff19831660c087015260c082151560051b87010193506126b4565b8a5f5260205f205f5b838110156126ab57815488820160c0015260019091019060200161268c565b870160c0019450505b5050506001600160401b03871660208401526126d36040840187612014565b6001600160401b038516606084015282810360808401526126f48185612359565b9897505050505050505056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220c107405d19ea3111941e6f3a18a8c12d78ec8c525975e2156db6f1e28ec9c88b64736f6c634300081a0033",
         
     | 
| 
      
 1416 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 1417 
     | 
    
         
            +
                "contracts/authorization/AccessAdminLib.sol": {
         
     | 
| 
      
 1418 
     | 
    
         
            +
                  "AccessAdminLib": [
         
     | 
| 
       986 
1419 
     | 
    
         
             
                    {
         
     | 
| 
       987 
     | 
    
         
            -
                      " 
     | 
| 
       988 
     | 
    
         
            -
                      " 
     | 
| 
       989 
     | 
    
         
            -
                      "type": "bytes4"
         
     | 
| 
      
 1420 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1421 
     | 
    
         
            +
                      "start": 6296
         
     | 
| 
       990 
1422 
     | 
    
         
             
                    },
         
     | 
| 
       991 
1423 
     | 
    
         
             
                    {
         
     | 
| 
       992 
     | 
    
         
            -
                      " 
     | 
| 
       993 
     | 
    
         
            -
                      " 
     | 
| 
       994 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
       995 
     | 
    
         
            -
                    }
         
     | 
| 
       996 
     | 
    
         
            -
                  ],
         
     | 
| 
       997 
     | 
    
         
            -
                  "name": "toFunction",
         
     | 
| 
       998 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       999 
     | 
    
         
            -
                    {
         
     | 
| 
       1000 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       1001 
     | 
    
         
            -
                        {
         
     | 
| 
       1002 
     | 
    
         
            -
                          "internalType": "Str",
         
     | 
| 
       1003 
     | 
    
         
            -
                          "name": "name",
         
     | 
| 
       1004 
     | 
    
         
            -
                          "type": "bytes32"
         
     | 
| 
       1005 
     | 
    
         
            -
                        },
         
     | 
| 
       1006 
     | 
    
         
            -
                        {
         
     | 
| 
       1007 
     | 
    
         
            -
                          "internalType": "Selector",
         
     | 
| 
       1008 
     | 
    
         
            -
                          "name": "selector",
         
     | 
| 
       1009 
     | 
    
         
            -
                          "type": "bytes4"
         
     | 
| 
       1010 
     | 
    
         
            -
                        },
         
     | 
| 
       1011 
     | 
    
         
            -
                        {
         
     | 
| 
       1012 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1013 
     | 
    
         
            -
                          "name": "createdAt",
         
     | 
| 
       1014 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1015 
     | 
    
         
            -
                        }
         
     | 
| 
       1016 
     | 
    
         
            -
                      ],
         
     | 
| 
       1017 
     | 
    
         
            -
                      "internalType": "struct IAccess.FunctionInfo",
         
     | 
| 
       1018 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1019 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 1424 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1425 
     | 
    
         
            +
                      "start": 6764
         
     | 
| 
       1020 
1426 
     | 
    
         
             
                    }
         
     | 
| 
       1021 
     | 
    
         
            -
                  ] 
     | 
| 
       1022 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1023 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
      
 1427 
     | 
    
         
            +
                  ]
         
     | 
| 
       1024 
1428 
     | 
    
         
             
                },
         
     | 
| 
       1025 
     | 
    
         
            -
                {
         
     | 
| 
       1026 
     | 
    
         
            -
                  " 
     | 
| 
       1027 
     | 
    
         
            -
                    {
         
     | 
| 
       1028 
     | 
    
         
            -
                      "internalType": "RoleId",
         
     | 
| 
       1029 
     | 
    
         
            -
                      "name": "adminRoleId",
         
     | 
| 
       1030 
     | 
    
         
            -
                      "type": "uint64"
         
     | 
| 
       1031 
     | 
    
         
            -
                    },
         
     | 
| 
      
 1429 
     | 
    
         
            +
                "contracts/shared/ContractLib.sol": {
         
     | 
| 
      
 1430 
     | 
    
         
            +
                  "ContractLib": [
         
     | 
| 
       1032 
1431 
     | 
    
         
             
                    {
         
     | 
| 
       1033 
     | 
    
         
            -
                      " 
     | 
| 
       1034 
     | 
    
         
            -
                      " 
     | 
| 
       1035 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       1036 
     | 
    
         
            -
                    },
         
     | 
| 
       1037 
     | 
    
         
            -
                    {
         
     | 
| 
       1038 
     | 
    
         
            -
                      "internalType": "uint32",
         
     | 
| 
       1039 
     | 
    
         
            -
                      "name": "maxMemberCount",
         
     | 
| 
       1040 
     | 
    
         
            -
                      "type": "uint32"
         
     | 
| 
      
 1432 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1433 
     | 
    
         
            +
                      "start": 5538
         
     | 
| 
       1041 
1434 
     | 
    
         
             
                    },
         
     | 
| 
       1042 
1435 
     | 
    
         
             
                    {
         
     | 
| 
       1043 
     | 
    
         
            -
                      " 
     | 
| 
       1044 
     | 
    
         
            -
                      " 
     | 
| 
       1045 
     | 
    
         
            -
                      "type": "string"
         
     | 
| 
      
 1436 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1437 
     | 
    
         
            +
                      "start": 5834
         
     | 
| 
       1046 
1438 
     | 
    
         
             
                    }
         
     | 
| 
       1047 
     | 
    
         
            -
                  ] 
     | 
| 
       1048 
     | 
    
         
            -
             
     | 
| 
       1049 
     | 
    
         
            -
             
     | 
| 
      
 1439 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1440 
     | 
    
         
            +
                },
         
     | 
| 
      
 1441 
     | 
    
         
            +
                "contracts/type/NftId.sol": {
         
     | 
| 
      
 1442 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
       1050 
1443 
     | 
    
         
             
                    {
         
     | 
| 
       1051 
     | 
    
         
            -
                      " 
     | 
| 
       1052 
     | 
    
         
            -
             
     | 
| 
       1053 
     | 
    
         
            -
                          "internalType": "RoleId",
         
     | 
| 
       1054 
     | 
    
         
            -
                          "name": "adminRoleId",
         
     | 
| 
       1055 
     | 
    
         
            -
                          "type": "uint64"
         
     | 
| 
       1056 
     | 
    
         
            -
                        },
         
     | 
| 
       1057 
     | 
    
         
            -
                        {
         
     | 
| 
       1058 
     | 
    
         
            -
                          "internalType": "enum IAccess.RoleType",
         
     | 
| 
       1059 
     | 
    
         
            -
                          "name": "roleType",
         
     | 
| 
       1060 
     | 
    
         
            -
                          "type": "uint8"
         
     | 
| 
       1061 
     | 
    
         
            -
                        },
         
     | 
| 
       1062 
     | 
    
         
            -
                        {
         
     | 
| 
       1063 
     | 
    
         
            -
                          "internalType": "uint32",
         
     | 
| 
       1064 
     | 
    
         
            -
                          "name": "maxMemberCount",
         
     | 
| 
       1065 
     | 
    
         
            -
                          "type": "uint32"
         
     | 
| 
       1066 
     | 
    
         
            -
                        },
         
     | 
| 
       1067 
     | 
    
         
            -
                        {
         
     | 
| 
       1068 
     | 
    
         
            -
                          "internalType": "Str",
         
     | 
| 
       1069 
     | 
    
         
            -
                          "name": "name",
         
     | 
| 
       1070 
     | 
    
         
            -
                          "type": "bytes32"
         
     | 
| 
       1071 
     | 
    
         
            -
                        },
         
     | 
| 
       1072 
     | 
    
         
            -
                        {
         
     | 
| 
       1073 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       1074 
     | 
    
         
            -
                          "name": "createdAt",
         
     | 
| 
       1075 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       1076 
     | 
    
         
            -
                        }
         
     | 
| 
       1077 
     | 
    
         
            -
                      ],
         
     | 
| 
       1078 
     | 
    
         
            -
                      "internalType": "struct IAccess.RoleInfo",
         
     | 
| 
       1079 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1080 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 1444 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1445 
     | 
    
         
            +
                      "start": 5991
         
     | 
| 
       1081 
1446 
     | 
    
         
             
                    }
         
     | 
| 
       1082 
     | 
    
         
            -
                  ] 
     | 
| 
       1083 
     | 
    
         
            -
             
     | 
| 
       1084 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1085 
     | 
    
         
            -
                }
         
     | 
| 
       1086 
     | 
    
         
            -
              ],
         
     | 
| 
       1087 
     | 
    
         
            -
              "bytecode": "0x608060405234801561000f575f80fd5b50600180546001600160a01b0319163317905560405161002e906108d2565b604051809103905ff080158015610047573d5f803e3d5ffd5b505f80546001600160a01b0319166001600160a01b0392909216918217905560405163189acdbd60e31b815230600482015263c4d66de8906024015f604051808303815f87803b158015610099575f80fd5b505af11580156100ab573d5f803e3d5ffd5b50505f546100c492506001600160a01b031690506100d9565b6100cc61014d565b6100d4610300565b610ac6565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020015b60405180910390a15050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__637c3940bf5f8054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101da91906108f3565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af415801561021c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061024091906108f3565b9050606061028f61024f6103b2565b61028a61025a6103b2565b6001806040518060400160405280600981526020016841646d696e526f6c6560b81b81525061042c60201b60201c565b61058b565b6001600160401b0382165f9081526005602052604090206102b09030610829565b506102fc6102bc610846565b61028a6102c76103b2565b600263ffffffff6040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525061042c60201b60201c565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156103505760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146103af5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b604051637c3940bf60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024015b602060405180830381865af4158015610403573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061042791906108f3565b905090565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091526040518060a00160405280866001600160401b0316815260200185600381111561048257610482610915565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b81526004016104ca9190610957565b602060405180830381865af41580156104e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105099190610969565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610555573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105799190610980565b64ffffffffff16905295945050505050565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156105d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f69190610980565b64ffffffffff1660808201526001600160401b038083165f9081526002602090815260409091208351815493166001600160401b03198416811782559184015184939192909183916001600160481b0319909116176801000000000000000083600381111561066757610667610915565b0217905550604082810151825463ffffffff90911669010000000000000000000263ffffffff60481b199091161782556060808401516001808501919091556080909401516002909301805464ffffffffff90941664ffffffffff1990941693909317909255805180820182526001600160401b03808716808352602080840187815295880180515f9081526003808452878220965187549951151568010000000000000000026001600160481b0319909a169087161798909817909555600480549889018155948590528488047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b018054989097166008026101000a92830292909302199096161790935592840151845192519151631623433d60e31b81527f450614a3feeef5c4e204a5b960f0b368083de37223fc452a8b3c2cb93d075a05948794929373__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e8926107d892910190815260200190565b5f60405180830381865af41580156107f2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261081991908101906109b8565b6040516101419493929190610a68565b5f61083d836001600160a01b038416610886565b90505b92915050565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024016103e8565b5f8181526001830160205260408120546108cb57508154600181810184555f848152602080822090930184905584548482528286019093526040902091909155610840565b505f610840565b612bbd806122b883390190565b6001600160401b03811681146103af575f80fd5b5f60208284031215610903575f80fd5b815161090e816108df565b9392505050565b634e487b7160e01b5f52602160045260245ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61083d6020830184610929565b5f60208284031215610979575f80fd5b5051919050565b5f60208284031215610990575f80fd5b815164ffffffffff8116811461090e575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f602082840312156109c8575f80fd5b81516001600160401b038111156109dd575f80fd5b8201601f810184136109ed575f80fd5b80516001600160401b03811115610a0657610a066109a4565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610a3457610a346109a4565b604052818152828201602001861015610a4b575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b6001600160401b03851681525f60048510610a9157634e487b7160e01b5f52602160045260245ffd5b602082018590526001600160401b0384166040830152608060608301819052610abc90830184610929565b9695505050505050565b6117e580610ad35f395ff3fe608060405234801561000f575f80fd5b50600436106101c6575f3560e01c806364fc3142116100fe578063b70096131161009e578063c6a001791161006e578063c6a0017914610584578063cd55e51b14610597578063d5f39488146105aa578063d78a83b1146105bb575f80fd5b8063b7009613146104f6578063bc62a0a514610509578063bcfb11b01461053e578063bf7e214f14610567575f80fd5b80638308ceb1116100d95780638308ceb1146104445780638fb360371461044c57806392bdd9bd1461046d578063b3ecf236146104ee575f80fd5b806364fc314214610409578063728a61a81461041c5780637a9e5e4b1461042f575f80fd5b80633406b152116101695780633fd85561116101445780633fd85561146103985780635bfa5027146103c35780635cb870b1146103e3578063605aa10a146103f6575f80fd5b80633406b1521461033d57806335471f801461037d578063392f5f6414610390575f80fd5b806315fb0abb116101a457806315fb0abb146102ae57806324913ce6146102ce57806326d60fb41461032257806326decd401461032a575f80fd5b806303014974146101ca5780630f4809ac146101f057806312e1ebc514610213575b5f80fd5b6101dd6101d8366004611316565b6105ce565b6040519081526020015b60405180910390f35b6102036101fe36600461134c565b6105f4565b60405190151581526020016101e7565b61028361022136600461134c565b60408051606080820183525f80835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352805484526001015460ff8116151591840191909152610100900464ffffffffff169082015290565b60408051825181526020808401511515908201529181015164ffffffffff16908201526060016101e7565b6102c16102bc366004611417565b61068a565b6040516101e79190611459565b6102e16102dc36600461148b565b61082d565b60408051835181526020808501516001600160e01b031916908201529281015164ffffffffff16908301526001600160401b031660608201526080016101e7565b6008546101dd565b61020361033836600461134c565b610abb565b61036561034b3660046114b3565b5f908152600760205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016101e7565b6101dd61038b36600461134c565b610b27565b6004546101dd565b6103ab6103a63660046114b3565b610bb1565b6040516001600160401b0390911681526020016101e7565b6103d66103d1366004611316565b610bf3565b6040516101e791906114de565b6103d66103f136600461155a565b610cb4565b61020361040436600461134c565b610e13565b6102036104173660046115cd565b610e88565b61036561042a3660046114b3565b610f0b565b61044261043d36600461134c565b610f39565b005b6103ab610fda565b610454611053565b6040516001600160e01b031990911681526020016101e7565b6104c861047b3660046114b3565b604080518082019091525f8082526020820152505f908152600360209081526040918290208251808401909352546001600160401b0381168352600160401b900460ff1615159082015290565b6040805182516001600160401b03168152602092830151151592810192909252016101e7565b6103ab611089565b610203610504366004611602565b6110d9565b6105316040518060400160405280600981526020016841646d696e526f6c6560b81b81525081565b6040516101e79190611674565b6105316040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525081565b5f80516020611790833981519152546001600160a01b0316610365565b610203610592366004611316565b6111bf565b6102036105a53660046115cd565b61121b565b6001546001600160a01b0316610365565b6103656105c9366004611686565b611249565b6001600160401b0381165f9081526005602052604081206105ee9061126a565b92915050565b5f813b61060257505f919050565b60408051600481526024810182526020810180516001600160e01b031663bf7e214f60e01b17905290515f916001600160a01b0385169161064391906116a2565b5f60405180830381855afa9150503d805f811461067b576040519150601f19603f3d011682016040523d82523d5f602084013e610680565b606091505b5090949350505050565b60408051606080820183525f808352602083018190528284015282519081019283905263cdc23e6960e01b909252908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e696106e18660648501611674565b602060405180830381865af41580156106fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072091906116b8565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af415801561077f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a391906116cf565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156107f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081d91906116ea565b64ffffffffff1690529392505050565b604080516060810182525f80825260208083018290528284018290526001600160a01b038616825260099052828120925163dfe63db960e01b81526004810193909352602483018490529091819073__$8df0087758613aef8a614b5774fdb3323b$__9063dfe63db990604401602060405180830381865af41580156108b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d991906116cf565b6001600160a01b038681165f908152600a602090815260408083206001600160e01b031986811680865291845282852083516060810185528154815260019091015460e081901b90921694810194909452640100000000900464ffffffffff168383015292549051636ea1af2560e11b8152600481019390935290965092935073__$1d92393fa9ccd763988368ce8a1cb90d26$__92637c3940bf921690636d5115bd90899073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af41580156109b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109dd91906116cf565b6040516001600160e01b031960e085901b811682526001600160a01b03909316600482015291166024820152604401602060405180830381865afa158015610a27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4b919061170e565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610a8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab1919061170e565b9150509250929050565b5f805460405163a166aa8960e01b81526001600160a01b0384811660048301529091169063a166aa8990602401602060405180830381865afa158015610b03573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ee9190611738565b6001600160a01b0381165f90815260096020526040808220905163868b3e0760e01b8152600481019190915273__$8df0087758613aef8a614b5774fdb3323b$__9063868b3e0790602401602060405180830381865af4158015610b8d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ee91906116b8565b5f60048281548110610bc557610bc5611751565b905f5260205f2090600491828204019190066008029054906101000a90046001600160401b03169050919050565b6040805160a080820183525f808352602080840182905283850182905260608401829052608084018290526001600160401b038681168352600282529185902085519384019095528454918216835292939192830190600160401b900460ff166003811115610c6457610c646114ca565b6003811115610c7557610c756114ca565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff1660609091015292915050565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091526040518060a00160405280866001600160401b03168152602001856003811115610d0a57610d0a6114ca565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610d529190611674565b602060405180830381865af4158015610d6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9191906116b8565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610ddd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0191906116ea565b64ffffffffff16905295945050505050565b6001600160a01b0381165f90815260066020526040808220600101549051638d38cd4b60e01b815261010090910464ffffffffff16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b906024015b602060405180830381865af4158015610b03573d5f803e3d5ffd5b5f80546040516368fc2b7760e11b81526001600160401b03841660048201526001600160a01b0385811660248301528392169063d1f856ee906044016040805180830381865afa158015610ede573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f029190611765565b50949350505050565b5f60088281548110610f1f57610f1f611751565b5f918252602090912001546001600160a01b031692915050565b33610f585f80516020611790833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610f985760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b5f03610fcd576040516361798f2f60e11b81526001600160a01b0383166004820152602401610f8f565b610fd682611273565b5050565b5f805f9054906101000a90046001600160a01b03166001600160a01b0316633ca7c02a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561102a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061104e919061170e565b905090565b5f8051602061179083398151915280545f9190600160a01b900460ff1661107a575f611083565b638fb3603760e01b5b91505090565b5f805f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561102a573d5f803e3d5ffd5b5f8054604051636ea1af2560e11b81526001600160e01b0319841660048201526001600160a01b039091169063b7009613908690869073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af4158015611149573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116d91906116cf565b60405160e085901b6001600160e01b031990811682526001600160a01b0394851660048301529290931660248401521660448201526064016040805180830381865afa158015610ede573d5f803e3d5ffd5b6001600160401b0381165f908152600260208190526040808320909101549051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401610e6d565b6001600160401b038082165f90815260026020526040812054909161124291859116610e88565b9392505050565b6001600160401b0382165f90815260056020526040812061124290836112d3565b5f6105ee825490565b5f8051602061179083398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f61124283835f825f0182815481106112ee576112ee611751565b905f5260205f200154905092915050565b6001600160401b0381168114611313575f80fd5b50565b5f60208284031215611326575f80fd5b8135611242816112ff565b80356001600160a01b0381168114611347575f80fd5b919050565b5f6020828403121561135c575f80fd5b61124282611331565b6001600160e01b031981168114611313575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261139d575f80fd5b81356001600160401b038111156113b6576113b661137a565b604051601f8201601f19908116603f011681016001600160401b03811182821017156113e4576113e461137a565b6040528181528382016020018510156113fb575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215611428575f80fd5b823561143381611365565b915060208301356001600160401b0381111561144d575f80fd5b610ab18582860161138e565b815181526020808301516001600160e01b0319169082015260408083015164ffffffffff1690820152606081016105ee565b5f806040838503121561149c575f80fd5b6114a583611331565b946020939093013593505050565b5f602082840312156114c3575f80fd5b5035919050565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160a08201906004811061151157634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff60408401511660408301526060830151606083015264ffffffffff608084015116608083015292915050565b63ffffffff81168114611313575f80fd5b5f805f806080858703121561156d575f80fd5b8435611578816112ff565b935060208501356004811061158b575f80fd5b9250604085013561159b81611549565b915060608501356001600160401b038111156115b5575f80fd5b6115c18782880161138e565b91505092959194509250565b5f80604083850312156115de575f80fd5b6115e783611331565b915060208301356115f7816112ff565b809150509250929050565b5f805f60608486031215611614575f80fd5b61161d84611331565b925061162b60208501611331565b9150604084013561163b81611365565b809150509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6112426020830184611646565b5f8060408385031215611697575f80fd5b82356114a5816112ff565b5f82518060208501845e5f920191825250919050565b5f602082840312156116c8575f80fd5b5051919050565b5f602082840312156116df575f80fd5b815161124281611365565b5f602082840312156116fa575f80fd5b815164ffffffffff81168114611242575f80fd5b5f6020828403121561171e575f80fd5b8151611242816112ff565b80518015158114611347575f80fd5b5f60208284031215611748575f80fd5b61124282611729565b634e487b7160e01b5f52603260045260245ffd5b5f8060408385031215611776575f80fd5b61177f83611729565b915060208301516115f78161154956fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a264697066735822122019e4a3dbeebfc3c90f326b504cf18c374421aac96abf51ed292d08c5583f45cb64736f6c634300081a00336080604052348015600e575f80fd5b50612ba18061001c5f395ff3fe6080604052600436106101e6575f3560e01c80636d5115bd11610108578063b70096131161009d578063d1f856ee1161006d578063d1f856ee146105e9578063d22b598914610608578063d6bb62c614610627578063f801a69814610646578063fe0776f51461067f575f80fd5b8063b70096131461055b578063b7d2b16214610596578063c4d66de8146105b5578063cc1b6c81146105d4575f80fd5b8063a166aa89116100d8578063a166aa89146104b4578063a64d95ce146104e3578063abd9bd2a14610502578063ac9650d81461052f575f80fd5b80636d5115bd1461044457806375b238fc14610463578063853551b81461047657806394c7d7ee14610495575f80fd5b806330cae1871161017e5780634665096d1161014e5780634665096d146103d25780634c1da1e2146103e75780635296295214610406578063530dd45614610425575f80fd5b806330cae187146103445780633adc277a146103635780633ca7c02a146103995780634136a33c146103b3575f80fd5b806318ff183c116101b957806318ff183c1461029a5780631cff79cd146102b957806325c471a0146102cc5780633078f114146102eb575f80fd5b806308d6122d146101ea5780630b0a93ba1461020b57806312be872714610247578063167bd3951461027b575b5f80fd5b3480156101f5575f80fd5b50610209610204366004612483565b61069e565b005b348015610216575f80fd5b5061022a6102253660046124e5565b6106f0565b6040516001600160401b0390911681526020015b60405180910390f35b348015610252575f80fd5b506102666102613660046124e5565b610727565b60405163ffffffff909116815260200161023e565b348015610286575f80fd5b506102096102953660046124fe565b610771565b3480156102a5575f80fd5b506102096102b4366004612539565b610787565b6102666102c73660046125a2565b6107e9565b3480156102d7575f80fd5b506102096102e6366004612605565b61092a565b3480156102f6575f80fd5b5061030a610305366004612647565b61094c565b60405161023e949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b34801561034f575f80fd5b5061020961035e366004612661565b6109bf565b34801561036e575f80fd5b5061038261037d366004612692565b6109d1565b60405165ffffffffffff909116815260200161023e565b3480156103a4575f80fd5b5061022a6001600160401b0381565b3480156103be575f80fd5b506102666103cd366004612692565b610a13565b3480156103dd575f80fd5b5062093a80610266565b3480156103f2575f80fd5b506102666104013660046126a9565b610a3e565b348015610411575f80fd5b50610209610420366004612661565b610a78565b348015610430575f80fd5b5061022a61043f3660046124e5565b610a8a565b34801561044f575f80fd5b5061022a61045e3660046126d9565b610aba565b34801561046e575f80fd5b5061022a5f81565b348015610481575f80fd5b50610209610490366004612705565b610b01565b3480156104a0575f80fd5b506102096104af3660046125a2565b610b98565b3480156104bf575f80fd5b506104d36104ce3660046126a9565b610c42565b604051901515815260200161023e565b3480156104ee575f80fd5b506102096104fd366004612720565b610c79565b34801561050d575f80fd5b5061052161051c366004612748565b610c8b565b60405190815260200161023e565b34801561053a575f80fd5b5061054e6105493660046127a8565b610cc3565b60405161023e91906127e6565b348015610566575f80fd5b5061057a61057536600461286a565b610da8565b60408051921515835263ffffffff90911660208301520161023e565b3480156105a1575f80fd5b506102096105b0366004612647565b610e29565b3480156105c0575f80fd5b506102096105cf3660046126a9565b610e40565b3480156105df575f80fd5b5062069780610266565b3480156105f4575f80fd5b5061057a610603366004612647565b610f4b565b348015610613575f80fd5b506102096106223660046128b2565b610fc4565b348015610632575f80fd5b50610266610641366004612748565b610fd6565b348015610651575f80fd5b506106656106603660046128ce565b611139565b6040805192835263ffffffff90911660208301520161023e565b34801561068a575f80fd5b50610209610699366004612647565b6112d5565b6106a66112fe565b5f5b828110156106e9576106e1858585848181106106c6576106c661293b565b90506020020160208101906106db919061294f565b84611375565b6001016106a8565b5050505050565b5f806106fa611401565b6001600160401b039384165f9081526001918201602052604090200154600160401b900490921692915050565b5f80610731611401565b6001600160401b0384165f90815260018281016020526040909120015490915061076a90600160801b90046001600160701b0316611425565b9392505050565b6107796112fe565b6107838282611443565b5050565b61078f6112fe565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107cf575f80fd5b505af11580156107e1573d5f803e3d5ffd5b505050505050565b5f806107f3611401565b9050335f80610804838989896114e7565b915091508115801561081a575063ffffffff8116155b1561086d57828861082b8989611538565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61087a848a8a8a610c8b565b90505f63ffffffff83161515806108a05750610895826109d1565b65ffffffffffff1615155b156108b1576108ae8261154f565b90505b60038601546108c98b6108c48c8c611538565b611660565b87600301819055506109128b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506116a2915050565b50600390960195909555509293505050509392505050565b6109326112fe565b610946838361094086610727565b8461173b565b50505050565b5f805f805f610959611401565b6001600160401b0388165f90815260018201602090815260408083206001600160a01b038b1684529091529020805465ffffffffffff81169750919250906109b090600160301b90046001600160701b0316611995565b979a9199509750945050505050565b6109c76112fe565b61078382826119b6565b5f806109db611401565b5f84815260028201602052604090205490915065ffffffffffff166109ff81611a66565b610a095780610a0b565b5f5b949350505050565b5f80610a1d611401565b5f93845260020160205250506040902054600160301b900463ffffffff1690565b5f80610a48611401565b6001600160a01b0384165f9081526020829052604090206001015490915061076a906001600160701b0316611425565b610a806112fe565b6107838282611a94565b5f80610a94611401565b6001600160401b039384165f908152600191820160205260409020015490921692915050565b5f80610ac4611401565b6001600160a01b0385165f908152602091825260408082206001600160e01b03198716835290925220546001600160401b03169150505b92915050565b610b096112fe565b6001600160401b0383161580610b2757506001600160401b03838116145b15610b505760405163061c6a4360e21b81526001600160401b0384166004820152602401610864565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610b8b929190612992565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610bd7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bfb91906129a5565b6001600160e01b03191614610c2e57604051630641fee960e31b81526001600160a01b0382166004820152602401610864565b6106e9610c3d85838686610c8b565b61154f565b5f80610c4c611401565b6001600160a01b039093165f9081526020939093525050604090206001015460ff600160701b9091041690565b610c816112fe565b6107838282611b52565b5f84848484604051602001610ca394939291906129c0565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610cec57610cec612a27565b604051908082528060200260200182016040528015610d1f57816020015b6060815260200190600190039081610d0a5790505b5091505f5b83811015610da057610d7b30868684818110610d4257610d4261293b565b9050602002810190610d549190612a3b565b85604051602001610d6793929190612a94565b604051602081830303815290604052611c7c565b838281518110610d8d57610d8d61293b565b6020908102919091010152600101610d24565b505092915050565b5f80610db384610c42565b15610dc257505f905080610e21565b306001600160a01b03861603610de657610ddc8484611cee565b5f91509150610e21565b5f610df18585610aba565b90505f80610dff8389610f4b565b9150915081610e0f575f80610e19565b63ffffffff811615815b945094505050505b935093915050565b610e316112fe565b610e3b8282611d12565b505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015610e845750825b90505f826001600160401b03166001148015610e9f5750303b155b905081158015610ead575080155b15610ecb5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ef557845460ff60401b1916600160401b1785555b610efe86611e0d565b83156107e157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050505050565b5f8067fffffffffffffffe196001600160401b03851601610f715750600190505f610fbd565b5f80610f7d868661094c565b5050915091508165ffffffffffff165f14158015610fb25750610f9e611e21565b65ffffffffffff168265ffffffffffff1611155b93509150610fbd9050565b9250929050565b610fcc6112fe565b6107838282611e30565b5f80610fe0611401565b9050335f610fee8686611538565b90505f610ffd89898989610c8b565b5f81815260028601602052604081205491925065ffffffffffff909116900361103c5760405163060a299b60e41b815260048101829052602401610864565b826001600160a01b0316896001600160a01b0316146110d5575f6110605f85610f4b565b5090505f61107a6110746102258c87610aba565b86610f4b565b50905081158015611089575080155b156110d257604051630ff89d4760e21b81526001600160a01b038087166004830152808d1660248301528b1660448201526001600160e01b031985166064820152608401610864565b50505b5f818152600285016020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a39998505050505050505050565b5f805f611144611401565b9050335f611154828a8a8a6114e7565b9150505f8163ffffffff16611167611e21565b6111719190612aa9565b905063ffffffff821615806111a757505f8765ffffffffffff161180156111a757508065ffffffffffff168765ffffffffffff16105b156111b857828a61082b8b8b611538565b6111d28765ffffffffffff168265ffffffffffff16611ef8565b96506111e0838b8b8b610c8b565b95506111eb86611f0d565b836002015f8781526020019081526020015f205f0160069054906101000a900463ffffffff16600101945086846002015f8881526020019081526020015f205f015f6101000a81548165ffffffffffff021916908365ffffffffffff16021790555084846002015f8881526020019081526020015f205f0160066101000a81548163ffffffff021916908363ffffffff1602179055508463ffffffff16867f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b489868e8e8e6040516112c0959493929190612ac7565b60405180910390a35050505094509492505050565b6001600160a01b0381163314610e3157604051635f159e6360e01b815260040160405180910390fd5b335f8061130c838236611f67565b9150915081610e3b578063ffffffff165f03611366575f61132d8136612018565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610864565b610946610c3d84305f36610c8b565b5f61137e611401565b6001600160a01b0385165f818152602083815260408083206001600160e01b0319891680855290835292819020805467ffffffffffffffff19166001600160401b03891690811790915590519283529394507f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a350505050565b7f40c6c8c28789853c7efd823ab20824bbd71718a8a5915e855f6f288c9a26ad0090565b5f80611439836001600160701b0316611995565b5090949350505050565b5f61144c611401565b9050306001600160a01b0384160361148257604051630b40d17960e31b81526001600160a01b0384166004820152602401610864565b6001600160a01b0383165f81815260208390526040908190206001018054851515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb13890610b8b90851515815260200190565b5f80306001600160a01b0386160361150d57611504868585611f67565b9150915061152f565b600483106115295761152486866105758787611538565b611504565b505f9050805b94509492505050565b5f6115466004828486612a00565b61076a91612b0c565b5f80611559611401565b5f84815260028201602052604081205491925065ffffffffffff821691600160301b900463ffffffff16908290036115a75760405163060a299b60e41b815260048101869052602401610864565b6115af611e21565b65ffffffffffff168265ffffffffffff1611156115e257604051630c65b5bd60e11b815260048101869052602401610864565b6115eb82611a66565b1561160c57604051631e2975b960e21b815260048101869052602401610864565b5f858152600284016020526040808220805465ffffffffffff191690555163ffffffff83169187917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a3949350505050565b604080516001600160a01b03939093166020808501919091526001600160e01b0319929092168382015280518084038201815260609093019052815191012090565b6060814710156116c75760405163cd78605960e01b8152306004820152602401610864565b5f80856001600160a01b031684866040516116e29190612b44565b5f6040518083038185875af1925050503d805f811461171c576040519150601f19603f3d011682016040523d82523d5f602084013e611721565b606091505b50915091506117318683836121d9565b9695505050505050565b5f80611745611401565b905067fffffffffffffffe196001600160401b038716016117845760405163061c6a4360e21b81526001600160401b0387166004820152602401610864565b6001600160401b0386165f90815260018201602090815260408083206001600160a01b038916845290915281205465ffffffffffff1615908115611878578563ffffffff166117d1611e21565b6117db9190612aa9565b905060405180604001604052808265ffffffffffff1681526020016118098763ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b038a165f90815260018601602090815260408083206001600160a01b038d1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff90911617919091179055611926565b6001600160401b0388165f90815260018401602090815260408083206001600160a01b038b1684529091528120546118c391600160301b9091046001600160701b0316908790612235565b6001600160401b038a165f90815260018601602090815260408083206001600160a01b038d168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8716815265ffffffffffff831660208201528315158183015290516001600160a01b038916916001600160401b038b16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a3509695505050505050565b5f805f6119a9846119a4611e21565b6122db565b9250925092509193909250565b5f6119bf611401565b90506001600160401b03831615806119df57506001600160401b03838116145b15611a085760405163061c6a4360e21b81526001600160401b0384166004820152602401610864565b6001600160401b038381165f81815260018481016020526040808320909101805467ffffffffffffffff19169487169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a3505050565b5f611a6f611e21565b65ffffffffffff16611a8462093a8084612aa9565b65ffffffffffff16111592915050565b5f611a9d611401565b90506001600160401b0383161580611abd57506001600160401b03838116145b15611ae65760405163061c6a4360e21b81526001600160401b0384166004820152602401610864565b6001600160401b038381165f8181526001848101602052604080832090910180546fffffffffffffffff00000000000000001916600160401b958816958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a3505050565b5f611b5b611401565b905067fffffffffffffffe196001600160401b03841601611b9a5760405163061c6a4360e21b81526001600160401b0384166004820152602401610864565b6001600160401b0383165f9081526001828101602052604082200154611bd490600160801b90046001600160701b03168462069780612235565b6001600160401b0386165f81815260018087016020526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890611c6e908690859063ffffffff92909216825265ffffffffffff16602082015260400190565b60405180910390a250505050565b60605f80846001600160a01b031684604051611c989190612b44565b5f60405180830381855af49150503d805f8114611cd0576040519150601f19603f3d011682016040523d82523d5f602084013e611cd5565b606091505b5091509150611ce58583836121d9565b95945050505050565b5f80611cf8611401565b9050611d048484611660565b600390910154149392505050565b5f80611d1c611401565b905067fffffffffffffffe196001600160401b03851601611d5b5760405163061c6a4360e21b81526001600160401b0385166004820152602401610864565b6001600160401b0384165f90815260018201602090815260408083206001600160a01b038716845290915281205465ffffffffffff169003611da0575f915050610afb565b6001600160401b0384165f81815260018301602090815260408083206001600160a01b038816808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a35060019392505050565b611e1561232d565b611e1e81612378565b50565b5f611e2b426123b5565b905090565b5f611e39611401565b90505f611e6f83620697806001600160a01b0387165f908152602086905260409020600101546001600160701b03169190612235565b6001600160a01b0386165f818152602086815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8816815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101611c6e565b5f818311611f06578161076a565b5090919050565b5f611f16611401565b5f83815260028201602052604090205490915065ffffffffffff168015801590611f465750611f4481611a66565b155b15610e3b5760405163813e945960e01b815260048101849052602401610864565b5f806004831015611f7c57505f905080610e21565b306001600160a01b03861603611f9f57610ddc30611f9a8686611538565b611cee565b5f805f611fac8787612018565b92509250925082611fc5575f8094509450505050610e21565b5f80611fd1848b610f4b565b9150915081611fea575f80965096505050505050610e21565b6120008363ffffffff168263ffffffff16611ef8565b63ffffffff8116159b909a5098505050505050505050565b5f8080600484101561203157505f9150819050806121d2565b5f61203c8686611538565b90506001600160e01b031981166310a6aa3760e31b148061206d57506001600160e01b031981166330cae18760e01b145b8061208857506001600160e01b0319811663294b14a960e11b145b806120a357506001600160e01b03198116635326cae760e11b145b806120be57506001600160e01b0319811663d22b598960e01b145b156120d35760015f80935093509350506121d2565b6001600160e01b0319811663063fc60f60e21b148061210257506001600160e01b0319811663167bd39560e01b145b8061211d57506001600160e01b031981166308d6122d60e01b145b1561215c575f61213160246004888a612a00565b81019061213e91906126a9565b90505f61214a82610a3e565b600196505f955093506121d292505050565b6001600160e01b0319811663012e238d60e51b148061218b57506001600160e01b03198116635be958b160e11b145b156121c7575f61219f60246004888a612a00565b8101906121ac91906124e5565b905060016121b982610a8a565b5f94509450945050506121d2565b5f805f935093509350505b9250925092565b6060826121ee576121e9826123eb565b61076a565b815115801561220557506001600160a01b0384163b155b1561222e57604051639996b31560e01b81526001600160a01b0385166004820152602401610864565b508061076a565b5f805f61224a866001600160701b0316611425565b90505f6122858563ffffffff168763ffffffff168463ffffffff1611612270575f61227a565b61227a8885612b4f565b63ffffffff16611ef8565b90508063ffffffff16612296611e21565b6122a09190612aa9565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f808069ffffffffffffffffffff602086901c166001600160701b03861665ffffffffffff604088901c81169087168111156123195782828261231d565b815f805b9550955095505050509250925092565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661237657604051631afcd79f60e31b815260040160405180910390fd5b565b61238061232d565b6001600160a01b0381166123a957604051630409d6d160e11b81525f6004820152602401610864565b6107835f825f8061173b565b5f65ffffffffffff8211156123e7576040516306dfcc6560e41b81526030600482015260248101839052604401610864565b5090565b8051156123fb5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b0381168114611e1e575f80fd5b5f8083601f840112612438575f80fd5b5081356001600160401b0381111561244e575f80fd5b6020830191508360208260051b8501011115610fbd575f80fd5b80356001600160401b038116811461247e575f80fd5b919050565b5f805f8060608587031215612496575f80fd5b84356124a181612414565b935060208501356001600160401b038111156124bb575f80fd5b6124c787828801612428565b90945092506124da905060408601612468565b905092959194509250565b5f602082840312156124f5575f80fd5b61076a82612468565b5f806040838503121561250f575f80fd5b823561251a81612414565b91506020830135801515811461252e575f80fd5b809150509250929050565b5f806040838503121561254a575f80fd5b823561255581612414565b9150602083013561252e81612414565b5f8083601f840112612575575f80fd5b5081356001600160401b0381111561258b575f80fd5b602083019150836020828501011115610fbd575f80fd5b5f805f604084860312156125b4575f80fd5b83356125bf81612414565b925060208401356001600160401b038111156125d9575f80fd5b6125e586828701612565565b9497909650939450505050565b803563ffffffff8116811461247e575f80fd5b5f805f60608486031215612617575f80fd5b61262084612468565b9250602084013561263081612414565b915061263e604085016125f2565b90509250925092565b5f8060408385031215612658575f80fd5b61255583612468565b5f8060408385031215612672575f80fd5b61267b83612468565b915061268960208401612468565b90509250929050565b5f602082840312156126a2575f80fd5b5035919050565b5f602082840312156126b9575f80fd5b813561076a81612414565b6001600160e01b031981168114611e1e575f80fd5b5f80604083850312156126ea575f80fd5b82356126f581612414565b9150602083013561252e816126c4565b5f805f60408486031215612717575f80fd5b6125bf84612468565b5f8060408385031215612731575f80fd5b61273a83612468565b9150612689602084016125f2565b5f805f806060858703121561275b575f80fd5b843561276681612414565b9350602085013561277681612414565b925060408501356001600160401b03811115612790575f80fd5b61279c87828801612565565b95989497509550505050565b5f80602083850312156127b9575f80fd5b82356001600160401b038111156127ce575f80fd5b6127da85828601612428565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561285e57603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f8301168801019650505060208201915060208401935060018101905061280c565b50929695505050505050565b5f805f6060848603121561287c575f80fd5b833561288781612414565b9250602084013561289781612414565b915060408401356128a7816126c4565b809150509250925092565b5f80604083850312156128c3575f80fd5b823561273a81612414565b5f805f80606085870312156128e1575f80fd5b84356128ec81612414565b935060208501356001600160401b03811115612906575f80fd5b61291287828801612565565b909450925050604085013565ffffffffffff81168114612930575f80fd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561295f575f80fd5b813561076a816126c4565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f610a0b60208301848661296a565b5f602082840312156129b5575f80fd5b815161076a816126c4565b6001600160a01b038581168252841660208201526060604082018190525f90611731908301848661296a565b634e487b7160e01b5f52601160045260245ffd5b5f8085851115612a0e575f80fd5b83861115612a1a575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f808335601e19843603018112612a50575f80fd5b8301803591506001600160401b03821115612a69575f80fd5b602001915036819003821315610fbd575f80fd5b5f81518060208401855e5f93019283525090919050565b828482375f8382015f81526117318185612a7d565b65ffffffffffff8181168382160190811115610afb57610afb6129ec565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f90612b01908301848661296a565b979650505050505050565b80356001600160e01b03198116906004841015612b3d576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f61076a8284612a7d565b63ffffffff8281168282160390811115610afb57610afb6129ec56fea264697066735822122072759d7b5f96dd0caaed8321f069e3fdd1f047ae911241936fca832d24aebe4c64736f6c634300081a0033",
         
     | 
| 
       1088 
     | 
    
         
            -
              "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101c6575f3560e01c806364fc3142116100fe578063b70096131161009e578063c6a001791161006e578063c6a0017914610584578063cd55e51b14610597578063d5f39488146105aa578063d78a83b1146105bb575f80fd5b8063b7009613146104f6578063bc62a0a514610509578063bcfb11b01461053e578063bf7e214f14610567575f80fd5b80638308ceb1116100d95780638308ceb1146104445780638fb360371461044c57806392bdd9bd1461046d578063b3ecf236146104ee575f80fd5b806364fc314214610409578063728a61a81461041c5780637a9e5e4b1461042f575f80fd5b80633406b152116101695780633fd85561116101445780633fd85561146103985780635bfa5027146103c35780635cb870b1146103e3578063605aa10a146103f6575f80fd5b80633406b1521461033d57806335471f801461037d578063392f5f6414610390575f80fd5b806315fb0abb116101a457806315fb0abb146102ae57806324913ce6146102ce57806326d60fb41461032257806326decd401461032a575f80fd5b806303014974146101ca5780630f4809ac146101f057806312e1ebc514610213575b5f80fd5b6101dd6101d8366004611316565b6105ce565b6040519081526020015b60405180910390f35b6102036101fe36600461134c565b6105f4565b60405190151581526020016101e7565b61028361022136600461134c565b60408051606080820183525f80835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352805484526001015460ff8116151591840191909152610100900464ffffffffff169082015290565b60408051825181526020808401511515908201529181015164ffffffffff16908201526060016101e7565b6102c16102bc366004611417565b61068a565b6040516101e79190611459565b6102e16102dc36600461148b565b61082d565b60408051835181526020808501516001600160e01b031916908201529281015164ffffffffff16908301526001600160401b031660608201526080016101e7565b6008546101dd565b61020361033836600461134c565b610abb565b61036561034b3660046114b3565b5f908152600760205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016101e7565b6101dd61038b36600461134c565b610b27565b6004546101dd565b6103ab6103a63660046114b3565b610bb1565b6040516001600160401b0390911681526020016101e7565b6103d66103d1366004611316565b610bf3565b6040516101e791906114de565b6103d66103f136600461155a565b610cb4565b61020361040436600461134c565b610e13565b6102036104173660046115cd565b610e88565b61036561042a3660046114b3565b610f0b565b61044261043d36600461134c565b610f39565b005b6103ab610fda565b610454611053565b6040516001600160e01b031990911681526020016101e7565b6104c861047b3660046114b3565b604080518082019091525f8082526020820152505f908152600360209081526040918290208251808401909352546001600160401b0381168352600160401b900460ff1615159082015290565b6040805182516001600160401b03168152602092830151151592810192909252016101e7565b6103ab611089565b610203610504366004611602565b6110d9565b6105316040518060400160405280600981526020016841646d696e526f6c6560b81b81525081565b6040516101e79190611674565b6105316040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525081565b5f80516020611790833981519152546001600160a01b0316610365565b610203610592366004611316565b6111bf565b6102036105a53660046115cd565b61121b565b6001546001600160a01b0316610365565b6103656105c9366004611686565b611249565b6001600160401b0381165f9081526005602052604081206105ee9061126a565b92915050565b5f813b61060257505f919050565b60408051600481526024810182526020810180516001600160e01b031663bf7e214f60e01b17905290515f916001600160a01b0385169161064391906116a2565b5f60405180830381855afa9150503d805f811461067b576040519150601f19603f3d011682016040523d82523d5f602084013e610680565b606091505b5090949350505050565b60408051606080820183525f808352602083018190528284015282519081019283905263cdc23e6960e01b909252908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e696106e18660648501611674565b602060405180830381865af41580156106fc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061072091906116b8565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af415801561077f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a391906116cf565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156107f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081d91906116ea565b64ffffffffff1690529392505050565b604080516060810182525f80825260208083018290528284018290526001600160a01b038616825260099052828120925163dfe63db960e01b81526004810193909352602483018490529091819073__$8df0087758613aef8a614b5774fdb3323b$__9063dfe63db990604401602060405180830381865af41580156108b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d991906116cf565b6001600160a01b038681165f908152600a602090815260408083206001600160e01b031986811680865291845282852083516060810185528154815260019091015460e081901b90921694810194909452640100000000900464ffffffffff168383015292549051636ea1af2560e11b8152600481019390935290965092935073__$1d92393fa9ccd763988368ce8a1cb90d26$__92637c3940bf921690636d5115bd90899073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af41580156109b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109dd91906116cf565b6040516001600160e01b031960e085901b811682526001600160a01b03909316600482015291166024820152604401602060405180830381865afa158015610a27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4b919061170e565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610a8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab1919061170e565b9150509250929050565b5f805460405163a166aa8960e01b81526001600160a01b0384811660048301529091169063a166aa8990602401602060405180830381865afa158015610b03573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ee9190611738565b6001600160a01b0381165f90815260096020526040808220905163868b3e0760e01b8152600481019190915273__$8df0087758613aef8a614b5774fdb3323b$__9063868b3e0790602401602060405180830381865af4158015610b8d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ee91906116b8565b5f60048281548110610bc557610bc5611751565b905f5260205f2090600491828204019190066008029054906101000a90046001600160401b03169050919050565b6040805160a080820183525f808352602080840182905283850182905260608401829052608084018290526001600160401b038681168352600282529185902085519384019095528454918216835292939192830190600160401b900460ff166003811115610c6457610c646114ca565b6003811115610c7557610c756114ca565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff1660609091015292915050565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091526040518060a00160405280866001600160401b03168152602001856003811115610d0a57610d0a6114ca565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610d529190611674565b602060405180830381865af4158015610d6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d9191906116b8565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610ddd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0191906116ea565b64ffffffffff16905295945050505050565b6001600160a01b0381165f90815260066020526040808220600101549051638d38cd4b60e01b815261010090910464ffffffffff16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b906024015b602060405180830381865af4158015610b03573d5f803e3d5ffd5b5f80546040516368fc2b7760e11b81526001600160401b03841660048201526001600160a01b0385811660248301528392169063d1f856ee906044016040805180830381865afa158015610ede573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f029190611765565b50949350505050565b5f60088281548110610f1f57610f1f611751565b5f918252602090912001546001600160a01b031692915050565b33610f585f80516020611790833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610f985760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b5f03610fcd576040516361798f2f60e11b81526001600160a01b0383166004820152602401610f8f565b610fd682611273565b5050565b5f805f9054906101000a90046001600160a01b03166001600160a01b0316633ca7c02a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561102a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061104e919061170e565b905090565b5f8051602061179083398151915280545f9190600160a01b900460ff1661107a575f611083565b638fb3603760e01b5b91505090565b5f805f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561102a573d5f803e3d5ffd5b5f8054604051636ea1af2560e11b81526001600160e01b0319841660048201526001600160a01b039091169063b7009613908690869073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af4158015611149573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116d91906116cf565b60405160e085901b6001600160e01b031990811682526001600160a01b0394851660048301529290931660248401521660448201526064016040805180830381865afa158015610ede573d5f803e3d5ffd5b6001600160401b0381165f908152600260208190526040808320909101549051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401610e6d565b6001600160401b038082165f90815260026020526040812054909161124291859116610e88565b9392505050565b6001600160401b0382165f90815260056020526040812061124290836112d3565b5f6105ee825490565b5f8051602061179083398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f61124283835f825f0182815481106112ee576112ee611751565b905f5260205f200154905092915050565b6001600160401b0381168114611313575f80fd5b50565b5f60208284031215611326575f80fd5b8135611242816112ff565b80356001600160a01b0381168114611347575f80fd5b919050565b5f6020828403121561135c575f80fd5b61124282611331565b6001600160e01b031981168114611313575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261139d575f80fd5b81356001600160401b038111156113b6576113b661137a565b604051601f8201601f19908116603f011681016001600160401b03811182821017156113e4576113e461137a565b6040528181528382016020018510156113fb575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215611428575f80fd5b823561143381611365565b915060208301356001600160401b0381111561144d575f80fd5b610ab18582860161138e565b815181526020808301516001600160e01b0319169082015260408083015164ffffffffff1690820152606081016105ee565b5f806040838503121561149c575f80fd5b6114a583611331565b946020939093013593505050565b5f602082840312156114c3575f80fd5b5035919050565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160a08201906004811061151157634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff60408401511660408301526060830151606083015264ffffffffff608084015116608083015292915050565b63ffffffff81168114611313575f80fd5b5f805f806080858703121561156d575f80fd5b8435611578816112ff565b935060208501356004811061158b575f80fd5b9250604085013561159b81611549565b915060608501356001600160401b038111156115b5575f80fd5b6115c18782880161138e565b91505092959194509250565b5f80604083850312156115de575f80fd5b6115e783611331565b915060208301356115f7816112ff565b809150509250929050565b5f805f60608486031215611614575f80fd5b61161d84611331565b925061162b60208501611331565b9150604084013561163b81611365565b809150509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6112426020830184611646565b5f8060408385031215611697575f80fd5b82356114a5816112ff565b5f82518060208501845e5f920191825250919050565b5f602082840312156116c8575f80fd5b5051919050565b5f602082840312156116df575f80fd5b815161124281611365565b5f602082840312156116fa575f80fd5b815164ffffffffff81168114611242575f80fd5b5f6020828403121561171e575f80fd5b8151611242816112ff565b80518015158114611347575f80fd5b5f60208284031215611748575f80fd5b61124282611729565b634e487b7160e01b5f52603260045260245ffd5b5f8060408385031215611776575f80fd5b61177f83611729565b915060208301516115f78161154956fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a264697066735822122019e4a3dbeebfc3c90f326b504cf18c374421aac96abf51ed292d08c5583f45cb64736f6c634300081a0033",
         
     | 
| 
       1089 
     | 
    
         
            -
              "linkReferences": {
         
     | 
| 
      
 1447 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1448 
     | 
    
         
            +
                },
         
     | 
| 
       1090 
1449 
     | 
    
         
             
                "contracts/type/RoleId.sol": {
         
     | 
| 
       1091 
1450 
     | 
    
         
             
                  "RoleIdLib": [
         
     | 
| 
       1092 
1451 
     | 
    
         
             
                    {
         
     | 
| 
       1093 
1452 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1094 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1453 
     | 
    
         
            +
                      "start": 1842
         
     | 
| 
      
 1454 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1455 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1456 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1457 
     | 
    
         
            +
                      "start": 4464
         
     | 
| 
       1095 
1458 
     | 
    
         
             
                    },
         
     | 
| 
       1096 
1459 
     | 
    
         
             
                    {
         
     | 
| 
       1097 
1460 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1098 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1461 
     | 
    
         
            +
                      "start": 6478
         
     | 
| 
       1099 
1462 
     | 
    
         
             
                    },
         
     | 
| 
       1100 
1463 
     | 
    
         
             
                    {
         
     | 
| 
       1101 
1464 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1102 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1465 
     | 
    
         
            +
                      "start": 6883
         
     | 
| 
       1103 
1466 
     | 
    
         
             
                    },
         
     | 
| 
       1104 
1467 
     | 
    
         
             
                    {
         
     | 
| 
       1105 
1468 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1106 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1469 
     | 
    
         
            +
                      "start": 7817
         
     | 
| 
       1107 
1470 
     | 
    
         
             
                    }
         
     | 
| 
       1108 
1471 
     | 
    
         
             
                  ]
         
     | 
| 
       1109 
1472 
     | 
    
         
             
                },
         
     | 
| 
         @@ -1111,25 +1474,17 @@ 
     | 
|
| 
       1111 
1474 
     | 
    
         
             
                  "SelectorLib": [
         
     | 
| 
       1112 
1475 
     | 
    
         
             
                    {
         
     | 
| 
       1113 
1476 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1114 
     | 
    
         
            -
                      "start":  
     | 
| 
       1115 
     | 
    
         
            -
                    },
         
     | 
| 
       1116 
     | 
    
         
            -
                    {
         
     | 
| 
       1117 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       1118 
     | 
    
         
            -
                      "start": 5204
         
     | 
| 
       1119 
     | 
    
         
            -
                    },
         
     | 
| 
       1120 
     | 
    
         
            -
                    {
         
     | 
| 
       1121 
     | 
    
         
            -
                      "length": 20,
         
     | 
| 
       1122 
     | 
    
         
            -
                      "start": 7140
         
     | 
| 
      
 1477 
     | 
    
         
            +
                      "start": 1880
         
     | 
| 
       1123 
1478 
     | 
    
         
             
                    }
         
     | 
| 
       1124 
1479 
     | 
    
         
             
                  ],
         
     | 
| 
       1125 
1480 
     | 
    
         
             
                  "SelectorSetLib": [
         
     | 
| 
       1126 
1481 
     | 
    
         
             
                    {
         
     | 
| 
       1127 
1482 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1128 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1483 
     | 
    
         
            +
                      "start": 1618
         
     | 
| 
       1129 
1484 
     | 
    
         
             
                    },
         
     | 
| 
       1130 
1485 
     | 
    
         
             
                    {
         
     | 
| 
       1131 
1486 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1132 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1487 
     | 
    
         
            +
                      "start": 2348
         
     | 
| 
       1133 
1488 
     | 
    
         
             
                    }
         
     | 
| 
       1134 
1489 
     | 
    
         
             
                  ]
         
     | 
| 
       1135 
1490 
     | 
    
         
             
                },
         
     | 
| 
         @@ -1137,19 +1492,23 @@ 
     | 
|
| 
       1137 
1492 
     | 
    
         
             
                  "StrLib": [
         
     | 
| 
       1138 
1493 
     | 
    
         
             
                    {
         
     | 
| 
       1139 
1494 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1140 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1495 
     | 
    
         
            +
                      "start": 3837
         
     | 
| 
       1141 
1496 
     | 
    
         
             
                    },
         
     | 
| 
       1142 
1497 
     | 
    
         
             
                    {
         
     | 
| 
       1143 
1498 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1144 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1499 
     | 
    
         
            +
                      "start": 4169
         
     | 
| 
       1145 
1500 
     | 
    
         
             
                    },
         
     | 
| 
       1146 
1501 
     | 
    
         
             
                    {
         
     | 
| 
       1147 
1502 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1148 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1503 
     | 
    
         
            +
                      "start": 4339
         
     | 
| 
       1149 
1504 
     | 
    
         
             
                    },
         
     | 
| 
       1150 
1505 
     | 
    
         
             
                    {
         
     | 
| 
       1151 
1506 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1152 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1507 
     | 
    
         
            +
                      "start": 5355
         
     | 
| 
      
 1508 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1509 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1510 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1511 
     | 
    
         
            +
                      "start": 7644
         
     | 
| 
       1153 
1512 
     | 
    
         
             
                    }
         
     | 
| 
       1154 
1513 
     | 
    
         
             
                  ]
         
     | 
| 
       1155 
1514 
     | 
    
         
             
                },
         
     | 
| 
         @@ -1157,63 +1516,103 @@ 
     | 
|
| 
       1157 
1516 
     | 
    
         
             
                  "TimestampLib": [
         
     | 
| 
       1158 
1517 
     | 
    
         
             
                    {
         
     | 
| 
       1159 
1518 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1160 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1519 
     | 
    
         
            +
                      "start": 2936
         
     | 
| 
       1161 
1520 
     | 
    
         
             
                    },
         
     | 
| 
       1162 
1521 
     | 
    
         
             
                    {
         
     | 
| 
       1163 
1522 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1164 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1523 
     | 
    
         
            +
                      "start": 3056
         
     | 
| 
       1165 
1524 
     | 
    
         
             
                    },
         
     | 
| 
       1166 
1525 
     | 
    
         
             
                    {
         
     | 
| 
       1167 
1526 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1168 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1527 
     | 
    
         
            +
                      "start": 4630
         
     | 
| 
       1169 
1528 
     | 
    
         
             
                    },
         
     | 
| 
       1170 
1529 
     | 
    
         
             
                    {
         
     | 
| 
       1171 
1530 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1172 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1531 
     | 
    
         
            +
                      "start": 4785
         
     | 
| 
       1173 
1532 
     | 
    
         
             
                    },
         
     | 
| 
       1174 
1533 
     | 
    
         
             
                    {
         
     | 
| 
       1175 
1534 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1176 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1535 
     | 
    
         
            +
                      "start": 6942
         
     | 
| 
       1177 
1536 
     | 
    
         
             
                    },
         
     | 
| 
       1178 
1537 
     | 
    
         
             
                    {
         
     | 
| 
       1179 
1538 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1180 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1539 
     | 
    
         
            +
                      "start": 7077
         
     | 
| 
       1181 
1540 
     | 
    
         
             
                    }
         
     | 
| 
       1182 
1541 
     | 
    
         
             
                  ]
         
     | 
| 
       1183 
1542 
     | 
    
         
             
                }
         
     | 
| 
       1184 
1543 
     | 
    
         
             
              },
         
     | 
| 
       1185 
1544 
     | 
    
         
             
              "deployedLinkReferences": {
         
     | 
| 
       1186 
     | 
    
         
            -
                "contracts/ 
     | 
| 
       1187 
     | 
    
         
            -
                  " 
     | 
| 
      
 1545 
     | 
    
         
            +
                "contracts/authorization/AccessAdminLib.sol": {
         
     | 
| 
      
 1546 
     | 
    
         
            +
                  "AccessAdminLib": [
         
     | 
| 
      
 1547 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1548 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1549 
     | 
    
         
            +
                      "start": 6268
         
     | 
| 
      
 1550 
     | 
    
         
            +
                    },
         
     | 
| 
       1188 
1551 
     | 
    
         
             
                    {
         
     | 
| 
       1189 
1552 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1190 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1553 
     | 
    
         
            +
                      "start": 6736
         
     | 
| 
       1191 
1554 
     | 
    
         
             
                    }
         
     | 
| 
       1192 
1555 
     | 
    
         
             
                  ]
         
     | 
| 
       1193 
1556 
     | 
    
         
             
                },
         
     | 
| 
       1194 
     | 
    
         
            -
                "contracts/ 
     | 
| 
       1195 
     | 
    
         
            -
                  " 
     | 
| 
      
 1557 
     | 
    
         
            +
                "contracts/shared/ContractLib.sol": {
         
     | 
| 
      
 1558 
     | 
    
         
            +
                  "ContractLib": [
         
     | 
| 
       1196 
1559 
     | 
    
         
             
                    {
         
     | 
| 
       1197 
1560 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1198 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1561 
     | 
    
         
            +
                      "start": 5510
         
     | 
| 
       1199 
1562 
     | 
    
         
             
                    },
         
     | 
| 
       1200 
1563 
     | 
    
         
             
                    {
         
     | 
| 
       1201 
1564 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1202 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1565 
     | 
    
         
            +
                      "start": 5806
         
     | 
| 
      
 1566 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1567 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1568 
     | 
    
         
            +
                },
         
     | 
| 
      
 1569 
     | 
    
         
            +
                "contracts/type/NftId.sol": {
         
     | 
| 
      
 1570 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1571 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1572 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1573 
     | 
    
         
            +
                      "start": 5963
         
     | 
| 
      
 1574 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1575 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1576 
     | 
    
         
            +
                },
         
     | 
| 
      
 1577 
     | 
    
         
            +
                "contracts/type/RoleId.sol": {
         
     | 
| 
      
 1578 
     | 
    
         
            +
                  "RoleIdLib": [
         
     | 
| 
      
 1579 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1580 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1581 
     | 
    
         
            +
                      "start": 1814
         
     | 
| 
      
 1582 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1583 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1584 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1585 
     | 
    
         
            +
                      "start": 4436
         
     | 
| 
       1203 
1586 
     | 
    
         
             
                    },
         
     | 
| 
       1204 
1587 
     | 
    
         
             
                    {
         
     | 
| 
       1205 
1588 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1206 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1589 
     | 
    
         
            +
                      "start": 6450
         
     | 
| 
      
 1590 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1591 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1592 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1593 
     | 
    
         
            +
                      "start": 6855
         
     | 
| 
      
 1594 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1595 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1596 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1597 
     | 
    
         
            +
                      "start": 7789
         
     | 
| 
      
 1598 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1599 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1600 
     | 
    
         
            +
                },
         
     | 
| 
      
 1601 
     | 
    
         
            +
                "contracts/type/Selector.sol": {
         
     | 
| 
      
 1602 
     | 
    
         
            +
                  "SelectorLib": [
         
     | 
| 
      
 1603 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1604 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1605 
     | 
    
         
            +
                      "start": 1852
         
     | 
| 
       1207 
1606 
     | 
    
         
             
                    }
         
     | 
| 
       1208 
1607 
     | 
    
         
             
                  ],
         
     | 
| 
       1209 
1608 
     | 
    
         
             
                  "SelectorSetLib": [
         
     | 
| 
       1210 
1609 
     | 
    
         
             
                    {
         
     | 
| 
       1211 
1610 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1212 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1611 
     | 
    
         
            +
                      "start": 1590
         
     | 
| 
       1213 
1612 
     | 
    
         
             
                    },
         
     | 
| 
       1214 
1613 
     | 
    
         
             
                    {
         
     | 
| 
       1215 
1614 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1216 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1615 
     | 
    
         
            +
                      "start": 2320
         
     | 
| 
       1217 
1616 
     | 
    
         
             
                    }
         
     | 
| 
       1218 
1617 
     | 
    
         
             
                  ]
         
     | 
| 
       1219 
1618 
     | 
    
         
             
                },
         
     | 
| 
         @@ -1221,11 +1620,23 @@ 
     | 
|
| 
       1221 
1620 
     | 
    
         
             
                  "StrLib": [
         
     | 
| 
       1222 
1621 
     | 
    
         
             
                    {
         
     | 
| 
       1223 
1622 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1224 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1623 
     | 
    
         
            +
                      "start": 3809
         
     | 
| 
      
 1624 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1625 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1626 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1627 
     | 
    
         
            +
                      "start": 4141
         
     | 
| 
      
 1628 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1629 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1630 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1631 
     | 
    
         
            +
                      "start": 4311
         
     | 
| 
      
 1632 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1633 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1634 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1635 
     | 
    
         
            +
                      "start": 5327
         
     | 
| 
       1225 
1636 
     | 
    
         
             
                    },
         
     | 
| 
       1226 
1637 
     | 
    
         
             
                    {
         
     | 
| 
       1227 
1638 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1228 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1639 
     | 
    
         
            +
                      "start": 7616
         
     | 
| 
       1229 
1640 
     | 
    
         
             
                    }
         
     | 
| 
       1230 
1641 
     | 
    
         
             
                  ]
         
     | 
| 
       1231 
1642 
     | 
    
         
             
                },
         
     | 
| 
         @@ -1233,19 +1644,27 @@ 
     | 
|
| 
       1233 
1644 
     | 
    
         
             
                  "TimestampLib": [
         
     | 
| 
       1234 
1645 
     | 
    
         
             
                    {
         
     | 
| 
       1235 
1646 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1236 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1647 
     | 
    
         
            +
                      "start": 2908
         
     | 
| 
      
 1648 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1649 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1650 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1651 
     | 
    
         
            +
                      "start": 3028
         
     | 
| 
      
 1652 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1653 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1654 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1655 
     | 
    
         
            +
                      "start": 4602
         
     | 
| 
       1237 
1656 
     | 
    
         
             
                    },
         
     | 
| 
       1238 
1657 
     | 
    
         
             
                    {
         
     | 
| 
       1239 
1658 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1240 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1659 
     | 
    
         
            +
                      "start": 4757
         
     | 
| 
       1241 
1660 
     | 
    
         
             
                    },
         
     | 
| 
       1242 
1661 
     | 
    
         
             
                    {
         
     | 
| 
       1243 
1662 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1244 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1663 
     | 
    
         
            +
                      "start": 6914
         
     | 
| 
       1245 
1664 
     | 
    
         
             
                    },
         
     | 
| 
       1246 
1665 
     | 
    
         
             
                    {
         
     | 
| 
       1247 
1666 
     | 
    
         
             
                      "length": 20,
         
     | 
| 
       1248 
     | 
    
         
            -
                      "start":  
     | 
| 
      
 1667 
     | 
    
         
            +
                      "start": 7049
         
     | 
| 
       1249 
1668 
     | 
    
         
             
                    }
         
     | 
| 
       1250 
1669 
     | 
    
         
             
                  ]
         
     | 
| 
       1251 
1670 
     | 
    
         
             
                }
         
     |