@etherisc/gif-next 0.0.2-f18fb8b-243 → 0.0.2-f1b01e0-214
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 +89 -8
- 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 +496 -255
- 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 +673 -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 +277 -20
- 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 +395 -203
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +143 -19
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +19 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +68 -5
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +180 -476
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +265 -31
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +119 -380
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +473 -287
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +151 -109
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +123 -194
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +318 -90
- 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 +644 -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 +644 -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 +644 -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 +644 -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 +644 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +242 -45
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +147 -96
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +263 -130
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +738 -328
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +209 -94
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1080 -357
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +175 -281
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +96 -96
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +863 -726
- 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 +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
- 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/mock/Dip.sol/Dip.json +2 -2
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +133 -350
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +247 -33
- 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 +117 -136
- 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 +109 -318
- 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 +122 -88
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +175 -421
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +265 -31
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +337 -210
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +143 -97
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +212 -35
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +139 -212
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +460 -308
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +129 -392
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +673 -552
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +163 -97
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +194 -178
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +100 -90
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +276 -435
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +265 -31
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +415 -234
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +140 -114
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +136 -9
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +308 -16
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +365 -104
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +157 -83
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +260 -229
- 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 +459 -309
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +141 -99
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +232 -333
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +109 -131
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +268 -427
- 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 +370 -22
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +72 -152
- 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 +597 -80
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +645 -373
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -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 +94 -80
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1954 -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 +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1337 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +66 -8
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +4 -4
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +67 -277
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +608 -539
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +142 -110
- 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 +597 -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 +80 -100
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +568 -252
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +106 -136
- 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 +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +98 -318
- 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 +4 -0
- package/artifacts/contracts/shared/{NftIdSetManager.sol/NftIdSetManager.json → NftIdSet.sol/NftIdSet.json} +4 -4
- 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 +585 -12
- 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 +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +196 -143
- 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 +274 -391
- 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 +126 -95
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +35 -67
- 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 +103 -85
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +198 -138
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +82 -36
- 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 +63 -10
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +2 -2
- 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 +98 -37
- 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 +79 -15
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +50 -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 +23 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +109 -35
- 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 +120 -2
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +3 -3
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.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 +338 -225
- package/contracts/authorization/AccessAdminLib.sol +183 -0
- package/contracts/authorization/AccessManagerCloneable.sol +146 -4
- package/contracts/authorization/Authorization.sol +350 -203
- package/contracts/authorization/IAccess.sol +13 -4
- package/contracts/authorization/IAccessAdmin.sol +69 -35
- package/contracts/authorization/IAuthorization.sol +33 -7
- package/contracts/authorization/IServiceAuthorization.sol +3 -1
- package/contracts/authorization/ServiceAuthorization.sol +26 -10
- package/contracts/distribution/BasicDistribution.sol +20 -28
- package/contracts/distribution/BasicDistributionAuthorization.sol +26 -9
- package/contracts/distribution/Distribution.sol +41 -80
- package/contracts/distribution/DistributionService.sol +206 -123
- package/contracts/distribution/DistributionServiceManager.sol +8 -11
- package/contracts/distribution/IDistributionComponent.sol +9 -14
- package/contracts/distribution/IDistributionService.sol +40 -22
- 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 +130 -0
- package/contracts/instance/IInstance.sol +68 -48
- package/contracts/instance/IInstanceService.sol +30 -34
- package/contracts/instance/Instance.sol +121 -71
- package/contracts/instance/InstanceAdmin.sol +289 -105
- package/contracts/instance/InstanceAuthorizationV3.sol +99 -66
- package/contracts/instance/InstanceReader.sol +288 -43
- package/contracts/instance/InstanceService.sol +209 -193
- package/contracts/instance/InstanceServiceManager.sol +8 -13
- package/contracts/instance/InstanceStore.sol +24 -2
- package/contracts/instance/RiskSet.sol +118 -0
- package/contracts/instance/base/ObjectCounter.sol +1 -2
- package/contracts/instance/base/ObjectLifecycle.sol +11 -4
- package/contracts/instance/base/ObjectSet.sol +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +30 -20
- package/contracts/instance/module/IDistribution.sol +21 -9
- package/contracts/instance/module/IPolicy.sol +50 -29
- package/contracts/instance/module/IRisk.sol +5 -0
- package/contracts/mock/Dip.sol +1 -1
- package/contracts/oracle/BasicOracle.sol +1 -4
- package/contracts/oracle/BasicOracleAuthorization.sol +3 -12
- package/contracts/oracle/IOracle.sol +9 -4
- package/contracts/oracle/IOracleComponent.sol +2 -1
- package/contracts/oracle/IOracleService.sol +2 -1
- package/contracts/oracle/Oracle.sol +21 -24
- package/contracts/oracle/OracleService.sol +113 -81
- package/contracts/oracle/OracleServiceManager.sol +8 -11
- package/contracts/pool/BasicPool.sol +37 -28
- package/contracts/pool/BasicPoolAuthorization.sol +36 -9
- package/contracts/pool/BundleService.sol +204 -105
- package/contracts/pool/BundleServiceManager.sol +8 -11
- package/contracts/pool/IBundleService.sol +31 -22
- package/contracts/pool/IPoolComponent.sol +20 -10
- package/contracts/pool/IPoolService.sol +90 -75
- package/contracts/pool/Pool.sol +145 -113
- package/contracts/pool/PoolLib.sol +216 -0
- package/contracts/pool/PoolService.sol +544 -241
- package/contracts/pool/PoolServiceManager.sol +6 -9
- package/contracts/product/ApplicationService.sol +98 -78
- package/contracts/product/ApplicationServiceManager.sol +6 -6
- package/contracts/product/BasicProduct.sol +12 -45
- package/contracts/product/BasicProductAuthorization.sol +25 -9
- package/contracts/product/ClaimService.sol +365 -175
- package/contracts/product/ClaimServiceManager.sol +6 -6
- package/contracts/product/IApplicationService.sol +9 -2
- package/contracts/product/IClaimService.sol +44 -8
- package/contracts/product/IPolicyService.sol +53 -36
- package/contracts/product/IPricingService.sol +11 -10
- package/contracts/product/IProductComponent.sol +28 -5
- package/contracts/product/{IProductService.sol → IRiskService.sol} +8 -8
- package/contracts/product/PolicyService.sol +458 -269
- package/contracts/product/PolicyServiceLib.sol +65 -0
- package/contracts/product/PolicyServiceManager.sol +6 -9
- package/contracts/product/PricingService.sol +69 -60
- package/contracts/product/PricingServiceManager.sol +6 -9
- package/contracts/product/Product.sol +168 -93
- 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 +78 -29
- package/contracts/registry/IRegistryService.sol +3 -10
- package/contracts/registry/IRelease.sol +26 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -2
- package/contracts/registry/Registry.sol +368 -216
- package/contracts/registry/RegistryAdmin.sol +166 -273
- package/contracts/registry/RegistryAuthorization.sol +267 -0
- package/contracts/registry/RegistryService.sol +41 -66
- package/contracts/registry/RegistryServiceManager.sol +5 -5
- package/contracts/registry/ReleaseAdmin.sol +253 -0
- package/contracts/registry/ReleaseLifecycle.sol +8 -3
- package/contracts/registry/ReleaseRegistry.sol +517 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +183 -52
- package/contracts/registry/TokenRegistry.sol +8 -10
- package/contracts/shared/Component.sol +65 -136
- package/contracts/shared/ComponentService.sol +463 -336
- package/contracts/shared/ComponentServiceManager.sol +10 -7
- package/contracts/shared/ComponentVerifyingService.sol +28 -17
- package/contracts/shared/ContractLib.sol +281 -0
- package/contracts/shared/IComponent.sol +5 -17
- package/contracts/shared/IComponentService.sol +51 -41
- package/contracts/shared/IInstanceLinkedComponent.sol +7 -27
- 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 -6
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +11 -3
- package/contracts/shared/InstanceLinkedComponent.sol +81 -37
- package/contracts/shared/KeyValueStore.sol +1 -1
- package/contracts/shared/Lifecycle.sol +15 -4
- package/contracts/shared/{NftIdSetManager.sol → NftIdSet.sol} +1 -1
- package/contracts/shared/NftOwnable.sol +31 -11
- package/contracts/shared/PolicyHolder.sol +17 -57
- package/contracts/shared/Registerable.sol +52 -21
- package/contracts/shared/RegistryLinked.sol +9 -14
- package/contracts/shared/Service.sol +18 -36
- package/contracts/shared/TokenHandler.sol +310 -26
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +20 -13
- package/contracts/staking/IStakingService.sol +28 -9
- package/contracts/staking/Staking.sol +118 -85
- package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +95 -45
- package/contracts/staking/StakingManager.sol +10 -12
- package/contracts/staking/StakingReader.sol +26 -33
- package/contracts/staking/StakingService.sol +90 -37
- package/contracts/staking/StakingServiceManager.sol +8 -7
- package/contracts/staking/StakingStore.sol +14 -23
- package/contracts/staking/TargetManagerLib.sol +7 -3
- package/contracts/type/Amount.sol +27 -5
- package/contracts/type/Blocknumber.sol +7 -1
- 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 +60 -41
- package/contracts/type/PayoutId.sol +10 -10
- package/contracts/type/Referral.sol +1 -0
- package/contracts/type/RiskId.sol +38 -6
- package/contracts/type/RoleId.sol +23 -15
- package/contracts/type/Seconds.sol +21 -1
- package/contracts/type/Selector.sol +5 -0
- package/contracts/type/StateId.sol +15 -1
- package/contracts/type/Timestamp.sol +10 -5
- package/contracts/type/UFixed.sol +56 -126
- package/contracts/type/Version.sol +57 -6
- package/contracts/{shared → upgradeability}/ProxyManager.sol +71 -38
- package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
- package/contracts/{shared → upgradeability}/Versionable.sol +2 -2
- 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/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -703
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +0 -181
- 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/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -1159
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +0 -4
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +0 -39
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -617
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -460
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -10
- package/contracts/authorization/IModuleAuthorization.sol +0 -21
- package/contracts/authorization/ModuleAuthorization.sol +0 -78
- package/contracts/instance/BundleManager.sol +0 -126
- package/contracts/instance/base/ObjectManager.sol +0 -79
- package/contracts/instance/module/IAccess.sol +0 -46
- package/contracts/product/ProductService.sol +0 -124
- package/contracts/product/ProductServiceManager.sol +0 -42
- package/contracts/registry/ReleaseManager.sol +0 -487
- package/contracts/shared/InitializableCustom.sol +0 -177
- /package/contracts/{shared → upgradeability}/IVersionable.sol +0 -0
| @@ -3,6 +3,16 @@ | |
| 3 3 | 
             
              "contractName": "IAuthorization",
         | 
| 4 4 | 
             
              "sourceName": "contracts/authorization/IAuthorization.sol",
         | 
| 5 5 | 
             
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [],
         | 
| 8 | 
            +
                  "name": "ErrorAuthorizationMainTargetNameEmpty",
         | 
| 9 | 
            +
                  "type": "error"
         | 
| 10 | 
            +
                },
         | 
| 11 | 
            +
                {
         | 
| 12 | 
            +
                  "inputs": [],
         | 
| 13 | 
            +
                  "name": "ErrorAuthorizationTargetDomainZero",
         | 
| 14 | 
            +
                  "type": "error"
         | 
| 15 | 
            +
                },
         | 
| 6 16 | 
             
                {
         | 
| 7 17 | 
             
                  "inputs": [
         | 
| 8 18 | 
             
                    {
         | 
| @@ -63,6 +73,64 @@ | |
| 63 73 | 
             
                  "stateMutability": "view",
         | 
| 64 74 | 
             
                  "type": "function"
         | 
| 65 75 | 
             
                },
         | 
| 76 | 
            +
                {
         | 
| 77 | 
            +
                  "inputs": [
         | 
| 78 | 
            +
                    {
         | 
| 79 | 
            +
                      "internalType": "ObjectType",
         | 
| 80 | 
            +
                      "name": "componentDomain",
         | 
| 81 | 
            +
                      "type": "uint8"
         | 
| 82 | 
            +
                    }
         | 
| 83 | 
            +
                  ],
         | 
| 84 | 
            +
                  "name": "getComponentRole",
         | 
| 85 | 
            +
                  "outputs": [
         | 
| 86 | 
            +
                    {
         | 
| 87 | 
            +
                      "internalType": "RoleId",
         | 
| 88 | 
            +
                      "name": "componentRoleId",
         | 
| 89 | 
            +
                      "type": "uint64"
         | 
| 90 | 
            +
                    }
         | 
| 91 | 
            +
                  ],
         | 
| 92 | 
            +
                  "stateMutability": "view",
         | 
| 93 | 
            +
                  "type": "function"
         | 
| 94 | 
            +
                },
         | 
| 95 | 
            +
                {
         | 
| 96 | 
            +
                  "inputs": [],
         | 
| 97 | 
            +
                  "name": "getDomain",
         | 
| 98 | 
            +
                  "outputs": [
         | 
| 99 | 
            +
                    {
         | 
| 100 | 
            +
                      "internalType": "ObjectType",
         | 
| 101 | 
            +
                      "name": "targetDomain",
         | 
| 102 | 
            +
                      "type": "uint8"
         | 
| 103 | 
            +
                    }
         | 
| 104 | 
            +
                  ],
         | 
| 105 | 
            +
                  "stateMutability": "view",
         | 
| 106 | 
            +
                  "type": "function"
         | 
| 107 | 
            +
                },
         | 
| 108 | 
            +
                {
         | 
| 109 | 
            +
                  "inputs": [],
         | 
| 110 | 
            +
                  "name": "getMainTarget",
         | 
| 111 | 
            +
                  "outputs": [
         | 
| 112 | 
            +
                    {
         | 
| 113 | 
            +
                      "internalType": "Str",
         | 
| 114 | 
            +
                      "name": "target",
         | 
| 115 | 
            +
                      "type": "bytes32"
         | 
| 116 | 
            +
                    }
         | 
| 117 | 
            +
                  ],
         | 
| 118 | 
            +
                  "stateMutability": "view",
         | 
| 119 | 
            +
                  "type": "function"
         | 
| 120 | 
            +
                },
         | 
| 121 | 
            +
                {
         | 
| 122 | 
            +
                  "inputs": [],
         | 
| 123 | 
            +
                  "name": "getMainTargetName",
         | 
| 124 | 
            +
                  "outputs": [
         | 
| 125 | 
            +
                    {
         | 
| 126 | 
            +
                      "internalType": "string",
         | 
| 127 | 
            +
                      "name": "name",
         | 
| 128 | 
            +
                      "type": "string"
         | 
| 129 | 
            +
                    }
         | 
| 130 | 
            +
                  ],
         | 
| 131 | 
            +
                  "stateMutability": "view",
         | 
| 132 | 
            +
                  "type": "function"
         | 
| 133 | 
            +
                },
         | 
| 66 134 | 
             
                {
         | 
| 67 135 | 
             
                  "inputs": [],
         | 
| 68 136 | 
             
                  "name": "getRelease",
         | 
| @@ -104,14 +172,19 @@ | |
| 104 172 | 
             
                          "type": "uint32"
         | 
| 105 173 | 
             
                        },
         | 
| 106 174 | 
             
                        {
         | 
| 107 | 
            -
                          "internalType": " | 
| 108 | 
            -
                          "name": " | 
| 109 | 
            -
                          "type": " | 
| 175 | 
            +
                          "internalType": "Timestamp",
         | 
| 176 | 
            +
                          "name": "createdAt",
         | 
| 177 | 
            +
                          "type": "uint40"
         | 
| 110 178 | 
             
                        },
         | 
| 111 179 | 
             
                        {
         | 
| 112 180 | 
             
                          "internalType": "Timestamp",
         | 
| 113 | 
            -
                          "name": " | 
| 181 | 
            +
                          "name": "pausedAt",
         | 
| 114 182 | 
             
                          "type": "uint40"
         | 
| 183 | 
            +
                        },
         | 
| 184 | 
            +
                        {
         | 
| 185 | 
            +
                          "internalType": "Str",
         | 
| 186 | 
            +
                          "name": "name",
         | 
| 187 | 
            +
                          "type": "bytes32"
         | 
| 115 188 | 
             
                        }
         | 
| 116 189 | 
             
                      ],
         | 
| 117 190 | 
             
                      "internalType": "struct IAccess.RoleInfo",
         | 
| @@ -135,6 +208,19 @@ | |
| 135 208 | 
             
                  "stateMutability": "view",
         | 
| 136 209 | 
             
                  "type": "function"
         | 
| 137 210 | 
             
                },
         | 
| 211 | 
            +
                {
         | 
| 212 | 
            +
                  "inputs": [],
         | 
| 213 | 
            +
                  "name": "getServiceDomains",
         | 
| 214 | 
            +
                  "outputs": [
         | 
| 215 | 
            +
                    {
         | 
| 216 | 
            +
                      "internalType": "ObjectType[]",
         | 
| 217 | 
            +
                      "name": "serviceDomains",
         | 
| 218 | 
            +
                      "type": "uint8[]"
         | 
| 219 | 
            +
                    }
         | 
| 220 | 
            +
                  ],
         | 
| 221 | 
            +
                  "stateMutability": "view",
         | 
| 222 | 
            +
                  "type": "function"
         | 
| 223 | 
            +
                },
         | 
| 138 224 | 
             
                {
         | 
| 139 225 | 
             
                  "inputs": [
         | 
| 140 226 | 
             
                    {
         | 
| @@ -155,26 +241,19 @@ | |
| 155 241 | 
             
                  "type": "function"
         | 
| 156 242 | 
             
                },
         | 
| 157 243 | 
             
                {
         | 
| 158 | 
            -
                  "inputs": [ | 
| 159 | 
            -
                  "name": "getTarget",
         | 
| 160 | 
            -
                  "outputs": [
         | 
| 244 | 
            +
                  "inputs": [
         | 
| 161 245 | 
             
                    {
         | 
| 162 | 
            -
                      "internalType": " | 
| 163 | 
            -
                      "name": " | 
| 164 | 
            -
                      "type": " | 
| 246 | 
            +
                      "internalType": "ObjectType",
         | 
| 247 | 
            +
                      "name": "serviceDomain",
         | 
| 248 | 
            +
                      "type": "uint8"
         | 
| 165 249 | 
             
                    }
         | 
| 166 250 | 
             
                  ],
         | 
| 167 | 
            -
                  " | 
| 168 | 
            -
                  "type": "function"
         | 
| 169 | 
            -
                },
         | 
| 170 | 
            -
                {
         | 
| 171 | 
            -
                  "inputs": [],
         | 
| 172 | 
            -
                  "name": "getTargetName",
         | 
| 251 | 
            +
                  "name": "getServiceTarget",
         | 
| 173 252 | 
             
                  "outputs": [
         | 
| 174 253 | 
             
                    {
         | 
| 175 | 
            -
                      "internalType": " | 
| 176 | 
            -
                      "name": " | 
| 177 | 
            -
                      "type": " | 
| 254 | 
            +
                      "internalType": "Str",
         | 
| 255 | 
            +
                      "name": "serviceTarget",
         | 
| 256 | 
            +
                      "type": "bytes32"
         | 
| 178 257 | 
             
                    }
         | 
| 179 258 | 
             
                  ],
         | 
| 180 259 | 
             
                  "stateMutability": "view",
         | 
| @@ -212,6 +291,32 @@ | |
| 212 291 | 
             
                  "stateMutability": "view",
         | 
| 213 292 | 
             
                  "type": "function"
         | 
| 214 293 | 
             
                },
         | 
| 294 | 
            +
                {
         | 
| 295 | 
            +
                  "inputs": [],
         | 
| 296 | 
            +
                  "name": "getTokenHandlerName",
         | 
| 297 | 
            +
                  "outputs": [
         | 
| 298 | 
            +
                    {
         | 
| 299 | 
            +
                      "internalType": "string",
         | 
| 300 | 
            +
                      "name": "name",
         | 
| 301 | 
            +
                      "type": "string"
         | 
| 302 | 
            +
                    }
         | 
| 303 | 
            +
                  ],
         | 
| 304 | 
            +
                  "stateMutability": "view",
         | 
| 305 | 
            +
                  "type": "function"
         | 
| 306 | 
            +
                },
         | 
| 307 | 
            +
                {
         | 
| 308 | 
            +
                  "inputs": [],
         | 
| 309 | 
            +
                  "name": "getTokenHandlerTarget",
         | 
| 310 | 
            +
                  "outputs": [
         | 
| 311 | 
            +
                    {
         | 
| 312 | 
            +
                      "internalType": "Str",
         | 
| 313 | 
            +
                      "name": "target",
         | 
| 314 | 
            +
                      "type": "bytes32"
         | 
| 315 | 
            +
                    }
         | 
| 316 | 
            +
                  ],
         | 
| 317 | 
            +
                  "stateMutability": "view",
         | 
| 318 | 
            +
                  "type": "function"
         | 
| 319 | 
            +
                },
         | 
| 215 320 | 
             
                {
         | 
| 216 321 | 
             
                  "inputs": [
         | 
| 217 322 | 
             
                    {
         | 
| @@ -231,6 +336,25 @@ | |
| 231 336 | 
             
                  "stateMutability": "view",
         | 
| 232 337 | 
             
                  "type": "function"
         | 
| 233 338 | 
             
                },
         | 
| 339 | 
            +
                {
         | 
| 340 | 
            +
                  "inputs": [
         | 
| 341 | 
            +
                    {
         | 
| 342 | 
            +
                      "internalType": "bytes4",
         | 
| 343 | 
            +
                      "name": "interfaceId",
         | 
| 344 | 
            +
                      "type": "bytes4"
         | 
| 345 | 
            +
                    }
         | 
| 346 | 
            +
                  ],
         | 
| 347 | 
            +
                  "name": "supportsInterface",
         | 
| 348 | 
            +
                  "outputs": [
         | 
| 349 | 
            +
                    {
         | 
| 350 | 
            +
                      "internalType": "bool",
         | 
| 351 | 
            +
                      "name": "",
         | 
| 352 | 
            +
                      "type": "bool"
         | 
| 353 | 
            +
                    }
         | 
| 354 | 
            +
                  ],
         | 
| 355 | 
            +
                  "stateMutability": "view",
         | 
| 356 | 
            +
                  "type": "function"
         | 
| 357 | 
            +
                },
         | 
| 234 358 | 
             
                {
         | 
| 235 359 | 
             
                  "inputs": [
         | 
| 236 360 | 
             
                    {
         | 
    
        package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json
    CHANGED
    
    | @@ -139,6 +139,25 @@ | |
| 139 139 | 
             
                  ],
         | 
| 140 140 | 
             
                  "stateMutability": "view",
         | 
| 141 141 | 
             
                  "type": "function"
         | 
| 142 | 
            +
                },
         | 
| 143 | 
            +
                {
         | 
| 144 | 
            +
                  "inputs": [
         | 
| 145 | 
            +
                    {
         | 
| 146 | 
            +
                      "internalType": "bytes4",
         | 
| 147 | 
            +
                      "name": "interfaceId",
         | 
| 148 | 
            +
                      "type": "bytes4"
         | 
| 149 | 
            +
                    }
         | 
| 150 | 
            +
                  ],
         | 
| 151 | 
            +
                  "name": "supportsInterface",
         | 
| 152 | 
            +
                  "outputs": [
         | 
| 153 | 
            +
                    {
         | 
| 154 | 
            +
                      "internalType": "bool",
         | 
| 155 | 
            +
                      "name": "",
         | 
| 156 | 
            +
                      "type": "bool"
         | 
| 157 | 
            +
                    }
         | 
| 158 | 
            +
                  ],
         | 
| 159 | 
            +
                  "stateMutability": "view",
         | 
| 160 | 
            +
                  "type": "function"
         | 
| 142 161 | 
             
                }
         | 
| 143 162 | 
             
              ],
         | 
| 144 163 | 
             
              "bytecode": "0x",
         | 
    
        package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json
    CHANGED
    
    | @@ -9,6 +9,11 @@ | |
| 9 9 | 
             
                      "internalType": "string",
         | 
| 10 10 | 
             
                      "name": "commitHash",
         | 
| 11 11 | 
             
                      "type": "string"
         | 
| 12 | 
            +
                    },
         | 
| 13 | 
            +
                    {
         | 
| 14 | 
            +
                      "internalType": "uint256",
         | 
| 15 | 
            +
                      "name": "version",
         | 
| 16 | 
            +
                      "type": "uint256"
         | 
| 12 17 | 
             
                    }
         | 
| 13 18 | 
             
                  ],
         | 
| 14 19 | 
             
                  "stateMutability": "nonpayable",
         | 
| @@ -16,7 +21,46 @@ | |
| 16 21 | 
             
                },
         | 
| 17 22 | 
             
                {
         | 
| 18 23 | 
             
                  "inputs": [],
         | 
| 19 | 
            -
                  "name": " | 
| 24 | 
            +
                  "name": "COMMIT_HASH",
         | 
| 25 | 
            +
                  "outputs": [
         | 
| 26 | 
            +
                    {
         | 
| 27 | 
            +
                      "internalType": "string",
         | 
| 28 | 
            +
                      "name": "",
         | 
| 29 | 
            +
                      "type": "string"
         | 
| 30 | 
            +
                    }
         | 
| 31 | 
            +
                  ],
         | 
| 32 | 
            +
                  "stateMutability": "view",
         | 
| 33 | 
            +
                  "type": "function"
         | 
| 34 | 
            +
                },
         | 
| 35 | 
            +
                {
         | 
| 36 | 
            +
                  "inputs": [],
         | 
| 37 | 
            +
                  "name": "COMMIT_HASH_LENGTH",
         | 
| 38 | 
            +
                  "outputs": [
         | 
| 39 | 
            +
                    {
         | 
| 40 | 
            +
                      "internalType": "uint256",
         | 
| 41 | 
            +
                      "name": "",
         | 
| 42 | 
            +
                      "type": "uint256"
         | 
| 43 | 
            +
                    }
         | 
| 44 | 
            +
                  ],
         | 
| 45 | 
            +
                  "stateMutability": "view",
         | 
| 46 | 
            +
                  "type": "function"
         | 
| 47 | 
            +
                },
         | 
| 48 | 
            +
                {
         | 
| 49 | 
            +
                  "inputs": [],
         | 
| 50 | 
            +
                  "name": "GIF_INITIAL_VERSION",
         | 
| 51 | 
            +
                  "outputs": [
         | 
| 52 | 
            +
                    {
         | 
| 53 | 
            +
                      "internalType": "uint256",
         | 
| 54 | 
            +
                      "name": "",
         | 
| 55 | 
            +
                      "type": "uint256"
         | 
| 56 | 
            +
                    }
         | 
| 57 | 
            +
                  ],
         | 
| 58 | 
            +
                  "stateMutability": "view",
         | 
| 59 | 
            +
                  "type": "function"
         | 
| 60 | 
            +
                },
         | 
| 61 | 
            +
                {
         | 
| 62 | 
            +
                  "inputs": [],
         | 
| 63 | 
            +
                  "name": "VERSION",
         | 
| 20 64 | 
             
                  "outputs": [
         | 
| 21 65 | 
             
                    {
         | 
| 22 66 | 
             
                      "internalType": "uint256",
         | 
| @@ -163,16 +207,35 @@ | |
| 163 207 | 
             
                  ],
         | 
| 164 208 | 
             
                  "stateMutability": "view",
         | 
| 165 209 | 
             
                  "type": "function"
         | 
| 210 | 
            +
                },
         | 
| 211 | 
            +
                {
         | 
| 212 | 
            +
                  "inputs": [
         | 
| 213 | 
            +
                    {
         | 
| 214 | 
            +
                      "internalType": "bytes4",
         | 
| 215 | 
            +
                      "name": "interfaceId",
         | 
| 216 | 
            +
                      "type": "bytes4"
         | 
| 217 | 
            +
                    }
         | 
| 218 | 
            +
                  ],
         | 
| 219 | 
            +
                  "name": "supportsInterface",
         | 
| 220 | 
            +
                  "outputs": [
         | 
| 221 | 
            +
                    {
         | 
| 222 | 
            +
                      "internalType": "bool",
         | 
| 223 | 
            +
                      "name": "",
         | 
| 224 | 
            +
                      "type": "bool"
         | 
| 225 | 
            +
                    }
         | 
| 226 | 
            +
                  ],
         | 
| 227 | 
            +
                  "stateMutability": "pure",
         | 
| 228 | 
            +
                  "type": "function"
         | 
| 166 229 | 
             
                }
         | 
| 167 230 | 
             
              ],
         | 
| 168 | 
            -
              "bytecode": " | 
| 169 | 
            -
              "deployedBytecode": " | 
| 231 | 
            +
              "bytecode": "0x60a060405234801561000f575f80fd5b50604051610a6c380380610a6c83398101604081905261002e91610079565b602882511461003f5761003f61012d565b60038110156100505761005061012d565b5f61005b83826101c5565b506080525061027f565b634e487b7160e01b5f52604160045260245ffd5b5f806040838503121561008a575f80fd5b82516001600160401b0381111561009f575f80fd5b8301601f810185136100af575f80fd5b80516001600160401b038111156100c8576100c8610065565b604051601f8201601f19908116603f011681016001600160401b03811182821017156100f6576100f6610065565b60405281815282820160200187101561010d575f80fd5b8160208401602083015e5f60209282018301529401519395939450505050565b634e487b7160e01b5f52600160045260245ffd5b600181811c9082168061015557607f821691505b60208210810361017357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101c057805f5260205f20601f840160051c8101602085101561019e5750805b601f840160051c820191505b818110156101bd575f81556001016101aa565b50505b505050565b81516001600160401b038111156101de576101de610065565b6101f2816101ec8454610141565b84610179565b6020601f821160018114610224575f831561020d5750848201515b5f19600385901b1c1916600184901b1784556101bd565b5f84815260208120601f198516915b828110156102535787850151825560209485019460019092019101610233565b508482101561027057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6080516107ce61029e5f395f81816101d501526103b501526107ce5ff3fe608060405234801561000f575f80fd5b50600436106100b1575f3560e01c806384be8c001161006e57806384be8c0014610177578063b79e14941461018a578063da44d6af146101a0578063e8ecdb36146101a8578063fef30334146101c8578063ffa1ad74146101d0575f80fd5b806301ffc9a7146100b557806313efdd7a146100dd5780633a526cd41461012057806368c55b1314610140578063694ca5d31461014857806376b707b71461015d575b5f80fd5b6100c86100c33660046105ae565b6101f7565b60405190151581526020015b60405180910390f35b6101086100eb3660046105ed565b60ff165f908152600260205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016100d4565b61013361012e3660046105ed565b61022d565b6040516100d49190610608565b6101336102ad565b610150610320565b6040516100d4919061064d565b6101656103a6565b60405160ff90911681526020016100d4565b610165610185366004610682565b61043e565b610192602881565b6040519081526020016100d4565b610192600381565b6101bb6101b6366004610699565b610477565b6040516100d491906106d0565b610150610523565b6101927f000000000000000000000000000000000000000000000000000000000000000081565b5f6001600160e01b031982166332d11fef60e01b148061022757506001600160e01b031982166301ffc9a760e01b145b92915050565b60ff81165f908152600360209081526040918290208054835181840281018401909452808452606093928301828280156102a157602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116102725790505b50505050509050919050565b6060600180548060200260200160405190810160405280929190818152602001828054801561031657602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116102e75790505b5050505050905090565b60605f805461032e90610731565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610731565b80156103165780601f1061037c57610100808354040283529160200191610316565b820191905f5260205f20905b81548152906001019060200180831161038857509395945050505050565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610415573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104399190610769565b905090565b5f6001828154811061045257610452610784565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b60ff8083165f9081526004602090815260408083209385168352928152828220805484518184028101840190955280855260609493919290919084015b82821015610517575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff169183019190915290835290920191016104b4565b50505050905092915050565b5f805461052f90610731565b80601f016020809104026020016040519081016040528092919081815260200182805461055b90610731565b80156105a65780601f1061057d576101008083540402835291602001916105a6565b820191905f5260205f20905b81548152906001019060200180831161058957829003601f168201915b505050505081565b5f602082840312156105be575f80fd5b81356001600160e01b0319811681146105d5575f80fd5b9392505050565b60ff811681146105ea575f80fd5b50565b5f602082840312156105fd575f80fd5b81356105d5816105dc565b602080825282518282018190525f918401906040840190835b8181101561064257835160ff16835260209384019390920191600101610621565b509095945050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610692575f80fd5b5035919050565b5f80604083850312156106aa575f80fd5b82356106b5816105dc565b915060208301356106c5816105dc565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610642578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff1691850191909152909301926060909201916001016106e9565b600181811c9082168061074557607f821691505b60208210810361076357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610779575f80fd5b81516105d5816105dc565b634e487b7160e01b5f52603260045260245ffdfea2646970667358221220855e9befb93ec6ba58e5859b2c89dbf03971e701241240583158424203c6c11f64736f6c634300081a0033",
         | 
| 232 | 
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106100b1575f3560e01c806384be8c001161006e57806384be8c0014610177578063b79e14941461018a578063da44d6af146101a0578063e8ecdb36146101a8578063fef30334146101c8578063ffa1ad74146101d0575f80fd5b806301ffc9a7146100b557806313efdd7a146100dd5780633a526cd41461012057806368c55b1314610140578063694ca5d31461014857806376b707b71461015d575b5f80fd5b6100c86100c33660046105ae565b6101f7565b60405190151581526020015b60405180910390f35b6101086100eb3660046105ed565b60ff165f908152600260205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016100d4565b61013361012e3660046105ed565b61022d565b6040516100d49190610608565b6101336102ad565b610150610320565b6040516100d4919061064d565b6101656103a6565b60405160ff90911681526020016100d4565b610165610185366004610682565b61043e565b610192602881565b6040519081526020016100d4565b610192600381565b6101bb6101b6366004610699565b610477565b6040516100d491906106d0565b610150610523565b6101927f000000000000000000000000000000000000000000000000000000000000000081565b5f6001600160e01b031982166332d11fef60e01b148061022757506001600160e01b031982166301ffc9a760e01b145b92915050565b60ff81165f908152600360209081526040918290208054835181840281018401909452808452606093928301828280156102a157602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116102725790505b50505050509050919050565b6060600180548060200260200160405190810160405280929190818152602001828054801561031657602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116102e75790505b5050505050905090565b60605f805461032e90610731565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610731565b80156103165780601f1061037c57610100808354040283529160200191610316565b820191905f5260205f20905b81548152906001019060200180831161038857509395945050505050565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610415573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104399190610769565b905090565b5f6001828154811061045257610452610784565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b60ff8083165f9081526004602090815260408083209385168352928152828220805484518184028101840190955280855260609493919290919084015b82821015610517575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff169183019190915290835290920191016104b4565b50505050905092915050565b5f805461052f90610731565b80601f016020809104026020016040519081016040528092919081815260200182805461055b90610731565b80156105a65780601f1061057d576101008083540402835291602001916105a6565b820191905f5260205f20905b81548152906001019060200180831161058957829003601f168201915b505050505081565b5f602082840312156105be575f80fd5b81356001600160e01b0319811681146105d5575f80fd5b9392505050565b60ff811681146105ea575f80fd5b50565b5f602082840312156105fd575f80fd5b81356105d5816105dc565b602080825282518282018190525f918401906040840190835b8181101561064257835160ff16835260209384019390920191600101610621565b509095945050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215610692575f80fd5b5035919050565b5f80604083850312156106aa575f80fd5b82356106b5816105dc565b915060208301356106c5816105dc565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610642578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff1691850191909152909301926060909201916001016106e9565b600181811c9082168061074557607f821691505b60208210810361076357634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610779575f80fd5b81516105d5816105dc565b634e487b7160e01b5f52603260045260245ffdfea2646970667358221220855e9befb93ec6ba58e5859b2c89dbf03971e701241240583158424203c6c11f64736f6c634300081a0033",
         | 
| 170 233 | 
             
              "linkReferences": {
         | 
| 171 234 | 
             
                "contracts/type/Version.sol": {
         | 
| 172 235 | 
             
                  "VersionPartLib": [
         | 
| 173 236 | 
             
                    {
         | 
| 174 237 | 
             
                      "length": 20,
         | 
| 175 | 
            -
                      "start":  | 
| 238 | 
            +
                      "start": 1659
         | 
| 176 239 | 
             
                    }
         | 
| 177 240 | 
             
                  ]
         | 
| 178 241 | 
             
                }
         | 
| @@ -182,7 +245,7 @@ | |
| 182 245 | 
             
                  "VersionPartLib": [
         | 
| 183 246 | 
             
                    {
         | 
| 184 247 | 
             
                      "length": 20,
         | 
| 185 | 
            -
                      "start":  | 
| 248 | 
            +
                      "start": 989
         | 
| 186 249 | 
             
                    }
         | 
| 187 250 | 
             
                  ]
         | 
| 188 251 | 
             
                }
         |