@etherisc/gif-next 0.0.2-92c50c2-136 → 0.0.2-92cdbc9-533
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/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.json +10 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/{shared → authorization}/IAccessAdmin.sol/IAccessAdmin.json +95 -252
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/{registry → authorization}/IServiceAuthorization.sol/IServiceAuthorization.json +10 -10
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1505 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +17 -242
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +106 -90
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +55 -55
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +71 -146
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +32 -16
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +33 -39
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +0 -13
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +27 -39
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +29 -90
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1208 -290
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +110 -76
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +61 -121
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +35 -59
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +73 -79
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +6 -6
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +3 -9
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.json +2 -2
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1155 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +43 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +13 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +13 -96
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +32 -32
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +34 -34
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1477 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +44 -44
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +40 -40
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +7 -202
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +7 -303
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +36 -36
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +36 -36
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +32 -32
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +34 -34
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1299 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +72 -72
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +54 -54
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +13 -42
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +50 -50
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +43 -43
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +58 -58
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +47 -47
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +13 -153
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +20 -20
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +28 -28
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +0 -44
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +24 -68
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +233 -388
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +18 -18
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +27 -27
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +6 -6
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +53 -71
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +24 -16
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +4 -4
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +62 -86
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +49 -61
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +13 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +13 -53
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +22 -22
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +6 -6
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +6 -6
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -14
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +8 -8
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +6 -6
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +32 -32
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +44 -44
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +6 -6
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +40 -40
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +6 -6
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +26 -26
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +31 -31
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +131 -131
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +22 -22
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +2 -2
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +8 -8
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +4 -4
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +4 -4
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +12 -12
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +4 -4
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +55 -2
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +4 -4
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +4 -4
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +4 -4
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +4 -4
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +117 -14
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +2 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +2 -2
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.json +2 -2
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +4 -4
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +21 -2
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +2 -2
- package/contracts/{shared → authorization}/AccessAdmin.sol +135 -303
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +218 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/{shared → authorization}/IAccessAdmin.sol +22 -54
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/{registry → authorization}/IServiceAuthorization.sol +5 -5
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/{registry → authorization}/ServiceAuthorization.sol +17 -17
- package/contracts/distribution/BasicDistribution.sol +149 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +43 -0
- package/contracts/distribution/Distribution.sol +126 -104
- package/contracts/distribution/DistributionService.sol +10 -5
- package/contracts/distribution/IDistributionComponent.sol +17 -35
- package/contracts/distribution/IDistributionService.sol +5 -1
- package/contracts/instance/IInstance.sol +3 -4
- package/contracts/instance/IInstanceService.sol +7 -12
- package/contracts/instance/Instance.sol +58 -67
- package/contracts/instance/InstanceAdmin.sol +202 -267
- package/contracts/instance/InstanceAuthorizationV3.sol +202 -0
- package/contracts/instance/InstanceReader.sol +22 -9
- package/contracts/instance/InstanceService.sol +66 -62
- package/contracts/instance/InstanceStore.sol +5 -1
- package/contracts/instance/base/ObjectManager.sol +7 -8
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +16 -0
- package/contracts/oracle/Oracle.sol +61 -49
- package/contracts/pool/BasicPool.sol +164 -0
- package/contracts/pool/BasicPoolAuthorization.sol +49 -0
- package/contracts/pool/IPoolComponent.sol +0 -60
- package/contracts/pool/Pool.sol +143 -131
- package/contracts/pool/PoolService.sol +1 -1
- package/contracts/product/BasicProduct.sol +82 -0
- package/contracts/product/BasicProductAuthorization.sol +40 -0
- package/contracts/product/IProductComponent.sol +6 -9
- package/contracts/product/Product.sol +103 -88
- package/contracts/registry/IRegistry.sol +5 -8
- package/contracts/registry/Registry.sol +1 -5
- package/contracts/registry/RegistryAdmin.sol +101 -71
- package/contracts/registry/ReleaseManager.sol +53 -69
- package/contracts/registry/ServiceAuthorizationV3.sol +9 -9
- package/contracts/shared/ComponentService.sol +19 -58
- package/contracts/shared/ComponentVerifyingService.sol +1 -1
- package/contracts/shared/IInstanceLinkedComponent.sol +4 -0
- package/contracts/shared/InstanceLinkedComponent.sol +26 -19
- package/contracts/type/ObjectType.sol +34 -0
- package/contracts/type/RoleId.sol +55 -82
- package/contracts/type/UFixed.sol +6 -0
- package/package.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +0 -228
- package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +0 -4
- package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +0 -4
- package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.json +0 -190
- package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +0 -1559
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +0 -1193
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +0 -1747
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +0 -1760
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +0 -1838
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +0 -4
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +0 -1856
- package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +0 -4
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +0 -1562
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +0 -4
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +0 -1600
- package/contracts/instance/InstanceAuthorizationsLib.sol +0 -377
- package/contracts/shared/AccessManagerCustom.sol +0 -741
- package/contracts/shared/AccessManagerExtended.sol +0 -481
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +0 -13
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +0 -137
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +0 -14
- package/contracts/shared/IAccessManagerExtended.sol +0 -74
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +0 -18
@@ -66,8 +66,8 @@
|
|
66
66
|
"type": "function"
|
67
67
|
}
|
68
68
|
],
|
69
|
-
"bytecode": "
|
70
|
-
"deployedBytecode": "
|
69
|
+
"bytecode": "0x608060405234801561001057600080fd5b506101ce806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806301ffc9a714610046578063214cdb801461008757806336fc697e1461009c575b600080fd5b610073610054366004610167565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200160405180910390f35b61009a610095366004610167565b6100a4565b005b61009a6100d1565b6100ac610117565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6100d9610117565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661016557604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561017957600080fd5b81356001600160e01b03198116811461019157600080fd5b939250505056fea264697066735822122056e1957f8a0441dd380239fa6d3277e59f4a73f2181d3df2d491f8893c05d42164736f6c63430008140033",
|
70
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c806301ffc9a714610046578063214cdb801461008757806336fc697e1461009c575b600080fd5b610073610054366004610167565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200160405180910390f35b61009a610095366004610167565b6100a4565b005b61009a6100d1565b6100ac610117565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6100d9610117565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661016557604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561017957600080fd5b81356001600160e01b03198116811461019157600080fd5b939250505056fea264697066735822122056e1957f8a0441dd380239fa6d3277e59f4a73f2181d3df2d491f8893c05d42164736f6c63430008140033",
|
71
71
|
"linkReferences": {},
|
72
72
|
"deployedLinkReferences": {}
|
73
73
|
}
|
package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json
CHANGED
@@ -281,6 +281,19 @@
|
|
281
281
|
"stateMutability": "view",
|
282
282
|
"type": "function"
|
283
283
|
},
|
284
|
+
{
|
285
|
+
"inputs": [],
|
286
|
+
"name": "getAuthorization",
|
287
|
+
"outputs": [
|
288
|
+
{
|
289
|
+
"internalType": "contract IAuthorization",
|
290
|
+
"name": "authorization",
|
291
|
+
"type": "address"
|
292
|
+
}
|
293
|
+
],
|
294
|
+
"stateMutability": "view",
|
295
|
+
"type": "function"
|
296
|
+
},
|
284
297
|
{
|
285
298
|
"inputs": [],
|
286
299
|
"name": "getComponentInfo",
|
@@ -412,6 +412,19 @@
|
|
412
412
|
"stateMutability": "view",
|
413
413
|
"type": "function"
|
414
414
|
},
|
415
|
+
{
|
416
|
+
"inputs": [],
|
417
|
+
"name": "getAuthorization",
|
418
|
+
"outputs": [
|
419
|
+
{
|
420
|
+
"internalType": "contract IAuthorization",
|
421
|
+
"name": "authorization",
|
422
|
+
"type": "address"
|
423
|
+
}
|
424
|
+
],
|
425
|
+
"stateMutability": "view",
|
426
|
+
"type": "function"
|
427
|
+
},
|
415
428
|
{
|
416
429
|
"inputs": [],
|
417
430
|
"name": "getComponentInfo",
|
@@ -734,59 +747,6 @@
|
|
734
747
|
"stateMutability": "nonpayable",
|
735
748
|
"type": "function"
|
736
749
|
},
|
737
|
-
{
|
738
|
-
"inputs": [
|
739
|
-
{
|
740
|
-
"internalType": "address",
|
741
|
-
"name": "registry",
|
742
|
-
"type": "address"
|
743
|
-
},
|
744
|
-
{
|
745
|
-
"internalType": "NftId",
|
746
|
-
"name": "instanceNftId",
|
747
|
-
"type": "uint96"
|
748
|
-
},
|
749
|
-
{
|
750
|
-
"internalType": "string",
|
751
|
-
"name": "name",
|
752
|
-
"type": "string"
|
753
|
-
},
|
754
|
-
{
|
755
|
-
"internalType": "address",
|
756
|
-
"name": "token",
|
757
|
-
"type": "address"
|
758
|
-
},
|
759
|
-
{
|
760
|
-
"internalType": "ObjectType",
|
761
|
-
"name": "componentType",
|
762
|
-
"type": "uint8"
|
763
|
-
},
|
764
|
-
{
|
765
|
-
"internalType": "bool",
|
766
|
-
"name": "isInterceptor",
|
767
|
-
"type": "bool"
|
768
|
-
},
|
769
|
-
{
|
770
|
-
"internalType": "address",
|
771
|
-
"name": "initialOwner",
|
772
|
-
"type": "address"
|
773
|
-
},
|
774
|
-
{
|
775
|
-
"internalType": "bytes",
|
776
|
-
"name": "registryData",
|
777
|
-
"type": "bytes"
|
778
|
-
},
|
779
|
-
{
|
780
|
-
"internalType": "bytes",
|
781
|
-
"name": "componentData",
|
782
|
-
"type": "bytes"
|
783
|
-
}
|
784
|
-
],
|
785
|
-
"name": "initializeInstanceLinkedComponent",
|
786
|
-
"outputs": [],
|
787
|
-
"stateMutability": "nonpayable",
|
788
|
-
"type": "function"
|
789
|
-
},
|
790
750
|
{
|
791
751
|
"inputs": [
|
792
752
|
{
|
@@ -209,50 +209,50 @@
|
|
209
209
|
"type": "function"
|
210
210
|
}
|
211
211
|
],
|
212
|
-
"bytecode": "
|
213
|
-
"deployedBytecode": "
|
212
|
+
"bytecode": "0x608060405234801561001057600080fd5b50600480546001600160a01b03191633179055610749806100326000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80638de1d14e116100665780638de1d14e14610113578063954a317214610126578063996f8d9114610139578063ddfe867f1461014f578063f2b297811461015757600080fd5b8063042f9da3146100985780634f9c1c09146100ad578063706e9ba9146100d5578063777d185714610100575b600080fd5b6100ab6100a6366004610645565b61016a565b005b6100c06100bb36600461067e565b610229565b60405190151581526020015b60405180910390f35b6100e86100e33660046106a2565b6102b6565b6040516001600160601b0390911681526020016100cc565b6100c061010e36600461067e565b610335565b6100ab61012136600461067e565b61037f565b6100ab610134366004610645565b6104a9565b610141610533565b6040519081526020016100cc565b6101416105b0565b6100e86101653660046106a2565b6105eb565b6004546001600160a01b031633146101b25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044015b60405180910390fd5b604051631461054360e31b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a18906044015b60006040518083038186803b15801561020d57600080fd5b505af4158015610221573d6000803e3d6000fd5b505050505050565b604051632bfdd6b960e01b81526000600482018190526001600160601b03831660248301529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b9906044015b602060405180830381865af415801561028c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106bb565b92915050565b60405163e797d89960e01b8152600060048201819052602482018390529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044015b602060405180830381865af4158015610311573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106dd565b604051632bfdd6b960e01b8152600260048201526001600160601b038216602482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b99060440161026f565b6004546001600160a01b031633146103c25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b604051631461054360e31b8152600060048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a189060440160006040518083038186803b15801561041c57600080fd5b505af4158015610430573d6000803e3d6000fd5b5050604051631461054360e31b8152600260048201526001600160601b038416602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__925063a3082a18915060440160006040518083038186803b15801561048e57600080fd5b505af41580156104a2573d6000803e3d6000fd5b5050505050565b6004546001600160a01b031633146104ec5760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b60405163539eabab60e11b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a73d5756906044016101f5565b604051638b6233dd60e01b81526002600482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd906024015b602060405180830381865af4158015610587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ab91906106fa565b905090565b604051638b6233dd60e01b81526000600482018190529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd9060240161056a565b60405163e797d89960e01b8152600260048201526024810182905260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044016102f4565b6001600160601b038116811461064257600080fd5b50565b6000806040838503121561065857600080fd5b82356106638161062d565b915060208301356106738161062d565b809150509250929050565b60006020828403121561069057600080fd5b813561069b8161062d565b9392505050565b6000602082840312156106b457600080fd5b5035919050565b6000602082840312156106cd57600080fd5b8151801515811461069b57600080fd5b6000602082840312156106ef57600080fd5b815161069b8161062d565b60006020828403121561070c57600080fd5b505191905056fea264697066735822122053c35a93348e3d93fce1d49f30eb08404a743dc11e6d31e30fd19d91e7a7351664736f6c63430008140033",
|
213
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100935760003560e01c80638de1d14e116100665780638de1d14e14610113578063954a317214610126578063996f8d9114610139578063ddfe867f1461014f578063f2b297811461015757600080fd5b8063042f9da3146100985780634f9c1c09146100ad578063706e9ba9146100d5578063777d185714610100575b600080fd5b6100ab6100a6366004610645565b61016a565b005b6100c06100bb36600461067e565b610229565b60405190151581526020015b60405180910390f35b6100e86100e33660046106a2565b6102b6565b6040516001600160601b0390911681526020016100cc565b6100c061010e36600461067e565b610335565b6100ab61012136600461067e565b61037f565b6100ab610134366004610645565b6104a9565b610141610533565b6040519081526020016100cc565b6101416105b0565b6100e86101653660046106a2565b6105eb565b6004546001600160a01b031633146101b25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044015b60405180910390fd5b604051631461054360e31b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a18906044015b60006040518083038186803b15801561020d57600080fd5b505af4158015610221573d6000803e3d6000fd5b505050505050565b604051632bfdd6b960e01b81526000600482018190526001600160601b03831660248301529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b9906044015b602060405180830381865af415801561028c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106bb565b92915050565b60405163e797d89960e01b8152600060048201819052602482018390529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044015b602060405180830381865af4158015610311573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b091906106dd565b604051632bfdd6b960e01b8152600260048201526001600160601b038216602482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90632bfdd6b99060440161026f565b6004546001600160a01b031633146103c25760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b604051631461054360e31b8152600060048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a3082a189060440160006040518083038186803b15801561041c57600080fd5b505af4158015610430573d6000803e3d6000fd5b5050604051631461054360e31b8152600260048201526001600160601b038416602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__925063a3082a18915060440160006040518083038186803b15801561048e57600080fd5b505af41580156104a2573d6000803e3d6000fd5b5050505050565b6004546001600160a01b031633146104ec5760048054604051631d1f01d960e31b81526001600160a01b03909116918101919091523360248201526044016101a9565b60405163539eabab60e11b8152600260048201526001600160601b038216602482015273__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063a73d5756906044016101f5565b604051638b6233dd60e01b81526002600482015260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd906024015b602060405180830381865af4158015610587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ab91906106fa565b905090565b604051638b6233dd60e01b81526000600482018190529073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__90638b6233dd9060240161056a565b60405163e797d89960e01b8152600260048201526024810182905260009073__$f7a7d9f32fdcd358419ed5ca3af4f3da33$__9063e797d899906044016102f4565b6001600160601b038116811461064257600080fd5b50565b6000806040838503121561065857600080fd5b82356106638161062d565b915060208301356106738161062d565b809150509250929050565b60006020828403121561069057600080fd5b813561069b8161062d565b9392505050565b6000602082840312156106b457600080fd5b5035919050565b6000602082840312156106cd57600080fd5b8151801515811461069b57600080fd5b6000602082840312156106ef57600080fd5b815161069b8161062d565b60006020828403121561070c57600080fd5b505191905056fea264697066735822122053c35a93348e3d93fce1d49f30eb08404a743dc11e6d31e30fd19d91e7a7351664736f6c63430008140033",
|
214
214
|
"linkReferences": {
|
215
215
|
"contracts/type/NftIdSet.sol": {
|
216
216
|
"LibNftIdSet": [
|
217
217
|
{
|
218
218
|
"length": 20,
|
219
|
-
"start":
|
219
|
+
"start": 521
|
220
220
|
},
|
221
221
|
{
|
222
222
|
"length": 20,
|
223
|
-
"start":
|
223
|
+
"start": 643
|
224
224
|
},
|
225
225
|
{
|
226
226
|
"length": 20,
|
227
|
-
"start":
|
227
|
+
"start": 776
|
228
228
|
},
|
229
229
|
{
|
230
230
|
"length": 20,
|
231
|
-
"start":
|
231
|
+
"start": 911
|
232
232
|
},
|
233
233
|
{
|
234
234
|
"length": 20,
|
235
|
-
"start":
|
235
|
+
"start": 1049
|
236
236
|
},
|
237
237
|
{
|
238
238
|
"length": 20,
|
239
|
-
"start":
|
239
|
+
"start": 1161
|
240
240
|
},
|
241
241
|
{
|
242
242
|
"length": 20,
|
243
|
-
"start":
|
243
|
+
"start": 1347
|
244
244
|
},
|
245
245
|
{
|
246
246
|
"length": 20,
|
247
|
-
"start":
|
247
|
+
"start": 1406
|
248
248
|
},
|
249
249
|
{
|
250
250
|
"length": 20,
|
251
|
-
"start":
|
251
|
+
"start": 1531
|
252
252
|
},
|
253
253
|
{
|
254
254
|
"length": 20,
|
255
|
-
"start":
|
255
|
+
"start": 1597
|
256
256
|
}
|
257
257
|
]
|
258
258
|
}
|
@@ -262,43 +262,43 @@
|
|
262
262
|
"LibNftIdSet": [
|
263
263
|
{
|
264
264
|
"length": 20,
|
265
|
-
"start":
|
265
|
+
"start": 471
|
266
266
|
},
|
267
267
|
{
|
268
268
|
"length": 20,
|
269
|
-
"start":
|
269
|
+
"start": 593
|
270
270
|
},
|
271
271
|
{
|
272
272
|
"length": 20,
|
273
|
-
"start":
|
273
|
+
"start": 726
|
274
274
|
},
|
275
275
|
{
|
276
276
|
"length": 20,
|
277
|
-
"start":
|
277
|
+
"start": 861
|
278
278
|
},
|
279
279
|
{
|
280
280
|
"length": 20,
|
281
|
-
"start":
|
281
|
+
"start": 999
|
282
282
|
},
|
283
283
|
{
|
284
284
|
"length": 20,
|
285
|
-
"start":
|
285
|
+
"start": 1111
|
286
286
|
},
|
287
287
|
{
|
288
288
|
"length": 20,
|
289
|
-
"start":
|
289
|
+
"start": 1297
|
290
290
|
},
|
291
291
|
{
|
292
292
|
"length": 20,
|
293
|
-
"start":
|
293
|
+
"start": 1356
|
294
294
|
},
|
295
295
|
{
|
296
296
|
"length": 20,
|
297
|
-
"start":
|
297
|
+
"start": 1481
|
298
298
|
},
|
299
299
|
{
|
300
300
|
"length": 20,
|
301
|
-
"start":
|
301
|
+
"start": 1547
|
302
302
|
}
|
303
303
|
]
|
304
304
|
}
|
@@ -211,18 +211,18 @@
|
|
211
211
|
"type": "function"
|
212
212
|
}
|
213
213
|
],
|
214
|
-
"bytecode": "
|
215
|
-
"deployedBytecode": "
|
214
|
+
"bytecode": "0x608060405234801561001057600080fd5b506108a5806100206000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c8063644c45e011610066578063644c45e014610147578063675393bf14610165578063893d20e814610178578063ada9652e14610180578063f7c34ee0146101a357600080fd5b806301ffc9a7146100a3578063138461e0146100e5578063214cdb801461010557806336fc697e1461011a5780635ab1bd5314610122575b600080fd5b6100d06100b136600461074b565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100ed6101b6565b6040516001600160601b0390911681526020016100dc565b61011861011336600461074b565b6101c6565b005b6101186101f3565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100dc565b600080516020610850833981519152546001600160601b03166100ed565b610118610173366004610791565b610239565b61012f61034c565b61019560008051602061085083398151915281565b6040519081526020016100dc565b6101186101b13660046107ae565b610483565b60006101c1306104fa565b905090565b6101ce6106fb565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6101fb6106fb565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6102416106fb565b806001600160a01b03163b60000361027c5760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526311da029b60e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156102f6575060408051601f3d908101601f191682019092526102f3918101906107e7565b60015b61031e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610273565b806103475760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610273565b505b50565b60008060008051602061085083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156103bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e091906107e7565b1561046d576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610443573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104679190610809565b91505090565b54600160601b90046001600160a01b0316919050565b61048b6106fb565b61049481610239565b61049c6101f3565b6001600160a01b0382166104c35760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061085083398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60008060008051602061085083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561056a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058e91906107e7565b156105ba5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610273565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561060e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063291906107e7565b61065a5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610273565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156106ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d29190610826565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661074957604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561075d57600080fd5b81356001600160e01b03198116811461077557600080fd5b9392505050565b6001600160a01b038116811461034957600080fd5b6000602082840312156107a357600080fd5b81356107758161077c565b600080604083850312156107c157600080fd5b82356107cc8161077c565b915060208301356107dc8161077c565b809150509250929050565b6000602082840312156107f957600080fd5b8151801515811461077557600080fd5b60006020828403121561081b57600080fd5b81516107758161077c565b60006020828403121561083857600080fd5b81516001600160601b038116811461077557600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a264697066735822122012940159a4563b95eb5d8983531860201b9a42a74469940fd103dec3faad014564736f6c63430008140033",
|
215
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061009e5760003560e01c8063644c45e011610066578063644c45e014610147578063675393bf14610165578063893d20e814610178578063ada9652e14610180578063f7c34ee0146101a357600080fd5b806301ffc9a7146100a3578063138461e0146100e5578063214cdb801461010557806336fc697e1461011a5780635ab1bd5314610122575b600080fd5b6100d06100b136600461074b565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100ed6101b6565b6040516001600160601b0390911681526020016100dc565b61011861011336600461074b565b6101c6565b005b6101186101f3565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100dc565b600080516020610850833981519152546001600160601b03166100ed565b610118610173366004610791565b610239565b61012f61034c565b61019560008051602061085083398151915281565b6040519081526020016100dc565b6101186101b13660046107ae565b610483565b60006101c1306104fa565b905090565b6101ce6106fb565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6101fb6106fb565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6102416106fb565b806001600160a01b03163b60000361027c5760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526311da029b60e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156102f6575060408051601f3d908101601f191682019092526102f3918101906107e7565b60015b61031e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610273565b806103475760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610273565b505b50565b60008060008051602061085083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156103bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e091906107e7565b1561046d576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610443573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104679190610809565b91505090565b54600160601b90046001600160a01b0316919050565b61048b6106fb565b61049481610239565b61049c6101f3565b6001600160a01b0382166104c35760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061085083398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60008060008051602061085083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561056a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058e91906107e7565b156105ba5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610273565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561060e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063291906107e7565b61065a5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610273565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156106ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d29190610826565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661074957604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561075d57600080fd5b81356001600160e01b03198116811461077557600080fd5b9392505050565b6001600160a01b038116811461034957600080fd5b6000602082840312156107a357600080fd5b81356107758161077c565b600080604083850312156107c157600080fd5b82356107cc8161077c565b915060208301356107dc8161077c565b809150509250929050565b6000602082840312156107f957600080fd5b8151801515811461077557600080fd5b60006020828403121561081b57600080fd5b81516107758161077c565b60006020828403121561083857600080fd5b81516001600160601b038116811461077557600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a264697066735822122012940159a4563b95eb5d8983531860201b9a42a74469940fd103dec3faad014564736f6c63430008140033",
|
216
216
|
"linkReferences": {
|
217
217
|
"contracts/type/NftId.sol": {
|
218
218
|
"NftIdLib": [
|
219
219
|
{
|
220
220
|
"length": 20,
|
221
|
-
"start":
|
221
|
+
"start": 930
|
222
222
|
},
|
223
223
|
{
|
224
224
|
"length": 20,
|
225
|
-
"start":
|
225
|
+
"start": 1360
|
226
226
|
}
|
227
227
|
]
|
228
228
|
}
|
@@ -232,11 +232,11 @@
|
|
232
232
|
"NftIdLib": [
|
233
233
|
{
|
234
234
|
"length": 20,
|
235
|
-
"start":
|
235
|
+
"start": 898
|
236
236
|
},
|
237
237
|
{
|
238
238
|
"length": 20,
|
239
|
-
"start":
|
239
|
+
"start": 1328
|
240
240
|
}
|
241
241
|
]
|
242
242
|
}
|
@@ -287,18 +287,18 @@
|
|
287
287
|
"type": "function"
|
288
288
|
}
|
289
289
|
],
|
290
|
-
"bytecode": "
|
291
|
-
"deployedBytecode": "
|
290
|
+
"bytecode": "0x608060405234801561001057600080fd5b5061093d806100206000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636bcd7cfd1161008c578063b8ab37f411610066578063b8ab37f41461022d578063b95a758014610241578063c642e0de14610254578063d0030d43146101e757600080fd5b80636bcd7cfd146101d55780636e75a77d146101e7578063b414004e146101f857600080fd5b8063214cdb80116100c8578063214cdb801461019457806336fc697e146101a95780635ab1bd53146101b1578063675393bf146101c257600080fd5b806301ffc9a7146100ef578063117d328c14610131578063150b7a021461015c575b600080fd5b61011c6100fd36600461063c565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61014461013f366004610693565b610267565b6040516001600160a01b039091168152602001610128565b61017b61016a3660046106e8565b630a85bd0160e11b95945050505050565b6040516001600160e01b03199091168152602001610128565b6101a76101a236600461063c565b610410565b005b6101a761043d565b6001546001600160a01b0316610144565b6101a76101d0366004610783565b610483565b6101a76101e336600461079e565b5050565b6101a76101f53660046107cc565b50565b61021f7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0081565b604051908152602001610128565b6101a761023b3660046107e9565b50505050565b6101a761024f366004610843565b610591565b6101a7610262366004610876565b505050565b6001600160601b03821660009081527f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006020908152604080832062ffffff851684529091529020546001600160a01b03168015801561033957506040516302985c6160e01b815262ffffff8316600482015273__$0f9396e6447a4be57af83e53f51d234633$__906302985c6190602401602060405180830381865af4158015610315573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061033991906108c8565b1561040a577f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006001600160601b038416600090815260209182526040808220815163bc1b392d60e01b81529151909373__$0f9396e6447a4be57af83e53f51d234633$__9263bc1b392d92600480830193928290030181865af41580156103c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e891906108ea565b62ffffff1681526020810191909152604001600020546001600160a01b031690505b92915050565b6104186105ec565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6104456105ec565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61048b6105ec565b806001600160a01b03163b6000036104c65760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526311da029b60e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610540575060408051601f3d908101601f1916820190925261053d918101906108c8565b60015b6105685760405163fdeac91f60e01b81526001600160a01b03821660048201526024016104bd565b806101e35760405163fdeac91f60e01b81526001600160a01b03831660048201526024016104bd565b6105996105ec565b6105a282610483565b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0180546001600160a01b0319166001600160a01b0383161790556101e363ba2f336560e01b610410565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661063a57604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561064e57600080fd5b81356001600160e01b03198116811461066657600080fd5b9392505050565b6001600160601b03811681146101f557600080fd5b62ffffff811681146101f557600080fd5b600080604083850312156106a657600080fd5b82356106b18161066d565b915060208301356106c181610682565b809150509250929050565b80356001600160a01b03811681146106e357600080fd5b919050565b60008060008060006080868803121561070057600080fd5b610709866106cc565b9450610717602087016106cc565b935060408601359250606086013567ffffffffffffffff8082111561073b57600080fd5b818801915088601f83011261074f57600080fd5b81358181111561075e57600080fd5b89602082850101111561077057600080fd5b9699959850939650602001949392505050565b60006020828403121561079557600080fd5b610666826106cc565b600080604083850312156107b157600080fd5b82356107bc8161066d565b915060208301356106c18161066d565b6000602082840312156107de57600080fd5b81356106668161066d565b600080600080608085870312156107ff57600080fd5b843561080a8161066d565b9350602085013561081a81610682565b9250610828604086016106cc565b915060608501356108388161066d565b939692955090935050565b6000806040838503121561085657600080fd5b61085f836106cc565b915061086d602084016106cc565b90509250929050565b60008060006060848603121561088b57600080fd5b83356108968161066d565b9250602084013561ffff811681146108ad57600080fd5b915060408401356108bd8161066d565b809150509250925092565b6000602082840312156108da57600080fd5b8151801515811461066657600080fd5b6000602082840312156108fc57600080fd5b81516106668161068256fea2646970667358221220d01eb5867f47ec5c74e14a0316574b2011308d03d6f2f6b1116eec567ef59ca764736f6c63430008140033",
|
291
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636bcd7cfd1161008c578063b8ab37f411610066578063b8ab37f41461022d578063b95a758014610241578063c642e0de14610254578063d0030d43146101e757600080fd5b80636bcd7cfd146101d55780636e75a77d146101e7578063b414004e146101f857600080fd5b8063214cdb80116100c8578063214cdb801461019457806336fc697e146101a95780635ab1bd53146101b1578063675393bf146101c257600080fd5b806301ffc9a7146100ef578063117d328c14610131578063150b7a021461015c575b600080fd5b61011c6100fd36600461063c565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61014461013f366004610693565b610267565b6040516001600160a01b039091168152602001610128565b61017b61016a3660046106e8565b630a85bd0160e11b95945050505050565b6040516001600160e01b03199091168152602001610128565b6101a76101a236600461063c565b610410565b005b6101a761043d565b6001546001600160a01b0316610144565b6101a76101d0366004610783565b610483565b6101a76101e336600461079e565b5050565b6101a76101f53660046107cc565b50565b61021f7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0081565b604051908152602001610128565b6101a761023b3660046107e9565b50505050565b6101a761024f366004610843565b610591565b6101a7610262366004610876565b505050565b6001600160601b03821660009081527f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006020908152604080832062ffffff851684529091529020546001600160a01b03168015801561033957506040516302985c6160e01b815262ffffff8316600482015273__$0f9396e6447a4be57af83e53f51d234633$__906302985c6190602401602060405180830381865af4158015610315573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061033991906108c8565b1561040a577f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006001600160601b038416600090815260209182526040808220815163bc1b392d60e01b81529151909373__$0f9396e6447a4be57af83e53f51d234633$__9263bc1b392d92600480830193928290030181865af41580156103c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e891906108ea565b62ffffff1681526020810191909152604001600020546001600160a01b031690505b92915050565b6104186105ec565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6104456105ec565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61048b6105ec565b806001600160a01b03163b6000036104c65760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526311da029b60e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610540575060408051601f3d908101601f1916820190925261053d918101906108c8565b60015b6105685760405163fdeac91f60e01b81526001600160a01b03821660048201526024016104bd565b806101e35760405163fdeac91f60e01b81526001600160a01b03831660048201526024016104bd565b6105996105ec565b6105a282610483565b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0180546001600160a01b0319166001600160a01b0383161790556101e363ba2f336560e01b610410565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661063a57604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561064e57600080fd5b81356001600160e01b03198116811461066657600080fd5b9392505050565b6001600160601b03811681146101f557600080fd5b62ffffff811681146101f557600080fd5b600080604083850312156106a657600080fd5b82356106b18161066d565b915060208301356106c181610682565b809150509250929050565b80356001600160a01b03811681146106e357600080fd5b919050565b60008060008060006080868803121561070057600080fd5b610709866106cc565b9450610717602087016106cc565b935060408601359250606086013567ffffffffffffffff8082111561073b57600080fd5b818801915088601f83011261074f57600080fd5b81358181111561075e57600080fd5b89602082850101111561077057600080fd5b9699959850939650602001949392505050565b60006020828403121561079557600080fd5b610666826106cc565b600080604083850312156107b157600080fd5b82356107bc8161066d565b915060208301356106c18161066d565b6000602082840312156107de57600080fd5b81356106668161066d565b600080600080608085870312156107ff57600080fd5b843561080a8161066d565b9350602085013561081a81610682565b9250610828604086016106cc565b915060608501356108388161066d565b939692955090935050565b6000806040838503121561085657600080fd5b61085f836106cc565b915061086d602084016106cc565b90509250929050565b60008060006060848603121561088b57600080fd5b83356108968161066d565b9250602084013561ffff811681146108ad57600080fd5b915060408401356108bd8161066d565b809150509250925092565b6000602082840312156108da57600080fd5b8151801515811461066657600080fd5b6000602082840312156108fc57600080fd5b81516106668161068256fea2646970667358221220d01eb5867f47ec5c74e14a0316574b2011308d03d6f2f6b1116eec567ef59ca764736f6c63430008140033",
|
292
292
|
"linkReferences": {
|
293
293
|
"contracts/type/PayoutId.sol": {
|
294
294
|
"PayoutIdLib": [
|
295
295
|
{
|
296
296
|
"length": 20,
|
297
|
-
"start":
|
297
|
+
"start": 763
|
298
298
|
},
|
299
299
|
{
|
300
300
|
"length": 20,
|
301
|
-
"start":
|
301
|
+
"start": 938
|
302
302
|
}
|
303
303
|
]
|
304
304
|
}
|
@@ -308,11 +308,11 @@
|
|
308
308
|
"PayoutIdLib": [
|
309
309
|
{
|
310
310
|
"length": 20,
|
311
|
-
"start":
|
311
|
+
"start": 731
|
312
312
|
},
|
313
313
|
{
|
314
314
|
"length": 20,
|
315
|
-
"start":
|
315
|
+
"start": 906
|
316
316
|
}
|
317
317
|
]
|
318
318
|
}
|