@etherisc/gif-next 0.0.2-f0d86c2-077 → 0.0.2-f1fe735-758
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 +267 -24
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1378 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +826 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +827 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +709 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +285 -1486
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +769 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +489 -1720
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +228 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1701 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1220 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +758 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3597 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ModuleBase.sol/ModuleBase.json → oracle/IOracle.sol/IOracle.json} +2 -2
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1134 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +754 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +703 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +256 -221
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IProductService.sol/IProductService.json} +207 -171
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +1012 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +678 -77
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1123 -0
- package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +865 -107
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1901 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1177 -0
- package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +206 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1559 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1511 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +796 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1189 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +880 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +104 -141
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +37 -80
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +163 -143
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +507 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +460 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2237 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +186 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +266 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/{types/UFixed.sol/UFixedMathLib.json → type/UFixed.sol/UFixedLib.json} +4 -4
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/distribution/Distribution.sol +261 -0
- package/contracts/distribution/DistributionService.sol +297 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/distribution/IDistributionComponent.sol +66 -0
- package/contracts/distribution/IDistributionService.sol +81 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +79 -44
- package/contracts/instance/IInstanceService.sol +97 -0
- package/contracts/instance/Instance.sol +247 -52
- package/contracts/instance/InstanceAdmin.sol +331 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
- package/contracts/instance/InstanceReader.sol +392 -0
- package/contracts/instance/InstanceService.sol +439 -0
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +272 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +106 -0
- package/contracts/instance/base/ObjectManager.sol +80 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
- package/contracts/oracle/IOracle.sol +20 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +145 -0
- package/contracts/oracle/OracleService.sol +278 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +112 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +299 -0
- package/contracts/pool/PoolService.sol +452 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +42 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +475 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/product/Product.sol +377 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +95 -37
- package/contracts/registry/IRegistry.sol +95 -28
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/IServiceAuthorization.sol +38 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +482 -281
- package/contracts/registry/RegistryAdmin.sol +335 -0
- package/contracts/registry/RegistryService.sol +266 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseManager.sol +503 -0
- package/contracts/registry/ServiceAuthorization.sol +90 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/AccessAdmin.sol +759 -0
- package/contracts/shared/AccessManagerCustom.sol +741 -0
- package/contracts/shared/AccessManagerExtended.sol +481 -0
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +620 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +15 -9
- package/contracts/shared/IAccessAdmin.sol +168 -0
- package/contracts/shared/IAccessManagerExtended.sol +74 -0
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/{instance/base → shared}/ILifecycle.sol +4 -5
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +10 -19
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +25 -0
- package/contracts/shared/IVersionable.sol +38 -37
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +144 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +102 -0
- package/contracts/shared/ProxyManager.sol +199 -0
- package/contracts/shared/Registerable.sol +54 -65
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +83 -0
- package/contracts/shared/TokenHandler.sol +58 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +38 -68
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +153 -0
- package/contracts/staking/StakeManagerLib.sol +231 -0
- package/contracts/staking/Staking.sol +513 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +411 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +615 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +128 -0
- package/contracts/{types → type}/Blocknumber.sol +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/{types → type}/Key32.sol +8 -3
- package/contracts/{types → type}/NftId.sol +21 -15
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +241 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +89 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +201 -0
- package/contracts/type/Seconds.sol +81 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +39 -5
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +27 -14
- package/contracts/{types → type}/UFixed.sol +129 -12
- package/contracts/{types → type}/Version.sol +15 -2
- package/package.json +11 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -305
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
- package/contracts/components/BaseComponent.sol +0 -88
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/components/IPoolComponent.sol +0 -57
- package/contracts/components/IProductComponent.sol +0 -19
- package/contracts/components/Pool.sol +0 -174
- package/contracts/components/Product.sol +0 -117
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -14
- package/contracts/instance/base/IKeyValueStore.sol +0 -49
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -80
- package/contracts/instance/base/KeyValueStore.sol +0 -156
- package/contracts/instance/base/Lifecycle.sol +0 -95
- package/contracts/instance/base/ModuleBase.sol +0 -52
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -136
- package/contracts/instance/module/bundle/IBundle.sol +0 -58
- package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
- package/contracts/instance/module/compensation/ICompensation.sol +0 -10
- package/contracts/instance/module/component/ComponentModule.sol +0 -95
- package/contracts/instance/module/component/IComponent.sol +0 -53
- package/contracts/instance/module/policy/IPolicy.sol +0 -60
- package/contracts/instance/module/policy/PolicyModule.sol +0 -76
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -87
- package/contracts/instance/module/risk/IRisk.sol +0 -10
- package/contracts/instance/module/risk/RiskModule.sol +0 -8
- package/contracts/instance/module/treasury/ITreasury.sol +0 -103
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
- package/contracts/instance/service/ComponentOwnerService.sol +0 -170
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- package/contracts/instance/service/IPoolService.sol +0 -30
- package/contracts/instance/service/IProductService.sol +0 -58
- package/contracts/instance/service/PoolService.sol +0 -123
- package/contracts/instance/service/ProductService.sol +0 -354
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestPool.sol +0 -22
- package/contracts/test/TestProduct.sol +0 -44
- package/contracts/test/TestRegisterable.sol +0 -19
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -32
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -51
- package/contracts/types/NftIdSet.sol +0 -60
- package/contracts/types/ObjectType.sol +0 -115
- package/contracts/types/RoleId.sol +0 -38
| @@ -0,0 +1,2237 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "StakingStore",
         | 
| 4 | 
            +
              "sourceName": "contracts/staking/StakingStore.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 10 | 
            +
                      "name": "registry",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    },
         | 
| 13 | 
            +
                    {
         | 
| 14 | 
            +
                      "internalType": "contract StakingReader",
         | 
| 15 | 
            +
                      "name": "reader",
         | 
| 16 | 
            +
                      "type": "address"
         | 
| 17 | 
            +
                    }
         | 
| 18 | 
            +
                  ],
         | 
| 19 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 20 | 
            +
                  "type": "constructor"
         | 
| 21 | 
            +
                },
         | 
| 22 | 
            +
                {
         | 
| 23 | 
            +
                  "inputs": [
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "address",
         | 
| 26 | 
            +
                      "name": "authority",
         | 
| 27 | 
            +
                      "type": "address"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    },
         | 
| 40 | 
            +
                    {
         | 
| 41 | 
            +
                      "internalType": "uint32",
         | 
| 42 | 
            +
                      "name": "delay",
         | 
| 43 | 
            +
                      "type": "uint32"
         | 
| 44 | 
            +
                    }
         | 
| 45 | 
            +
                  ],
         | 
| 46 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 47 | 
            +
                  "type": "error"
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                {
         | 
| 50 | 
            +
                  "inputs": [
         | 
| 51 | 
            +
                    {
         | 
| 52 | 
            +
                      "internalType": "address",
         | 
| 53 | 
            +
                      "name": "caller",
         | 
| 54 | 
            +
                      "type": "address"
         | 
| 55 | 
            +
                    }
         | 
| 56 | 
            +
                  ],
         | 
| 57 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 58 | 
            +
                  "type": "error"
         | 
| 59 | 
            +
                },
         | 
| 60 | 
            +
                {
         | 
| 61 | 
            +
                  "inputs": [
         | 
| 62 | 
            +
                    {
         | 
| 63 | 
            +
                      "internalType": "ObjectType",
         | 
| 64 | 
            +
                      "name": "objectType",
         | 
| 65 | 
            +
                      "type": "uint8"
         | 
| 66 | 
            +
                    },
         | 
| 67 | 
            +
                    {
         | 
| 68 | 
            +
                      "internalType": "StateId",
         | 
| 69 | 
            +
                      "name": "fromStateId",
         | 
| 70 | 
            +
                      "type": "uint8"
         | 
| 71 | 
            +
                    },
         | 
| 72 | 
            +
                    {
         | 
| 73 | 
            +
                      "internalType": "StateId",
         | 
| 74 | 
            +
                      "name": "toStateId",
         | 
| 75 | 
            +
                      "type": "uint8"
         | 
| 76 | 
            +
                    }
         | 
| 77 | 
            +
                  ],
         | 
| 78 | 
            +
                  "name": "ErrorInvalidStateTransition",
         | 
| 79 | 
            +
                  "type": "error"
         | 
| 80 | 
            +
                },
         | 
| 81 | 
            +
                {
         | 
| 82 | 
            +
                  "inputs": [
         | 
| 83 | 
            +
                    {
         | 
| 84 | 
            +
                      "internalType": "Key32",
         | 
| 85 | 
            +
                      "name": "key",
         | 
| 86 | 
            +
                      "type": "bytes32"
         | 
| 87 | 
            +
                    },
         | 
| 88 | 
            +
                    {
         | 
| 89 | 
            +
                      "internalType": "ObjectType",
         | 
| 90 | 
            +
                      "name": "objectType",
         | 
| 91 | 
            +
                      "type": "uint8"
         | 
| 92 | 
            +
                    }
         | 
| 93 | 
            +
                  ],
         | 
| 94 | 
            +
                  "name": "ErrorKeyValueStoreAlreadyCreated",
         | 
| 95 | 
            +
                  "type": "error"
         | 
| 96 | 
            +
                },
         | 
| 97 | 
            +
                {
         | 
| 98 | 
            +
                  "inputs": [
         | 
| 99 | 
            +
                    {
         | 
| 100 | 
            +
                      "internalType": "ObjectType",
         | 
| 101 | 
            +
                      "name": "objectType",
         | 
| 102 | 
            +
                      "type": "uint8"
         | 
| 103 | 
            +
                    }
         | 
| 104 | 
            +
                  ],
         | 
| 105 | 
            +
                  "name": "ErrorKeyValueStoreNoLifecycle",
         | 
| 106 | 
            +
                  "type": "error"
         | 
| 107 | 
            +
                },
         | 
| 108 | 
            +
                {
         | 
| 109 | 
            +
                  "inputs": [
         | 
| 110 | 
            +
                    {
         | 
| 111 | 
            +
                      "internalType": "Key32",
         | 
| 112 | 
            +
                      "name": "key",
         | 
| 113 | 
            +
                      "type": "bytes32"
         | 
| 114 | 
            +
                    }
         | 
| 115 | 
            +
                  ],
         | 
| 116 | 
            +
                  "name": "ErrorKeyValueStoreNotExisting",
         | 
| 117 | 
            +
                  "type": "error"
         | 
| 118 | 
            +
                },
         | 
| 119 | 
            +
                {
         | 
| 120 | 
            +
                  "inputs": [
         | 
| 121 | 
            +
                    {
         | 
| 122 | 
            +
                      "internalType": "Key32",
         | 
| 123 | 
            +
                      "name": "key",
         | 
| 124 | 
            +
                      "type": "bytes32"
         | 
| 125 | 
            +
                    }
         | 
| 126 | 
            +
                  ],
         | 
| 127 | 
            +
                  "name": "ErrorKeyValueStoreStateZero",
         | 
| 128 | 
            +
                  "type": "error"
         | 
| 129 | 
            +
                },
         | 
| 130 | 
            +
                {
         | 
| 131 | 
            +
                  "inputs": [
         | 
| 132 | 
            +
                    {
         | 
| 133 | 
            +
                      "internalType": "ObjectType",
         | 
| 134 | 
            +
                      "name": "objectType",
         | 
| 135 | 
            +
                      "type": "uint8"
         | 
| 136 | 
            +
                    }
         | 
| 137 | 
            +
                  ],
         | 
| 138 | 
            +
                  "name": "ErrorKeyValueStoreTypeUndefined",
         | 
| 139 | 
            +
                  "type": "error"
         | 
| 140 | 
            +
                },
         | 
| 141 | 
            +
                {
         | 
| 142 | 
            +
                  "inputs": [
         | 
| 143 | 
            +
                    {
         | 
| 144 | 
            +
                      "internalType": "ObjectType",
         | 
| 145 | 
            +
                      "name": "objectType",
         | 
| 146 | 
            +
                      "type": "uint8"
         | 
| 147 | 
            +
                    }
         | 
| 148 | 
            +
                  ],
         | 
| 149 | 
            +
                  "name": "ErrorNoLifecycle",
         | 
| 150 | 
            +
                  "type": "error"
         | 
| 151 | 
            +
                },
         | 
| 152 | 
            +
                {
         | 
| 153 | 
            +
                  "inputs": [
         | 
| 154 | 
            +
                    {
         | 
| 155 | 
            +
                      "internalType": "NftId",
         | 
| 156 | 
            +
                      "name": "nftId",
         | 
| 157 | 
            +
                      "type": "uint96"
         | 
| 158 | 
            +
                    }
         | 
| 159 | 
            +
                  ],
         | 
| 160 | 
            +
                  "name": "ErrorStakingStoreBalanceAlreadyInitialized",
         | 
| 161 | 
            +
                  "type": "error"
         | 
| 162 | 
            +
                },
         | 
| 163 | 
            +
                {
         | 
| 164 | 
            +
                  "inputs": [
         | 
| 165 | 
            +
                    {
         | 
| 166 | 
            +
                      "internalType": "NftId",
         | 
| 167 | 
            +
                      "name": "nftId",
         | 
| 168 | 
            +
                      "type": "uint96"
         | 
| 169 | 
            +
                    }
         | 
| 170 | 
            +
                  ],
         | 
| 171 | 
            +
                  "name": "ErrorStakingStoreBalanceNotInitialized",
         | 
| 172 | 
            +
                  "type": "error"
         | 
| 173 | 
            +
                },
         | 
| 174 | 
            +
                {
         | 
| 175 | 
            +
                  "inputs": [
         | 
| 176 | 
            +
                    {
         | 
| 177 | 
            +
                      "internalType": "NftId",
         | 
| 178 | 
            +
                      "name": "targetNftId",
         | 
| 179 | 
            +
                      "type": "uint96"
         | 
| 180 | 
            +
                    }
         | 
| 181 | 
            +
                  ],
         | 
| 182 | 
            +
                  "name": "ErrorStakingStoreNotTarget",
         | 
| 183 | 
            +
                  "type": "error"
         | 
| 184 | 
            +
                },
         | 
| 185 | 
            +
                {
         | 
| 186 | 
            +
                  "inputs": [
         | 
| 187 | 
            +
                    {
         | 
| 188 | 
            +
                      "internalType": "NftId",
         | 
| 189 | 
            +
                      "name": "targetNftId",
         | 
| 190 | 
            +
                      "type": "uint96"
         | 
| 191 | 
            +
                    },
         | 
| 192 | 
            +
                    {
         | 
| 193 | 
            +
                      "internalType": "Amount",
         | 
| 194 | 
            +
                      "name": "dipAmount",
         | 
| 195 | 
            +
                      "type": "uint96"
         | 
| 196 | 
            +
                    },
         | 
| 197 | 
            +
                    {
         | 
| 198 | 
            +
                      "internalType": "Amount",
         | 
| 199 | 
            +
                      "name": "reservesBalanceAmount",
         | 
| 200 | 
            +
                      "type": "uint96"
         | 
| 201 | 
            +
                    }
         | 
| 202 | 
            +
                  ],
         | 
| 203 | 
            +
                  "name": "ErrorStakingStoreRewardReservesInsufficient",
         | 
| 204 | 
            +
                  "type": "error"
         | 
| 205 | 
            +
                },
         | 
| 206 | 
            +
                {
         | 
| 207 | 
            +
                  "inputs": [
         | 
| 208 | 
            +
                    {
         | 
| 209 | 
            +
                      "internalType": "NftId",
         | 
| 210 | 
            +
                      "name": "nftId",
         | 
| 211 | 
            +
                      "type": "uint96"
         | 
| 212 | 
            +
                    }
         | 
| 213 | 
            +
                  ],
         | 
| 214 | 
            +
                  "name": "ErrorStakingStoreTvlBalanceNotInitialized",
         | 
| 215 | 
            +
                  "type": "error"
         | 
| 216 | 
            +
                },
         | 
| 217 | 
            +
                {
         | 
| 218 | 
            +
                  "anonymous": false,
         | 
| 219 | 
            +
                  "inputs": [
         | 
| 220 | 
            +
                    {
         | 
| 221 | 
            +
                      "indexed": false,
         | 
| 222 | 
            +
                      "internalType": "address",
         | 
| 223 | 
            +
                      "name": "authority",
         | 
| 224 | 
            +
                      "type": "address"
         | 
| 225 | 
            +
                    }
         | 
| 226 | 
            +
                  ],
         | 
| 227 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 228 | 
            +
                  "type": "event"
         | 
| 229 | 
            +
                },
         | 
| 230 | 
            +
                {
         | 
| 231 | 
            +
                  "anonymous": false,
         | 
| 232 | 
            +
                  "inputs": [
         | 
| 233 | 
            +
                    {
         | 
| 234 | 
            +
                      "indexed": false,
         | 
| 235 | 
            +
                      "internalType": "ObjectType",
         | 
| 236 | 
            +
                      "name": "objectType",
         | 
| 237 | 
            +
                      "type": "uint8"
         | 
| 238 | 
            +
                    },
         | 
| 239 | 
            +
                    {
         | 
| 240 | 
            +
                      "indexed": false,
         | 
| 241 | 
            +
                      "internalType": "KeyId",
         | 
| 242 | 
            +
                      "name": "keyId",
         | 
| 243 | 
            +
                      "type": "bytes31"
         | 
| 244 | 
            +
                    },
         | 
| 245 | 
            +
                    {
         | 
| 246 | 
            +
                      "indexed": false,
         | 
| 247 | 
            +
                      "internalType": "StateId",
         | 
| 248 | 
            +
                      "name": "state",
         | 
| 249 | 
            +
                      "type": "uint8"
         | 
| 250 | 
            +
                    },
         | 
| 251 | 
            +
                    {
         | 
| 252 | 
            +
                      "indexed": false,
         | 
| 253 | 
            +
                      "internalType": "address",
         | 
| 254 | 
            +
                      "name": "createdBy",
         | 
| 255 | 
            +
                      "type": "address"
         | 
| 256 | 
            +
                    },
         | 
| 257 | 
            +
                    {
         | 
| 258 | 
            +
                      "indexed": false,
         | 
| 259 | 
            +
                      "internalType": "address",
         | 
| 260 | 
            +
                      "name": "txOrigin",
         | 
| 261 | 
            +
                      "type": "address"
         | 
| 262 | 
            +
                    }
         | 
| 263 | 
            +
                  ],
         | 
| 264 | 
            +
                  "name": "LogInfoCreated",
         | 
| 265 | 
            +
                  "type": "event"
         | 
| 266 | 
            +
                },
         | 
| 267 | 
            +
                {
         | 
| 268 | 
            +
                  "anonymous": false,
         | 
| 269 | 
            +
                  "inputs": [
         | 
| 270 | 
            +
                    {
         | 
| 271 | 
            +
                      "indexed": false,
         | 
| 272 | 
            +
                      "internalType": "ObjectType",
         | 
| 273 | 
            +
                      "name": "objectType",
         | 
| 274 | 
            +
                      "type": "uint8"
         | 
| 275 | 
            +
                    },
         | 
| 276 | 
            +
                    {
         | 
| 277 | 
            +
                      "indexed": false,
         | 
| 278 | 
            +
                      "internalType": "KeyId",
         | 
| 279 | 
            +
                      "name": "keyId",
         | 
| 280 | 
            +
                      "type": "bytes31"
         | 
| 281 | 
            +
                    },
         | 
| 282 | 
            +
                    {
         | 
| 283 | 
            +
                      "indexed": false,
         | 
| 284 | 
            +
                      "internalType": "StateId",
         | 
| 285 | 
            +
                      "name": "state",
         | 
| 286 | 
            +
                      "type": "uint8"
         | 
| 287 | 
            +
                    },
         | 
| 288 | 
            +
                    {
         | 
| 289 | 
            +
                      "indexed": false,
         | 
| 290 | 
            +
                      "internalType": "address",
         | 
| 291 | 
            +
                      "name": "updatedBy",
         | 
| 292 | 
            +
                      "type": "address"
         | 
| 293 | 
            +
                    },
         | 
| 294 | 
            +
                    {
         | 
| 295 | 
            +
                      "indexed": false,
         | 
| 296 | 
            +
                      "internalType": "address",
         | 
| 297 | 
            +
                      "name": "txOrigin",
         | 
| 298 | 
            +
                      "type": "address"
         | 
| 299 | 
            +
                    },
         | 
| 300 | 
            +
                    {
         | 
| 301 | 
            +
                      "indexed": false,
         | 
| 302 | 
            +
                      "internalType": "Blocknumber",
         | 
| 303 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 304 | 
            +
                      "type": "uint32"
         | 
| 305 | 
            +
                    }
         | 
| 306 | 
            +
                  ],
         | 
| 307 | 
            +
                  "name": "LogInfoUpdated",
         | 
| 308 | 
            +
                  "type": "event"
         | 
| 309 | 
            +
                },
         | 
| 310 | 
            +
                {
         | 
| 311 | 
            +
                  "anonymous": false,
         | 
| 312 | 
            +
                  "inputs": [
         | 
| 313 | 
            +
                    {
         | 
| 314 | 
            +
                      "indexed": false,
         | 
| 315 | 
            +
                      "internalType": "NftId",
         | 
| 316 | 
            +
                      "name": "targetNftId",
         | 
| 317 | 
            +
                      "type": "uint96"
         | 
| 318 | 
            +
                    },
         | 
| 319 | 
            +
                    {
         | 
| 320 | 
            +
                      "indexed": false,
         | 
| 321 | 
            +
                      "internalType": "Amount",
         | 
| 322 | 
            +
                      "name": "dipAmount",
         | 
| 323 | 
            +
                      "type": "uint96"
         | 
| 324 | 
            +
                    },
         | 
| 325 | 
            +
                    {
         | 
| 326 | 
            +
                      "indexed": false,
         | 
| 327 | 
            +
                      "internalType": "Amount",
         | 
| 328 | 
            +
                      "name": "reserveBalance",
         | 
| 329 | 
            +
                      "type": "uint96"
         | 
| 330 | 
            +
                    },
         | 
| 331 | 
            +
                    {
         | 
| 332 | 
            +
                      "indexed": false,
         | 
| 333 | 
            +
                      "internalType": "Blocknumber",
         | 
| 334 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 335 | 
            +
                      "type": "uint32"
         | 
| 336 | 
            +
                    }
         | 
| 337 | 
            +
                  ],
         | 
| 338 | 
            +
                  "name": "LogStakingStoreReserveBalanceDecreased",
         | 
| 339 | 
            +
                  "type": "event"
         | 
| 340 | 
            +
                },
         | 
| 341 | 
            +
                {
         | 
| 342 | 
            +
                  "anonymous": false,
         | 
| 343 | 
            +
                  "inputs": [
         | 
| 344 | 
            +
                    {
         | 
| 345 | 
            +
                      "indexed": false,
         | 
| 346 | 
            +
                      "internalType": "NftId",
         | 
| 347 | 
            +
                      "name": "targetNftId",
         | 
| 348 | 
            +
                      "type": "uint96"
         | 
| 349 | 
            +
                    },
         | 
| 350 | 
            +
                    {
         | 
| 351 | 
            +
                      "indexed": false,
         | 
| 352 | 
            +
                      "internalType": "Amount",
         | 
| 353 | 
            +
                      "name": "dipAmount",
         | 
| 354 | 
            +
                      "type": "uint96"
         | 
| 355 | 
            +
                    },
         | 
| 356 | 
            +
                    {
         | 
| 357 | 
            +
                      "indexed": false,
         | 
| 358 | 
            +
                      "internalType": "Amount",
         | 
| 359 | 
            +
                      "name": "reserveBalance",
         | 
| 360 | 
            +
                      "type": "uint96"
         | 
| 361 | 
            +
                    },
         | 
| 362 | 
            +
                    {
         | 
| 363 | 
            +
                      "indexed": false,
         | 
| 364 | 
            +
                      "internalType": "Blocknumber",
         | 
| 365 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 366 | 
            +
                      "type": "uint32"
         | 
| 367 | 
            +
                    }
         | 
| 368 | 
            +
                  ],
         | 
| 369 | 
            +
                  "name": "LogStakingStoreReserveBalanceIncreased",
         | 
| 370 | 
            +
                  "type": "event"
         | 
| 371 | 
            +
                },
         | 
| 372 | 
            +
                {
         | 
| 373 | 
            +
                  "anonymous": false,
         | 
| 374 | 
            +
                  "inputs": [
         | 
| 375 | 
            +
                    {
         | 
| 376 | 
            +
                      "indexed": false,
         | 
| 377 | 
            +
                      "internalType": "NftId",
         | 
| 378 | 
            +
                      "name": "nftId",
         | 
| 379 | 
            +
                      "type": "uint96"
         | 
| 380 | 
            +
                    },
         | 
| 381 | 
            +
                    {
         | 
| 382 | 
            +
                      "indexed": false,
         | 
| 383 | 
            +
                      "internalType": "Amount",
         | 
| 384 | 
            +
                      "name": "addedAmount",
         | 
| 385 | 
            +
                      "type": "uint96"
         | 
| 386 | 
            +
                    },
         | 
| 387 | 
            +
                    {
         | 
| 388 | 
            +
                      "indexed": false,
         | 
| 389 | 
            +
                      "internalType": "Amount",
         | 
| 390 | 
            +
                      "name": "newBalance",
         | 
| 391 | 
            +
                      "type": "uint96"
         | 
| 392 | 
            +
                    },
         | 
| 393 | 
            +
                    {
         | 
| 394 | 
            +
                      "indexed": false,
         | 
| 395 | 
            +
                      "internalType": "Blocknumber",
         | 
| 396 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 397 | 
            +
                      "type": "uint32"
         | 
| 398 | 
            +
                    }
         | 
| 399 | 
            +
                  ],
         | 
| 400 | 
            +
                  "name": "LogStakingStoreRewardsDecreased",
         | 
| 401 | 
            +
                  "type": "event"
         | 
| 402 | 
            +
                },
         | 
| 403 | 
            +
                {
         | 
| 404 | 
            +
                  "anonymous": false,
         | 
| 405 | 
            +
                  "inputs": [
         | 
| 406 | 
            +
                    {
         | 
| 407 | 
            +
                      "indexed": false,
         | 
| 408 | 
            +
                      "internalType": "NftId",
         | 
| 409 | 
            +
                      "name": "nftId",
         | 
| 410 | 
            +
                      "type": "uint96"
         | 
| 411 | 
            +
                    },
         | 
| 412 | 
            +
                    {
         | 
| 413 | 
            +
                      "indexed": false,
         | 
| 414 | 
            +
                      "internalType": "Amount",
         | 
| 415 | 
            +
                      "name": "addedAmount",
         | 
| 416 | 
            +
                      "type": "uint96"
         | 
| 417 | 
            +
                    },
         | 
| 418 | 
            +
                    {
         | 
| 419 | 
            +
                      "indexed": false,
         | 
| 420 | 
            +
                      "internalType": "Amount",
         | 
| 421 | 
            +
                      "name": "newBalance",
         | 
| 422 | 
            +
                      "type": "uint96"
         | 
| 423 | 
            +
                    },
         | 
| 424 | 
            +
                    {
         | 
| 425 | 
            +
                      "indexed": false,
         | 
| 426 | 
            +
                      "internalType": "Blocknumber",
         | 
| 427 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 428 | 
            +
                      "type": "uint32"
         | 
| 429 | 
            +
                    }
         | 
| 430 | 
            +
                  ],
         | 
| 431 | 
            +
                  "name": "LogStakingStoreRewardsIncreased",
         | 
| 432 | 
            +
                  "type": "event"
         | 
| 433 | 
            +
                },
         | 
| 434 | 
            +
                {
         | 
| 435 | 
            +
                  "anonymous": false,
         | 
| 436 | 
            +
                  "inputs": [
         | 
| 437 | 
            +
                    {
         | 
| 438 | 
            +
                      "indexed": false,
         | 
| 439 | 
            +
                      "internalType": "NftId",
         | 
| 440 | 
            +
                      "name": "nftId",
         | 
| 441 | 
            +
                      "type": "uint96"
         | 
| 442 | 
            +
                    },
         | 
| 443 | 
            +
                    {
         | 
| 444 | 
            +
                      "indexed": false,
         | 
| 445 | 
            +
                      "internalType": "Amount",
         | 
| 446 | 
            +
                      "name": "amount",
         | 
| 447 | 
            +
                      "type": "uint96"
         | 
| 448 | 
            +
                    },
         | 
| 449 | 
            +
                    {
         | 
| 450 | 
            +
                      "indexed": false,
         | 
| 451 | 
            +
                      "internalType": "Amount",
         | 
| 452 | 
            +
                      "name": "rewardAmount",
         | 
| 453 | 
            +
                      "type": "uint96"
         | 
| 454 | 
            +
                    },
         | 
| 455 | 
            +
                    {
         | 
| 456 | 
            +
                      "indexed": false,
         | 
| 457 | 
            +
                      "internalType": "Amount",
         | 
| 458 | 
            +
                      "name": "rewardIncrementAmount",
         | 
| 459 | 
            +
                      "type": "uint96"
         | 
| 460 | 
            +
                    },
         | 
| 461 | 
            +
                    {
         | 
| 462 | 
            +
                      "indexed": false,
         | 
| 463 | 
            +
                      "internalType": "Amount",
         | 
| 464 | 
            +
                      "name": "newBalance",
         | 
| 465 | 
            +
                      "type": "uint96"
         | 
| 466 | 
            +
                    },
         | 
| 467 | 
            +
                    {
         | 
| 468 | 
            +
                      "indexed": false,
         | 
| 469 | 
            +
                      "internalType": "Blocknumber",
         | 
| 470 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 471 | 
            +
                      "type": "uint32"
         | 
| 472 | 
            +
                    }
         | 
| 473 | 
            +
                  ],
         | 
| 474 | 
            +
                  "name": "LogStakingStoreRewardsRestaked",
         | 
| 475 | 
            +
                  "type": "event"
         | 
| 476 | 
            +
                },
         | 
| 477 | 
            +
                {
         | 
| 478 | 
            +
                  "anonymous": false,
         | 
| 479 | 
            +
                  "inputs": [
         | 
| 480 | 
            +
                    {
         | 
| 481 | 
            +
                      "indexed": false,
         | 
| 482 | 
            +
                      "internalType": "NftId",
         | 
| 483 | 
            +
                      "name": "nftId",
         | 
| 484 | 
            +
                      "type": "uint96"
         | 
| 485 | 
            +
                    },
         | 
| 486 | 
            +
                    {
         | 
| 487 | 
            +
                      "indexed": false,
         | 
| 488 | 
            +
                      "internalType": "Amount",
         | 
| 489 | 
            +
                      "name": "addedAmount",
         | 
| 490 | 
            +
                      "type": "uint96"
         | 
| 491 | 
            +
                    },
         | 
| 492 | 
            +
                    {
         | 
| 493 | 
            +
                      "indexed": false,
         | 
| 494 | 
            +
                      "internalType": "Amount",
         | 
| 495 | 
            +
                      "name": "newBalance",
         | 
| 496 | 
            +
                      "type": "uint96"
         | 
| 497 | 
            +
                    },
         | 
| 498 | 
            +
                    {
         | 
| 499 | 
            +
                      "indexed": false,
         | 
| 500 | 
            +
                      "internalType": "Blocknumber",
         | 
| 501 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 502 | 
            +
                      "type": "uint32"
         | 
| 503 | 
            +
                    }
         | 
| 504 | 
            +
                  ],
         | 
| 505 | 
            +
                  "name": "LogStakingStoreStakesDecreased",
         | 
| 506 | 
            +
                  "type": "event"
         | 
| 507 | 
            +
                },
         | 
| 508 | 
            +
                {
         | 
| 509 | 
            +
                  "anonymous": false,
         | 
| 510 | 
            +
                  "inputs": [
         | 
| 511 | 
            +
                    {
         | 
| 512 | 
            +
                      "indexed": false,
         | 
| 513 | 
            +
                      "internalType": "NftId",
         | 
| 514 | 
            +
                      "name": "nftId",
         | 
| 515 | 
            +
                      "type": "uint96"
         | 
| 516 | 
            +
                    },
         | 
| 517 | 
            +
                    {
         | 
| 518 | 
            +
                      "indexed": false,
         | 
| 519 | 
            +
                      "internalType": "Amount",
         | 
| 520 | 
            +
                      "name": "addedAmount",
         | 
| 521 | 
            +
                      "type": "uint96"
         | 
| 522 | 
            +
                    },
         | 
| 523 | 
            +
                    {
         | 
| 524 | 
            +
                      "indexed": false,
         | 
| 525 | 
            +
                      "internalType": "Amount",
         | 
| 526 | 
            +
                      "name": "newBalance",
         | 
| 527 | 
            +
                      "type": "uint96"
         | 
| 528 | 
            +
                    },
         | 
| 529 | 
            +
                    {
         | 
| 530 | 
            +
                      "indexed": false,
         | 
| 531 | 
            +
                      "internalType": "Blocknumber",
         | 
| 532 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 533 | 
            +
                      "type": "uint32"
         | 
| 534 | 
            +
                    }
         | 
| 535 | 
            +
                  ],
         | 
| 536 | 
            +
                  "name": "LogStakingStoreStakesIncreased",
         | 
| 537 | 
            +
                  "type": "event"
         | 
| 538 | 
            +
                },
         | 
| 539 | 
            +
                {
         | 
| 540 | 
            +
                  "anonymous": false,
         | 
| 541 | 
            +
                  "inputs": [
         | 
| 542 | 
            +
                    {
         | 
| 543 | 
            +
                      "indexed": false,
         | 
| 544 | 
            +
                      "internalType": "NftId",
         | 
| 545 | 
            +
                      "name": "targetNftId",
         | 
| 546 | 
            +
                      "type": "uint96"
         | 
| 547 | 
            +
                    },
         | 
| 548 | 
            +
                    {
         | 
| 549 | 
            +
                      "indexed": false,
         | 
| 550 | 
            +
                      "internalType": "address",
         | 
| 551 | 
            +
                      "name": "token",
         | 
| 552 | 
            +
                      "type": "address"
         | 
| 553 | 
            +
                    },
         | 
| 554 | 
            +
                    {
         | 
| 555 | 
            +
                      "indexed": false,
         | 
| 556 | 
            +
                      "internalType": "Amount",
         | 
| 557 | 
            +
                      "name": "amount",
         | 
| 558 | 
            +
                      "type": "uint96"
         | 
| 559 | 
            +
                    },
         | 
| 560 | 
            +
                    {
         | 
| 561 | 
            +
                      "indexed": false,
         | 
| 562 | 
            +
                      "internalType": "Amount",
         | 
| 563 | 
            +
                      "name": "newBalance",
         | 
| 564 | 
            +
                      "type": "uint96"
         | 
| 565 | 
            +
                    },
         | 
| 566 | 
            +
                    {
         | 
| 567 | 
            +
                      "indexed": false,
         | 
| 568 | 
            +
                      "internalType": "Blocknumber",
         | 
| 569 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 570 | 
            +
                      "type": "uint32"
         | 
| 571 | 
            +
                    }
         | 
| 572 | 
            +
                  ],
         | 
| 573 | 
            +
                  "name": "LogStakingStoreTotalValueLockedDecreased",
         | 
| 574 | 
            +
                  "type": "event"
         | 
| 575 | 
            +
                },
         | 
| 576 | 
            +
                {
         | 
| 577 | 
            +
                  "anonymous": false,
         | 
| 578 | 
            +
                  "inputs": [
         | 
| 579 | 
            +
                    {
         | 
| 580 | 
            +
                      "indexed": false,
         | 
| 581 | 
            +
                      "internalType": "NftId",
         | 
| 582 | 
            +
                      "name": "targetNftId",
         | 
| 583 | 
            +
                      "type": "uint96"
         | 
| 584 | 
            +
                    },
         | 
| 585 | 
            +
                    {
         | 
| 586 | 
            +
                      "indexed": false,
         | 
| 587 | 
            +
                      "internalType": "address",
         | 
| 588 | 
            +
                      "name": "token",
         | 
| 589 | 
            +
                      "type": "address"
         | 
| 590 | 
            +
                    },
         | 
| 591 | 
            +
                    {
         | 
| 592 | 
            +
                      "indexed": false,
         | 
| 593 | 
            +
                      "internalType": "Amount",
         | 
| 594 | 
            +
                      "name": "amount",
         | 
| 595 | 
            +
                      "type": "uint96"
         | 
| 596 | 
            +
                    },
         | 
| 597 | 
            +
                    {
         | 
| 598 | 
            +
                      "indexed": false,
         | 
| 599 | 
            +
                      "internalType": "Amount",
         | 
| 600 | 
            +
                      "name": "newBalance",
         | 
| 601 | 
            +
                      "type": "uint96"
         | 
| 602 | 
            +
                    },
         | 
| 603 | 
            +
                    {
         | 
| 604 | 
            +
                      "indexed": false,
         | 
| 605 | 
            +
                      "internalType": "Blocknumber",
         | 
| 606 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 607 | 
            +
                      "type": "uint32"
         | 
| 608 | 
            +
                    }
         | 
| 609 | 
            +
                  ],
         | 
| 610 | 
            +
                  "name": "LogStakingStoreTotalValueLockedIncreased",
         | 
| 611 | 
            +
                  "type": "event"
         | 
| 612 | 
            +
                },
         | 
| 613 | 
            +
                {
         | 
| 614 | 
            +
                  "anonymous": false,
         | 
| 615 | 
            +
                  "inputs": [
         | 
| 616 | 
            +
                    {
         | 
| 617 | 
            +
                      "indexed": false,
         | 
| 618 | 
            +
                      "internalType": "ObjectType",
         | 
| 619 | 
            +
                      "name": "objectType",
         | 
| 620 | 
            +
                      "type": "uint8"
         | 
| 621 | 
            +
                    },
         | 
| 622 | 
            +
                    {
         | 
| 623 | 
            +
                      "indexed": false,
         | 
| 624 | 
            +
                      "internalType": "KeyId",
         | 
| 625 | 
            +
                      "name": "keyId",
         | 
| 626 | 
            +
                      "type": "bytes31"
         | 
| 627 | 
            +
                    },
         | 
| 628 | 
            +
                    {
         | 
| 629 | 
            +
                      "indexed": false,
         | 
| 630 | 
            +
                      "internalType": "StateId",
         | 
| 631 | 
            +
                      "name": "stateOld",
         | 
| 632 | 
            +
                      "type": "uint8"
         | 
| 633 | 
            +
                    },
         | 
| 634 | 
            +
                    {
         | 
| 635 | 
            +
                      "indexed": false,
         | 
| 636 | 
            +
                      "internalType": "StateId",
         | 
| 637 | 
            +
                      "name": "stateNew",
         | 
| 638 | 
            +
                      "type": "uint8"
         | 
| 639 | 
            +
                    },
         | 
| 640 | 
            +
                    {
         | 
| 641 | 
            +
                      "indexed": false,
         | 
| 642 | 
            +
                      "internalType": "address",
         | 
| 643 | 
            +
                      "name": "updatedBy",
         | 
| 644 | 
            +
                      "type": "address"
         | 
| 645 | 
            +
                    },
         | 
| 646 | 
            +
                    {
         | 
| 647 | 
            +
                      "indexed": false,
         | 
| 648 | 
            +
                      "internalType": "address",
         | 
| 649 | 
            +
                      "name": "txOrigin",
         | 
| 650 | 
            +
                      "type": "address"
         | 
| 651 | 
            +
                    },
         | 
| 652 | 
            +
                    {
         | 
| 653 | 
            +
                      "indexed": false,
         | 
| 654 | 
            +
                      "internalType": "Blocknumber",
         | 
| 655 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 656 | 
            +
                      "type": "uint32"
         | 
| 657 | 
            +
                    }
         | 
| 658 | 
            +
                  ],
         | 
| 659 | 
            +
                  "name": "LogStateUpdated",
         | 
| 660 | 
            +
                  "type": "event"
         | 
| 661 | 
            +
                },
         | 
| 662 | 
            +
                {
         | 
| 663 | 
            +
                  "inputs": [],
         | 
| 664 | 
            +
                  "name": "authority",
         | 
| 665 | 
            +
                  "outputs": [
         | 
| 666 | 
            +
                    {
         | 
| 667 | 
            +
                      "internalType": "address",
         | 
| 668 | 
            +
                      "name": "",
         | 
| 669 | 
            +
                      "type": "address"
         | 
| 670 | 
            +
                    }
         | 
| 671 | 
            +
                  ],
         | 
| 672 | 
            +
                  "stateMutability": "view",
         | 
| 673 | 
            +
                  "type": "function"
         | 
| 674 | 
            +
                },
         | 
| 675 | 
            +
                {
         | 
| 676 | 
            +
                  "inputs": [
         | 
| 677 | 
            +
                    {
         | 
| 678 | 
            +
                      "internalType": "ObjectType",
         | 
| 679 | 
            +
                      "name": "objectType",
         | 
| 680 | 
            +
                      "type": "uint8"
         | 
| 681 | 
            +
                    },
         | 
| 682 | 
            +
                    {
         | 
| 683 | 
            +
                      "internalType": "StateId",
         | 
| 684 | 
            +
                      "name": "fromId",
         | 
| 685 | 
            +
                      "type": "uint8"
         | 
| 686 | 
            +
                    },
         | 
| 687 | 
            +
                    {
         | 
| 688 | 
            +
                      "internalType": "StateId",
         | 
| 689 | 
            +
                      "name": "toId",
         | 
| 690 | 
            +
                      "type": "uint8"
         | 
| 691 | 
            +
                    }
         | 
| 692 | 
            +
                  ],
         | 
| 693 | 
            +
                  "name": "checkTransition",
         | 
| 694 | 
            +
                  "outputs": [],
         | 
| 695 | 
            +
                  "stateMutability": "view",
         | 
| 696 | 
            +
                  "type": "function"
         | 
| 697 | 
            +
                },
         | 
| 698 | 
            +
                {
         | 
| 699 | 
            +
                  "inputs": [
         | 
| 700 | 
            +
                    {
         | 
| 701 | 
            +
                      "internalType": "NftId",
         | 
| 702 | 
            +
                      "name": "nftId",
         | 
| 703 | 
            +
                      "type": "uint96"
         | 
| 704 | 
            +
                    },
         | 
| 705 | 
            +
                    {
         | 
| 706 | 
            +
                      "internalType": "NftId",
         | 
| 707 | 
            +
                      "name": "targetNftId",
         | 
| 708 | 
            +
                      "type": "uint96"
         | 
| 709 | 
            +
                    },
         | 
| 710 | 
            +
                    {
         | 
| 711 | 
            +
                      "internalType": "Amount",
         | 
| 712 | 
            +
                      "name": "maxClaimAmount",
         | 
| 713 | 
            +
                      "type": "uint96"
         | 
| 714 | 
            +
                    }
         | 
| 715 | 
            +
                  ],
         | 
| 716 | 
            +
                  "name": "claimUpTo",
         | 
| 717 | 
            +
                  "outputs": [
         | 
| 718 | 
            +
                    {
         | 
| 719 | 
            +
                      "internalType": "Amount",
         | 
| 720 | 
            +
                      "name": "claimedAmount",
         | 
| 721 | 
            +
                      "type": "uint96"
         | 
| 722 | 
            +
                    }
         | 
| 723 | 
            +
                  ],
         | 
| 724 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 725 | 
            +
                  "type": "function"
         | 
| 726 | 
            +
                },
         | 
| 727 | 
            +
                {
         | 
| 728 | 
            +
                  "inputs": [
         | 
| 729 | 
            +
                    {
         | 
| 730 | 
            +
                      "internalType": "NftId",
         | 
| 731 | 
            +
                      "name": "stakeNftId",
         | 
| 732 | 
            +
                      "type": "uint96"
         | 
| 733 | 
            +
                    },
         | 
| 734 | 
            +
                    {
         | 
| 735 | 
            +
                      "components": [
         | 
| 736 | 
            +
                        {
         | 
| 737 | 
            +
                          "internalType": "Timestamp",
         | 
| 738 | 
            +
                          "name": "lockedUntil",
         | 
| 739 | 
            +
                          "type": "uint40"
         | 
| 740 | 
            +
                        }
         | 
| 741 | 
            +
                      ],
         | 
| 742 | 
            +
                      "internalType": "struct IStaking.StakeInfo",
         | 
| 743 | 
            +
                      "name": "stakeInfo",
         | 
| 744 | 
            +
                      "type": "tuple"
         | 
| 745 | 
            +
                    }
         | 
| 746 | 
            +
                  ],
         | 
| 747 | 
            +
                  "name": "create",
         | 
| 748 | 
            +
                  "outputs": [],
         | 
| 749 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 750 | 
            +
                  "type": "function"
         | 
| 751 | 
            +
                },
         | 
| 752 | 
            +
                {
         | 
| 753 | 
            +
                  "inputs": [
         | 
| 754 | 
            +
                    {
         | 
| 755 | 
            +
                      "internalType": "NftId",
         | 
| 756 | 
            +
                      "name": "targetNftId",
         | 
| 757 | 
            +
                      "type": "uint96"
         | 
| 758 | 
            +
                    },
         | 
| 759 | 
            +
                    {
         | 
| 760 | 
            +
                      "components": [
         | 
| 761 | 
            +
                        {
         | 
| 762 | 
            +
                          "internalType": "ObjectType",
         | 
| 763 | 
            +
                          "name": "objectType",
         | 
| 764 | 
            +
                          "type": "uint8"
         | 
| 765 | 
            +
                        },
         | 
| 766 | 
            +
                        {
         | 
| 767 | 
            +
                          "internalType": "uint256",
         | 
| 768 | 
            +
                          "name": "chainId",
         | 
| 769 | 
            +
                          "type": "uint256"
         | 
| 770 | 
            +
                        },
         | 
| 771 | 
            +
                        {
         | 
| 772 | 
            +
                          "internalType": "Seconds",
         | 
| 773 | 
            +
                          "name": "lockingPeriod",
         | 
| 774 | 
            +
                          "type": "uint40"
         | 
| 775 | 
            +
                        },
         | 
| 776 | 
            +
                        {
         | 
| 777 | 
            +
                          "internalType": "UFixed",
         | 
| 778 | 
            +
                          "name": "rewardRate",
         | 
| 779 | 
            +
                          "type": "uint256"
         | 
| 780 | 
            +
                        }
         | 
| 781 | 
            +
                      ],
         | 
| 782 | 
            +
                      "internalType": "struct IStaking.TargetInfo",
         | 
| 783 | 
            +
                      "name": "targetInfo",
         | 
| 784 | 
            +
                      "type": "tuple"
         | 
| 785 | 
            +
                    }
         | 
| 786 | 
            +
                  ],
         | 
| 787 | 
            +
                  "name": "createTarget",
         | 
| 788 | 
            +
                  "outputs": [],
         | 
| 789 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 790 | 
            +
                  "type": "function"
         | 
| 791 | 
            +
                },
         | 
| 792 | 
            +
                {
         | 
| 793 | 
            +
                  "inputs": [
         | 
| 794 | 
            +
                    {
         | 
| 795 | 
            +
                      "internalType": "NftId",
         | 
| 796 | 
            +
                      "name": "targetNftId",
         | 
| 797 | 
            +
                      "type": "uint96"
         | 
| 798 | 
            +
                    },
         | 
| 799 | 
            +
                    {
         | 
| 800 | 
            +
                      "internalType": "Amount",
         | 
| 801 | 
            +
                      "name": "dipAmount",
         | 
| 802 | 
            +
                      "type": "uint96"
         | 
| 803 | 
            +
                    }
         | 
| 804 | 
            +
                  ],
         | 
| 805 | 
            +
                  "name": "decreaseReserves",
         | 
| 806 | 
            +
                  "outputs": [
         | 
| 807 | 
            +
                    {
         | 
| 808 | 
            +
                      "internalType": "Amount",
         | 
| 809 | 
            +
                      "name": "newReserveBalance",
         | 
| 810 | 
            +
                      "type": "uint96"
         | 
| 811 | 
            +
                    }
         | 
| 812 | 
            +
                  ],
         | 
| 813 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 814 | 
            +
                  "type": "function"
         | 
| 815 | 
            +
                },
         | 
| 816 | 
            +
                {
         | 
| 817 | 
            +
                  "inputs": [
         | 
| 818 | 
            +
                    {
         | 
| 819 | 
            +
                      "internalType": "NftId",
         | 
| 820 | 
            +
                      "name": "targetNftId",
         | 
| 821 | 
            +
                      "type": "uint96"
         | 
| 822 | 
            +
                    },
         | 
| 823 | 
            +
                    {
         | 
| 824 | 
            +
                      "internalType": "UFixed",
         | 
| 825 | 
            +
                      "name": "stakingRate",
         | 
| 826 | 
            +
                      "type": "uint256"
         | 
| 827 | 
            +
                    },
         | 
| 828 | 
            +
                    {
         | 
| 829 | 
            +
                      "internalType": "address",
         | 
| 830 | 
            +
                      "name": "token",
         | 
| 831 | 
            +
                      "type": "address"
         | 
| 832 | 
            +
                    },
         | 
| 833 | 
            +
                    {
         | 
| 834 | 
            +
                      "internalType": "Amount",
         | 
| 835 | 
            +
                      "name": "amount",
         | 
| 836 | 
            +
                      "type": "uint96"
         | 
| 837 | 
            +
                    }
         | 
| 838 | 
            +
                  ],
         | 
| 839 | 
            +
                  "name": "decreaseTotalValueLocked",
         | 
| 840 | 
            +
                  "outputs": [
         | 
| 841 | 
            +
                    {
         | 
| 842 | 
            +
                      "internalType": "Amount",
         | 
| 843 | 
            +
                      "name": "newBalance",
         | 
| 844 | 
            +
                      "type": "uint96"
         | 
| 845 | 
            +
                    }
         | 
| 846 | 
            +
                  ],
         | 
| 847 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 848 | 
            +
                  "type": "function"
         | 
| 849 | 
            +
                },
         | 
| 850 | 
            +
                {
         | 
| 851 | 
            +
                  "inputs": [
         | 
| 852 | 
            +
                    {
         | 
| 853 | 
            +
                      "internalType": "Key32",
         | 
| 854 | 
            +
                      "name": "key32",
         | 
| 855 | 
            +
                      "type": "bytes32"
         | 
| 856 | 
            +
                    }
         | 
| 857 | 
            +
                  ],
         | 
| 858 | 
            +
                  "name": "exists",
         | 
| 859 | 
            +
                  "outputs": [
         | 
| 860 | 
            +
                    {
         | 
| 861 | 
            +
                      "internalType": "bool",
         | 
| 862 | 
            +
                      "name": "",
         | 
| 863 | 
            +
                      "type": "bool"
         | 
| 864 | 
            +
                    }
         | 
| 865 | 
            +
                  ],
         | 
| 866 | 
            +
                  "stateMutability": "view",
         | 
| 867 | 
            +
                  "type": "function"
         | 
| 868 | 
            +
                },
         | 
| 869 | 
            +
                {
         | 
| 870 | 
            +
                  "inputs": [
         | 
| 871 | 
            +
                    {
         | 
| 872 | 
            +
                      "internalType": "NftId",
         | 
| 873 | 
            +
                      "name": "stakeNftId",
         | 
| 874 | 
            +
                      "type": "uint96"
         | 
| 875 | 
            +
                    }
         | 
| 876 | 
            +
                  ],
         | 
| 877 | 
            +
                  "name": "exists",
         | 
| 878 | 
            +
                  "outputs": [
         | 
| 879 | 
            +
                    {
         | 
| 880 | 
            +
                      "internalType": "bool",
         | 
| 881 | 
            +
                      "name": "",
         | 
| 882 | 
            +
                      "type": "bool"
         | 
| 883 | 
            +
                    }
         | 
| 884 | 
            +
                  ],
         | 
| 885 | 
            +
                  "stateMutability": "view",
         | 
| 886 | 
            +
                  "type": "function"
         | 
| 887 | 
            +
                },
         | 
| 888 | 
            +
                {
         | 
| 889 | 
            +
                  "inputs": [
         | 
| 890 | 
            +
                    {
         | 
| 891 | 
            +
                      "internalType": "Key32",
         | 
| 892 | 
            +
                      "name": "key32",
         | 
| 893 | 
            +
                      "type": "bytes32"
         | 
| 894 | 
            +
                    }
         | 
| 895 | 
            +
                  ],
         | 
| 896 | 
            +
                  "name": "get",
         | 
| 897 | 
            +
                  "outputs": [
         | 
| 898 | 
            +
                    {
         | 
| 899 | 
            +
                      "components": [
         | 
| 900 | 
            +
                        {
         | 
| 901 | 
            +
                          "components": [
         | 
| 902 | 
            +
                            {
         | 
| 903 | 
            +
                              "internalType": "ObjectType",
         | 
| 904 | 
            +
                              "name": "objectType",
         | 
| 905 | 
            +
                              "type": "uint8"
         | 
| 906 | 
            +
                            },
         | 
| 907 | 
            +
                            {
         | 
| 908 | 
            +
                              "internalType": "StateId",
         | 
| 909 | 
            +
                              "name": "state",
         | 
| 910 | 
            +
                              "type": "uint8"
         | 
| 911 | 
            +
                            },
         | 
| 912 | 
            +
                            {
         | 
| 913 | 
            +
                              "internalType": "Blocknumber",
         | 
| 914 | 
            +
                              "name": "updatedIn",
         | 
| 915 | 
            +
                              "type": "uint32"
         | 
| 916 | 
            +
                            },
         | 
| 917 | 
            +
                            {
         | 
| 918 | 
            +
                              "internalType": "Blocknumber",
         | 
| 919 | 
            +
                              "name": "createdIn",
         | 
| 920 | 
            +
                              "type": "uint32"
         | 
| 921 | 
            +
                            }
         | 
| 922 | 
            +
                          ],
         | 
| 923 | 
            +
                          "internalType": "struct IKeyValueStore.Metadata",
         | 
| 924 | 
            +
                          "name": "metadata",
         | 
| 925 | 
            +
                          "type": "tuple"
         | 
| 926 | 
            +
                        },
         | 
| 927 | 
            +
                        {
         | 
| 928 | 
            +
                          "internalType": "bytes",
         | 
| 929 | 
            +
                          "name": "data",
         | 
| 930 | 
            +
                          "type": "bytes"
         | 
| 931 | 
            +
                        }
         | 
| 932 | 
            +
                      ],
         | 
| 933 | 
            +
                      "internalType": "struct IKeyValueStore.Value",
         | 
| 934 | 
            +
                      "name": "value",
         | 
| 935 | 
            +
                      "type": "tuple"
         | 
| 936 | 
            +
                    }
         | 
| 937 | 
            +
                  ],
         | 
| 938 | 
            +
                  "stateMutability": "view",
         | 
| 939 | 
            +
                  "type": "function"
         | 
| 940 | 
            +
                },
         | 
| 941 | 
            +
                {
         | 
| 942 | 
            +
                  "inputs": [
         | 
| 943 | 
            +
                    {
         | 
| 944 | 
            +
                      "internalType": "NftId",
         | 
| 945 | 
            +
                      "name": "nftId",
         | 
| 946 | 
            +
                      "type": "uint96"
         | 
| 947 | 
            +
                    }
         | 
| 948 | 
            +
                  ],
         | 
| 949 | 
            +
                  "name": "getBalanceUpdatedAt",
         | 
| 950 | 
            +
                  "outputs": [
         | 
| 951 | 
            +
                    {
         | 
| 952 | 
            +
                      "internalType": "Timestamp",
         | 
| 953 | 
            +
                      "name": "updatedAt",
         | 
| 954 | 
            +
                      "type": "uint40"
         | 
| 955 | 
            +
                    }
         | 
| 956 | 
            +
                  ],
         | 
| 957 | 
            +
                  "stateMutability": "view",
         | 
| 958 | 
            +
                  "type": "function"
         | 
| 959 | 
            +
                },
         | 
| 960 | 
            +
                {
         | 
| 961 | 
            +
                  "inputs": [
         | 
| 962 | 
            +
                    {
         | 
| 963 | 
            +
                      "internalType": "NftId",
         | 
| 964 | 
            +
                      "name": "nftId",
         | 
| 965 | 
            +
                      "type": "uint96"
         | 
| 966 | 
            +
                    }
         | 
| 967 | 
            +
                  ],
         | 
| 968 | 
            +
                  "name": "getBalanceUpdatedIn",
         | 
| 969 | 
            +
                  "outputs": [
         | 
| 970 | 
            +
                    {
         | 
| 971 | 
            +
                      "internalType": "Blocknumber",
         | 
| 972 | 
            +
                      "name": "blocknumber",
         | 
| 973 | 
            +
                      "type": "uint32"
         | 
| 974 | 
            +
                    }
         | 
| 975 | 
            +
                  ],
         | 
| 976 | 
            +
                  "stateMutability": "view",
         | 
| 977 | 
            +
                  "type": "function"
         | 
| 978 | 
            +
                },
         | 
| 979 | 
            +
                {
         | 
| 980 | 
            +
                  "inputs": [
         | 
| 981 | 
            +
                    {
         | 
| 982 | 
            +
                      "internalType": "Key32",
         | 
| 983 | 
            +
                      "name": "key32",
         | 
| 984 | 
            +
                      "type": "bytes32"
         | 
| 985 | 
            +
                    }
         | 
| 986 | 
            +
                  ],
         | 
| 987 | 
            +
                  "name": "getData",
         | 
| 988 | 
            +
                  "outputs": [
         | 
| 989 | 
            +
                    {
         | 
| 990 | 
            +
                      "internalType": "bytes",
         | 
| 991 | 
            +
                      "name": "data",
         | 
| 992 | 
            +
                      "type": "bytes"
         | 
| 993 | 
            +
                    }
         | 
| 994 | 
            +
                  ],
         | 
| 995 | 
            +
                  "stateMutability": "view",
         | 
| 996 | 
            +
                  "type": "function"
         | 
| 997 | 
            +
                },
         | 
| 998 | 
            +
                {
         | 
| 999 | 
            +
                  "inputs": [
         | 
| 1000 | 
            +
                    {
         | 
| 1001 | 
            +
                      "internalType": "ObjectType",
         | 
| 1002 | 
            +
                      "name": "objectType",
         | 
| 1003 | 
            +
                      "type": "uint8"
         | 
| 1004 | 
            +
                    }
         | 
| 1005 | 
            +
                  ],
         | 
| 1006 | 
            +
                  "name": "getInitialState",
         | 
| 1007 | 
            +
                  "outputs": [
         | 
| 1008 | 
            +
                    {
         | 
| 1009 | 
            +
                      "internalType": "StateId",
         | 
| 1010 | 
            +
                      "name": "",
         | 
| 1011 | 
            +
                      "type": "uint8"
         | 
| 1012 | 
            +
                    }
         | 
| 1013 | 
            +
                  ],
         | 
| 1014 | 
            +
                  "stateMutability": "view",
         | 
| 1015 | 
            +
                  "type": "function"
         | 
| 1016 | 
            +
                },
         | 
| 1017 | 
            +
                {
         | 
| 1018 | 
            +
                  "inputs": [
         | 
| 1019 | 
            +
                    {
         | 
| 1020 | 
            +
                      "internalType": "Key32",
         | 
| 1021 | 
            +
                      "name": "key32",
         | 
| 1022 | 
            +
                      "type": "bytes32"
         | 
| 1023 | 
            +
                    }
         | 
| 1024 | 
            +
                  ],
         | 
| 1025 | 
            +
                  "name": "getMetadata",
         | 
| 1026 | 
            +
                  "outputs": [
         | 
| 1027 | 
            +
                    {
         | 
| 1028 | 
            +
                      "components": [
         | 
| 1029 | 
            +
                        {
         | 
| 1030 | 
            +
                          "internalType": "ObjectType",
         | 
| 1031 | 
            +
                          "name": "objectType",
         | 
| 1032 | 
            +
                          "type": "uint8"
         | 
| 1033 | 
            +
                        },
         | 
| 1034 | 
            +
                        {
         | 
| 1035 | 
            +
                          "internalType": "StateId",
         | 
| 1036 | 
            +
                          "name": "state",
         | 
| 1037 | 
            +
                          "type": "uint8"
         | 
| 1038 | 
            +
                        },
         | 
| 1039 | 
            +
                        {
         | 
| 1040 | 
            +
                          "internalType": "Blocknumber",
         | 
| 1041 | 
            +
                          "name": "updatedIn",
         | 
| 1042 | 
            +
                          "type": "uint32"
         | 
| 1043 | 
            +
                        },
         | 
| 1044 | 
            +
                        {
         | 
| 1045 | 
            +
                          "internalType": "Blocknumber",
         | 
| 1046 | 
            +
                          "name": "createdIn",
         | 
| 1047 | 
            +
                          "type": "uint32"
         | 
| 1048 | 
            +
                        }
         | 
| 1049 | 
            +
                      ],
         | 
| 1050 | 
            +
                      "internalType": "struct IKeyValueStore.Metadata",
         | 
| 1051 | 
            +
                      "name": "metadata",
         | 
| 1052 | 
            +
                      "type": "tuple"
         | 
| 1053 | 
            +
                    }
         | 
| 1054 | 
            +
                  ],
         | 
| 1055 | 
            +
                  "stateMutability": "view",
         | 
| 1056 | 
            +
                  "type": "function"
         | 
| 1057 | 
            +
                },
         | 
| 1058 | 
            +
                {
         | 
| 1059 | 
            +
                  "inputs": [
         | 
| 1060 | 
            +
                    {
         | 
| 1061 | 
            +
                      "internalType": "NftId",
         | 
| 1062 | 
            +
                      "name": "nftId",
         | 
| 1063 | 
            +
                      "type": "uint96"
         | 
| 1064 | 
            +
                    }
         | 
| 1065 | 
            +
                  ],
         | 
| 1066 | 
            +
                  "name": "getRequiredStakeBalance",
         | 
| 1067 | 
            +
                  "outputs": [
         | 
| 1068 | 
            +
                    {
         | 
| 1069 | 
            +
                      "internalType": "Amount",
         | 
| 1070 | 
            +
                      "name": "requiredAmount",
         | 
| 1071 | 
            +
                      "type": "uint96"
         | 
| 1072 | 
            +
                    }
         | 
| 1073 | 
            +
                  ],
         | 
| 1074 | 
            +
                  "stateMutability": "view",
         | 
| 1075 | 
            +
                  "type": "function"
         | 
| 1076 | 
            +
                },
         | 
| 1077 | 
            +
                {
         | 
| 1078 | 
            +
                  "inputs": [
         | 
| 1079 | 
            +
                    {
         | 
| 1080 | 
            +
                      "internalType": "NftId",
         | 
| 1081 | 
            +
                      "name": "nftId",
         | 
| 1082 | 
            +
                      "type": "uint96"
         | 
| 1083 | 
            +
                    }
         | 
| 1084 | 
            +
                  ],
         | 
| 1085 | 
            +
                  "name": "getReserveBalance",
         | 
| 1086 | 
            +
                  "outputs": [
         | 
| 1087 | 
            +
                    {
         | 
| 1088 | 
            +
                      "internalType": "Amount",
         | 
| 1089 | 
            +
                      "name": "balanceAmount",
         | 
| 1090 | 
            +
                      "type": "uint96"
         | 
| 1091 | 
            +
                    }
         | 
| 1092 | 
            +
                  ],
         | 
| 1093 | 
            +
                  "stateMutability": "view",
         | 
| 1094 | 
            +
                  "type": "function"
         | 
| 1095 | 
            +
                },
         | 
| 1096 | 
            +
                {
         | 
| 1097 | 
            +
                  "inputs": [
         | 
| 1098 | 
            +
                    {
         | 
| 1099 | 
            +
                      "internalType": "NftId",
         | 
| 1100 | 
            +
                      "name": "nftId",
         | 
| 1101 | 
            +
                      "type": "uint96"
         | 
| 1102 | 
            +
                    }
         | 
| 1103 | 
            +
                  ],
         | 
| 1104 | 
            +
                  "name": "getRewardBalance",
         | 
| 1105 | 
            +
                  "outputs": [
         | 
| 1106 | 
            +
                    {
         | 
| 1107 | 
            +
                      "internalType": "Amount",
         | 
| 1108 | 
            +
                      "name": "rewardAmount",
         | 
| 1109 | 
            +
                      "type": "uint96"
         | 
| 1110 | 
            +
                    }
         | 
| 1111 | 
            +
                  ],
         | 
| 1112 | 
            +
                  "stateMutability": "view",
         | 
| 1113 | 
            +
                  "type": "function"
         | 
| 1114 | 
            +
                },
         | 
| 1115 | 
            +
                {
         | 
| 1116 | 
            +
                  "inputs": [
         | 
| 1117 | 
            +
                    {
         | 
| 1118 | 
            +
                      "internalType": "NftId",
         | 
| 1119 | 
            +
                      "name": "nftId",
         | 
| 1120 | 
            +
                      "type": "uint96"
         | 
| 1121 | 
            +
                    }
         | 
| 1122 | 
            +
                  ],
         | 
| 1123 | 
            +
                  "name": "getStakeBalance",
         | 
| 1124 | 
            +
                  "outputs": [
         | 
| 1125 | 
            +
                    {
         | 
| 1126 | 
            +
                      "internalType": "Amount",
         | 
| 1127 | 
            +
                      "name": "balanceAmount",
         | 
| 1128 | 
            +
                      "type": "uint96"
         | 
| 1129 | 
            +
                    }
         | 
| 1130 | 
            +
                  ],
         | 
| 1131 | 
            +
                  "stateMutability": "view",
         | 
| 1132 | 
            +
                  "type": "function"
         | 
| 1133 | 
            +
                },
         | 
| 1134 | 
            +
                {
         | 
| 1135 | 
            +
                  "inputs": [
         | 
| 1136 | 
            +
                    {
         | 
| 1137 | 
            +
                      "internalType": "NftId",
         | 
| 1138 | 
            +
                      "name": "nftId",
         | 
| 1139 | 
            +
                      "type": "uint96"
         | 
| 1140 | 
            +
                    }
         | 
| 1141 | 
            +
                  ],
         | 
| 1142 | 
            +
                  "name": "getStakeBalances",
         | 
| 1143 | 
            +
                  "outputs": [
         | 
| 1144 | 
            +
                    {
         | 
| 1145 | 
            +
                      "internalType": "Amount",
         | 
| 1146 | 
            +
                      "name": "stakeBalance",
         | 
| 1147 | 
            +
                      "type": "uint96"
         | 
| 1148 | 
            +
                    },
         | 
| 1149 | 
            +
                    {
         | 
| 1150 | 
            +
                      "internalType": "Amount",
         | 
| 1151 | 
            +
                      "name": "rewardBalance",
         | 
| 1152 | 
            +
                      "type": "uint96"
         | 
| 1153 | 
            +
                    },
         | 
| 1154 | 
            +
                    {
         | 
| 1155 | 
            +
                      "internalType": "Timestamp",
         | 
| 1156 | 
            +
                      "name": "lastUpdatedAt",
         | 
| 1157 | 
            +
                      "type": "uint40"
         | 
| 1158 | 
            +
                    }
         | 
| 1159 | 
            +
                  ],
         | 
| 1160 | 
            +
                  "stateMutability": "view",
         | 
| 1161 | 
            +
                  "type": "function"
         | 
| 1162 | 
            +
                },
         | 
| 1163 | 
            +
                {
         | 
| 1164 | 
            +
                  "inputs": [
         | 
| 1165 | 
            +
                    {
         | 
| 1166 | 
            +
                      "internalType": "uint256",
         | 
| 1167 | 
            +
                      "name": "chainId",
         | 
| 1168 | 
            +
                      "type": "uint256"
         | 
| 1169 | 
            +
                    },
         | 
| 1170 | 
            +
                    {
         | 
| 1171 | 
            +
                      "internalType": "address",
         | 
| 1172 | 
            +
                      "name": "token",
         | 
| 1173 | 
            +
                      "type": "address"
         | 
| 1174 | 
            +
                    }
         | 
| 1175 | 
            +
                  ],
         | 
| 1176 | 
            +
                  "name": "getStakingRate",
         | 
| 1177 | 
            +
                  "outputs": [
         | 
| 1178 | 
            +
                    {
         | 
| 1179 | 
            +
                      "internalType": "UFixed",
         | 
| 1180 | 
            +
                      "name": "stakingRate",
         | 
| 1181 | 
            +
                      "type": "uint256"
         | 
| 1182 | 
            +
                    }
         | 
| 1183 | 
            +
                  ],
         | 
| 1184 | 
            +
                  "stateMutability": "view",
         | 
| 1185 | 
            +
                  "type": "function"
         | 
| 1186 | 
            +
                },
         | 
| 1187 | 
            +
                {
         | 
| 1188 | 
            +
                  "inputs": [],
         | 
| 1189 | 
            +
                  "name": "getStakingReader",
         | 
| 1190 | 
            +
                  "outputs": [
         | 
| 1191 | 
            +
                    {
         | 
| 1192 | 
            +
                      "internalType": "contract StakingReader",
         | 
| 1193 | 
            +
                      "name": "stakingReader",
         | 
| 1194 | 
            +
                      "type": "address"
         | 
| 1195 | 
            +
                    }
         | 
| 1196 | 
            +
                  ],
         | 
| 1197 | 
            +
                  "stateMutability": "view",
         | 
| 1198 | 
            +
                  "type": "function"
         | 
| 1199 | 
            +
                },
         | 
| 1200 | 
            +
                {
         | 
| 1201 | 
            +
                  "inputs": [
         | 
| 1202 | 
            +
                    {
         | 
| 1203 | 
            +
                      "internalType": "Key32",
         | 
| 1204 | 
            +
                      "name": "key32",
         | 
| 1205 | 
            +
                      "type": "bytes32"
         | 
| 1206 | 
            +
                    }
         | 
| 1207 | 
            +
                  ],
         | 
| 1208 | 
            +
                  "name": "getState",
         | 
| 1209 | 
            +
                  "outputs": [
         | 
| 1210 | 
            +
                    {
         | 
| 1211 | 
            +
                      "internalType": "StateId",
         | 
| 1212 | 
            +
                      "name": "state",
         | 
| 1213 | 
            +
                      "type": "uint8"
         | 
| 1214 | 
            +
                    }
         | 
| 1215 | 
            +
                  ],
         | 
| 1216 | 
            +
                  "stateMutability": "view",
         | 
| 1217 | 
            +
                  "type": "function"
         | 
| 1218 | 
            +
                },
         | 
| 1219 | 
            +
                {
         | 
| 1220 | 
            +
                  "inputs": [
         | 
| 1221 | 
            +
                    {
         | 
| 1222 | 
            +
                      "internalType": "NftId",
         | 
| 1223 | 
            +
                      "name": "nftId",
         | 
| 1224 | 
            +
                      "type": "uint96"
         | 
| 1225 | 
            +
                    }
         | 
| 1226 | 
            +
                  ],
         | 
| 1227 | 
            +
                  "name": "getTargetBalances",
         | 
| 1228 | 
            +
                  "outputs": [
         | 
| 1229 | 
            +
                    {
         | 
| 1230 | 
            +
                      "internalType": "Amount",
         | 
| 1231 | 
            +
                      "name": "stakeBalance",
         | 
| 1232 | 
            +
                      "type": "uint96"
         | 
| 1233 | 
            +
                    },
         | 
| 1234 | 
            +
                    {
         | 
| 1235 | 
            +
                      "internalType": "Amount",
         | 
| 1236 | 
            +
                      "name": "rewardBalance",
         | 
| 1237 | 
            +
                      "type": "uint96"
         | 
| 1238 | 
            +
                    },
         | 
| 1239 | 
            +
                    {
         | 
| 1240 | 
            +
                      "internalType": "Amount",
         | 
| 1241 | 
            +
                      "name": "reserveBalance",
         | 
| 1242 | 
            +
                      "type": "uint96"
         | 
| 1243 | 
            +
                    },
         | 
| 1244 | 
            +
                    {
         | 
| 1245 | 
            +
                      "internalType": "Blocknumber",
         | 
| 1246 | 
            +
                      "name": "lastUpdatedIn",
         | 
| 1247 | 
            +
                      "type": "uint32"
         | 
| 1248 | 
            +
                    }
         | 
| 1249 | 
            +
                  ],
         | 
| 1250 | 
            +
                  "stateMutability": "view",
         | 
| 1251 | 
            +
                  "type": "function"
         | 
| 1252 | 
            +
                },
         | 
| 1253 | 
            +
                {
         | 
| 1254 | 
            +
                  "inputs": [],
         | 
| 1255 | 
            +
                  "name": "getTargetManager",
         | 
| 1256 | 
            +
                  "outputs": [
         | 
| 1257 | 
            +
                    {
         | 
| 1258 | 
            +
                      "internalType": "contract NftIdSetManager",
         | 
| 1259 | 
            +
                      "name": "targetManager",
         | 
| 1260 | 
            +
                      "type": "address"
         | 
| 1261 | 
            +
                    }
         | 
| 1262 | 
            +
                  ],
         | 
| 1263 | 
            +
                  "stateMutability": "view",
         | 
| 1264 | 
            +
                  "type": "function"
         | 
| 1265 | 
            +
                },
         | 
| 1266 | 
            +
                {
         | 
| 1267 | 
            +
                  "inputs": [
         | 
| 1268 | 
            +
                    {
         | 
| 1269 | 
            +
                      "internalType": "NftId",
         | 
| 1270 | 
            +
                      "name": "nftId",
         | 
| 1271 | 
            +
                      "type": "uint96"
         | 
| 1272 | 
            +
                    },
         | 
| 1273 | 
            +
                    {
         | 
| 1274 | 
            +
                      "internalType": "address",
         | 
| 1275 | 
            +
                      "name": "token",
         | 
| 1276 | 
            +
                      "type": "address"
         | 
| 1277 | 
            +
                    }
         | 
| 1278 | 
            +
                  ],
         | 
| 1279 | 
            +
                  "name": "getTotalValueLocked",
         | 
| 1280 | 
            +
                  "outputs": [
         | 
| 1281 | 
            +
                    {
         | 
| 1282 | 
            +
                      "internalType": "Amount",
         | 
| 1283 | 
            +
                      "name": "tvlBalanceAmount",
         | 
| 1284 | 
            +
                      "type": "uint96"
         | 
| 1285 | 
            +
                    }
         | 
| 1286 | 
            +
                  ],
         | 
| 1287 | 
            +
                  "stateMutability": "view",
         | 
| 1288 | 
            +
                  "type": "function"
         | 
| 1289 | 
            +
                },
         | 
| 1290 | 
            +
                {
         | 
| 1291 | 
            +
                  "inputs": [
         | 
| 1292 | 
            +
                    {
         | 
| 1293 | 
            +
                      "internalType": "ObjectType",
         | 
| 1294 | 
            +
                      "name": "objectType",
         | 
| 1295 | 
            +
                      "type": "uint8"
         | 
| 1296 | 
            +
                    }
         | 
| 1297 | 
            +
                  ],
         | 
| 1298 | 
            +
                  "name": "hasLifecycle",
         | 
| 1299 | 
            +
                  "outputs": [
         | 
| 1300 | 
            +
                    {
         | 
| 1301 | 
            +
                      "internalType": "bool",
         | 
| 1302 | 
            +
                      "name": "",
         | 
| 1303 | 
            +
                      "type": "bool"
         | 
| 1304 | 
            +
                    }
         | 
| 1305 | 
            +
                  ],
         | 
| 1306 | 
            +
                  "stateMutability": "view",
         | 
| 1307 | 
            +
                  "type": "function"
         | 
| 1308 | 
            +
                },
         | 
| 1309 | 
            +
                {
         | 
| 1310 | 
            +
                  "inputs": [
         | 
| 1311 | 
            +
                    {
         | 
| 1312 | 
            +
                      "internalType": "NftId",
         | 
| 1313 | 
            +
                      "name": "targetNftId",
         | 
| 1314 | 
            +
                      "type": "uint96"
         | 
| 1315 | 
            +
                    },
         | 
| 1316 | 
            +
                    {
         | 
| 1317 | 
            +
                      "internalType": "Amount",
         | 
| 1318 | 
            +
                      "name": "dipAmount",
         | 
| 1319 | 
            +
                      "type": "uint96"
         | 
| 1320 | 
            +
                    }
         | 
| 1321 | 
            +
                  ],
         | 
| 1322 | 
            +
                  "name": "increaseReserves",
         | 
| 1323 | 
            +
                  "outputs": [
         | 
| 1324 | 
            +
                    {
         | 
| 1325 | 
            +
                      "internalType": "Amount",
         | 
| 1326 | 
            +
                      "name": "newReserveBalance",
         | 
| 1327 | 
            +
                      "type": "uint96"
         | 
| 1328 | 
            +
                    }
         | 
| 1329 | 
            +
                  ],
         | 
| 1330 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1331 | 
            +
                  "type": "function"
         | 
| 1332 | 
            +
                },
         | 
| 1333 | 
            +
                {
         | 
| 1334 | 
            +
                  "inputs": [
         | 
| 1335 | 
            +
                    {
         | 
| 1336 | 
            +
                      "internalType": "NftId",
         | 
| 1337 | 
            +
                      "name": "nftId",
         | 
| 1338 | 
            +
                      "type": "uint96"
         | 
| 1339 | 
            +
                    },
         | 
| 1340 | 
            +
                    {
         | 
| 1341 | 
            +
                      "internalType": "NftId",
         | 
| 1342 | 
            +
                      "name": "targetNftId",
         | 
| 1343 | 
            +
                      "type": "uint96"
         | 
| 1344 | 
            +
                    },
         | 
| 1345 | 
            +
                    {
         | 
| 1346 | 
            +
                      "internalType": "Amount",
         | 
| 1347 | 
            +
                      "name": "amount",
         | 
| 1348 | 
            +
                      "type": "uint96"
         | 
| 1349 | 
            +
                    }
         | 
| 1350 | 
            +
                  ],
         | 
| 1351 | 
            +
                  "name": "increaseStake",
         | 
| 1352 | 
            +
                  "outputs": [],
         | 
| 1353 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1354 | 
            +
                  "type": "function"
         | 
| 1355 | 
            +
                },
         | 
| 1356 | 
            +
                {
         | 
| 1357 | 
            +
                  "inputs": [
         | 
| 1358 | 
            +
                    {
         | 
| 1359 | 
            +
                      "internalType": "NftId",
         | 
| 1360 | 
            +
                      "name": "targetNftId",
         | 
| 1361 | 
            +
                      "type": "uint96"
         | 
| 1362 | 
            +
                    },
         | 
| 1363 | 
            +
                    {
         | 
| 1364 | 
            +
                      "internalType": "UFixed",
         | 
| 1365 | 
            +
                      "name": "stakingRate",
         | 
| 1366 | 
            +
                      "type": "uint256"
         | 
| 1367 | 
            +
                    },
         | 
| 1368 | 
            +
                    {
         | 
| 1369 | 
            +
                      "internalType": "address",
         | 
| 1370 | 
            +
                      "name": "token",
         | 
| 1371 | 
            +
                      "type": "address"
         | 
| 1372 | 
            +
                    },
         | 
| 1373 | 
            +
                    {
         | 
| 1374 | 
            +
                      "internalType": "Amount",
         | 
| 1375 | 
            +
                      "name": "amount",
         | 
| 1376 | 
            +
                      "type": "uint96"
         | 
| 1377 | 
            +
                    }
         | 
| 1378 | 
            +
                  ],
         | 
| 1379 | 
            +
                  "name": "increaseTotalValueLocked",
         | 
| 1380 | 
            +
                  "outputs": [
         | 
| 1381 | 
            +
                    {
         | 
| 1382 | 
            +
                      "internalType": "Amount",
         | 
| 1383 | 
            +
                      "name": "newBalance",
         | 
| 1384 | 
            +
                      "type": "uint96"
         | 
| 1385 | 
            +
                    }
         | 
| 1386 | 
            +
                  ],
         | 
| 1387 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1388 | 
            +
                  "type": "function"
         | 
| 1389 | 
            +
                },
         | 
| 1390 | 
            +
                {
         | 
| 1391 | 
            +
                  "inputs": [],
         | 
| 1392 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 1393 | 
            +
                  "outputs": [
         | 
| 1394 | 
            +
                    {
         | 
| 1395 | 
            +
                      "internalType": "bytes4",
         | 
| 1396 | 
            +
                      "name": "",
         | 
| 1397 | 
            +
                      "type": "bytes4"
         | 
| 1398 | 
            +
                    }
         | 
| 1399 | 
            +
                  ],
         | 
| 1400 | 
            +
                  "stateMutability": "view",
         | 
| 1401 | 
            +
                  "type": "function"
         | 
| 1402 | 
            +
                },
         | 
| 1403 | 
            +
                {
         | 
| 1404 | 
            +
                  "inputs": [
         | 
| 1405 | 
            +
                    {
         | 
| 1406 | 
            +
                      "internalType": "ObjectType",
         | 
| 1407 | 
            +
                      "name": "objectType",
         | 
| 1408 | 
            +
                      "type": "uint8"
         | 
| 1409 | 
            +
                    },
         | 
| 1410 | 
            +
                    {
         | 
| 1411 | 
            +
                      "internalType": "StateId",
         | 
| 1412 | 
            +
                      "name": "fromId",
         | 
| 1413 | 
            +
                      "type": "uint8"
         | 
| 1414 | 
            +
                    },
         | 
| 1415 | 
            +
                    {
         | 
| 1416 | 
            +
                      "internalType": "StateId",
         | 
| 1417 | 
            +
                      "name": "toId",
         | 
| 1418 | 
            +
                      "type": "uint8"
         | 
| 1419 | 
            +
                    }
         | 
| 1420 | 
            +
                  ],
         | 
| 1421 | 
            +
                  "name": "isValidTransition",
         | 
| 1422 | 
            +
                  "outputs": [
         | 
| 1423 | 
            +
                    {
         | 
| 1424 | 
            +
                      "internalType": "bool",
         | 
| 1425 | 
            +
                      "name": "",
         | 
| 1426 | 
            +
                      "type": "bool"
         | 
| 1427 | 
            +
                    }
         | 
| 1428 | 
            +
                  ],
         | 
| 1429 | 
            +
                  "stateMutability": "view",
         | 
| 1430 | 
            +
                  "type": "function"
         | 
| 1431 | 
            +
                },
         | 
| 1432 | 
            +
                {
         | 
| 1433 | 
            +
                  "inputs": [
         | 
| 1434 | 
            +
                    {
         | 
| 1435 | 
            +
                      "internalType": "NftId",
         | 
| 1436 | 
            +
                      "name": "nftId",
         | 
| 1437 | 
            +
                      "type": "uint96"
         | 
| 1438 | 
            +
                    },
         | 
| 1439 | 
            +
                    {
         | 
| 1440 | 
            +
                      "internalType": "NftId",
         | 
| 1441 | 
            +
                      "name": "targetNftId",
         | 
| 1442 | 
            +
                      "type": "uint96"
         | 
| 1443 | 
            +
                    },
         | 
| 1444 | 
            +
                    {
         | 
| 1445 | 
            +
                      "internalType": "Amount",
         | 
| 1446 | 
            +
                      "name": "rewardIncrementAmount",
         | 
| 1447 | 
            +
                      "type": "uint96"
         | 
| 1448 | 
            +
                    }
         | 
| 1449 | 
            +
                  ],
         | 
| 1450 | 
            +
                  "name": "restakeRewards",
         | 
| 1451 | 
            +
                  "outputs": [],
         | 
| 1452 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1453 | 
            +
                  "type": "function"
         | 
| 1454 | 
            +
                },
         | 
| 1455 | 
            +
                {
         | 
| 1456 | 
            +
                  "inputs": [
         | 
| 1457 | 
            +
                    {
         | 
| 1458 | 
            +
                      "internalType": "address",
         | 
| 1459 | 
            +
                      "name": "newAuthority",
         | 
| 1460 | 
            +
                      "type": "address"
         | 
| 1461 | 
            +
                    }
         | 
| 1462 | 
            +
                  ],
         | 
| 1463 | 
            +
                  "name": "setAuthority",
         | 
| 1464 | 
            +
                  "outputs": [],
         | 
| 1465 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1466 | 
            +
                  "type": "function"
         | 
| 1467 | 
            +
                },
         | 
| 1468 | 
            +
                {
         | 
| 1469 | 
            +
                  "inputs": [
         | 
| 1470 | 
            +
                    {
         | 
| 1471 | 
            +
                      "internalType": "uint256",
         | 
| 1472 | 
            +
                      "name": "chainId",
         | 
| 1473 | 
            +
                      "type": "uint256"
         | 
| 1474 | 
            +
                    },
         | 
| 1475 | 
            +
                    {
         | 
| 1476 | 
            +
                      "internalType": "address",
         | 
| 1477 | 
            +
                      "name": "token",
         | 
| 1478 | 
            +
                      "type": "address"
         | 
| 1479 | 
            +
                    },
         | 
| 1480 | 
            +
                    {
         | 
| 1481 | 
            +
                      "internalType": "UFixed",
         | 
| 1482 | 
            +
                      "name": "stakingRate",
         | 
| 1483 | 
            +
                      "type": "uint256"
         | 
| 1484 | 
            +
                    }
         | 
| 1485 | 
            +
                  ],
         | 
| 1486 | 
            +
                  "name": "setStakingRate",
         | 
| 1487 | 
            +
                  "outputs": [],
         | 
| 1488 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1489 | 
            +
                  "type": "function"
         | 
| 1490 | 
            +
                },
         | 
| 1491 | 
            +
                {
         | 
| 1492 | 
            +
                  "inputs": [
         | 
| 1493 | 
            +
                    {
         | 
| 1494 | 
            +
                      "internalType": "ObjectType",
         | 
| 1495 | 
            +
                      "name": "objectType",
         | 
| 1496 | 
            +
                      "type": "uint8"
         | 
| 1497 | 
            +
                    },
         | 
| 1498 | 
            +
                    {
         | 
| 1499 | 
            +
                      "internalType": "KeyId",
         | 
| 1500 | 
            +
                      "name": "id",
         | 
| 1501 | 
            +
                      "type": "bytes31"
         | 
| 1502 | 
            +
                    }
         | 
| 1503 | 
            +
                  ],
         | 
| 1504 | 
            +
                  "name": "toKey32",
         | 
| 1505 | 
            +
                  "outputs": [
         | 
| 1506 | 
            +
                    {
         | 
| 1507 | 
            +
                      "internalType": "Key32",
         | 
| 1508 | 
            +
                      "name": "",
         | 
| 1509 | 
            +
                      "type": "bytes32"
         | 
| 1510 | 
            +
                    }
         | 
| 1511 | 
            +
                  ],
         | 
| 1512 | 
            +
                  "stateMutability": "pure",
         | 
| 1513 | 
            +
                  "type": "function"
         | 
| 1514 | 
            +
                },
         | 
| 1515 | 
            +
                {
         | 
| 1516 | 
            +
                  "inputs": [
         | 
| 1517 | 
            +
                    {
         | 
| 1518 | 
            +
                      "internalType": "NftId",
         | 
| 1519 | 
            +
                      "name": "nftId",
         | 
| 1520 | 
            +
                      "type": "uint96"
         | 
| 1521 | 
            +
                    },
         | 
| 1522 | 
            +
                    {
         | 
| 1523 | 
            +
                      "internalType": "NftId",
         | 
| 1524 | 
            +
                      "name": "targetNftId",
         | 
| 1525 | 
            +
                      "type": "uint96"
         | 
| 1526 | 
            +
                    },
         | 
| 1527 | 
            +
                    {
         | 
| 1528 | 
            +
                      "internalType": "Amount",
         | 
| 1529 | 
            +
                      "name": "maxUnstakeAmount",
         | 
| 1530 | 
            +
                      "type": "uint96"
         | 
| 1531 | 
            +
                    },
         | 
| 1532 | 
            +
                    {
         | 
| 1533 | 
            +
                      "internalType": "Amount",
         | 
| 1534 | 
            +
                      "name": "maxClaimAmount",
         | 
| 1535 | 
            +
                      "type": "uint96"
         | 
| 1536 | 
            +
                    }
         | 
| 1537 | 
            +
                  ],
         | 
| 1538 | 
            +
                  "name": "unstakeUpTo",
         | 
| 1539 | 
            +
                  "outputs": [
         | 
| 1540 | 
            +
                    {
         | 
| 1541 | 
            +
                      "internalType": "Amount",
         | 
| 1542 | 
            +
                      "name": "unstakedAmount",
         | 
| 1543 | 
            +
                      "type": "uint96"
         | 
| 1544 | 
            +
                    },
         | 
| 1545 | 
            +
                    {
         | 
| 1546 | 
            +
                      "internalType": "Amount",
         | 
| 1547 | 
            +
                      "name": "claimedAmount",
         | 
| 1548 | 
            +
                      "type": "uint96"
         | 
| 1549 | 
            +
                    }
         | 
| 1550 | 
            +
                  ],
         | 
| 1551 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1552 | 
            +
                  "type": "function"
         | 
| 1553 | 
            +
                },
         | 
| 1554 | 
            +
                {
         | 
| 1555 | 
            +
                  "inputs": [
         | 
| 1556 | 
            +
                    {
         | 
| 1557 | 
            +
                      "internalType": "NftId",
         | 
| 1558 | 
            +
                      "name": "stakeNftId",
         | 
| 1559 | 
            +
                      "type": "uint96"
         | 
| 1560 | 
            +
                    },
         | 
| 1561 | 
            +
                    {
         | 
| 1562 | 
            +
                      "components": [
         | 
| 1563 | 
            +
                        {
         | 
| 1564 | 
            +
                          "internalType": "Timestamp",
         | 
| 1565 | 
            +
                          "name": "lockedUntil",
         | 
| 1566 | 
            +
                          "type": "uint40"
         | 
| 1567 | 
            +
                        }
         | 
| 1568 | 
            +
                      ],
         | 
| 1569 | 
            +
                      "internalType": "struct IStaking.StakeInfo",
         | 
| 1570 | 
            +
                      "name": "stakeInfo",
         | 
| 1571 | 
            +
                      "type": "tuple"
         | 
| 1572 | 
            +
                    }
         | 
| 1573 | 
            +
                  ],
         | 
| 1574 | 
            +
                  "name": "update",
         | 
| 1575 | 
            +
                  "outputs": [],
         | 
| 1576 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1577 | 
            +
                  "type": "function"
         | 
| 1578 | 
            +
                },
         | 
| 1579 | 
            +
                {
         | 
| 1580 | 
            +
                  "inputs": [
         | 
| 1581 | 
            +
                    {
         | 
| 1582 | 
            +
                      "internalType": "NftId",
         | 
| 1583 | 
            +
                      "name": "nftId",
         | 
| 1584 | 
            +
                      "type": "uint96"
         | 
| 1585 | 
            +
                    },
         | 
| 1586 | 
            +
                    {
         | 
| 1587 | 
            +
                      "internalType": "NftId",
         | 
| 1588 | 
            +
                      "name": "targetNftId",
         | 
| 1589 | 
            +
                      "type": "uint96"
         | 
| 1590 | 
            +
                    },
         | 
| 1591 | 
            +
                    {
         | 
| 1592 | 
            +
                      "internalType": "Amount",
         | 
| 1593 | 
            +
                      "name": "rewardIncrementAmount",
         | 
| 1594 | 
            +
                      "type": "uint96"
         | 
| 1595 | 
            +
                    }
         | 
| 1596 | 
            +
                  ],
         | 
| 1597 | 
            +
                  "name": "updateRewards",
         | 
| 1598 | 
            +
                  "outputs": [],
         | 
| 1599 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1600 | 
            +
                  "type": "function"
         | 
| 1601 | 
            +
                },
         | 
| 1602 | 
            +
                {
         | 
| 1603 | 
            +
                  "inputs": [
         | 
| 1604 | 
            +
                    {
         | 
| 1605 | 
            +
                      "internalType": "NftId",
         | 
| 1606 | 
            +
                      "name": "targetNftId",
         | 
| 1607 | 
            +
                      "type": "uint96"
         | 
| 1608 | 
            +
                    },
         | 
| 1609 | 
            +
                    {
         | 
| 1610 | 
            +
                      "components": [
         | 
| 1611 | 
            +
                        {
         | 
| 1612 | 
            +
                          "internalType": "ObjectType",
         | 
| 1613 | 
            +
                          "name": "objectType",
         | 
| 1614 | 
            +
                          "type": "uint8"
         | 
| 1615 | 
            +
                        },
         | 
| 1616 | 
            +
                        {
         | 
| 1617 | 
            +
                          "internalType": "uint256",
         | 
| 1618 | 
            +
                          "name": "chainId",
         | 
| 1619 | 
            +
                          "type": "uint256"
         | 
| 1620 | 
            +
                        },
         | 
| 1621 | 
            +
                        {
         | 
| 1622 | 
            +
                          "internalType": "Seconds",
         | 
| 1623 | 
            +
                          "name": "lockingPeriod",
         | 
| 1624 | 
            +
                          "type": "uint40"
         | 
| 1625 | 
            +
                        },
         | 
| 1626 | 
            +
                        {
         | 
| 1627 | 
            +
                          "internalType": "UFixed",
         | 
| 1628 | 
            +
                          "name": "rewardRate",
         | 
| 1629 | 
            +
                          "type": "uint256"
         | 
| 1630 | 
            +
                        }
         | 
| 1631 | 
            +
                      ],
         | 
| 1632 | 
            +
                      "internalType": "struct IStaking.TargetInfo",
         | 
| 1633 | 
            +
                      "name": "targetInfo",
         | 
| 1634 | 
            +
                      "type": "tuple"
         | 
| 1635 | 
            +
                    }
         | 
| 1636 | 
            +
                  ],
         | 
| 1637 | 
            +
                  "name": "updateTarget",
         | 
| 1638 | 
            +
                  "outputs": [],
         | 
| 1639 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1640 | 
            +
                  "type": "function"
         | 
| 1641 | 
            +
                }
         | 
| 1642 | 
            +
              ],
         | 
| 1643 | 
            +
              "bytecode": "0x60806040523480156200001157600080fd5b5060405162005d6e38038062005d6e833981016040819052620000349162000ed5565b336200004081620002d9565b506200004b6200032d565b620000ba826001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200008e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000b4919062000f14565b62000356565b600480546001600160a01b038085166001600160a01b0319928316179092556006805492841692909116919091179055604051620000f89062000eae565b604051809103906000f08015801562000115573d6000803e3d6000fd5b50600580546001600160a01b0319166001600160a01b039290921691909117905560405163efac97cf60e01b815261044d6004820152620002d19073__$94a2c899be079b00d952d0d84fffaa5c34$__9063efac97cf90602401602060405180830381865af41580156200018d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b3919062000f51565b6040518060800160405280620001ce620003da60201b60201c565b60ff1681526020016001815260200173__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63c6edc3dd6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000227573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024d919062000f71565b64ffffffffff16815260200173__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63f87bf3736040518163ffffffff1660e01b8152600401602060405180830381865af4158015620002a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c9919062000f9a565b9052620003df565b5050620011ce565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b6200033c601f5b6001620005e6565b62000348600b62000334565b62000354602062000334565b565b60005433906001600160a01b03168114620003935760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b600003620003cb576040516361798f2f60e11b81526001600160a01b03831660048201526024016200038a565b620003d682620002d9565b5050565b600190565b620004ca73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601f6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af415801562000456573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047c919062000f9a565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a00160408051601f198184030181529190526200062d565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af415801562000514573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200053a919062000fb4565b6001600160601b0383166000908152601060205260409020805463ffffffff191663ffffffff92909216919091179055620005758262000a1a565b6005546040516346f0e8a760e11b81526001600160601b03841660048201526001600160a01b0390911690638de1d14e90602401600060405180830381600087803b158015620005c457600080fd5b505af1158015620005d9573d6000803e3d6000fd5b505050505050565b905090565b60ff82811660009081526001602052604090205416156200060b576200060b62000fdc565b60ff9182166000908152600160205260409020805460ff191691909216179055565b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801562000681573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006a7919062000ff2565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015620006fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000723919062001017565b1562000748576040516307014a8d60e51b815260ff821660048201526024016200038a565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015620007b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007d8919062001017565b156200080457604051633f92eac960e21b81526004810185905260ff831660248201526044016200038a565b6200080f8262000daa565b6200083357604051636cb0978b60e11b815260ff831660048201526024016200038a565b60006200083f62000e3c565b60ff8085166000908152600160205260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021762010000600160501b0319166201000063ffffffff851690810263ffffffff60301b1916919091176601000000000000919091021784556000878152600360205260409020909150600101620008cc8682620010dc565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af415801562000940573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000966919062000ff2565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015620009b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009dd9190620011a8565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af415801562000a8b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ab1919062001017565b1562000adc576040516366d785a360e11b81526001600160601b03821660048201526024016200038a565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000b26573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b4c919062000f51565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000bdf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c05919062000f51565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000c98573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000cbe919062000f51565b600a6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af415801562000d51573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d77919062000fb4565b6001600160601b03919091166000908152600c60205260409020805463ffffffff191663ffffffff909216919091179055565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af415801562000e10573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e36919062001017565b92915050565b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af415801562000e88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005e1919062000fb4565b61077b80620055f383390190565b6001600160a01b038116811462000ed257600080fd5b50565b6000806040838503121562000ee957600080fd5b825162000ef68162000ebc565b602084015190925062000f098162000ebc565b809150509250929050565b60006020828403121562000f2757600080fd5b815162000f348162000ebc565b9392505050565b6001600160601b038116811462000ed257600080fd5b60006020828403121562000f6457600080fd5b815162000f348162000f3b565b60006020828403121562000f8457600080fd5b815164ffffffffff8116811462000f3457600080fd5b60006020828403121562000fad57600080fd5b5051919050565b60006020828403121562000fc757600080fd5b815163ffffffff8116811462000f3457600080fd5b634e487b7160e01b600052600160045260246000fd5b6000602082840312156200100557600080fd5b815160ff8116811462000f3457600080fd5b6000602082840312156200102a57600080fd5b8151801515811462000f3457600080fd5b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200106657607f821691505b6020821081036200108757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620010d757600081815260208120601f850160051c81016020861015620010b65750805b601f850160051c820191505b81811015620005d957828155600101620010c2565b505050565b81516001600160401b03811115620010f857620010f86200103b565b620011108162001109845462001051565b846200108d565b602080601f8311600181146200114857600084156200112f5750858301515b600019600386901b1c1916600185901b178555620005d9565b600085815260208120601f198616915b82811015620011795788860151825594840194600190910190840162001158565b5085821015620011985787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620011bb57600080fd5b815160ff198116811462000f3457600080fd5b61441580620011de6000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063828227de1161013b578063bf7e214f116100b8578063eb98e8a01161007c578063eb98e8a014610765578063f48016ce14610798578063fb145432146107ab578063fb39549c146107d7578063ff86054d146107ea57600080fd5b8063bf7e214f146106bc578063d7537c37146106cd578063dfb7e337146106e0578063e067350f14610726578063e9e96c701461075257600080fd5b8063a5961b4c116100ff578063a5961b4c14610572578063a8989675146105ff578063b04fa50614610612578063beba11201461067d578063bf1db3f9146106a957600080fd5b8063828227de146104995780638eaa6ac0146104dd5780638fb36037146104fd57806391a2059f1461051e5780639a7263641461055f57600080fd5b80634b51da0c116101c957806363fe327a1161018d57806363fe327a146103f2578063717f1b981461040357806377f918511461042f5780637a9e5e4b146104425780637b2155611461045557600080fd5b80634b51da0c146103745780634f9c1c091461038757806354f6127f1461039a57806362841be2146103ba5780636291423a146103cd57600080fd5b806330f441991161021057806330f44199146103055780633861317f1461031857806338a699a41461032b5780633fbdfe321461034e5780634a2101d11461036157600080fd5b806309648a9d1461024d5780630d3581811461028c578063136cfef7146102b25780631807a488146102dd5780632df8be9b146102f2575b600080fd5b61027561025b366004613b40565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b61027561029a366004613b6b565b60ff9081166000908152600160205260409020541690565b6102c56102c0366004613b9d565b610865565b6040516001600160601b039091168152602001610283565b6102f06102eb366004613bff565b610951565b005b6102f0610300366004613bff565b610a4c565b6102f0610313366004613c99565b610a5f565b6102f0610326366004613c99565b610c0b565b61033e610339366004613b40565b610d1a565b6040519015158152602001610283565b6102c561035c366004613c99565b610dab565b6102f061036f366004613c99565b610f37565b6102f0610382366004613ce4565b611017565b61033e610395366004613d59565b6110c4565b6103ad6103a8366004613b40565b61115f565b6040516102839190613dc6565b6102f06103c8366004613ce4565b611204565b6006546001600160a01b03165b6040516001600160a01b039091168152602001610283565b6005546001600160a01b03166103da565b6102c5610411366004613d59565b6001600160601b039081166000908152600960205260409020541690565b6102c561043d366004613df0565b6112ca565b6102f0610450366004613e41565b611533565b61048b610463366004613e5c565b60009182526007602090815260408084206001600160a01b0393909316845291905290205490565b604051908152602001610283565b6104c86104a7366004613d59565b6001600160601b03166000908152600c602052604090205463ffffffff1690565b60405163ffffffff9091168152602001610283565b6104f06104eb366004613b40565b6115a9565b6040516102839190613e88565b6105056116ce565b6040516001600160e01b03199091168152602001610283565b6102c561052c366004613eef565b6001600160601b039182166000908152600d602090815260408083206001600160a01b0394909416835292905220541690565b6102f061056d366004613f1b565b6116f4565b6105f2610580366004613b40565b604080516080808201835260008083526020808401829052838501829052606093840182905294815260038552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b6040516102839190613f50565b6102f061060d366004613f91565b611723565b61066d610620366004613d59565b6001600160601b039081166000908152600860209081526040808320546009835281842054600a845282852054600c90945291909320549284169490841693919091169163ffffffff1690565b6040516102839493929190613fd1565b6102c561068b366004613d59565b6001600160601b039081166000908152600f60205260409020541690565b61033e6106b7366004613b6b565b611832565b6000546001600160a01b03166103da565b6102c56106db366004613b9d565b61187f565b6107106106ee366004613d59565b6001600160601b03166000908152600b602052604090205464ffffffffff1690565b60405164ffffffffff9091168152602001610283565b6102c5610734366004613d59565b6001600160601b039081166000908152600a60205260409020541690565b61033e610760366004613f91565b611903565b610778610773366004614000565b611937565b604080516001600160601b03938416815292909116602083015201610283565b61048b6107a6366004614051565b611be7565b6102c56107b9366004613d59565b6001600160601b039081166000908152600860205260409020541690565b6102c56107e5366004613df0565b611c6a565b6108386107f8366004613d59565b6001600160601b039081166000908152600860209081526040808320546009835281842054600b9093529220549183169392169164ffffffffff90911690565b604080516001600160601b03948516815293909216602084015264ffffffffff1690820152606001610283565b6000610874335b600036611f99565b6001600160601b038084166000908152600a6020526040902054166108998382612099565b156108d7576040516301a4b29960e11b81526001600160601b0380861660048301528085166024830152821660448201526064015b60405180910390fd5b6001600160601b038085166000908152600a60205260409020546108fc911684612120565b9150600061090a85846121a8565b90507fd3383e52279373b5cfb83f1b6d4bd83e415313626f418a63a24251420d4b96df858585846040516109419493929190613fd1565b60405180910390a1505092915050565b61095a3361086c565b610a4873__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601f6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156109cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f3919061407f565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b604051602081830303815290604052610a4360ff90565b61234f565b5050565b610a553361086c565b610a4882826124c4565b610a683361086c565b6000610a73846126aa565b6001600160601b0380861660009081526008602090815260408083205460099092529091205492935081169116610b2986610ab7610ab1858561276f565b8761276f565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b249190614098565b6127ba565b6001600160601b03808616600090815260086020526040902054610b82918791610b5891610ab191168561276f565b6001600160601b03808916600090815260096020526040902054610b7d911685612120565b612959565b6001600160601b0386811660008181526008602090815260409182902054825193845286851691840191909152848416918301919091528683166060830152909116608082015263ffffffff841660a08201527ff3a6a30356c886f04fc20380e987b6e55a1e83a7926e1a21ee6001faced599c99060c0015b60405180910390a1505050505050565b610c143361086c565b6000610c1f846126aa565b6001600160601b03808616600090815260086020526040902054919250610c6d918691610c4d91168561276f565b6001600160601b03808816600090815260096020526040902054166127ba565b6001600160601b03808416600090815260086020526040902054610cb8918591610c9891168561276f565b6001600160601b0380871660009081526009602052604090205416612959565b6001600160601b03808516600090815260086020526040908190205490517fa206257df4168139cff2e8dea9c50f2226429e81d904d5ee2b14e4f4656f30f592610d0c928892879291909116908690613fd1565b60405180910390a150505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610d81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da591906140c5565b92915050565b6000610db63361086c565b6000610dc1856126aa565b6001600160601b0386811660009081526009602052604090819020549051637931c81160e01b815286831660048201529116602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af4158015610e37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5b9190614098565b6001600160601b03808716600090815260086020908152604080832054600990925290912054929450610e9992889291821691610b24911686612120565b6001600160601b03808516600090815260086020908152604080832054600990925290912054610ed3928792811691610b7d911686612120565b6001600160601b03808616600090815260096020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef92610f27928992879291909116908690613fd1565b60405180910390a1509392505050565b610f403361086c565b6000610f4b846126aa565b6001600160601b03808616600090815260086020908152604080832054600990925290912054929350610f8992879291821691610b2491168661276f565b6001600160601b03808416600090815260086020908152604080832054600990925290912054610fc3928692811691610b7d91168661276f565b6001600160601b03808516600090815260096020526040908190205490517f9824c1941460e3f3dca0007309b88a95f4fb73bd9628ee7ad0a528b100983c7992610d0c928892879291909116908690613fd1565b6110203361086c565b60408051630711349960e31b81526001600160601b03841660048201526020602482018190529151610a489273__$94a2c899be079b00d952d0d84fffaa5c34$__92633889a4c892604480830193928290030181865af4158015611088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ac919061407f565b60408051845164ffffffffff16602082015201610a2c565b6000610da573__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660206040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af415801561113b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610339919061407f565b600081815260036020526040902060010180546060919061117f906140e0565b80601f01602080910402602001604051908101604052809291908181526020018280546111ab906140e0565b80156111f85780601f106111cd576101008083540402835291602001916111f8565b820191906000526020600020905b8154815290600101906020018083116111db57829003601f168201915b50505050509050919050565b61120d3361086c565b60408051630711349960e31b81526001600160601b038416600482015260206024820181905291516112c19273__$94a2c899be079b00d952d0d84fffaa5c34$__92633889a4c892604480830193928290030181865af4158015611275573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611299919061407f565b60408051845164ffffffffff166020820152015b6040516020818303038152906040526129ec565b610a4882612db6565b60006112d53361086c565b60008060006112e48887613131565b9250925092506112f4828661276f565b604051632c34efe560e11b81526001600160601b03821660048201526024810189905290945060009073__$3bac17678db7ae928afa209f2f44deec9c$__90635869dfca90604401602060405180830381865af4158015611359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137d9190614098565b6001600160601b038a81166000818152600d602090815260408083206001600160a01b038e1680855290835281842080546001600160601b03199081168e891617909155858552600e84528285209185529083528184208054909116878716179055928252600f90522054919250611400916113fa911684612120565b8261276f565b600f60008b6001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611492573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b6919061412c565b6001600160601b038a1660009081526010602052604090819020805463ffffffff191663ffffffff9390931692909217909155517f4bd4ee2e64e523eeed623045709eb9e7828b3b191c978feb362e5b600c7d4dd99061151f908b908a908a908a908a90614149565b60405180910390a150505050949350505050565b60005433906001600160a01b0316811461156a5760405162d1953b60e31b81526001600160a01b03821660048201526024016108ce565b816001600160a01b03163b6000036115a0576040516361798f2f60e11b81526001600160a01b03831660048201526024016108ce565b610a4882613245565b6040805160c081018252600091810182815260608083018490526080830184905260a083019390935281526020810191909152600082815260036020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a08201529283526001810180549192840191611645906140e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611671906140e0565b80156116be5780601f10611693576101008083540402835291602001916116be565b820191906000526020600020905b8154815290600101906020018083116116a157829003601f168201915b5050505050815250509050919050565b60008054600160a01b900460ff166116e65750600090565b638fb3603760e01b5b905090565b6116fd3361086c565b60009283526007602090815260408085206001600160a01b039094168552929052912055565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015611788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ac91906140c5565b156117cf576040516321b9f44760e01b815260ff841660048201526024016108ce565b60ff80841660009081526002602090815260408083208685168452825280832085851684529091529020541661182d57604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016108ce565b505050565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610d64565b600061188a3361086c565b6001600160601b038084166000908152600a60205260409020546118af91168361276f565b905060006118bd84836121a8565b90507f15ce01bb869f4f5440b921c09a1c73e043269a1e29f44d11a7a899ed51fa67b8848484846040516118f49493929190613fd1565b60405180910390a15092915050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054165b9392505050565b6000806119433361086c565b600061194e876126aa565b6001600160601b0388811660009081526008602052604090819020549051637931c81160e01b815288831660048201529116602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af41580156119c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e89190614098565b6001600160601b0388811660009081526009602052604090819020549051637931c81160e01b815287831660048201529116602482015290935073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af4158015611a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a829190614098565b6001600160601b03808916600090815260086020526040902054919350611ad5918991611ab0911686612120565b6001600160601b03808b16600090815260096020526040902054610b24911686612120565b6001600160601b03808716600090815260086020526040902054611b25918891611b00911686612120565b6001600160601b03808a16600090815260096020526040902054610b7d911686612120565b6001600160601b03808816600090815260086020526040908190205490517f4d67c2532a3443dbc1612538256c1fb6566afcd9729bf99254b26aef3b953cdd92611b79928b92889291909116908690613fd1565b60405180910390a16001600160601b03808816600090815260096020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef92611bd5928b92879291909116908690613fd1565b60405180910390a15094509492505050565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce90604401602060405180830381865af4158015611c46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611930919061407f565b6000611c753361086c565b6000806000611c848887613131565b925092509250611c948286612120565b6040516355205f0f60e01b81526001600160601b038216600482015290945060009073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd9690611d29908b9084906355205f0f90602401602060405180830381865af4158015611d00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d24919061407f565b613299565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611d7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9e919061407f565b6040518263ffffffff1660e01b8152600401611dbc91815260200190565b602060405180830381865af4158015611dd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfd9190614098565b6001600160601b038a81166000818152600d602090815260408083206001600160a01b038e1680855290835281842080546001600160601b03199081168e891617909155858552600e84528285209185529083528184208054909116878716179055928252600f90522054919250611e7a916113fa911684612120565b600f60008b6001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611f0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f30919061412c565b6001600160601b038a1660009081526010602052604090819020805463ffffffff191663ffffffff9390931692909217909155517ff9be485b3e2a5d1dc6dadfab8a9962c32cc55ac95a026b980452f8b1387237899061151f908b908a908a908a908a90614149565b600080611fcf611fb16000546001600160a01b031690565b8630611fc160046000898b61418a565b611fca916141b4565b6132ae565b91509150816120925763ffffffff81161561206f576000805460ff60a01b198116600160a01b17909155604051634a63ebf760e11b81526001600160a01b03909116906394c7d7ee9061202a908890889088906004016141e4565b600060405180830381600087803b15801561204457600080fd5b505af1158015612058573d6000803e3d6000fd5b50506000805460ff60a01b19169055506120929050565b60405162d1953b60e31b81526001600160a01b03861660048201526024016108ce565b5050505050565b604051632601631360e21b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af41580156120fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193091906140c5565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa22906044015b602060405180830381865af4158015612184573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119309190614098565b6001600160601b0382166000908152600c602052604080822054905163010bd26b60e61b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af4158015612217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061223b91906140c5565b15612264576040516364692acf60e01b81526001600160601b03841660048201526024016108ce565b506001600160601b038281166000908152600c6020908152604080832054600a83529281902080546001600160601b03191694861694909417909355825163e8b7afe360e01b8152925163ffffffff9092169273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9263e8b7afe3926004808401939192918290030181865af41580156122f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612319919061412c565b6001600160601b03939093166000908152600c60205260409020805463ffffffff191663ffffffff909416939093179092555090565b600061235b84836133ba565b6000858152600360205260409020909150600101612379848261426a565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156123ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612410919061432a565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612460573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124849190614347565b6040805160ff938416815260ff1990921660208301529185169181019190915233606082015232608082015263ffffffff831660a082015260c001610d0c565b61259a73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601f6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015612539573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255d919061407f565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0016112ad565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156125e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612607919061412c565b6001600160601b0383166000908152601060205260409020805463ffffffff191663ffffffff92909216919091179055612640826136bf565b6005546040516346f0e8a760e11b81526001600160601b03841660048201526001600160a01b0390911690638de1d14e90602401600060405180830381600087803b15801561268e57600080fd5b505af11580156126a2573d6000803e3d6000fd5b505050505050565b6001600160601b0381166000908152600c60205260409081902054905163010bd26b60e61b815263ffffffff909116600482018190529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af415801561271d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274191906140c5565b1561276a57604051631f7e16df60e01b81526001600160601b03831660048201526024016108ce565b919050565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401612167565b6001600160601b03838116600090815260086020908152604080832080546001600160601b031990811688871617909155600983529281902080549093169385169390931790915581516356db0c1960e11b8152915173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb618329260048083019391928290030181865af415801561284d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128719190614364565b600b6000856001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156128ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612923919061412c565b6001600160601b03939093166000908152600c60205260409020805463ffffffff191663ffffffff909416939093179092555050565b6001600160601b03838116600090815260086020908152604080832080546001600160601b0319908116888716179091556009835292819020805490931693851693909317909155815163e8b7afe360e01b8152915173__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9263e8b7afe39260048083019391928290030181865af41580156128ff573d6000803e3d6000fd5b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a63919061432a565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015612ab8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612adc91906140c5565b15612aff576040516307014a8d60e51b815260ff821660048201526024016108ce565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015612b68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b8c91906140c5565b15612bb657604051633f92eac960e21b81526004810185905260ff831660248201526044016108ce565b612bbf82611832565b612be157604051636cb0978b60e11b815260ff831660048201526024016108ce565b6000612beb6139e7565b60ff8085166000908152600160205260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784556000878152600360205260409020909150600101612c77868261426a565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612cea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d0e919061432a565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d829190614347565b6040805160ff938416815260ff1990921660208301529184169181019190915233606082015232608082015260a001610bfb565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af4158015612e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4a91906140c5565b15612e73576040516366d785a360e11b81526001600160601b03821660048201526024016108ce565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee09190614098565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f969190614098565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613028573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304c9190614364565b600b6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156130da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130fe919061412c565b6001600160601b03919091166000908152600c60205260409020805463ffffffff191663ffffffff909216919091179055565b6001600160601b03821660009081526010602052604080822054905163010bd26b60e61b815263ffffffff909116600482018190529190819073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af41580156131a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131ca91906140c5565b156131f3576040516362540e0360e11b81526001600160601b03861660048201526024016108ce565b50506001600160601b039283166000818152600d602090815260408083206001600160a01b0390961680845295825280832054938352600e825280832095835294905292909220549093918316921690565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60006119308383670de0b6b3a7640000613a56565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161331d9190614381565b600060405180830381855afa9150503d8060008114613358576040519150601f19603f3d011682016040523d82523d6000602084013e61335d565b606091505b509150915081156133af57604081511061338f5780806020019051810190613385919061439d565b90945092506133af565b60208151106133af57808060200190518101906133ac91906140c5565b93505b505094509492505050565b60405163037c8cb160e51b815260ff8216600482015260009073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561340f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343391906140c5565b156134545760405163093b89e160e11b8152600481018490526024016108ce565b50600082815260036020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156134cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134f191906140c5565b156135125760405163566ebf7960e01b8152600481018690526024016108ce565b60ff8085161461369157815461352c9060ff168286611723565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156135b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d4919061432a565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015613624573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136489190614347565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b6136996139e7565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af415801561372f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061375391906140c5565b1561377c576040516366d785a360e11b81526001600160601b03821660048201526024016108ce565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156137c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137e99190614098565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561387b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061389f9190614098565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613931573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139559190614098565b600a6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156130da573d6000803e3d6000fd5b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613a32573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ef919061412c565b6000808060001985870985870292508281108382030391505080600003613a9057838281613a8657613a866143c9565b0492505050611930565b808411613ad75760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b60448201526064016108ce565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b600060208284031215613b5257600080fd5b5035919050565b60ff81168114613b6857600080fd5b50565b600060208284031215613b7d57600080fd5b813561193081613b59565b6001600160601b0381168114613b6857600080fd5b60008060408385031215613bb057600080fd5b8235613bbb81613b88565b91506020830135613bcb81613b88565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b64ffffffffff81168114613b6857600080fd5b60008082840360a0811215613c1357600080fd5b8335613c1e81613b88565b92506080601f1982011215613c3257600080fd5b506040516080810181811067ffffffffffffffff82111715613c5657613c56613bd6565b6040526020840135613c6781613b59565b8152604084013560208201526060840135613c8181613bec565b60408201526080939093013560608401525092909150565b600080600060608486031215613cae57600080fd5b8335613cb981613b88565b92506020840135613cc981613b88565b91506040840135613cd981613b88565b809150509250925092565b6000808284036040811215613cf857600080fd5b8335613d0381613b88565b92506020601f1982011215613d1757600080fd5b506040516020810181811067ffffffffffffffff82111715613d3b57613d3b613bd6565b6040526020840135613d4c81613bec565b8152919491935090915050565b600060208284031215613d6b57600080fd5b813561193081613b88565b60005b83811015613d91578181015183820152602001613d79565b50506000910152565b60008151808452613db2816020860160208601613d76565b601f01601f19169290920160200192915050565b6020815260006119306020830184613d9a565b80356001600160a01b038116811461276a57600080fd5b60008060008060808587031215613e0657600080fd5b8435613e1181613b88565b935060208501359250613e2660408601613dd9565b91506060850135613e3681613b88565b939692955090935050565b600060208284031215613e5357600080fd5b61193082613dd9565b60008060408385031215613e6f57600080fd5b82359150613e7f60208401613dd9565b90509250929050565b60208152613ecd60208201835160ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000602083015160a080840152613ee760c0840182613d9a565b949350505050565b60008060408385031215613f0257600080fd5b8235613f0d81613b88565b9150613e7f60208401613dd9565b600080600060608486031215613f3057600080fd5b83359250613f4060208501613dd9565b9150604084013590509250925092565b60808101610da5828460ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b600080600060608486031215613fa657600080fd5b8335613fb181613b59565b92506020840135613fc181613b59565b91506040840135613cd981613b59565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b6000806000806080858703121561401657600080fd5b843561402181613b88565b9350602085013561403181613b88565b92506040850135613e2681613b88565b60ff1981168114613b6857600080fd5b6000806040838503121561406457600080fd5b823561406f81613b59565b91506020830135613bcb81614041565b60006020828403121561409157600080fd5b5051919050565b6000602082840312156140aa57600080fd5b815161193081613b88565b8051801515811461276a57600080fd5b6000602082840312156140d757600080fd5b611930826140b5565b600181811c908216806140f457607f821691505b60208210810361411457634e487b7160e01b600052602260045260246000fd5b50919050565b63ffffffff81168114613b6857600080fd5b60006020828403121561413e57600080fd5b81516119308161411a565b6001600160601b0395861681526001600160a01b039490941660208501529184166040840152909216606082015263ffffffff909116608082015260a00190565b6000808585111561419a57600080fd5b838611156141a757600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156141dc5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f82111561182d57600081815260208120601f850160051c8101602086101561424b5750805b601f850160051c820191505b818110156126a257828155600101614257565b815167ffffffffffffffff81111561428457614284613bd6565b6142988161429284546140e0565b84614224565b602080601f8311600181146142cd57600084156142b55750858301515b600019600386901b1c1916600185901b1785556126a2565b600085815260208120601f198616915b828110156142fc578886015182559484019460019091019084016142dd565b508582101561431a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561433c57600080fd5b815161193081613b59565b60006020828403121561435957600080fd5b815161193081614041565b60006020828403121561437657600080fd5b815161193081613bec565b60008251614393818460208701613d76565b9190910192915050565b600080604083850312156143b057600080fd5b6143b9836140b5565b91506020830151613bcb8161411a565b634e487b7160e01b600052601260045260246000fdfea264697066735822122072b1de48968a12bea2261f6199153b10383dd8b48b474757ea129fed297af6eb64736f6c63430008140033608060405234801561001057600080fd5b50600480546001600160a01b03191633179055610749806100326000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80638de1d14e116100665780638de1d14e14610113578063954a317214610126578063996f8d9114610139578063ddfe867f1461014f578063f2b297811461015757600080fd5b8063042f9da3146100985780634f9c1c09146100ad578063706e9ba9146100d5578063777d185714610100575b600080fd5b6100ab6100a6366004610645565b61016a565b005b6100c06100bb36600461067e565b610229565b60405190151581526020015b60405180910390f35b6100e86100e33660046106a2565b6102b6565b6040516001600160601b0390911681526020016100cc565b6100c061010e36600461067e565b610335565b6100ab61012136600461067e565b61037f565b6100ab610134366004610645565b6104a9565b610141610533565b6040519081526020016100cc565b6101416105b0565b6100e86101653660046106a2565b6105eb565b6004546001600160a01b031633146101b25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044015b60405180910390fd5b604051631461054360e31b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a18906044015b60006040518083038186803b15801561020d57600080fd5b505af4158015610221573d6000803e3d6000fd5b505050505050565b604051632bfdd6b960e01b81526000600482018190526001600160601b03831660248301529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b9906044015b602060405180830381865af415801561028c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106bb565b92915050565b60405163e797d89960e01b8152600060048201819052602482018390529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044015b602060405180830381865af4158015610311573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106dd565b604051632bfdd6b960e01b8152600260048201526001600160601b038216602482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b99060440161026f565b6004546001600160a01b031633146103c25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b604051631461054360e31b8152600060048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a189060440160006040518083038186803b15801561041c57600080fd5b505af4158015610430573d6000803e3d6000fd5b5050604051631461054360e31b8152600260048201526001600160601b038416602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__925063a3082a18915060440160006040518083038186803b15801561048e57600080fd5b505af41580156104a2573d6000803e3d6000fd5b5050505050565b6004546001600160a01b031633146104ec5760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b60405163539eabab60e11b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a73d5756906044016101f5565b604051638b6233dd60e01b81526002600482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd906024015b602060405180830381865af4158015610587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ab91906106fa565b905090565b604051638b6233dd60e01b81526000600482018190529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd9060240161056a565b60405163e797d89960e01b8152600260048201526024810182905260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044016102f4565b6001600160601b038116811461064257600080fd5b50565b6000806040838503121561065857600080fd5b82356106638161062d565b915060208301356106738161062d565b809150509250929050565b60006020828403121561069057600080fd5b813561069b8161062d565b9392505050565b6000602082840312156106b457600080fd5b5035919050565b6000602082840312156106cd57600080fd5b8151801515811461069b57600080fd5b6000602082840312156106ef57600080fd5b815161069b8161062d565b60006020828403121561070c57600080fd5b505191905056fea2646970667358221220643c57ecfb81d8ba58fe9c3c376cfc34b031f934299cded0b865bb78289478c164736f6c63430008140033",
         | 
| 1644 | 
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063828227de1161013b578063bf7e214f116100b8578063eb98e8a01161007c578063eb98e8a014610765578063f48016ce14610798578063fb145432146107ab578063fb39549c146107d7578063ff86054d146107ea57600080fd5b8063bf7e214f146106bc578063d7537c37146106cd578063dfb7e337146106e0578063e067350f14610726578063e9e96c701461075257600080fd5b8063a5961b4c116100ff578063a5961b4c14610572578063a8989675146105ff578063b04fa50614610612578063beba11201461067d578063bf1db3f9146106a957600080fd5b8063828227de146104995780638eaa6ac0146104dd5780638fb36037146104fd57806391a2059f1461051e5780639a7263641461055f57600080fd5b80634b51da0c116101c957806363fe327a1161018d57806363fe327a146103f2578063717f1b981461040357806377f918511461042f5780637a9e5e4b146104425780637b2155611461045557600080fd5b80634b51da0c146103745780634f9c1c091461038757806354f6127f1461039a57806362841be2146103ba5780636291423a146103cd57600080fd5b806330f441991161021057806330f44199146103055780633861317f1461031857806338a699a41461032b5780633fbdfe321461034e5780634a2101d11461036157600080fd5b806309648a9d1461024d5780630d3581811461028c578063136cfef7146102b25780631807a488146102dd5780632df8be9b146102f2575b600080fd5b61027561025b366004613b40565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b61027561029a366004613b6b565b60ff9081166000908152600160205260409020541690565b6102c56102c0366004613b9d565b610865565b6040516001600160601b039091168152602001610283565b6102f06102eb366004613bff565b610951565b005b6102f0610300366004613bff565b610a4c565b6102f0610313366004613c99565b610a5f565b6102f0610326366004613c99565b610c0b565b61033e610339366004613b40565b610d1a565b6040519015158152602001610283565b6102c561035c366004613c99565b610dab565b6102f061036f366004613c99565b610f37565b6102f0610382366004613ce4565b611017565b61033e610395366004613d59565b6110c4565b6103ad6103a8366004613b40565b61115f565b6040516102839190613dc6565b6102f06103c8366004613ce4565b611204565b6006546001600160a01b03165b6040516001600160a01b039091168152602001610283565b6005546001600160a01b03166103da565b6102c5610411366004613d59565b6001600160601b039081166000908152600960205260409020541690565b6102c561043d366004613df0565b6112ca565b6102f0610450366004613e41565b611533565b61048b610463366004613e5c565b60009182526007602090815260408084206001600160a01b0393909316845291905290205490565b604051908152602001610283565b6104c86104a7366004613d59565b6001600160601b03166000908152600c602052604090205463ffffffff1690565b60405163ffffffff9091168152602001610283565b6104f06104eb366004613b40565b6115a9565b6040516102839190613e88565b6105056116ce565b6040516001600160e01b03199091168152602001610283565b6102c561052c366004613eef565b6001600160601b039182166000908152600d602090815260408083206001600160a01b0394909416835292905220541690565b6102f061056d366004613f1b565b6116f4565b6105f2610580366004613b40565b604080516080808201835260008083526020808401829052838501829052606093840182905294815260038552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b6040516102839190613f50565b6102f061060d366004613f91565b611723565b61066d610620366004613d59565b6001600160601b039081166000908152600860209081526040808320546009835281842054600a845282852054600c90945291909320549284169490841693919091169163ffffffff1690565b6040516102839493929190613fd1565b6102c561068b366004613d59565b6001600160601b039081166000908152600f60205260409020541690565b61033e6106b7366004613b6b565b611832565b6000546001600160a01b03166103da565b6102c56106db366004613b9d565b61187f565b6107106106ee366004613d59565b6001600160601b03166000908152600b602052604090205464ffffffffff1690565b60405164ffffffffff9091168152602001610283565b6102c5610734366004613d59565b6001600160601b039081166000908152600a60205260409020541690565b61033e610760366004613f91565b611903565b610778610773366004614000565b611937565b604080516001600160601b03938416815292909116602083015201610283565b61048b6107a6366004614051565b611be7565b6102c56107b9366004613d59565b6001600160601b039081166000908152600860205260409020541690565b6102c56107e5366004613df0565b611c6a565b6108386107f8366004613d59565b6001600160601b039081166000908152600860209081526040808320546009835281842054600b9093529220549183169392169164ffffffffff90911690565b604080516001600160601b03948516815293909216602084015264ffffffffff1690820152606001610283565b6000610874335b600036611f99565b6001600160601b038084166000908152600a6020526040902054166108998382612099565b156108d7576040516301a4b29960e11b81526001600160601b0380861660048301528085166024830152821660448201526064015b60405180910390fd5b6001600160601b038085166000908152600a60205260409020546108fc911684612120565b9150600061090a85846121a8565b90507fd3383e52279373b5cfb83f1b6d4bd83e415313626f418a63a24251420d4b96df858585846040516109419493929190613fd1565b60405180910390a1505092915050565b61095a3361086c565b610a4873__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601f6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156109cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f3919061407f565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0015b604051602081830303815290604052610a4360ff90565b61234f565b5050565b610a553361086c565b610a4882826124c4565b610a683361086c565b6000610a73846126aa565b6001600160601b0380861660009081526008602090815260408083205460099092529091205492935081169116610b2986610ab7610ab1858561276f565b8761276f565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b249190614098565b6127ba565b6001600160601b03808616600090815260086020526040902054610b82918791610b5891610ab191168561276f565b6001600160601b03808916600090815260096020526040902054610b7d911685612120565b612959565b6001600160601b0386811660008181526008602090815260409182902054825193845286851691840191909152848416918301919091528683166060830152909116608082015263ffffffff841660a08201527ff3a6a30356c886f04fc20380e987b6e55a1e83a7926e1a21ee6001faced599c99060c0015b60405180910390a1505050505050565b610c143361086c565b6000610c1f846126aa565b6001600160601b03808616600090815260086020526040902054919250610c6d918691610c4d91168561276f565b6001600160601b03808816600090815260096020526040902054166127ba565b6001600160601b03808416600090815260086020526040902054610cb8918591610c9891168561276f565b6001600160601b0380871660009081526009602052604090205416612959565b6001600160601b03808516600090815260086020526040908190205490517fa206257df4168139cff2e8dea9c50f2226429e81d904d5ee2b14e4f4656f30f592610d0c928892879291909116908690613fd1565b60405180910390a150505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610d81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da591906140c5565b92915050565b6000610db63361086c565b6000610dc1856126aa565b6001600160601b0386811660009081526009602052604090819020549051637931c81160e01b815286831660048201529116602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af4158015610e37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5b9190614098565b6001600160601b03808716600090815260086020908152604080832054600990925290912054929450610e9992889291821691610b24911686612120565b6001600160601b03808516600090815260086020908152604080832054600990925290912054610ed3928792811691610b7d911686612120565b6001600160601b03808616600090815260096020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef92610f27928992879291909116908690613fd1565b60405180910390a1509392505050565b610f403361086c565b6000610f4b846126aa565b6001600160601b03808616600090815260086020908152604080832054600990925290912054929350610f8992879291821691610b2491168661276f565b6001600160601b03808416600090815260086020908152604080832054600990925290912054610fc3928692811691610b7d91168661276f565b6001600160601b03808516600090815260096020526040908190205490517f9824c1941460e3f3dca0007309b88a95f4fb73bd9628ee7ad0a528b100983c7992610d0c928892879291909116908690613fd1565b6110203361086c565b60408051630711349960e31b81526001600160601b03841660048201526020602482018190529151610a489273__$94a2c899be079b00d952d0d84fffaa5c34$__92633889a4c892604480830193928290030181865af4158015611088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ac919061407f565b60408051845164ffffffffff16602082015201610a2c565b6000610da573__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03851660206040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af415801561113b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610339919061407f565b600081815260036020526040902060010180546060919061117f906140e0565b80601f01602080910402602001604051908101604052809291908181526020018280546111ab906140e0565b80156111f85780601f106111cd576101008083540402835291602001916111f8565b820191906000526020600020905b8154815290600101906020018083116111db57829003601f168201915b50505050509050919050565b61120d3361086c565b60408051630711349960e31b81526001600160601b038416600482015260206024820181905291516112c19273__$94a2c899be079b00d952d0d84fffaa5c34$__92633889a4c892604480830193928290030181865af4158015611275573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611299919061407f565b60408051845164ffffffffff166020820152015b6040516020818303038152906040526129ec565b610a4882612db6565b60006112d53361086c565b60008060006112e48887613131565b9250925092506112f4828661276f565b604051632c34efe560e11b81526001600160601b03821660048201526024810189905290945060009073__$3bac17678db7ae928afa209f2f44deec9c$__90635869dfca90604401602060405180830381865af4158015611359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137d9190614098565b6001600160601b038a81166000818152600d602090815260408083206001600160a01b038e1680855290835281842080546001600160601b03199081168e891617909155858552600e84528285209185529083528184208054909116878716179055928252600f90522054919250611400916113fa911684612120565b8261276f565b600f60008b6001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611492573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b6919061412c565b6001600160601b038a1660009081526010602052604090819020805463ffffffff191663ffffffff9390931692909217909155517f4bd4ee2e64e523eeed623045709eb9e7828b3b191c978feb362e5b600c7d4dd99061151f908b908a908a908a908a90614149565b60405180910390a150505050949350505050565b60005433906001600160a01b0316811461156a5760405162d1953b60e31b81526001600160a01b03821660048201526024016108ce565b816001600160a01b03163b6000036115a0576040516361798f2f60e11b81526001600160a01b03831660048201526024016108ce565b610a4882613245565b6040805160c081018252600091810182815260608083018490526080830184905260a083019390935281526020810191909152600082815260036020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a08201529283526001810180549192840191611645906140e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611671906140e0565b80156116be5780601f10611693576101008083540402835291602001916116be565b820191906000526020600020905b8154815290600101906020018083116116a157829003601f168201915b5050505050815250509050919050565b60008054600160a01b900460ff166116e65750600090565b638fb3603760e01b5b905090565b6116fd3361086c565b60009283526007602090815260408085206001600160a01b039094168552929052912055565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015611788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ac91906140c5565b156117cf576040516321b9f44760e01b815260ff841660048201526024016108ce565b60ff80841660009081526002602090815260408083208685168452825280832085851684529091529020541661182d57604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016108ce565b505050565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610d64565b600061188a3361086c565b6001600160601b038084166000908152600a60205260409020546118af91168361276f565b905060006118bd84836121a8565b90507f15ce01bb869f4f5440b921c09a1c73e043269a1e29f44d11a7a899ed51fa67b8848484846040516118f49493929190613fd1565b60405180910390a15092915050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054165b9392505050565b6000806119433361086c565b600061194e876126aa565b6001600160601b0388811660009081526008602052604090819020549051637931c81160e01b815288831660048201529116602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af41580156119c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e89190614098565b6001600160601b0388811660009081526009602052604090819020549051637931c81160e01b815287831660048201529116602482015290935073__$3bac17678db7ae928afa209f2f44deec9c$__90637931c81190604401602060405180830381865af4158015611a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a829190614098565b6001600160601b03808916600090815260086020526040902054919350611ad5918991611ab0911686612120565b6001600160601b03808b16600090815260096020526040902054610b24911686612120565b6001600160601b03808716600090815260086020526040902054611b25918891611b00911686612120565b6001600160601b03808a16600090815260096020526040902054610b7d911686612120565b6001600160601b03808816600090815260086020526040908190205490517f4d67c2532a3443dbc1612538256c1fb6566afcd9729bf99254b26aef3b953cdd92611b79928b92889291909116908690613fd1565b60405180910390a16001600160601b03808816600090815260096020526040908190205490517f18d78bbaea8f24a2aaa409f9f507204233a315575899fe3a802e20f15e81f5ef92611bd5928b92879291909116908690613fd1565b60405180910390a15094509492505050565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce90604401602060405180830381865af4158015611c46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611930919061407f565b6000611c753361086c565b6000806000611c848887613131565b925092509250611c948286612120565b6040516355205f0f60e01b81526001600160601b038216600482015290945060009073__$3bac17678db7ae928afa209f2f44deec9c$__90634c41dd9690611d29908b9084906355205f0f90602401602060405180830381865af4158015611d00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d24919061407f565b613299565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611d7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d9e919061407f565b6040518263ffffffff1660e01b8152600401611dbc91815260200190565b602060405180830381865af4158015611dd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfd9190614098565b6001600160601b038a81166000818152600d602090815260408083206001600160a01b038e1680855290835281842080546001600160601b03199081168e891617909155858552600e84528285209185529083528184208054909116878716179055928252600f90522054919250611e7a916113fa911684612120565b600f60008b6001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611f0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f30919061412c565b6001600160601b038a1660009081526010602052604090819020805463ffffffff191663ffffffff9390931692909217909155517ff9be485b3e2a5d1dc6dadfab8a9962c32cc55ac95a026b980452f8b1387237899061151f908b908a908a908a908a90614149565b600080611fcf611fb16000546001600160a01b031690565b8630611fc160046000898b61418a565b611fca916141b4565b6132ae565b91509150816120925763ffffffff81161561206f576000805460ff60a01b198116600160a01b17909155604051634a63ebf760e11b81526001600160a01b03909116906394c7d7ee9061202a908890889088906004016141e4565b600060405180830381600087803b15801561204457600080fd5b505af1158015612058573d6000803e3d6000fd5b50506000805460ff60a01b19169055506120929050565b60405162d1953b60e31b81526001600160a01b03861660048201526024016108ce565b5050505050565b604051632601631360e21b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401602060405180830381865af41580156120fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193091906140c5565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa22906044015b602060405180830381865af4158015612184573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119309190614098565b6001600160601b0382166000908152600c602052604080822054905163010bd26b60e61b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af4158015612217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061223b91906140c5565b15612264576040516364692acf60e01b81526001600160601b03841660048201526024016108ce565b506001600160601b038281166000908152600c6020908152604080832054600a83529281902080546001600160601b03191694861694909417909355825163e8b7afe360e01b8152925163ffffffff9092169273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9263e8b7afe3926004808401939192918290030181865af41580156122f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612319919061412c565b6001600160601b03939093166000908152600c60205260409020805463ffffffff191663ffffffff909416939093179092555090565b600061235b84836133ba565b6000858152600360205260409020909150600101612379848261426a565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156123ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612410919061432a565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612460573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124849190614347565b6040805160ff938416815260ff1990921660208301529185169181019190915233606082015232608082015263ffffffff831660a082015260c001610d0c565b61259a73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038516601f6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015612539573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255d919061407f565b60408051845160ff16602080830191909152850151818301529084015164ffffffffff16606080830191909152840151608082015260a0016112ad565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156125e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612607919061412c565b6001600160601b0383166000908152601060205260409020805463ffffffff191663ffffffff92909216919091179055612640826136bf565b6005546040516346f0e8a760e11b81526001600160601b03841660048201526001600160a01b0390911690638de1d14e90602401600060405180830381600087803b15801561268e57600080fd5b505af11580156126a2573d6000803e3d6000fd5b505050505050565b6001600160601b0381166000908152600c60205260409081902054905163010bd26b60e61b815263ffffffff909116600482018190529073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af415801561271d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274191906140c5565b1561276a57604051631f7e16df60e01b81526001600160601b03831660048201526024016108ce565b919050565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401612167565b6001600160601b03838116600090815260086020908152604080832080546001600160601b031990811688871617909155600983529281902080549093169385169390931790915581516356db0c1960e11b8152915173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb618329260048083019391928290030181865af415801561284d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128719190614364565b600b6000856001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156128ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612923919061412c565b6001600160601b03939093166000908152600c60205260409020805463ffffffff191663ffffffff909416939093179092555050565b6001600160601b03838116600090815260086020908152604080832080546001600160601b0319908116888716179091556009835292819020805490931693851693909317909155815163e8b7afe360e01b8152915173__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9263e8b7afe39260048083019391928290030181865af41580156128ff573d6000803e3d6000fd5b604051634b00e98f60e11b81526004810183905260009073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a63919061432a565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015612ab8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612adc91906140c5565b15612aff576040516307014a8d60e51b815260ff821660048201526024016108ce565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015612b68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b8c91906140c5565b15612bb657604051633f92eac960e21b81526004810185905260ff831660248201526044016108ce565b612bbf82611832565b612be157604051636cb0978b60e11b815260ff831660048201526024016108ce565b6000612beb6139e7565b60ff8085166000908152600160205260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784556000878152600360205260409020909150600101612c77868261426a565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612cea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d0e919061432a565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d829190614347565b6040805160ff938416815260ff1990921660208301529184169181019190915233606082015232608082015260a001610bfb565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af4158015612e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4a91906140c5565b15612e73576040516366d785a360e11b81526001600160601b03821660048201526024016108ce565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee09190614098565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f969190614098565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613028573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304c9190614364565b600b6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a81548164ffffffffff021916908364ffffffffff16021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156130da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130fe919061412c565b6001600160601b03919091166000908152600c60205260409020805463ffffffff191663ffffffff909216919091179055565b6001600160601b03821660009081526010602052604080822054905163010bd26b60e61b815263ffffffff909116600482018190529190819073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__906342f49ac090602401602060405180830381865af41580156131a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131ca91906140c5565b156131f3576040516362540e0360e11b81526001600160601b03861660048201526024016108ce565b50506001600160601b039283166000818152600d602090815260408083206001600160a01b0390961680845295825280832054938352600e825280832095835294905292909220549093918316921690565b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60006119308383670de0b6b3a7640000613a56565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161331d9190614381565b600060405180830381855afa9150503d8060008114613358576040519150601f19603f3d011682016040523d82523d6000602084013e61335d565b606091505b509150915081156133af57604081511061338f5780806020019051810190613385919061439d565b90945092506133af565b60208151106133af57808060200190518101906133ac91906140c5565b93505b505094509492505050565b60405163037c8cb160e51b815260ff8216600482015260009073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561340f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343391906140c5565b156134545760405163093b89e160e11b8152600481018490526024016108ce565b50600082815260036020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156134cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134f191906140c5565b156135125760405163566ebf7960e01b8152600481018690526024016108ce565b60ff8085161461369157815461352c9060ff168286611723565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156135b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d4919061432a565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015613624573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136489190614347565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b6136996139e7565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b6001600160601b0381166000908152600c60205260409081902054905163d15b589360e01b815263ffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063d15b589390602401602060405180830381865af415801561372f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061375391906140c5565b1561377c576040516366d785a360e11b81526001600160601b03821660048201526024016108ce565b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156137c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137e99190614098565b60086000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561387b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061389f9190614098565b60096000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613931573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139559190614098565b600a6000836001600160601b03166001600160601b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b0316021790555073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af41580156130da573d6000803e3d6000fd5b600073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015613a32573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ef919061412c565b6000808060001985870985870292508281108382030391505080600003613a9057838281613a8657613a866143c9565b0492505050611930565b808411613ad75760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b60448201526064016108ce565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b600060208284031215613b5257600080fd5b5035919050565b60ff81168114613b6857600080fd5b50565b600060208284031215613b7d57600080fd5b813561193081613b59565b6001600160601b0381168114613b6857600080fd5b60008060408385031215613bb057600080fd5b8235613bbb81613b88565b91506020830135613bcb81613b88565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b64ffffffffff81168114613b6857600080fd5b60008082840360a0811215613c1357600080fd5b8335613c1e81613b88565b92506080601f1982011215613c3257600080fd5b506040516080810181811067ffffffffffffffff82111715613c5657613c56613bd6565b6040526020840135613c6781613b59565b8152604084013560208201526060840135613c8181613bec565b60408201526080939093013560608401525092909150565b600080600060608486031215613cae57600080fd5b8335613cb981613b88565b92506020840135613cc981613b88565b91506040840135613cd981613b88565b809150509250925092565b6000808284036040811215613cf857600080fd5b8335613d0381613b88565b92506020601f1982011215613d1757600080fd5b506040516020810181811067ffffffffffffffff82111715613d3b57613d3b613bd6565b6040526020840135613d4c81613bec565b8152919491935090915050565b600060208284031215613d6b57600080fd5b813561193081613b88565b60005b83811015613d91578181015183820152602001613d79565b50506000910152565b60008151808452613db2816020860160208601613d76565b601f01601f19169290920160200192915050565b6020815260006119306020830184613d9a565b80356001600160a01b038116811461276a57600080fd5b60008060008060808587031215613e0657600080fd5b8435613e1181613b88565b935060208501359250613e2660408601613dd9565b91506060850135613e3681613b88565b939692955090935050565b600060208284031215613e5357600080fd5b61193082613dd9565b60008060408385031215613e6f57600080fd5b82359150613e7f60208401613dd9565b90509250929050565b60208152613ecd60208201835160ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b6000602083015160a080840152613ee760c0840182613d9a565b949350505050565b60008060408385031215613f0257600080fd5b8235613f0d81613b88565b9150613e7f60208401613dd9565b600080600060608486031215613f3057600080fd5b83359250613f4060208501613dd9565b9150604084013590509250925092565b60808101610da5828460ff815116825260ff6020820151166020830152604081015163ffffffff808216604085015280606084015116606085015250505050565b600080600060608486031215613fa657600080fd5b8335613fb181613b59565b92506020840135613fc181613b59565b91506040840135613cd981613b59565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b6000806000806080858703121561401657600080fd5b843561402181613b88565b9350602085013561403181613b88565b92506040850135613e2681613b88565b60ff1981168114613b6857600080fd5b6000806040838503121561406457600080fd5b823561406f81613b59565b91506020830135613bcb81614041565b60006020828403121561409157600080fd5b5051919050565b6000602082840312156140aa57600080fd5b815161193081613b88565b8051801515811461276a57600080fd5b6000602082840312156140d757600080fd5b611930826140b5565b600181811c908216806140f457607f821691505b60208210810361411457634e487b7160e01b600052602260045260246000fd5b50919050565b63ffffffff81168114613b6857600080fd5b60006020828403121561413e57600080fd5b81516119308161411a565b6001600160601b0395861681526001600160a01b039490941660208501529184166040840152909216606082015263ffffffff909116608082015260a00190565b6000808585111561419a57600080fd5b838611156141a757600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156141dc5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f82111561182d57600081815260208120601f850160051c8101602086101561424b5750805b601f850160051c820191505b818110156126a257828155600101614257565b815167ffffffffffffffff81111561428457614284613bd6565b6142988161429284546140e0565b84614224565b602080601f8311600181146142cd57600084156142b55750858301515b600019600386901b1c1916600185901b1785556126a2565b600085815260208120601f198616915b828110156142fc578886015182559484019460019091019084016142dd565b508582101561431a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561433c57600080fd5b815161193081613b59565b60006020828403121561435957600080fd5b815161193081614041565b60006020828403121561437657600080fd5b815161193081613bec565b60008251614393818460208701613d76565b9190910192915050565b600080604083850312156143b057600080fd5b6143b9836140b5565b91506020830151613bcb8161411a565b634e487b7160e01b600052601260045260246000fdfea264697066735822122072b1de48968a12bea2261f6199153b10383dd8b48b474757ea129fed297af6eb64736f6c63430008140033",
         | 
| 1645 | 
            +
              "linkReferences": {
         | 
| 1646 | 
            +
                "contracts/staking/TargetManagerLib.sol": {
         | 
| 1647 | 
            +
                  "TargetManagerLib": [
         | 
| 1648 | 
            +
                    {
         | 
| 1649 | 
            +
                      "length": 20,
         | 
| 1650 | 
            +
                      "start": 479
         | 
| 1651 | 
            +
                    },
         | 
| 1652 | 
            +
                    {
         | 
| 1653 | 
            +
                      "length": 20,
         | 
| 1654 | 
            +
                      "start": 603
         | 
| 1655 | 
            +
                    }
         | 
| 1656 | 
            +
                  ]
         | 
| 1657 | 
            +
                },
         | 
| 1658 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 1659 | 
            +
                  "AmountLib": [
         | 
| 1660 | 
            +
                    {
         | 
| 1661 | 
            +
                      "length": 20,
         | 
| 1662 | 
            +
                      "start": 2782
         | 
| 1663 | 
            +
                    },
         | 
| 1664 | 
            +
                    {
         | 
| 1665 | 
            +
                      "length": 20,
         | 
| 1666 | 
            +
                      "start": 2967
         | 
| 1667 | 
            +
                    },
         | 
| 1668 | 
            +
                    {
         | 
| 1669 | 
            +
                      "length": 20,
         | 
| 1670 | 
            +
                      "start": 3152
         | 
| 1671 | 
            +
                    },
         | 
| 1672 | 
            +
                    {
         | 
| 1673 | 
            +
                      "length": 20,
         | 
| 1674 | 
            +
                      "start": 7319
         | 
| 1675 | 
            +
                    },
         | 
| 1676 | 
            +
                    {
         | 
| 1677 | 
            +
                      "length": 20,
         | 
| 1678 | 
            +
                      "start": 8155
         | 
| 1679 | 
            +
                    },
         | 
| 1680 | 
            +
                    {
         | 
| 1681 | 
            +
                      "length": 20,
         | 
| 1682 | 
            +
                      "start": 9469
         | 
| 1683 | 
            +
                    },
         | 
| 1684 | 
            +
                    {
         | 
| 1685 | 
            +
                      "length": 20,
         | 
| 1686 | 
            +
                      "start": 11112
         | 
| 1687 | 
            +
                    },
         | 
| 1688 | 
            +
                    {
         | 
| 1689 | 
            +
                      "length": 20,
         | 
| 1690 | 
            +
                      "start": 11266
         | 
| 1691 | 
            +
                    },
         | 
| 1692 | 
            +
                    {
         | 
| 1693 | 
            +
                      "length": 20,
         | 
| 1694 | 
            +
                      "start": 11926
         | 
| 1695 | 
            +
                    },
         | 
| 1696 | 
            +
                    {
         | 
| 1697 | 
            +
                      "length": 20,
         | 
| 1698 | 
            +
                      "start": 12960
         | 
| 1699 | 
            +
                    },
         | 
| 1700 | 
            +
                    {
         | 
| 1701 | 
            +
                      "length": 20,
         | 
| 1702 | 
            +
                      "start": 13095
         | 
| 1703 | 
            +
                    },
         | 
| 1704 | 
            +
                    {
         | 
| 1705 | 
            +
                      "length": 20,
         | 
| 1706 | 
            +
                      "start": 14710
         | 
| 1707 | 
            +
                    },
         | 
| 1708 | 
            +
                    {
         | 
| 1709 | 
            +
                      "length": 20,
         | 
| 1710 | 
            +
                      "start": 16467
         | 
| 1711 | 
            +
                    },
         | 
| 1712 | 
            +
                    {
         | 
| 1713 | 
            +
                      "length": 20,
         | 
| 1714 | 
            +
                      "start": 16649
         | 
| 1715 | 
            +
                    },
         | 
| 1716 | 
            +
                    {
         | 
| 1717 | 
            +
                      "length": 20,
         | 
| 1718 | 
            +
                      "start": 18780
         | 
| 1719 | 
            +
                    },
         | 
| 1720 | 
            +
                    {
         | 
| 1721 | 
            +
                      "length": 20,
         | 
| 1722 | 
            +
                      "start": 18962
         | 
| 1723 | 
            +
                    },
         | 
| 1724 | 
            +
                    {
         | 
| 1725 | 
            +
                      "length": 20,
         | 
| 1726 | 
            +
                      "start": 19144
         | 
| 1727 | 
            +
                    }
         | 
| 1728 | 
            +
                  ]
         | 
| 1729 | 
            +
                },
         | 
| 1730 | 
            +
                "contracts/type/Blocknumber.sol": {
         | 
| 1731 | 
            +
                  "BlocknumberLib": [
         | 
| 1732 | 
            +
                    {
         | 
| 1733 | 
            +
                      "length": 20,
         | 
| 1734 | 
            +
                      "start": 1228
         | 
| 1735 | 
            +
                    },
         | 
| 1736 | 
            +
                    {
         | 
| 1737 | 
            +
                      "length": 20,
         | 
| 1738 | 
            +
                      "start": 2640
         | 
| 1739 | 
            +
                    },
         | 
| 1740 | 
            +
                    {
         | 
| 1741 | 
            +
                      "length": 20,
         | 
| 1742 | 
            +
                      "start": 3337
         | 
| 1743 | 
            +
                    },
         | 
| 1744 | 
            +
                    {
         | 
| 1745 | 
            +
                      "length": 20,
         | 
| 1746 | 
            +
                      "start": 3648
         | 
| 1747 | 
            +
                    },
         | 
| 1748 | 
            +
                    {
         | 
| 1749 | 
            +
                      "length": 20,
         | 
| 1750 | 
            +
                      "start": 9769
         | 
| 1751 | 
            +
                    },
         | 
| 1752 | 
            +
                    {
         | 
| 1753 | 
            +
                      "length": 20,
         | 
| 1754 | 
            +
                      "start": 12451
         | 
| 1755 | 
            +
                    },
         | 
| 1756 | 
            +
                    {
         | 
| 1757 | 
            +
                      "length": 20,
         | 
| 1758 | 
            +
                      "start": 13243
         | 
| 1759 | 
            +
                    },
         | 
| 1760 | 
            +
                    {
         | 
| 1761 | 
            +
                      "length": 20,
         | 
| 1762 | 
            +
                      "start": 13463
         | 
| 1763 | 
            +
                    },
         | 
| 1764 | 
            +
                    {
         | 
| 1765 | 
            +
                      "length": 20,
         | 
| 1766 | 
            +
                      "start": 14202
         | 
| 1767 | 
            +
                    },
         | 
| 1768 | 
            +
                    {
         | 
| 1769 | 
            +
                      "length": 20,
         | 
| 1770 | 
            +
                      "start": 14529
         | 
| 1771 | 
            +
                    },
         | 
| 1772 | 
            +
                    {
         | 
| 1773 | 
            +
                      "length": 20,
         | 
| 1774 | 
            +
                      "start": 14998
         | 
| 1775 | 
            +
                    },
         | 
| 1776 | 
            +
                    {
         | 
| 1777 | 
            +
                      "length": 20,
         | 
| 1778 | 
            +
                      "start": 15247
         | 
| 1779 | 
            +
                    },
         | 
| 1780 | 
            +
                    {
         | 
| 1781 | 
            +
                      "length": 20,
         | 
| 1782 | 
            +
                      "start": 16330
         | 
| 1783 | 
            +
                    },
         | 
| 1784 | 
            +
                    {
         | 
| 1785 | 
            +
                      "length": 20,
         | 
| 1786 | 
            +
                      "start": 17009
         | 
| 1787 | 
            +
                    },
         | 
| 1788 | 
            +
                    {
         | 
| 1789 | 
            +
                      "length": 20,
         | 
| 1790 | 
            +
                      "start": 17226
         | 
| 1791 | 
            +
                    },
         | 
| 1792 | 
            +
                    {
         | 
| 1793 | 
            +
                      "length": 20,
         | 
| 1794 | 
            +
                      "start": 18643
         | 
| 1795 | 
            +
                    },
         | 
| 1796 | 
            +
                    {
         | 
| 1797 | 
            +
                      "length": 20,
         | 
| 1798 | 
            +
                      "start": 19326
         | 
| 1799 | 
            +
                    },
         | 
| 1800 | 
            +
                    {
         | 
| 1801 | 
            +
                      "length": 20,
         | 
| 1802 | 
            +
                      "start": 19401
         | 
| 1803 | 
            +
                    }
         | 
| 1804 | 
            +
                  ]
         | 
| 1805 | 
            +
                },
         | 
| 1806 | 
            +
                "contracts/type/Key32.sol": {
         | 
| 1807 | 
            +
                  "Key32Lib": [
         | 
| 1808 | 
            +
                    {
         | 
| 1809 | 
            +
                      "length": 20,
         | 
| 1810 | 
            +
                      "start": 1606
         | 
| 1811 | 
            +
                    },
         | 
| 1812 | 
            +
                    {
         | 
| 1813 | 
            +
                      "length": 20,
         | 
| 1814 | 
            +
                      "start": 2309
         | 
| 1815 | 
            +
                    },
         | 
| 1816 | 
            +
                    {
         | 
| 1817 | 
            +
                      "length": 20,
         | 
| 1818 | 
            +
                      "start": 2428
         | 
| 1819 | 
            +
                    },
         | 
| 1820 | 
            +
                    {
         | 
| 1821 | 
            +
                      "length": 20,
         | 
| 1822 | 
            +
                      "start": 11754
         | 
| 1823 | 
            +
                    },
         | 
| 1824 | 
            +
                    {
         | 
| 1825 | 
            +
                      "length": 20,
         | 
| 1826 | 
            +
                      "start": 13712
         | 
| 1827 | 
            +
                    },
         | 
| 1828 | 
            +
                    {
         | 
| 1829 | 
            +
                      "length": 20,
         | 
| 1830 | 
            +
                      "start": 13828
         | 
| 1831 | 
            +
                    },
         | 
| 1832 | 
            +
                    {
         | 
| 1833 | 
            +
                      "length": 20,
         | 
| 1834 | 
            +
                      "start": 15331
         | 
| 1835 | 
            +
                    },
         | 
| 1836 | 
            +
                    {
         | 
| 1837 | 
            +
                      "length": 20,
         | 
| 1838 | 
            +
                      "start": 16014
         | 
| 1839 | 
            +
                    },
         | 
| 1840 | 
            +
                    {
         | 
| 1841 | 
            +
                      "length": 20,
         | 
| 1842 | 
            +
                      "start": 16130
         | 
| 1843 | 
            +
                    },
         | 
| 1844 | 
            +
                    {
         | 
| 1845 | 
            +
                      "length": 20,
         | 
| 1846 | 
            +
                      "start": 18260
         | 
| 1847 | 
            +
                    },
         | 
| 1848 | 
            +
                    {
         | 
| 1849 | 
            +
                      "length": 20,
         | 
| 1850 | 
            +
                      "start": 18376
         | 
| 1851 | 
            +
                    }
         | 
| 1852 | 
            +
                  ]
         | 
| 1853 | 
            +
                },
         | 
| 1854 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 1855 | 
            +
                  "NftIdLib": [
         | 
| 1856 | 
            +
                    {
         | 
| 1857 | 
            +
                      "length": 20,
         | 
| 1858 | 
            +
                      "start": 338
         | 
| 1859 | 
            +
                    },
         | 
| 1860 | 
            +
                    {
         | 
| 1861 | 
            +
                      "length": 20,
         | 
| 1862 | 
            +
                      "start": 997
         | 
| 1863 | 
            +
                    },
         | 
| 1864 | 
            +
                    {
         | 
| 1865 | 
            +
                      "length": 20,
         | 
| 1866 | 
            +
                      "start": 6973
         | 
| 1867 | 
            +
                    },
         | 
| 1868 | 
            +
                    {
         | 
| 1869 | 
            +
                      "length": 20,
         | 
| 1870 | 
            +
                      "start": 8748
         | 
| 1871 | 
            +
                    },
         | 
| 1872 | 
            +
                    {
         | 
| 1873 | 
            +
                      "length": 20,
         | 
| 1874 | 
            +
                      "start": 8873
         | 
| 1875 | 
            +
                    },
         | 
| 1876 | 
            +
                    {
         | 
| 1877 | 
            +
                      "length": 20,
         | 
| 1878 | 
            +
                      "start": 9241
         | 
| 1879 | 
            +
                    },
         | 
| 1880 | 
            +
                    {
         | 
| 1881 | 
            +
                      "length": 20,
         | 
| 1882 | 
            +
                      "start": 13991
         | 
| 1883 | 
            +
                    }
         | 
| 1884 | 
            +
                  ]
         | 
| 1885 | 
            +
                },
         | 
| 1886 | 
            +
                "contracts/type/NftIdSet.sol": {
         | 
| 1887 | 
            +
                  "LibNftIdSet": [
         | 
| 1888 | 
            +
                    {
         | 
| 1889 | 
            +
                      "length": 20,
         | 
| 1890 | 
            +
                      "start": 22524
         | 
| 1891 | 
            +
                    },
         | 
| 1892 | 
            +
                    {
         | 
| 1893 | 
            +
                      "length": 20,
         | 
| 1894 | 
            +
                      "start": 22646
         | 
| 1895 | 
            +
                    },
         | 
| 1896 | 
            +
                    {
         | 
| 1897 | 
            +
                      "length": 20,
         | 
| 1898 | 
            +
                      "start": 22779
         | 
| 1899 | 
            +
                    },
         | 
| 1900 | 
            +
                    {
         | 
| 1901 | 
            +
                      "length": 20,
         | 
| 1902 | 
            +
                      "start": 22914
         | 
| 1903 | 
            +
                    },
         | 
| 1904 | 
            +
                    {
         | 
| 1905 | 
            +
                      "length": 20,
         | 
| 1906 | 
            +
                      "start": 23052
         | 
| 1907 | 
            +
                    },
         | 
| 1908 | 
            +
                    {
         | 
| 1909 | 
            +
                      "length": 20,
         | 
| 1910 | 
            +
                      "start": 23164
         | 
| 1911 | 
            +
                    },
         | 
| 1912 | 
            +
                    {
         | 
| 1913 | 
            +
                      "length": 20,
         | 
| 1914 | 
            +
                      "start": 23350
         | 
| 1915 | 
            +
                    },
         | 
| 1916 | 
            +
                    {
         | 
| 1917 | 
            +
                      "length": 20,
         | 
| 1918 | 
            +
                      "start": 23409
         | 
| 1919 | 
            +
                    },
         | 
| 1920 | 
            +
                    {
         | 
| 1921 | 
            +
                      "length": 20,
         | 
| 1922 | 
            +
                      "start": 23534
         | 
| 1923 | 
            +
                    },
         | 
| 1924 | 
            +
                    {
         | 
| 1925 | 
            +
                      "length": 20,
         | 
| 1926 | 
            +
                      "start": 23600
         | 
| 1927 | 
            +
                    }
         | 
| 1928 | 
            +
                  ]
         | 
| 1929 | 
            +
                },
         | 
| 1930 | 
            +
                "contracts/type/ObjectType.sol": {
         | 
| 1931 | 
            +
                  "ObjectTypeLib": [
         | 
| 1932 | 
            +
                    {
         | 
| 1933 | 
            +
                      "length": 20,
         | 
| 1934 | 
            +
                      "start": 1730
         | 
| 1935 | 
            +
                    },
         | 
| 1936 | 
            +
                    {
         | 
| 1937 | 
            +
                      "length": 20,
         | 
| 1938 | 
            +
                      "start": 15452
         | 
| 1939 | 
            +
                    }
         | 
| 1940 | 
            +
                  ]
         | 
| 1941 | 
            +
                },
         | 
| 1942 | 
            +
                "contracts/type/StateId.sol": {
         | 
| 1943 | 
            +
                  "StateIdLib": [
         | 
| 1944 | 
            +
                    {
         | 
| 1945 | 
            +
                      "length": 20,
         | 
| 1946 | 
            +
                      "start": 1911
         | 
| 1947 | 
            +
                    },
         | 
| 1948 | 
            +
                    {
         | 
| 1949 | 
            +
                      "length": 20,
         | 
| 1950 | 
            +
                      "start": 3541
         | 
| 1951 | 
            +
                    },
         | 
| 1952 | 
            +
                    {
         | 
| 1953 | 
            +
                      "length": 20,
         | 
| 1954 | 
            +
                      "start": 7972
         | 
| 1955 | 
            +
                    },
         | 
| 1956 | 
            +
                    {
         | 
| 1957 | 
            +
                      "length": 20,
         | 
| 1958 | 
            +
                      "start": 10540
         | 
| 1959 | 
            +
                    },
         | 
| 1960 | 
            +
                    {
         | 
| 1961 | 
            +
                      "length": 20,
         | 
| 1962 | 
            +
                      "start": 10811
         | 
| 1963 | 
            +
                    },
         | 
| 1964 | 
            +
                    {
         | 
| 1965 | 
            +
                      "length": 20,
         | 
| 1966 | 
            +
                      "start": 15628
         | 
| 1967 | 
            +
                    },
         | 
| 1968 | 
            +
                    {
         | 
| 1969 | 
            +
                      "length": 20,
         | 
| 1970 | 
            +
                      "start": 17843
         | 
| 1971 | 
            +
                    },
         | 
| 1972 | 
            +
                    {
         | 
| 1973 | 
            +
                      "length": 20,
         | 
| 1974 | 
            +
                      "start": 18033
         | 
| 1975 | 
            +
                    }
         | 
| 1976 | 
            +
                  ]
         | 
| 1977 | 
            +
                },
         | 
| 1978 | 
            +
                "contracts/type/Timestamp.sol": {
         | 
| 1979 | 
            +
                  "TimestampLib": [
         | 
| 1980 | 
            +
                    {
         | 
| 1981 | 
            +
                      "length": 20,
         | 
| 1982 | 
            +
                      "start": 14832
         | 
| 1983 | 
            +
                    },
         | 
| 1984 | 
            +
                    {
         | 
| 1985 | 
            +
                      "length": 20,
         | 
| 1986 | 
            +
                      "start": 16831
         | 
| 1987 | 
            +
                    }
         | 
| 1988 | 
            +
                  ]
         | 
| 1989 | 
            +
                },
         | 
| 1990 | 
            +
                "contracts/type/UFixed.sol": {
         | 
| 1991 | 
            +
                  "UFixedLib": [
         | 
| 1992 | 
            +
                    {
         | 
| 1993 | 
            +
                      "length": 20,
         | 
| 1994 | 
            +
                      "start": 12062
         | 
| 1995 | 
            +
                    }
         | 
| 1996 | 
            +
                  ]
         | 
| 1997 | 
            +
                }
         | 
| 1998 | 
            +
              },
         | 
| 1999 | 
            +
              "deployedLinkReferences": {
         | 
| 2000 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 2001 | 
            +
                  "AmountLib": [
         | 
| 2002 | 
            +
                    {
         | 
| 2003 | 
            +
                      "length": 20,
         | 
| 2004 | 
            +
                      "start": 2745
         | 
| 2005 | 
            +
                    },
         | 
| 2006 | 
            +
                    {
         | 
| 2007 | 
            +
                      "length": 20,
         | 
| 2008 | 
            +
                      "start": 3581
         | 
| 2009 | 
            +
                    },
         | 
| 2010 | 
            +
                    {
         | 
| 2011 | 
            +
                      "length": 20,
         | 
| 2012 | 
            +
                      "start": 4895
         | 
| 2013 | 
            +
                    },
         | 
| 2014 | 
            +
                    {
         | 
| 2015 | 
            +
                      "length": 20,
         | 
| 2016 | 
            +
                      "start": 6538
         | 
| 2017 | 
            +
                    },
         | 
| 2018 | 
            +
                    {
         | 
| 2019 | 
            +
                      "length": 20,
         | 
| 2020 | 
            +
                      "start": 6692
         | 
| 2021 | 
            +
                    },
         | 
| 2022 | 
            +
                    {
         | 
| 2023 | 
            +
                      "length": 20,
         | 
| 2024 | 
            +
                      "start": 7352
         | 
| 2025 | 
            +
                    },
         | 
| 2026 | 
            +
                    {
         | 
| 2027 | 
            +
                      "length": 20,
         | 
| 2028 | 
            +
                      "start": 8386
         | 
| 2029 | 
            +
                    },
         | 
| 2030 | 
            +
                    {
         | 
| 2031 | 
            +
                      "length": 20,
         | 
| 2032 | 
            +
                      "start": 8521
         | 
| 2033 | 
            +
                    },
         | 
| 2034 | 
            +
                    {
         | 
| 2035 | 
            +
                      "length": 20,
         | 
| 2036 | 
            +
                      "start": 10136
         | 
| 2037 | 
            +
                    },
         | 
| 2038 | 
            +
                    {
         | 
| 2039 | 
            +
                      "length": 20,
         | 
| 2040 | 
            +
                      "start": 11893
         | 
| 2041 | 
            +
                    },
         | 
| 2042 | 
            +
                    {
         | 
| 2043 | 
            +
                      "length": 20,
         | 
| 2044 | 
            +
                      "start": 12075
         | 
| 2045 | 
            +
                    },
         | 
| 2046 | 
            +
                    {
         | 
| 2047 | 
            +
                      "length": 20,
         | 
| 2048 | 
            +
                      "start": 14206
         | 
| 2049 | 
            +
                    },
         | 
| 2050 | 
            +
                    {
         | 
| 2051 | 
            +
                      "length": 20,
         | 
| 2052 | 
            +
                      "start": 14388
         | 
| 2053 | 
            +
                    },
         | 
| 2054 | 
            +
                    {
         | 
| 2055 | 
            +
                      "length": 20,
         | 
| 2056 | 
            +
                      "start": 14570
         | 
| 2057 | 
            +
                    }
         | 
| 2058 | 
            +
                  ]
         | 
| 2059 | 
            +
                },
         | 
| 2060 | 
            +
                "contracts/type/Blocknumber.sol": {
         | 
| 2061 | 
            +
                  "BlocknumberLib": [
         | 
| 2062 | 
            +
                    {
         | 
| 2063 | 
            +
                      "length": 20,
         | 
| 2064 | 
            +
                      "start": 5195
         | 
| 2065 | 
            +
                    },
         | 
| 2066 | 
            +
                    {
         | 
| 2067 | 
            +
                      "length": 20,
         | 
| 2068 | 
            +
                      "start": 7877
         | 
| 2069 | 
            +
                    },
         | 
| 2070 | 
            +
                    {
         | 
| 2071 | 
            +
                      "length": 20,
         | 
| 2072 | 
            +
                      "start": 8669
         | 
| 2073 | 
            +
                    },
         | 
| 2074 | 
            +
                    {
         | 
| 2075 | 
            +
                      "length": 20,
         | 
| 2076 | 
            +
                      "start": 8889
         | 
| 2077 | 
            +
                    },
         | 
| 2078 | 
            +
                    {
         | 
| 2079 | 
            +
                      "length": 20,
         | 
| 2080 | 
            +
                      "start": 9628
         | 
| 2081 | 
            +
                    },
         | 
| 2082 | 
            +
                    {
         | 
| 2083 | 
            +
                      "length": 20,
         | 
| 2084 | 
            +
                      "start": 9955
         | 
| 2085 | 
            +
                    },
         | 
| 2086 | 
            +
                    {
         | 
| 2087 | 
            +
                      "length": 20,
         | 
| 2088 | 
            +
                      "start": 10424
         | 
| 2089 | 
            +
                    },
         | 
| 2090 | 
            +
                    {
         | 
| 2091 | 
            +
                      "length": 20,
         | 
| 2092 | 
            +
                      "start": 10673
         | 
| 2093 | 
            +
                    },
         | 
| 2094 | 
            +
                    {
         | 
| 2095 | 
            +
                      "length": 20,
         | 
| 2096 | 
            +
                      "start": 11756
         | 
| 2097 | 
            +
                    },
         | 
| 2098 | 
            +
                    {
         | 
| 2099 | 
            +
                      "length": 20,
         | 
| 2100 | 
            +
                      "start": 12435
         | 
| 2101 | 
            +
                    },
         | 
| 2102 | 
            +
                    {
         | 
| 2103 | 
            +
                      "length": 20,
         | 
| 2104 | 
            +
                      "start": 12652
         | 
| 2105 | 
            +
                    },
         | 
| 2106 | 
            +
                    {
         | 
| 2107 | 
            +
                      "length": 20,
         | 
| 2108 | 
            +
                      "start": 14069
         | 
| 2109 | 
            +
                    },
         | 
| 2110 | 
            +
                    {
         | 
| 2111 | 
            +
                      "length": 20,
         | 
| 2112 | 
            +
                      "start": 14752
         | 
| 2113 | 
            +
                    },
         | 
| 2114 | 
            +
                    {
         | 
| 2115 | 
            +
                      "length": 20,
         | 
| 2116 | 
            +
                      "start": 14827
         | 
| 2117 | 
            +
                    }
         | 
| 2118 | 
            +
                  ]
         | 
| 2119 | 
            +
                },
         | 
| 2120 | 
            +
                "contracts/type/Key32.sol": {
         | 
| 2121 | 
            +
                  "Key32Lib": [
         | 
| 2122 | 
            +
                    {
         | 
| 2123 | 
            +
                      "length": 20,
         | 
| 2124 | 
            +
                      "start": 7180
         | 
| 2125 | 
            +
                    },
         | 
| 2126 | 
            +
                    {
         | 
| 2127 | 
            +
                      "length": 20,
         | 
| 2128 | 
            +
                      "start": 9138
         | 
| 2129 | 
            +
                    },
         | 
| 2130 | 
            +
                    {
         | 
| 2131 | 
            +
                      "length": 20,
         | 
| 2132 | 
            +
                      "start": 9254
         | 
| 2133 | 
            +
                    },
         | 
| 2134 | 
            +
                    {
         | 
| 2135 | 
            +
                      "length": 20,
         | 
| 2136 | 
            +
                      "start": 10757
         | 
| 2137 | 
            +
                    },
         | 
| 2138 | 
            +
                    {
         | 
| 2139 | 
            +
                      "length": 20,
         | 
| 2140 | 
            +
                      "start": 11440
         | 
| 2141 | 
            +
                    },
         | 
| 2142 | 
            +
                    {
         | 
| 2143 | 
            +
                      "length": 20,
         | 
| 2144 | 
            +
                      "start": 11556
         | 
| 2145 | 
            +
                    },
         | 
| 2146 | 
            +
                    {
         | 
| 2147 | 
            +
                      "length": 20,
         | 
| 2148 | 
            +
                      "start": 13686
         | 
| 2149 | 
            +
                    },
         | 
| 2150 | 
            +
                    {
         | 
| 2151 | 
            +
                      "length": 20,
         | 
| 2152 | 
            +
                      "start": 13802
         | 
| 2153 | 
            +
                    }
         | 
| 2154 | 
            +
                  ]
         | 
| 2155 | 
            +
                },
         | 
| 2156 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 2157 | 
            +
                  "NftIdLib": [
         | 
| 2158 | 
            +
                    {
         | 
| 2159 | 
            +
                      "length": 20,
         | 
| 2160 | 
            +
                      "start": 2399
         | 
| 2161 | 
            +
                    },
         | 
| 2162 | 
            +
                    {
         | 
| 2163 | 
            +
                      "length": 20,
         | 
| 2164 | 
            +
                      "start": 4174
         | 
| 2165 | 
            +
                    },
         | 
| 2166 | 
            +
                    {
         | 
| 2167 | 
            +
                      "length": 20,
         | 
| 2168 | 
            +
                      "start": 4299
         | 
| 2169 | 
            +
                    },
         | 
| 2170 | 
            +
                    {
         | 
| 2171 | 
            +
                      "length": 20,
         | 
| 2172 | 
            +
                      "start": 4667
         | 
| 2173 | 
            +
                    },
         | 
| 2174 | 
            +
                    {
         | 
| 2175 | 
            +
                      "length": 20,
         | 
| 2176 | 
            +
                      "start": 9417
         | 
| 2177 | 
            +
                    }
         | 
| 2178 | 
            +
                  ]
         | 
| 2179 | 
            +
                },
         | 
| 2180 | 
            +
                "contracts/type/ObjectType.sol": {
         | 
| 2181 | 
            +
                  "ObjectTypeLib": [
         | 
| 2182 | 
            +
                    {
         | 
| 2183 | 
            +
                      "length": 20,
         | 
| 2184 | 
            +
                      "start": 10878
         | 
| 2185 | 
            +
                    }
         | 
| 2186 | 
            +
                  ]
         | 
| 2187 | 
            +
                },
         | 
| 2188 | 
            +
                "contracts/type/StateId.sol": {
         | 
| 2189 | 
            +
                  "StateIdLib": [
         | 
| 2190 | 
            +
                    {
         | 
| 2191 | 
            +
                      "length": 20,
         | 
| 2192 | 
            +
                      "start": 3398
         | 
| 2193 | 
            +
                    },
         | 
| 2194 | 
            +
                    {
         | 
| 2195 | 
            +
                      "length": 20,
         | 
| 2196 | 
            +
                      "start": 5966
         | 
| 2197 | 
            +
                    },
         | 
| 2198 | 
            +
                    {
         | 
| 2199 | 
            +
                      "length": 20,
         | 
| 2200 | 
            +
                      "start": 6237
         | 
| 2201 | 
            +
                    },
         | 
| 2202 | 
            +
                    {
         | 
| 2203 | 
            +
                      "length": 20,
         | 
| 2204 | 
            +
                      "start": 11054
         | 
| 2205 | 
            +
                    },
         | 
| 2206 | 
            +
                    {
         | 
| 2207 | 
            +
                      "length": 20,
         | 
| 2208 | 
            +
                      "start": 13269
         | 
| 2209 | 
            +
                    },
         | 
| 2210 | 
            +
                    {
         | 
| 2211 | 
            +
                      "length": 20,
         | 
| 2212 | 
            +
                      "start": 13459
         | 
| 2213 | 
            +
                    }
         | 
| 2214 | 
            +
                  ]
         | 
| 2215 | 
            +
                },
         | 
| 2216 | 
            +
                "contracts/type/Timestamp.sol": {
         | 
| 2217 | 
            +
                  "TimestampLib": [
         | 
| 2218 | 
            +
                    {
         | 
| 2219 | 
            +
                      "length": 20,
         | 
| 2220 | 
            +
                      "start": 10258
         | 
| 2221 | 
            +
                    },
         | 
| 2222 | 
            +
                    {
         | 
| 2223 | 
            +
                      "length": 20,
         | 
| 2224 | 
            +
                      "start": 12257
         | 
| 2225 | 
            +
                    }
         | 
| 2226 | 
            +
                  ]
         | 
| 2227 | 
            +
                },
         | 
| 2228 | 
            +
                "contracts/type/UFixed.sol": {
         | 
| 2229 | 
            +
                  "UFixedLib": [
         | 
| 2230 | 
            +
                    {
         | 
| 2231 | 
            +
                      "length": 20,
         | 
| 2232 | 
            +
                      "start": 7488
         | 
| 2233 | 
            +
                    }
         | 
| 2234 | 
            +
                  ]
         | 
| 2235 | 
            +
                }
         | 
| 2236 | 
            +
              }
         | 
| 2237 | 
            +
            }
         |