@etherisc/gif-next 0.0.2-e9a637d-547 → 0.0.2-eadf4ad-211
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 +6 -12
 - package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
 - package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +61 -14
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1556 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +819 -0
 - package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +45 -14
 - package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +24 -274
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +6 -6
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +93 -13
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +5 -43
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +109 -29
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +6 -6
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +349 -64
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +49 -278
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +83 -133
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +427 -257
 - package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +49 -0
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +61 -12
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +8 -8
 - package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/{ObjectManager.sol → base/ObjectManager.sol}/ObjectManager.json +3 -3
 - 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/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1288 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +735 -0
 - package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +105 -29
 - package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +56 -25
 - package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +272 -39
 - package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
 - package/artifacts/contracts/{components → pool}/Pool.sol/Pool.json +56 -25
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1622 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +747 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +918 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +687 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1386 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +787 -0
 - package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → product/IApplicationService.sol/IApplicationService.json} +119 -101
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +753 -0
 - package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IPolicyService.sol/IPolicyService.json +129 -84
 - package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +63 -175
 - package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +53 -22
 - package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +6 -14
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1281 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +779 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingService.sol/PricingService.json +1004 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +727 -0
 - package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
 - package/artifacts/contracts/{components → product}/Product.sol/Product.json +53 -22
 - package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductService.sol/ProductService.json +864 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +679 -0
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +73 -13
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +154 -60
 - 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 +97 -29
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +50 -97
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +174 -80
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +78 -47
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +369 -82
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +14 -27
 - package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +3 -3
 - package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/Component.sol/Component.json +38 -7
 - package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/{instance/base → shared}/ComponentService.sol/ComponentService.json +38 -14
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +38 -7
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +0 -13
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +5 -13
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +8 -21
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +49 -33
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +8 -21
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +5 -13
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -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/IStakingService.sol/IStakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +523 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingService.sol/StakingService.json +767 -0
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +667 -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 +281 -0
 - package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Blocknumber.sol/BlocknumberLib.json +3 -3
 - 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/{types → type}/DistributorType.sol/DistributorTypeLib.json +5 -5
 - 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/{types → type}/Key32.sol/Key32Lib.json +3 -3
 - package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/NftId.sol/NftIdLib.json +5 -5
 - package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/NftIdSet.sol/LibNftIdSet.json +3 -3
 - package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/ObjectType.sol/ObjectTypeLib.json +3 -3
 - 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/{types → type}/Referral.sol/ReferralLib.json +5 -5
 - package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/RiskId.sol/RiskIdLib.json +5 -5
 - package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/RoleId.sol/RoleIdLib.json +5 -5
 - package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Seconds.sol/SecondsLib.json +3 -3
 - 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/Timestamp.sol/TimestampLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +20 -7
 - package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/UFixed.sol/MathLib.json +3 -3
 - package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/UFixed.sol/UFixedLib.json +3 -3
 - package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Version.sol/VersionLib.json +3 -3
 - package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
 - package/artifacts/contracts/{types → type}/Version.sol/VersionPartLib.json +3 -3
 - package/contracts/{components → distribution}/Distribution.sol +21 -16
 - package/contracts/{instance/service → distribution}/DistributionService.sol +93 -179
 - package/contracts/{instance/service → distribution}/DistributionServiceManager.sol +14 -11
 - package/contracts/{components → distribution}/IDistributionComponent.sol +7 -7
 - package/contracts/{instance/service → distribution}/IDistributionService.sol +18 -30
 - package/contracts/instance/BundleManager.sol +8 -9
 - package/contracts/instance/IInstance.sol +30 -13
 - package/contracts/instance/IInstanceService.sol +6 -17
 - package/contracts/instance/Instance.sol +76 -46
 - package/contracts/instance/InstanceAccessManager.sol +8 -5
 - package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
 - package/contracts/instance/InstanceReader.sol +91 -16
 - package/contracts/instance/InstanceService.sol +78 -307
 - package/contracts/instance/InstanceServiceManager.sol +11 -21
 - package/contracts/instance/InstanceStore.sol +57 -65
 - package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +1 -1
 - package/contracts/instance/base/IKeyValueStore.sol +14 -10
 - package/contracts/instance/base/ILifecycle.sol +3 -3
 - package/contracts/instance/base/KeyValueStore.sol +32 -43
 - package/contracts/instance/base/Lifecycle.sol +17 -5
 - package/contracts/instance/{ObjectManager.sol → base/ObjectManager.sol} +7 -7
 - package/contracts/instance/module/IAccess.sol +2 -2
 - package/contracts/instance/module/IBundle.sol +5 -5
 - package/contracts/instance/module/IComponents.sol +8 -8
 - package/contracts/instance/module/IDistribution.sol +7 -6
 - package/contracts/instance/module/IPolicy.sol +22 -16
 - package/contracts/instance/module/IRisk.sol +1 -1
 - package/contracts/instance/module/ISetup.sol +4 -4
 - package/contracts/instance/module/ITreasury.sol +2 -2
 - package/contracts/{instance/service → pool}/BundleService.sol +108 -155
 - package/contracts/pool/BundleServiceManager.sol +42 -0
 - package/contracts/{instance/service → pool}/IBundleService.sol +43 -18
 - package/contracts/{components → pool}/IPoolComponent.sol +14 -13
 - package/contracts/{instance/service → pool}/IPoolService.sol +28 -13
 - package/contracts/{components → pool}/Pool.sol +20 -21
 - package/contracts/{instance/service → pool}/PoolService.sol +160 -59
 - package/contracts/pool/PoolServiceManager.sol +42 -0
 - package/contracts/product/ApplicationService.sol +187 -0
 - package/contracts/{instance/service → product}/ApplicationServiceManager.sol +11 -8
 - package/contracts/product/ClaimService.sol +443 -0
 - package/contracts/{instance/service → product}/ClaimServiceManager.sol +11 -8
 - package/contracts/{instance/service → product}/IApplicationService.sol +14 -34
 - package/contracts/product/IClaimService.sol +93 -0
 - package/contracts/{instance/service → product}/IPolicyService.sol +34 -26
 - package/contracts/product/IPricingService.sol +37 -0
 - package/contracts/{components → product}/IProductComponent.sol +11 -10
 - package/contracts/{instance/service → product}/IProductService.sol +10 -10
 - package/contracts/{instance/service → product}/PolicyService.sol +154 -138
 - package/contracts/product/PolicyServiceManager.sol +42 -0
 - package/contracts/product/PricingService.sol +276 -0
 - package/contracts/product/PricingServiceManager.sol +42 -0
 - package/contracts/{components → product}/Product.sol +160 -74
 - package/contracts/{instance/service → product}/ProductService.sol +50 -47
 - package/contracts/product/ProductServiceManager.sol +42 -0
 - package/contracts/registry/IRegistry.sol +23 -16
 - package/contracts/registry/IRegistryService.sol +26 -36
 - package/contracts/registry/Registry.sol +43 -39
 - package/contracts/registry/RegistryAccessManager.sol +39 -123
 - package/contracts/registry/RegistryService.sol +32 -83
 - package/contracts/registry/RegistryServiceManager.sol +21 -11
 - package/contracts/registry/ReleaseManager.sol +247 -189
 - package/contracts/registry/TokenRegistry.sol +2 -2
 - package/contracts/{components → shared}/Component.sol +26 -8
 - package/contracts/{instance/base → shared}/ComponentService.sol +60 -40
 - package/contracts/{components → shared}/IComponent.sol +19 -5
 - package/contracts/shared/INftOwnable.sol +1 -1
 - package/contracts/shared/IPolicyHolder.sol +24 -10
 - package/contracts/shared/IRegistryLinked.sol +0 -1
 - package/contracts/shared/IService.sol +3 -1
 - package/contracts/shared/IVersionable.sol +1 -1
 - package/contracts/shared/NftOwnable.sol +1 -3
 - package/contracts/shared/PolicyHolder.sol +31 -18
 - package/contracts/shared/ProxyManager.sol +29 -3
 - package/contracts/shared/Registerable.sol +12 -11
 - package/contracts/shared/RegistryLinked.sol +0 -5
 - package/contracts/shared/Service.sol +3 -3
 - package/contracts/shared/TokenHandler.sol +4 -2
 - package/contracts/shared/Versionable.sol +1 -1
 - package/contracts/staking/IStakingService.sol +102 -0
 - package/contracts/staking/StakingService.sol +169 -0
 - package/contracts/staking/StakingServiceManager.sol +40 -0
 - package/contracts/{types → type}/Amount.sol +49 -0
 - package/contracts/{types → type}/ClaimId.sol +25 -2
 - package/contracts/{types → type}/Fee.sol +7 -6
 - package/contracts/{types → type}/NftIdSet.sol +1 -1
 - package/contracts/{types → type}/ObjectType.sol +10 -5
 - package/contracts/{types → type}/PayoutId.sol +33 -5
 - package/contracts/{types → type}/RoleId.sol +50 -8
 - package/contracts/{types → type}/StateId.sol +6 -2
 - package/contracts/{types → type}/Timestamp.sol +5 -0
 - package/package.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1039
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -673
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1231
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -817
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1798
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1092
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1237
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -661
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
 - 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 -596
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
 - package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
 - package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
 - 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/UFixed.sol/MathLib.dbg.json +0 -4
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
 - package/contracts/instance/service/ApplicationService.sol +0 -351
 - package/contracts/instance/service/BundleServiceManager.sol +0 -51
 - package/contracts/instance/service/ClaimService.sol +0 -151
 - package/contracts/instance/service/IClaimService.sol +0 -61
 - package/contracts/instance/service/PolicyServiceManager.sol +0 -54
 - package/contracts/instance/service/PoolServiceManager.sol +0 -51
 - package/contracts/instance/service/ProductServiceManager.sol +0 -54
 - package/contracts/shared/ContractDeployerLib.sol +0 -72
 - package/contracts/test/TestFee.sol +0 -25
 - package/contracts/test/TestRegisterable.sol +0 -18
 - package/contracts/test/TestRoleId.sol +0 -14
 - package/contracts/test/TestService.sol +0 -25
 - package/contracts/test/TestToken.sol +0 -26
 - package/contracts/test/TestVersion.sol +0 -44
 - package/contracts/test/TestVersionable.sol +0 -17
 - package/contracts/test/Usdc.sol +0 -26
 - package/contracts/types/ChainId.sol +0 -38
 - package/contracts/types/NumberId.sol +0 -52
 - /package/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol +0 -0
 - /package/contracts/{types → type}/AddressSet.sol +0 -0
 - /package/contracts/{types → type}/Blocknumber.sol +0 -0
 - /package/contracts/{types → type}/DistributorType.sol +0 -0
 - /package/contracts/{types → type}/Key32.sol +0 -0
 - /package/contracts/{types → type}/NftId.sol +0 -0
 - /package/contracts/{types → type}/Referral.sol +0 -0
 - /package/contracts/{types → type}/RiskId.sol +0 -0
 - /package/contracts/{types → type}/Seconds.sol +0 -0
 - /package/contracts/{types → type}/UFixed.sol +0 -0
 - /package/contracts/{types → type}/Version.sol +0 -0
 
| 
         @@ -0,0 +1,1288 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              "_format": "hh-sol-artifact-1",
         
     | 
| 
      
 3 
     | 
    
         
            +
              "contractName": "BundleService",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "sourceName": "contracts/pool/BundleService.sol",
         
     | 
| 
      
 5 
     | 
    
         
            +
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 19 
     | 
    
         
            +
                    {
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    },
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 35 
     | 
    
         
            +
                    {
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorBundleManagerPolicyAlreadyActivated",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    },
         
     | 
| 
      
 62 
     | 
    
         
            +
                    {
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "name": "state",
         
     | 
| 
      
 65 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 66 
     | 
    
         
            +
                    },
         
     | 
| 
      
 67 
     | 
    
         
            +
                    {
         
     | 
| 
      
 68 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "name": "expiredAt",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 71 
     | 
    
         
            +
                    }
         
     | 
| 
      
 72 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 73 
     | 
    
         
            +
                  "name": "ErrorBundleServiceBundleNotOpen",
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 75 
     | 
    
         
            +
                },
         
     | 
| 
      
 76 
     | 
    
         
            +
                {
         
     | 
| 
      
 77 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 78 
     | 
    
         
            +
                    {
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 81 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 82 
     | 
    
         
            +
                    },
         
     | 
| 
      
 83 
     | 
    
         
            +
                    {
         
     | 
| 
      
 84 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "name": "expectedPool",
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 87 
     | 
    
         
            +
                    },
         
     | 
| 
      
 88 
     | 
    
         
            +
                    {
         
     | 
| 
      
 89 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 90 
     | 
    
         
            +
                      "name": "actualPool",
         
     | 
| 
      
 91 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 92 
     | 
    
         
            +
                    }
         
     | 
| 
      
 93 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "name": "ErrorBundleServiceBundlePoolMismatch",
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 96 
     | 
    
         
            +
                },
         
     | 
| 
      
 97 
     | 
    
         
            +
                {
         
     | 
| 
      
 98 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 99 
     | 
    
         
            +
                    {
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 102 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 103 
     | 
    
         
            +
                    }
         
     | 
| 
      
 104 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 105 
     | 
    
         
            +
                  "name": "ErrorBundleServiceBundleUnknown",
         
     | 
| 
      
 106 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 107 
     | 
    
         
            +
                },
         
     | 
| 
      
 108 
     | 
    
         
            +
                {
         
     | 
| 
      
 109 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 110 
     | 
    
         
            +
                    {
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 114 
     | 
    
         
            +
                    },
         
     | 
| 
      
 115 
     | 
    
         
            +
                    {
         
     | 
| 
      
 116 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 117 
     | 
    
         
            +
                      "name": "openPoliciesCount",
         
     | 
| 
      
 118 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 119 
     | 
    
         
            +
                    }
         
     | 
| 
      
 120 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 121 
     | 
    
         
            +
                  "name": "ErrorBundleServiceBundleWithOpenPolicies",
         
     | 
| 
      
 122 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 123 
     | 
    
         
            +
                },
         
     | 
| 
      
 124 
     | 
    
         
            +
                {
         
     | 
| 
      
 125 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 126 
     | 
    
         
            +
                    {
         
     | 
| 
      
 127 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 128 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 130 
     | 
    
         
            +
                    },
         
     | 
| 
      
 131 
     | 
    
         
            +
                    {
         
     | 
| 
      
 132 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 133 
     | 
    
         
            +
                      "name": "capacityAmount",
         
     | 
| 
      
 134 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 135 
     | 
    
         
            +
                    },
         
     | 
| 
      
 136 
     | 
    
         
            +
                    {
         
     | 
| 
      
 137 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 138 
     | 
    
         
            +
                      "name": "collateralAmount",
         
     | 
| 
      
 139 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 140 
     | 
    
         
            +
                    }
         
     | 
| 
      
 141 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 142 
     | 
    
         
            +
                  "name": "ErrorBundleServiceCapacityInsufficient",
         
     | 
| 
      
 143 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 144 
     | 
    
         
            +
                },
         
     | 
| 
      
 145 
     | 
    
         
            +
                {
         
     | 
| 
      
 146 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 147 
     | 
    
         
            +
                    {
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "name": "bundleOwner",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 151 
     | 
    
         
            +
                    },
         
     | 
| 
      
 152 
     | 
    
         
            +
                    {
         
     | 
| 
      
 153 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 154 
     | 
    
         
            +
                      "name": "tokenHandlerAddress",
         
     | 
| 
      
 155 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 156 
     | 
    
         
            +
                    },
         
     | 
| 
      
 157 
     | 
    
         
            +
                    {
         
     | 
| 
      
 158 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 159 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 161 
     | 
    
         
            +
                    }
         
     | 
| 
      
 162 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 163 
     | 
    
         
            +
                  "name": "ErrorBundleServiceInsufficientAllowance",
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 165 
     | 
    
         
            +
                },
         
     | 
| 
      
 166 
     | 
    
         
            +
                {
         
     | 
| 
      
 167 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 168 
     | 
    
         
            +
                    {
         
     | 
| 
      
 169 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 170 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 172 
     | 
    
         
            +
                    }
         
     | 
| 
      
 173 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 174 
     | 
    
         
            +
                  "name": "ErrorBundleServicePolicyNotCloseable",
         
     | 
| 
      
 175 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 176 
     | 
    
         
            +
                },
         
     | 
| 
      
 177 
     | 
    
         
            +
                {
         
     | 
| 
      
 178 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 179 
     | 
    
         
            +
                    {
         
     | 
| 
      
 180 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 181 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
      
 182 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 183 
     | 
    
         
            +
                    }
         
     | 
| 
      
 184 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 185 
     | 
    
         
            +
                  "name": "ErrorComponentServiceComponentLocked",
         
     | 
| 
      
 186 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 187 
     | 
    
         
            +
                },
         
     | 
| 
      
 188 
     | 
    
         
            +
                {
         
     | 
| 
      
 189 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 190 
     | 
    
         
            +
                    {
         
     | 
| 
      
 191 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 192 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
      
 193 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 194 
     | 
    
         
            +
                    },
         
     | 
| 
      
 195 
     | 
    
         
            +
                    {
         
     | 
| 
      
 196 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "name": "expectedType",
         
     | 
| 
      
 198 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 199 
     | 
    
         
            +
                    },
         
     | 
| 
      
 200 
     | 
    
         
            +
                    {
         
     | 
| 
      
 201 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 202 
     | 
    
         
            +
                      "name": "foundType",
         
     | 
| 
      
 203 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 204 
     | 
    
         
            +
                    }
         
     | 
| 
      
 205 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 206 
     | 
    
         
            +
                  "name": "ErrorComponentServiceComponentTypeInvalid",
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 208 
     | 
    
         
            +
                },
         
     | 
| 
      
 209 
     | 
    
         
            +
                {
         
     | 
| 
      
 210 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 211 
     | 
    
         
            +
                    {
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 213 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 214 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 215 
     | 
    
         
            +
                    },
         
     | 
| 
      
 216 
     | 
    
         
            +
                    {
         
     | 
| 
      
 217 
     | 
    
         
            +
                      "internalType": "RoleId",
         
     | 
| 
      
 218 
     | 
    
         
            +
                      "name": "requiredRole",
         
     | 
| 
      
 219 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 220 
     | 
    
         
            +
                    },
         
     | 
| 
      
 221 
     | 
    
         
            +
                    {
         
     | 
| 
      
 222 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 223 
     | 
    
         
            +
                      "name": "sender",
         
     | 
| 
      
 224 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 225 
     | 
    
         
            +
                    }
         
     | 
| 
      
 226 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 227 
     | 
    
         
            +
                  "name": "ErrorComponentServiceExpectedRoleMissing",
         
     | 
| 
      
 228 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 229 
     | 
    
         
            +
                },
         
     | 
| 
      
 230 
     | 
    
         
            +
                {
         
     | 
| 
      
 231 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 232 
     | 
    
         
            +
                    {
         
     | 
| 
      
 233 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 234 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
      
 235 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 236 
     | 
    
         
            +
                    },
         
     | 
| 
      
 237 
     | 
    
         
            +
                    {
         
     | 
| 
      
 238 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 239 
     | 
    
         
            +
                      "name": "requiredType",
         
     | 
| 
      
 240 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 241 
     | 
    
         
            +
                    },
         
     | 
| 
      
 242 
     | 
    
         
            +
                    {
         
     | 
| 
      
 243 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 244 
     | 
    
         
            +
                      "name": "componentType",
         
     | 
| 
      
 245 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 246 
     | 
    
         
            +
                    }
         
     | 
| 
      
 247 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 248 
     | 
    
         
            +
                  "name": "ErrorComponentServiceInvalidType",
         
     | 
| 
      
 249 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 250 
     | 
    
         
            +
                },
         
     | 
| 
      
 251 
     | 
    
         
            +
                {
         
     | 
| 
      
 252 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 253 
     | 
    
         
            +
                    {
         
     | 
| 
      
 254 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 255 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
      
 256 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 257 
     | 
    
         
            +
                    }
         
     | 
| 
      
 258 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 259 
     | 
    
         
            +
                  "name": "ErrorComponentServiceNotComponent",
         
     | 
| 
      
 260 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 261 
     | 
    
         
            +
                },
         
     | 
| 
      
 262 
     | 
    
         
            +
                {
         
     | 
| 
      
 263 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 264 
     | 
    
         
            +
                    {
         
     | 
| 
      
 265 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 266 
     | 
    
         
            +
                      "name": "component",
         
     | 
| 
      
 267 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 268 
     | 
    
         
            +
                    },
         
     | 
| 
      
 269 
     | 
    
         
            +
                    {
         
     | 
| 
      
 270 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 271 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 272 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 273 
     | 
    
         
            +
                    },
         
     | 
| 
      
 274 
     | 
    
         
            +
                    {
         
     | 
| 
      
 275 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 276 
     | 
    
         
            +
                      "name": "sender",
         
     | 
| 
      
 277 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 278 
     | 
    
         
            +
                    }
         
     | 
| 
      
 279 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 280 
     | 
    
         
            +
                  "name": "ErrorComponentServiceSenderNotOwner",
         
     | 
| 
      
 281 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 282 
     | 
    
         
            +
                },
         
     | 
| 
      
 283 
     | 
    
         
            +
                {
         
     | 
| 
      
 284 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 285 
     | 
    
         
            +
                    {
         
     | 
| 
      
 286 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 287 
     | 
    
         
            +
                      "name": "sender",
         
     | 
| 
      
 288 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 289 
     | 
    
         
            +
                    }
         
     | 
| 
      
 290 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 291 
     | 
    
         
            +
                  "name": "ErrorComponentServiceSenderNotService",
         
     | 
| 
      
 292 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 293 
     | 
    
         
            +
                },
         
     | 
| 
      
 294 
     | 
    
         
            +
                {
         
     | 
| 
      
 295 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 296 
     | 
    
         
            +
                    {
         
     | 
| 
      
 297 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 298 
     | 
    
         
            +
                      "name": "target",
         
     | 
| 
      
 299 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 300 
     | 
    
         
            +
                    }
         
     | 
| 
      
 301 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 302 
     | 
    
         
            +
                  "name": "ErrorIAccessTargetLocked",
         
     | 
| 
      
 303 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 304 
     | 
    
         
            +
                },
         
     | 
| 
      
 305 
     | 
    
         
            +
                {
         
     | 
| 
      
 306 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 307 
     | 
    
         
            +
                    {
         
     | 
| 
      
 308 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 309 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 310 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 311 
     | 
    
         
            +
                    }
         
     | 
| 
      
 312 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 313 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 314 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 315 
     | 
    
         
            +
                },
         
     | 
| 
      
 316 
     | 
    
         
            +
                {
         
     | 
| 
      
 317 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 318 
     | 
    
         
            +
                    {
         
     | 
| 
      
 319 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 320 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 321 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 322 
     | 
    
         
            +
                    }
         
     | 
| 
      
 323 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 324 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 325 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 326 
     | 
    
         
            +
                },
         
     | 
| 
      
 327 
     | 
    
         
            +
                {
         
     | 
| 
      
 328 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 330 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 331 
     | 
    
         
            +
                },
         
     | 
| 
      
 332 
     | 
    
         
            +
                {
         
     | 
| 
      
 333 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 334 
     | 
    
         
            +
                    {
         
     | 
| 
      
 335 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 336 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 337 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 338 
     | 
    
         
            +
                    }
         
     | 
| 
      
 339 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 340 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 341 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 342 
     | 
    
         
            +
                },
         
     | 
| 
      
 343 
     | 
    
         
            +
                {
         
     | 
| 
      
 344 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 345 
     | 
    
         
            +
                    {
         
     | 
| 
      
 346 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 347 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 348 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 349 
     | 
    
         
            +
                    }
         
     | 
| 
      
 350 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 351 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 352 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 353 
     | 
    
         
            +
                },
         
     | 
| 
      
 354 
     | 
    
         
            +
                {
         
     | 
| 
      
 355 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 356 
     | 
    
         
            +
                  "name": "ErrorServiceNotImplemented",
         
     | 
| 
      
 357 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 358 
     | 
    
         
            +
                },
         
     | 
| 
      
 359 
     | 
    
         
            +
                {
         
     | 
| 
      
 360 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 361 
     | 
    
         
            +
                  "name": "InvalidInitialization",
         
     | 
| 
      
 362 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 363 
     | 
    
         
            +
                },
         
     | 
| 
      
 364 
     | 
    
         
            +
                {
         
     | 
| 
      
 365 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 366 
     | 
    
         
            +
                  "name": "NotInitializing",
         
     | 
| 
      
 367 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 368 
     | 
    
         
            +
                },
         
     | 
| 
      
 369 
     | 
    
         
            +
                {
         
     | 
| 
      
 370 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 371 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 372 
     | 
    
         
            +
                    {
         
     | 
| 
      
 373 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 374 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 375 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 376 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 377 
     | 
    
         
            +
                    }
         
     | 
| 
      
 378 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 379 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 380 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 381 
     | 
    
         
            +
                },
         
     | 
| 
      
 382 
     | 
    
         
            +
                {
         
     | 
| 
      
 383 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 384 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 385 
     | 
    
         
            +
                    {
         
     | 
| 
      
 386 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 387 
     | 
    
         
            +
                      "internalType": "uint64",
         
     | 
| 
      
 388 
     | 
    
         
            +
                      "name": "version",
         
     | 
| 
      
 389 
     | 
    
         
            +
                      "type": "uint64"
         
     | 
| 
      
 390 
     | 
    
         
            +
                    }
         
     | 
| 
      
 391 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 392 
     | 
    
         
            +
                  "name": "Initialized",
         
     | 
| 
      
 393 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 394 
     | 
    
         
            +
                },
         
     | 
| 
      
 395 
     | 
    
         
            +
                {
         
     | 
| 
      
 396 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 397 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 398 
     | 
    
         
            +
                    {
         
     | 
| 
      
 399 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 400 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 401 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 402 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 403 
     | 
    
         
            +
                    }
         
     | 
| 
      
 404 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 405 
     | 
    
         
            +
                  "name": "LogBundleServiceBundleActivated",
         
     | 
| 
      
 406 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 407 
     | 
    
         
            +
                },
         
     | 
| 
      
 408 
     | 
    
         
            +
                {
         
     | 
| 
      
 409 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 410 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 411 
     | 
    
         
            +
                    {
         
     | 
| 
      
 412 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 413 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 414 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 415 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 416 
     | 
    
         
            +
                    }
         
     | 
| 
      
 417 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 418 
     | 
    
         
            +
                  "name": "LogBundleServiceBundleLocked",
         
     | 
| 
      
 419 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 420 
     | 
    
         
            +
                },
         
     | 
| 
      
 421 
     | 
    
         
            +
                {
         
     | 
| 
      
 422 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 423 
     | 
    
         
            +
                  "name": "NAME",
         
     | 
| 
      
 424 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 425 
     | 
    
         
            +
                    {
         
     | 
| 
      
 426 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 427 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 428 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 429 
     | 
    
         
            +
                    }
         
     | 
| 
      
 430 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 432 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 433 
     | 
    
         
            +
                },
         
     | 
| 
      
 434 
     | 
    
         
            +
                {
         
     | 
| 
      
 435 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 436 
     | 
    
         
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         
     | 
| 
      
 437 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 438 
     | 
    
         
            +
                    {
         
     | 
| 
      
 439 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 440 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 441 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 442 
     | 
    
         
            +
                    }
         
     | 
| 
      
 443 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 444 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 445 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 446 
     | 
    
         
            +
                },
         
     | 
| 
      
 447 
     | 
    
         
            +
                {
         
     | 
| 
      
 448 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 449 
     | 
    
         
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         
     | 
| 
      
 450 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 451 
     | 
    
         
            +
                    {
         
     | 
| 
      
 452 
     | 
    
         
            +
                      "internalType": "bytes32",
         
     | 
| 
      
 453 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 454 
     | 
    
         
            +
                      "type": "bytes32"
         
     | 
| 
      
 455 
     | 
    
         
            +
                    }
         
     | 
| 
      
 456 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 458 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 459 
     | 
    
         
            +
                },
         
     | 
| 
      
 460 
     | 
    
         
            +
                {
         
     | 
| 
      
 461 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 462 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 463 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 464 
     | 
    
         
            +
                    {
         
     | 
| 
      
 465 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 466 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 467 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 468 
     | 
    
         
            +
                    }
         
     | 
| 
      
 469 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 470 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 471 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 472 
     | 
    
         
            +
                },
         
     | 
| 
      
 473 
     | 
    
         
            +
                {
         
     | 
| 
      
 474 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 475 
     | 
    
         
            +
                    {
         
     | 
| 
      
 476 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 477 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 478 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 479 
     | 
    
         
            +
                    },
         
     | 
| 
      
 480 
     | 
    
         
            +
                    {
         
     | 
| 
      
 481 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 482 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 483 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 484 
     | 
    
         
            +
                    }
         
     | 
| 
      
 485 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 486 
     | 
    
         
            +
                  "name": "close",
         
     | 
| 
      
 487 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 488 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 489 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 490 
     | 
    
         
            +
                },
         
     | 
| 
      
 491 
     | 
    
         
            +
                {
         
     | 
| 
      
 492 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 493 
     | 
    
         
            +
                    {
         
     | 
| 
      
 494 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 495 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 496 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 497 
     | 
    
         
            +
                    },
         
     | 
| 
      
 498 
     | 
    
         
            +
                    {
         
     | 
| 
      
 499 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 500 
     | 
    
         
            +
                      "name": "poolNftId",
         
     | 
| 
      
 501 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 502 
     | 
    
         
            +
                    },
         
     | 
| 
      
 503 
     | 
    
         
            +
                    {
         
     | 
| 
      
 504 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 505 
     | 
    
         
            +
                      "name": "owner",
         
     | 
| 
      
 506 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 507 
     | 
    
         
            +
                    },
         
     | 
| 
      
 508 
     | 
    
         
            +
                    {
         
     | 
| 
      
 509 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 510 
     | 
    
         
            +
                        {
         
     | 
| 
      
 511 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 512 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 513 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 514 
     | 
    
         
            +
                        },
         
     | 
| 
      
 515 
     | 
    
         
            +
                        {
         
     | 
| 
      
 516 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 517 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 518 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 519 
     | 
    
         
            +
                        }
         
     | 
| 
      
 520 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 521 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 522 
     | 
    
         
            +
                      "name": "bundleFee",
         
     | 
| 
      
 523 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 524 
     | 
    
         
            +
                    },
         
     | 
| 
      
 525 
     | 
    
         
            +
                    {
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "name": "stakingAmount",
         
     | 
| 
      
 528 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 529 
     | 
    
         
            +
                    },
         
     | 
| 
      
 530 
     | 
    
         
            +
                    {
         
     | 
| 
      
 531 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
      
 532 
     | 
    
         
            +
                      "name": "lifetime",
         
     | 
| 
      
 533 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 534 
     | 
    
         
            +
                    },
         
     | 
| 
      
 535 
     | 
    
         
            +
                    {
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 537 
     | 
    
         
            +
                      "name": "filter",
         
     | 
| 
      
 538 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 539 
     | 
    
         
            +
                    }
         
     | 
| 
      
 540 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 541 
     | 
    
         
            +
                  "name": "create",
         
     | 
| 
      
 542 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 543 
     | 
    
         
            +
                    {
         
     | 
| 
      
 544 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 545 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 546 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 547 
     | 
    
         
            +
                    }
         
     | 
| 
      
 548 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 549 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 550 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 551 
     | 
    
         
            +
                },
         
     | 
| 
      
 552 
     | 
    
         
            +
                {
         
     | 
| 
      
 553 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 554 
     | 
    
         
            +
                  "name": "getDomain",
         
     | 
| 
      
 555 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 556 
     | 
    
         
            +
                    {
         
     | 
| 
      
 557 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 558 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 559 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 560 
     | 
    
         
            +
                    }
         
     | 
| 
      
 561 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 562 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 563 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 564 
     | 
    
         
            +
                },
         
     | 
| 
      
 565 
     | 
    
         
            +
                {
         
     | 
| 
      
 566 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 567 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 568 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 569 
     | 
    
         
            +
                    {
         
     | 
| 
      
 570 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 571 
     | 
    
         
            +
                        {
         
     | 
| 
      
 572 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 573 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 574 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 575 
     | 
    
         
            +
                        },
         
     | 
| 
      
 576 
     | 
    
         
            +
                        {
         
     | 
| 
      
 577 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 578 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 579 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 580 
     | 
    
         
            +
                        },
         
     | 
| 
      
 581 
     | 
    
         
            +
                        {
         
     | 
| 
      
 582 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 583 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 584 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 585 
     | 
    
         
            +
                        },
         
     | 
| 
      
 586 
     | 
    
         
            +
                        {
         
     | 
| 
      
 587 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 588 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 589 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 590 
     | 
    
         
            +
                        },
         
     | 
| 
      
 591 
     | 
    
         
            +
                        {
         
     | 
| 
      
 592 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 593 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 594 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 595 
     | 
    
         
            +
                        },
         
     | 
| 
      
 596 
     | 
    
         
            +
                        {
         
     | 
| 
      
 597 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 598 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 599 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 600 
     | 
    
         
            +
                        },
         
     | 
| 
      
 601 
     | 
    
         
            +
                        {
         
     | 
| 
      
 602 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 603 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 604 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 605 
     | 
    
         
            +
                        }
         
     | 
| 
      
 606 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 607 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 608 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 609 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 610 
     | 
    
         
            +
                    }
         
     | 
| 
      
 611 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 612 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 613 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 614 
     | 
    
         
            +
                },
         
     | 
| 
      
 615 
     | 
    
         
            +
                {
         
     | 
| 
      
 616 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 617 
     | 
    
         
            +
                  "name": "getInstanceService",
         
     | 
| 
      
 618 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 619 
     | 
    
         
            +
                    {
         
     | 
| 
      
 620 
     | 
    
         
            +
                      "internalType": "contract InstanceService",
         
     | 
| 
      
 621 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 622 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 623 
     | 
    
         
            +
                    }
         
     | 
| 
      
 624 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 625 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 626 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 627 
     | 
    
         
            +
                },
         
     | 
| 
      
 628 
     | 
    
         
            +
                {
         
     | 
| 
      
 629 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 630 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 631 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 632 
     | 
    
         
            +
                    {
         
     | 
| 
      
 633 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 634 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 635 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 636 
     | 
    
         
            +
                    }
         
     | 
| 
      
 637 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 638 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 639 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 640 
     | 
    
         
            +
                },
         
     | 
| 
      
 641 
     | 
    
         
            +
                {
         
     | 
| 
      
 642 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 643 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 644 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 645 
     | 
    
         
            +
                    {
         
     | 
| 
      
 646 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 647 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 648 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 649 
     | 
    
         
            +
                    }
         
     | 
| 
      
 650 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 651 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 652 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 653 
     | 
    
         
            +
                },
         
     | 
| 
      
 654 
     | 
    
         
            +
                {
         
     | 
| 
      
 655 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 656 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 657 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 658 
     | 
    
         
            +
                    {
         
     | 
| 
      
 659 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 660 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 661 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 662 
     | 
    
         
            +
                    }
         
     | 
| 
      
 663 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 664 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 665 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 666 
     | 
    
         
            +
                },
         
     | 
| 
      
 667 
     | 
    
         
            +
                {
         
     | 
| 
      
 668 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 669 
     | 
    
         
            +
                  "name": "getRegistryService",
         
     | 
| 
      
 670 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 671 
     | 
    
         
            +
                    {
         
     | 
| 
      
 672 
     | 
    
         
            +
                      "internalType": "contract IRegistryService",
         
     | 
| 
      
 673 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 674 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 675 
     | 
    
         
            +
                    }
         
     | 
| 
      
 676 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 677 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 678 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 679 
     | 
    
         
            +
                },
         
     | 
| 
      
 680 
     | 
    
         
            +
                {
         
     | 
| 
      
 681 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 682 
     | 
    
         
            +
                  "name": "getVersion",
         
     | 
| 
      
 683 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 684 
     | 
    
         
            +
                    {
         
     | 
| 
      
 685 
     | 
    
         
            +
                      "internalType": "Version",
         
     | 
| 
      
 686 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 687 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
      
 688 
     | 
    
         
            +
                    }
         
     | 
| 
      
 689 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 690 
     | 
    
         
            +
                  "stateMutability": "pure",
         
     | 
| 
      
 691 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 692 
     | 
    
         
            +
                },
         
     | 
| 
      
 693 
     | 
    
         
            +
                {
         
     | 
| 
      
 694 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 695 
     | 
    
         
            +
                    {
         
     | 
| 
      
 696 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 697 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 698 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 699 
     | 
    
         
            +
                    },
         
     | 
| 
      
 700 
     | 
    
         
            +
                    {
         
     | 
| 
      
 701 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 702 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 703 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 704 
     | 
    
         
            +
                    },
         
     | 
| 
      
 705 
     | 
    
         
            +
                    {
         
     | 
| 
      
 706 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 707 
     | 
    
         
            +
                      "name": "premiumAmount",
         
     | 
| 
      
 708 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 709 
     | 
    
         
            +
                    }
         
     | 
| 
      
 710 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 711 
     | 
    
         
            +
                  "name": "increaseBalance",
         
     | 
| 
      
 712 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 713 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 714 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 715 
     | 
    
         
            +
                },
         
     | 
| 
      
 716 
     | 
    
         
            +
                {
         
     | 
| 
      
 717 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 718 
     | 
    
         
            +
                  "name": "initializeERC165",
         
     | 
| 
      
 719 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 720 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 721 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 722 
     | 
    
         
            +
                },
         
     | 
| 
      
 723 
     | 
    
         
            +
                {
         
     | 
| 
      
 724 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 725 
     | 
    
         
            +
                    {
         
     | 
| 
      
 726 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 727 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 728 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 729 
     | 
    
         
            +
                    },
         
     | 
| 
      
 730 
     | 
    
         
            +
                    {
         
     | 
| 
      
 731 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 732 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 733 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 734 
     | 
    
         
            +
                    }
         
     | 
| 
      
 735 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 736 
     | 
    
         
            +
                  "name": "initializeNftOwnable",
         
     | 
| 
      
 737 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 738 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 739 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 740 
     | 
    
         
            +
                },
         
     | 
| 
      
 741 
     | 
    
         
            +
                {
         
     | 
| 
      
 742 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 743 
     | 
    
         
            +
                    {
         
     | 
| 
      
 744 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 745 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 746 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 747 
     | 
    
         
            +
                    },
         
     | 
| 
      
 748 
     | 
    
         
            +
                    {
         
     | 
| 
      
 749 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 750 
     | 
    
         
            +
                      "name": "parentNftId",
         
     | 
| 
      
 751 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 752 
     | 
    
         
            +
                    },
         
     | 
| 
      
 753 
     | 
    
         
            +
                    {
         
     | 
| 
      
 754 
     | 
    
         
            +
                      "internalType": "ObjectType",
         
     | 
| 
      
 755 
     | 
    
         
            +
                      "name": "objectType",
         
     | 
| 
      
 756 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 757 
     | 
    
         
            +
                    },
         
     | 
| 
      
 758 
     | 
    
         
            +
                    {
         
     | 
| 
      
 759 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 760 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 761 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 762 
     | 
    
         
            +
                    },
         
     | 
| 
      
 763 
     | 
    
         
            +
                    {
         
     | 
| 
      
 764 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 765 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 766 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 767 
     | 
    
         
            +
                    },
         
     | 
| 
      
 768 
     | 
    
         
            +
                    {
         
     | 
| 
      
 769 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 770 
     | 
    
         
            +
                      "name": "registryData",
         
     | 
| 
      
 771 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 772 
     | 
    
         
            +
                    }
         
     | 
| 
      
 773 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 774 
     | 
    
         
            +
                  "name": "initializeRegisterable",
         
     | 
| 
      
 775 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 776 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 777 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 778 
     | 
    
         
            +
                },
         
     | 
| 
      
 779 
     | 
    
         
            +
                {
         
     | 
| 
      
 780 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 781 
     | 
    
         
            +
                    {
         
     | 
| 
      
 782 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 783 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 784 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 785 
     | 
    
         
            +
                    }
         
     | 
| 
      
 786 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 787 
     | 
    
         
            +
                  "name": "initializeRegistryLinked",
         
     | 
| 
      
 788 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 789 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 790 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 791 
     | 
    
         
            +
                },
         
     | 
| 
      
 792 
     | 
    
         
            +
                {
         
     | 
| 
      
 793 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 794 
     | 
    
         
            +
                    {
         
     | 
| 
      
 795 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 796 
     | 
    
         
            +
                      "name": "registry",
         
     | 
| 
      
 797 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 798 
     | 
    
         
            +
                    },
         
     | 
| 
      
 799 
     | 
    
         
            +
                    {
         
     | 
| 
      
 800 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 801 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 802 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 803 
     | 
    
         
            +
                    },
         
     | 
| 
      
 804 
     | 
    
         
            +
                    {
         
     | 
| 
      
 805 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 806 
     | 
    
         
            +
                      "name": "initialOwner",
         
     | 
| 
      
 807 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 808 
     | 
    
         
            +
                    }
         
     | 
| 
      
 809 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 810 
     | 
    
         
            +
                  "name": "initializeService",
         
     | 
| 
      
 811 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 812 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 813 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 814 
     | 
    
         
            +
                },
         
     | 
| 
      
 815 
     | 
    
         
            +
                {
         
     | 
| 
      
 816 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 817 
     | 
    
         
            +
                    {
         
     | 
| 
      
 818 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 819 
     | 
    
         
            +
                      "name": "activatedBy",
         
     | 
| 
      
 820 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 821 
     | 
    
         
            +
                    },
         
     | 
| 
      
 822 
     | 
    
         
            +
                    {
         
     | 
| 
      
 823 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 824 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 825 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 826 
     | 
    
         
            +
                    }
         
     | 
| 
      
 827 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 828 
     | 
    
         
            +
                  "name": "initializeVersionable",
         
     | 
| 
      
 829 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 830 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 831 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 832 
     | 
    
         
            +
                },
         
     | 
| 
      
 833 
     | 
    
         
            +
                {
         
     | 
| 
      
 834 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 835 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 836 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 837 
     | 
    
         
            +
                    {
         
     | 
| 
      
 838 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 839 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 840 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 841 
     | 
    
         
            +
                    }
         
     | 
| 
      
 842 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 843 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 844 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 845 
     | 
    
         
            +
                },
         
     | 
| 
      
 846 
     | 
    
         
            +
                {
         
     | 
| 
      
 847 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 848 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 849 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 850 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 851 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 852 
     | 
    
         
            +
                },
         
     | 
| 
      
 853 
     | 
    
         
            +
                {
         
     | 
| 
      
 854 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 855 
     | 
    
         
            +
                    {
         
     | 
| 
      
 856 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 857 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 858 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 859 
     | 
    
         
            +
                    }
         
     | 
| 
      
 860 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 861 
     | 
    
         
            +
                  "name": "lock",
         
     | 
| 
      
 862 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 863 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 864 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 865 
     | 
    
         
            +
                },
         
     | 
| 
      
 866 
     | 
    
         
            +
                {
         
     | 
| 
      
 867 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 868 
     | 
    
         
            +
                    {
         
     | 
| 
      
 869 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 870 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 871 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 872 
     | 
    
         
            +
                    },
         
     | 
| 
      
 873 
     | 
    
         
            +
                    {
         
     | 
| 
      
 874 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 875 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 876 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 877 
     | 
    
         
            +
                    },
         
     | 
| 
      
 878 
     | 
    
         
            +
                    {
         
     | 
| 
      
 879 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 880 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 881 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 882 
     | 
    
         
            +
                    },
         
     | 
| 
      
 883 
     | 
    
         
            +
                    {
         
     | 
| 
      
 884 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 885 
     | 
    
         
            +
                      "name": "collateralAmount",
         
     | 
| 
      
 886 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 887 
     | 
    
         
            +
                    },
         
     | 
| 
      
 888 
     | 
    
         
            +
                    {
         
     | 
| 
      
 889 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 890 
     | 
    
         
            +
                      "name": "premiumAmount",
         
     | 
| 
      
 891 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 892 
     | 
    
         
            +
                    }
         
     | 
| 
      
 893 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 894 
     | 
    
         
            +
                  "name": "lockCollateral",
         
     | 
| 
      
 895 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 896 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 897 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 898 
     | 
    
         
            +
                },
         
     | 
| 
      
 899 
     | 
    
         
            +
                {
         
     | 
| 
      
 900 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 901 
     | 
    
         
            +
                    {
         
     | 
| 
      
 902 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 903 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 904 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 905 
     | 
    
         
            +
                    }
         
     | 
| 
      
 906 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 907 
     | 
    
         
            +
                  "name": "registerInterface",
         
     | 
| 
      
 908 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 909 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 910 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 911 
     | 
    
         
            +
                },
         
     | 
| 
      
 912 
     | 
    
         
            +
                {
         
     | 
| 
      
 913 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 914 
     | 
    
         
            +
                    {
         
     | 
| 
      
 915 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 916 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 917 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 918 
     | 
    
         
            +
                    },
         
     | 
| 
      
 919 
     | 
    
         
            +
                    {
         
     | 
| 
      
 920 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 921 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 922 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 923 
     | 
    
         
            +
                    },
         
     | 
| 
      
 924 
     | 
    
         
            +
                    {
         
     | 
| 
      
 925 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 926 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 927 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 928 
     | 
    
         
            +
                    },
         
     | 
| 
      
 929 
     | 
    
         
            +
                    {
         
     | 
| 
      
 930 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 931 
     | 
    
         
            +
                      "name": "collateralAmount",
         
     | 
| 
      
 932 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 933 
     | 
    
         
            +
                    }
         
     | 
| 
      
 934 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 935 
     | 
    
         
            +
                  "name": "releaseCollateral",
         
     | 
| 
      
 936 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 937 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 938 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 939 
     | 
    
         
            +
                },
         
     | 
| 
      
 940 
     | 
    
         
            +
                {
         
     | 
| 
      
 941 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 942 
     | 
    
         
            +
                    {
         
     | 
| 
      
 943 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 944 
     | 
    
         
            +
                      "name": "newAuthority",
         
     | 
| 
      
 945 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 946 
     | 
    
         
            +
                    }
         
     | 
| 
      
 947 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 948 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 949 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 950 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 951 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 952 
     | 
    
         
            +
                },
         
     | 
| 
      
 953 
     | 
    
         
            +
                {
         
     | 
| 
      
 954 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 955 
     | 
    
         
            +
                    {
         
     | 
| 
      
 956 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 957 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 958 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 959 
     | 
    
         
            +
                    },
         
     | 
| 
      
 960 
     | 
    
         
            +
                    {
         
     | 
| 
      
 961 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 962 
     | 
    
         
            +
                        {
         
     | 
| 
      
 963 
     | 
    
         
            +
                          "internalType": "UFixed",
         
     | 
| 
      
 964 
     | 
    
         
            +
                          "name": "fractionalFee",
         
     | 
| 
      
 965 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 966 
     | 
    
         
            +
                        },
         
     | 
| 
      
 967 
     | 
    
         
            +
                        {
         
     | 
| 
      
 968 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 969 
     | 
    
         
            +
                          "name": "fixedFee",
         
     | 
| 
      
 970 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 971 
     | 
    
         
            +
                        }
         
     | 
| 
      
 972 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 973 
     | 
    
         
            +
                      "internalType": "struct Fee",
         
     | 
| 
      
 974 
     | 
    
         
            +
                      "name": "fee",
         
     | 
| 
      
 975 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 976 
     | 
    
         
            +
                    }
         
     | 
| 
      
 977 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 978 
     | 
    
         
            +
                  "name": "setFee",
         
     | 
| 
      
 979 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 980 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 981 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 982 
     | 
    
         
            +
                },
         
     | 
| 
      
 983 
     | 
    
         
            +
                {
         
     | 
| 
      
 984 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 985 
     | 
    
         
            +
                    {
         
     | 
| 
      
 986 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 987 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 988 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 989 
     | 
    
         
            +
                    }
         
     | 
| 
      
 990 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 991 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 992 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 993 
     | 
    
         
            +
                    {
         
     | 
| 
      
 994 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 995 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 996 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 997 
     | 
    
         
            +
                    }
         
     | 
| 
      
 998 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 999 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 1000 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1001 
     | 
    
         
            +
                },
         
     | 
| 
      
 1002 
     | 
    
         
            +
                {
         
     | 
| 
      
 1003 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1004 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1005 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 1007 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1008 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1009 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1010 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1011 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 1012 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1013 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1014 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1015 
     | 
    
         
            +
                  "name": "unlinkPolicy",
         
     | 
| 
      
 1016 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1017 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1018 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1019 
     | 
    
         
            +
                },
         
     | 
| 
      
 1020 
     | 
    
         
            +
                {
         
     | 
| 
      
 1021 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1022 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1023 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1024 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 1025 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1026 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1027 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1028 
     | 
    
         
            +
                  "name": "unlock",
         
     | 
| 
      
 1029 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1030 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1031 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1032 
     | 
    
         
            +
                },
         
     | 
| 
      
 1033 
     | 
    
         
            +
                {
         
     | 
| 
      
 1034 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1035 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1036 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 1037 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 1038 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1039 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1040 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1041 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 1042 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 1043 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1044 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1045 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1046 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 1047 
     | 
    
         
            +
                      "name": "feeAmount",
         
     | 
| 
      
 1048 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 1049 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1050 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1051 
     | 
    
         
            +
                  "name": "updateBundleFees",
         
     | 
| 
      
 1052 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1053 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1054 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1055 
     | 
    
         
            +
                },
         
     | 
| 
      
 1056 
     | 
    
         
            +
                {
         
     | 
| 
      
 1057 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1058 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1059 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 1060 
     | 
    
         
            +
                      "name": "data",
         
     | 
| 
      
 1061 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 1062 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1063 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1064 
     | 
    
         
            +
                  "name": "upgradeVersionable",
         
     | 
| 
      
 1065 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1066 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1067 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1068 
     | 
    
         
            +
                }
         
     | 
| 
      
 1069 
     | 
    
         
            +
              ],
         
     | 
| 
      
 1070 
     | 
    
         
            +
              "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61494480620000e66000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806376429bc01161011a578063ada9652e116100ad578063bf7e214f1161007c578063bf7e214f146104d2578063caf4e3d4146104da578063cc9fc59a146104e2578063e283b4a9146104ea578063f7c34ee0146104fd57600080fd5b8063ada9652e14610488578063b5346af51461049d578063b68d1809146104b0578063b7565f9c146104bf57600080fd5b80638fb36037116100e95780638fb3603714610408578063a3f4df7e14610429578063aa9acb2c14610462578063ad328d9f1461047557600080fd5b806376429bc0146103c75780637a9e5e4b146103da578063893d20e8146103ed5780638e32e979146103f557600080fd5b806327bb7a331161019d57806349bb9e4b1161016c57806349bb9e4b146103375780635ab1bd531461034a5780635ed325671461036f578063644c45e014610382578063675393bf146103b457600080fd5b806327bb7a33146102f6578063329d6e741461030957806336fc697e1461031c578063377a6db71461032457600080fd5b8063138461e0116101d9578063138461e0146102935780631eff4b221461029b5780631f8e8f36146102d0578063214cdb80146102e357600080fd5b806301ffc9a71461020b57806306fa45651461024d5780630d8e6e2c146102625780630fec111c1461027e575b600080fd5b6102386102193660046137f6565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61026061025b366004613835565b610510565b005b61026a610700565b60405162ffffff9091168152602001610244565b61028661078a565b60405161024491906138a2565b6102606108ab565b6102c27f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610244565b6102606102de366004613a33565b610ab2565b6102606102f13660046137f6565b610d6f565b610260610304366004613b0f565b610d9c565b610260610317366004613ba7565b610e41565b610260610f86565b610260610332366004613bdb565b610fcc565b610260610345366004613c4c565b61133c565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610244565b61026061037d366004613c9b565b61143b565b6000805160206148af833981519152546001600160601b03165b6040516001600160601b039091168152602001610244565b6102606103c2366004613ce6565b611538565b6102606103d5366004613d03565b611646565b6102606103e8366004613ce6565b611816565b610357611899565b610260610403366004613d3c565b6119d0565b610410611c09565b6040516001600160e01b03199091168152602001610244565b6104556040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b6040516102449190613d7c565b610260610470366004613d03565b611c41565b610260610483366004613d8f565b611e8b565b6102c26000805160206148af83398151915281565b6102606104ab366004613835565b612011565b60405160dc8152602001610244565b6102606104cd366004613c9b565b6121f8565b610357612408565b610357612424565b610357612430565b61039c6104f8366004613dfe565b61243c565b61026061050b366004613edf565b61294c565b600061051c608c6129c3565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561055e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105829190613f0d565b6001600160a01b031663fe1f18d68360646040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b1580156105dc57600080fd5b505af11580156105f0573d6000803e3d6000fd5b505050506000816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610634573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106589190613f0d565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa456590602401600060405180830381600087803b1580156106a557600080fd5b505af11580156106b9573d6000803e3d6000fd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610761573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107859190613f2a565b905090565b6107926137b8565b6040805160e081018252600081527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116602084015260ff600160601b8204811694840194909452600160681b90049092161515606082015230608082015260a08101610807611899565b6001600160a01b0316815260200182600101805461082490613f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461085090613f4f565b801561089d5780601f106108725761010080835404028352916020019161089d565b820191906000526020600020905b81548152906001019060200180831161088057829003601f168201915b505050505081525091505090565b60006000805160206148af83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561091a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093e9190613f99565b1561096f5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306109826001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156109ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ee9190613f99565b610a165760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610966565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8e9190613fc1565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b600080610abf608c6129c3565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b289190613f0d565b604051634793b4ab60e01b81526001600160601b03871660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa158015610b7b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ba3919081019061405e565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190613f99565b15610c4e576040516349e9f38360e01b81526001600160601b0387166004820152602401610966565b80516001600160601b03858116911614610c9957805160405163dab86e4560e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610966565b848160200181905250826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ce0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d049190613f0d565b6001600160a01b03166359852426878360ff5b6040518463ffffffff1660e01b8152600401610d3593929190614229565b600060405180830381600087803b158015610d4f57600080fd5b505af1158015610d63573d6000803e3d6000fd5b50505050505050505050565b610d77612b65565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610da4612b65565b610dae828761294c565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610e3783826142a4565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610e63610700565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610ea3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec79190614363565b6000805160206148ef8339815191528054600160401b900460ff1680610efa575080546001600160401b03808416911610155b15610f185760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f4283612b9e565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016106f3565b610f8e612b65565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610fd9335b600036612ba6565b6000856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611019573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103d9190613f0d565b905060006001600160a01b03821663a5961b4c73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03891660dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156110c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e6919061438c565b6040518263ffffffff1660e01b815260040161110491815260200190565b60a060405180830381865afa158015611121573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114591906143cd565b60200151604051634793b4ab60e01b81526001600160601b03871660048201529091506000906001600160a01b03841690634793b4ab90602401600060405180830381865afa15801561119c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111c4919081019061405e565b905060ff8216606414158061125857506112588160e0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112499190614464565b64ffffffffff90811691161090565b1561129d5760e081015160405163bf5b8f0960e01b81526001600160601b038816600482015260ff8416602482015264ffffffffff9091166044820152606401610966565b60006112ba6112b0836060015187612ca4565b8360800151612d33565b90506112c68187612d7e565b156112ff5760405163826a5ff960e01b81526001600160601b038089166004830152808316602483015287166044820152606401610966565b61130d826080015187612ca4565b6001600160601b0316608083015261132789888488612e05565b6113318989612fb3565b505050505050505050565b6000805160206148ef8339815191528054600160401b810460ff1615906001600160401b031660008115801561136f5750825b90506000826001600160401b0316600114801561138b5750303b155b905081158015611399575080155b156113b75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113e157845460ff60401b1916600160401b1785555b6113eb878761325d565b831561143257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61144433610fd1565b6000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611484573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a89190613f0d565b604051634793b4ab60e01b81526001600160601b03851660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa1580156114fb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611523919081019061405e565b905061153185858386612e05565b5050505050565b611540612b65565b806001600160a01b03163b6000036115765760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610966565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263530ca14960e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156115f0575060408051601f3d908101601f191682019092526115ed91810190613f99565b60015b6116185760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610966565b806116415760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610966565b505b50565b61164f33610fd1565b816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561168d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b19190613f0d565b6040516375d357df60e01b81526001600160601b03831660048201526001600160a01b0391909116906375d357df90602401602060405180830381865afa158015611700573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117249190613f99565b61174c576040516392bb4dff60e01b81526001600160601b0382166004820152602401610966565b816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ae9190613f0d565b604051631351fccf60e31b81526001600160601b03831660048201526001600160a01b039190911690639a8fe67890602401600060405180830381600087803b1580156117fa57600080fd5b505af115801561180e573d6000803e3d6000fd5b505050505050565b3361181f612408565b6001600160a01b0316816001600160a01b03161461185a5760405162d1953b60e31b81526001600160a01b0382166004820152602401610966565b816001600160a01b03163b600003611890576040516361798f2f60e11b81526001600160a01b0383166004820152602401610966565b6116418261337d565b6000806000805160206148af83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192d9190613f99565b156119ba576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611990573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b49190613f0d565b91505090565b54600160601b90046001600160a01b0316919050565b6119d8612b65565b611a5883846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3e9190613fc1565b603c60008560405180602001604052806000815250610d9c565b6001600160a01b03821615611a7557611a70826133de565b611be4565b6000611a896001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611ae9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0d9190614481565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611b52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b769190613f0d565b9050611be2816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdd9190613f0d565b6133de565b505b611bf4634a531f3360e01b610d6f565b611c0463b68d180960e01b610d6f565b505050565b6000805160206148cf833981519152805460009190600160a01b900460ff16611c335760006119b4565b638fb3603760e01b91505090565b611c4a33610fd1565b816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cac9190613f0d565b6001600160a01b031663fe1f18d68260c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b158015611d0657600080fd5b505af1158015611d1a573d6000803e3d6000fd5b505050506000826001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d829190613f0d565b6040516322cc1d4560e11b81526001600160601b03841660048201529091506000906001600160a01b038316906345983a8a90602401602060405180830381865afa158015611dd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df9919061438c565b90508015611e2c576040516356a410b760e01b81526001600160601b038416600482015260248101829052604401610966565b60405163b5346af560e01b81526001600160601b03841660048201526001600160a01b0383169063b5346af5906024015b600060405180830381600087803b158015611e7757600080fd5b505af1158015610e37573d6000803e3d6000fd5b611e9433610fd1565b6000846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef89190613f0d565b604051634793b4ab60e01b81526001600160601b03851660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa158015611f4b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f73919081019061405e565b9050611f83816080015184612d33565b6001600160601b0316608082015260408051631a99b41b60e31b815290516001600160a01b0388169163d4cda0d89160048083019260209291908290030181865afa158015611fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffa9190613f0d565b6001600160a01b03166359852426858360ff610d17565b600061201d608c6129c3565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561205f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120839190613f0d565b6001600160a01b031663fe1f18d683606e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b1580156120dd57600080fd5b505af11580156120f1573d6000803e3d6000fd5b505050506000816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015612135573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121599190613f0d565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af590602401600060405180830381600087803b1580156121a657600080fd5b505af11580156121ba573d6000803e3d6000fd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f4925060200190506106f3565b6000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061225c9190613f0d565b604051634793b4ab60e01b81526001600160601b03851660048201526001600160a01b039190911690634793b4ab90602401600060405180830381865afa1580156122ab573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526122d3919081019061405e565b60a081015160405163274acb3560e01b81526001600160601b039182166004820152908416602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801561233c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123609190613fc1565b6001600160601b031660a082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa1580156123b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d79190613f0d565b6001600160a01b03166359852426848360ff5b6040518463ffffffff1660e01b8152600401611e5d93929190614229565b6000805160206148cf833981519152546001600160a01b031690565b600061078560286133ef565b600061078560466133ef565b600061244733610fd1565b61244f612424565b6001600160a01b031663c2bf08c86040518060e00160405280612470600090565b6001600160601b031681526020018b6001600160601b0316815260200161249560dc90565b60ff16815260200160001515815260200160006001600160a01b031681526020018a6001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b81526004016124f491906138a2565b6020604051808303816000875af1158015612513573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125379190613fc1565b9050886001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612577573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259b9190613f0d565b6001600160a01b03166397affbf5826040518061012001604052808c6001600160601b031681526020018a815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506001600160601b038a166020808301919091526040805163bc1b392d60e01b81528151919093019273__$3bac17678db7ae928afa209f2f44deec9c$__9263bc1b392d926004808401938290030181865af4158015612667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268b9190613fc1565b6001600160601b0316815260200173__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156126e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127069190613fc1565b6001600160601b031681526020018864ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561276a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061278e9190614464565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908a16602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af41580156127ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128119190614464565b64ffffffffff16815260006020909101526040516001600160e01b031960e085901b16815261284492919060040161449e565b600060405180830381600087803b15801561285e57600080fd5b505af1158015612872573d6000803e3d6000fd5b505050506000896001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128da9190613f0d565b6040516346f0e8a760e11b81526001600160601b03841660048201529091506001600160a01b03821690638de1d14e90602401600060405180830381600087803b15801561292757600080fd5b505af115801561293b573d6000803e3d6000fd5b505050505098975050505050505050565b612954612b65565b61295d81611538565b612965610f86565b6001600160a01b03821661298c5760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206148af83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60006129cd6137b8565b60006129e16001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612a27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4b9190613fc1565b9250612a578385613502565b8092508193505050806001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ac19190613f0d565b6080830151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015612b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b2f9190613f99565b15612b5e57608082015160405163d53987e560e01b81526001600160a01b039091166004820152602401610966565b9193909250565b6000805160206148ef83398151915254600160401b900460ff16612b9c57604051631afcd79f60e31b815260040160405180910390fd5b565b610206612b65565b6000805160206148cf833981519152600080612be1612bc3612408565b8730612bd3600460008a8c6144c0565b612bdc916144ea565b613606565b915091508161180e5763ffffffff811615612c8157825460ff60a01b1916600160a01b178355612c0f612408565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612c3e9392919061451a565b600060405180830381600087803b158015612c5857600080fd5b505af1158015612c6c573d6000803e3d6000fd5b5050845460ff60a01b191685555061180e9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610966565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612d08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2c9190613fc1565b9392505050565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612ceb565b6040516304d40eb160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401602060405180830381865af4158015612de1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2c9190613f99565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e819190613f99565b15612f3a57602082810151604051634f69237560e11b81528151600482015291015160248201526001600160601b038216604482015260009073__$58e11c6004c5796aaa8c56e718245e69a2$__90639ed246ea906064016040805180830381865af4158015612ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f19919061455a565b915050612f2a836060015182612ca4565b6001600160601b03166060840152505b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f9c9190613f0d565b6001600160a01b03166359852426848460ff6123ea565b6000826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ff3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130179190613f0d565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091506000906001600160a01b0383169063bd7d9d8590602401600060405180830381865afa15801561306a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261309291908101906145b3565b6101c0810151604051638d38cd4b60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af41580156130f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131169190613f99565b801561316f575061316f816101c0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611225573d6000803e3d6000fd5b1561319857604051630cd0c0b560e31b81526001600160601b0384166004820152602401610966565b6000846001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131fc9190613f0d565b604051630331f98560e21b81526001600160601b03861660048201529091506001600160a01b03821690630cc7e61490602401600060405180830381600087803b15801561324957600080fd5b505af1158015611331573d6000803e3d6000fd5b6000805160206148ef8339815191528054600160401b810460ff1615906001600160401b03166000811580156132905750825b90506000826001600160401b031660011480156132ac5750303b155b9050811580156132ba575080155b156132d85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561330257845460ff60401b1916600160401b1785555b60008087806020019051810190613319919061474f565b925050915061332982828b6119d0565b613339630e1d6de360e41b610d6f565b5050831561143257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611429565b6000805160206148cf83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6133e6612b65565b61164381613712565b60006134036001546001600160a01b031690565b6001600160a01b031663d39e60438361341a610700565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af415801561346f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134939190614481565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156134d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134fc9190613f0d565b92915050565b61350a6137b8565b600061351e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03861660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561356d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526135959190810190614791565b91506135ac82604001518460ff9081169116141590565b156135f057608082015160408084015190516304081d4960e41b81526001600160a01b03909216600483015260ff8086166024840152166044820152606401610966565b6135fd8260200151613723565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516136759190614863565b600060405180830381855afa9150503d80600081146136b0576040519150601f19603f3d011682016040523d82523d6000602084013e6136b5565b606091505b509150915081156137075760408151106136e757808060200190518101906136dd919061487f565b9094509250613707565b602081511061370757808060200190518101906137049190613f99565b93505b505094509492505050565b61371a612b65565b6116438161337d565b60006137376001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613786573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526137ae9190810190614791565b6080015192915050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561380857600080fd5b81356001600160e01b031981168114612d2c57600080fd5b6001600160601b038116811461164357600080fd5b60006020828403121561384757600080fd5b8135612d2c81613820565b60005b8381101561386d578181015183820152602001613855565b50506000910152565b6000815180845261388e816020860160208601613852565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161390b60c08401826001600160a01b03169052565b5060c083015160e080840152613925610100840182613876565b949350505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156139655761396561392d565b60405290565b60405161012081016001600160401b03811182821017156139655761396561392d565b60405161022081016001600160401b03811182821017156139655761396561392d565b60405160e081016001600160401b03811182821017156139655761396561392d565b604051601f8201601f191681016001600160401b03811182821017156139fb576139fb61392d565b604052919050565b600060408284031215613a1557600080fd5b613a1d613943565b9050813581526020820135602082015292915050565b60008060608385031215613a4657600080fd5b8235613a5181613820565b91506135fd8460208501613a03565b6001600160a01b038116811461164357600080fd5b60ff8116811461164357600080fd5b801515811461164357600080fd5b60006001600160401b03821115613aab57613aab61392d565b50601f01601f191660200190565b600082601f830112613aca57600080fd5b8135613add613ad882613a92565b6139d3565b818152846020838601011115613af257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215613b2857600080fd5b8635613b3381613a60565b95506020870135613b4381613820565b94506040870135613b5381613a75565b93506060870135613b6381613a84565b92506080870135613b7381613a60565b915060a08701356001600160401b03811115613b8e57600080fd5b613b9a89828a01613ab9565b9150509295509295509295565b600060208284031215613bb957600080fd5b81356001600160401b03811115613bcf57600080fd5b61392584828501613ab9565b600080600080600060a08688031215613bf357600080fd5b8535613bfe81613a60565b94506020860135613c0e81613820565b93506040860135613c1e81613820565b92506060860135613c2e81613820565b91506080860135613c3e81613820565b809150509295509295909350565b60008060408385031215613c5f57600080fd5b8235613c6a81613a60565b915060208301356001600160401b03811115613c8557600080fd5b613c9185828601613ab9565b9150509250929050565b600080600060608486031215613cb057600080fd5b8335613cbb81613a60565b92506020840135613ccb81613820565b91506040840135613cdb81613820565b809150509250925092565b600060208284031215613cf857600080fd5b8135612d2c81613a60565b60008060408385031215613d1657600080fd5b8235613d2181613a60565b91506020830135613d3181613820565b809150509250929050565b600080600060608486031215613d5157600080fd5b8335613d5c81613a60565b92506020840135613d6c81613a60565b91506040840135613cdb81613a60565b602081526000612d2c6020830184613876565b60008060008060808587031215613da557600080fd5b8435613db081613a60565b93506020850135613dc081613820565b92506040850135613dd081613820565b91506060850135613de081613820565b939692955090935050565b64ffffffffff8116811461164357600080fd5b600080600080600080600080610100898b031215613e1b57600080fd5b8835613e2681613a60565b97506020890135613e3681613820565b96506040890135613e4681613a60565b9550613e558a60608b01613a03565b945060a0890135613e6581613820565b935060c0890135613e7581613deb565b925060e08901356001600160401b0380821115613e9157600080fd5b818b0191508b601f830112613ea557600080fd5b813581811115613eb457600080fd5b8c6020828501011115613ec657600080fd5b6020830194508093505050509295985092959890939650565b60008060408385031215613ef257600080fd5b8235613efd81613a60565b91506020830135613d3181613a60565b600060208284031215613f1f57600080fd5b8151612d2c81613a60565b600060208284031215613f3c57600080fd5b815162ffffff81168114612d2c57600080fd5b600181811c90821680613f6357607f821691505b602082108103613f8357634e487b7160e01b600052602260045260246000fd5b50919050565b8051613f9481613a84565b919050565b600060208284031215613fab57600080fd5b8151612d2c81613a84565b8051613f9481613820565b600060208284031215613fd357600080fd5b8151612d2c81613820565b600060408284031215613ff057600080fd5b613ff8613943565b9050815181526020820151602082015292915050565b600082601f83011261401f57600080fd5b815161402d613ad882613a92565b81815284602083860101111561404257600080fd5b613925826020830160208701613852565b8051613f9481613deb565b60006020828403121561407057600080fd5b81516001600160401b038082111561408757600080fd5b90830190610140828603121561409c57600080fd5b6140a461396b565b6140ad83613fb6565b81526140bc8660208501613fde565b60208201526060830151828111156140d357600080fd5b6140df8782860161400e565b6040830152506140f160808401613fb6565b606082015261410260a08401613fb6565b608082015261411360c08401613fb6565b60a082015261412460e08401614053565b60c08201526101009150614139828401614053565b60e082015261414b6101208401614053565b91810191909152949350505050565b80516001600160601b03168252600061014060208381015180518683015290810151604086015250604083015181606086015261419982860182613876565b91505060608301516141b660808601826001600160601b03169052565b5060808301516001600160601b03811660a08601525060a08301516001600160601b03811660c08601525060c083015164ffffffffff811660e08601525060e083015161010061420e8187018364ffffffffff169052565b84015164ffffffffff81166101208701529050509392505050565b6001600160601b038416815260606020820152600061424b606083018561415a565b905060ff83166040830152949350505050565b601f821115611c0457600081815260208120601f850160051c810160208610156142855750805b601f850160051c820191505b8181101561180e57828155600101614291565b81516001600160401b038111156142bd576142bd61392d565b6142d1816142cb8454613f4f565b8461425e565b602080601f83116001811461430657600084156142ee5750858301515b600019600386901b1c1916600185901b17855561180e565b600085815260208120601f198616915b8281101561433557888601518255948401946001909101908401614316565b50858210156143535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561437557600080fd5b81516001600160401b0381168114612d2c57600080fd5b60006020828403121561439e57600080fd5b5051919050565b8051613f9481613a75565b8051613f9481613a60565b63ffffffff8116811461164357600080fd5b600060a082840312156143df57600080fd5b60405160a081018181106001600160401b03821117156144015761440161392d565b604052825161440f81613a75565b8152602083015161441f81613a75565b6020820152604083015161443281613a60565b60408201526060830151614445816143bb565b60608201526080830151614458816143bb565b60808201529392505050565b60006020828403121561447657600080fd5b8151612d2c81613deb565b60006020828403121561449357600080fd5b8151612d2c81613a75565b6001600160601b0383168152604060208201526000613925604083018461415a565b600080858511156144d057600080fd5b838611156144dd57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156145125780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000806040838503121561456d57600080fd5b825161457881613820565b6020840151909250613d3181613820565b80516001600160c01b031981168114613f9457600080fd5b805161ffff81168114613f9457600080fd5b6000602082840312156145c557600080fd5b81516001600160401b03808211156145dc57600080fd5b9083019061022082860312156145f157600080fd5b6145f961398e565b61460283613fb6565b815261461060208401613fb6565b602082015261462160408401614589565b604082015261463260608401614589565b606082015261464360808401613fb6565b608082015261465460a08401613fb6565b60a082015261466560c08401613fb6565b60c082015261467660e08401614053565b60e0820152610100808401518381111561468f57600080fd5b61469b8882870161400e565b82840152505061012080840151838111156146b557600080fd5b6146c18882870161400e565b82840152505061014091506146d78284016145a1565b8282015261016091506146eb8284016145a1565b8282015261018091506146ff828401613fb6565b828201526101a09150614713828401613fb6565b828201526101c09150614727828401614053565b828201526101e0915061473b828401614053565b82820152610200915061414b828401614053565b60008060006060848603121561476457600080fd5b835161476f81613a60565b602085015190935061478081613a60565b6040850151909250613cdb81613a60565b6000602082840312156147a357600080fd5b81516001600160401b03808211156147ba57600080fd5b9083019060e082860312156147ce57600080fd5b6147d66139b1565b6147df83613fb6565b81526147ed60208401613fb6565b60208201526147fe604084016143a5565b604082015261480f60608401613f89565b6060820152614820608084016143b0565b608082015261483160a084016143b0565b60a082015260c08301518281111561484857600080fd5b6148548782860161400e565b60c08301525095945050505050565b60008251614875818460208701613852565b9190910192915050565b6000806040838503121561489257600080fd5b825161489d81613a84565b6020840151909250613d31816143bb56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212208776c6897abf25c34af311343621594dfcbef597fdacee6f1daa579278ade50e64736f6c63430008140033",
         
     | 
| 
      
 1071 
     | 
    
         
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102065760003560e01c806376429bc01161011a578063ada9652e116100ad578063bf7e214f1161007c578063bf7e214f146104d2578063caf4e3d4146104da578063cc9fc59a146104e2578063e283b4a9146104ea578063f7c34ee0146104fd57600080fd5b8063ada9652e14610488578063b5346af51461049d578063b68d1809146104b0578063b7565f9c146104bf57600080fd5b80638fb36037116100e95780638fb3603714610408578063a3f4df7e14610429578063aa9acb2c14610462578063ad328d9f1461047557600080fd5b806376429bc0146103c75780637a9e5e4b146103da578063893d20e8146103ed5780638e32e979146103f557600080fd5b806327bb7a331161019d57806349bb9e4b1161016c57806349bb9e4b146103375780635ab1bd531461034a5780635ed325671461036f578063644c45e014610382578063675393bf146103b457600080fd5b806327bb7a33146102f6578063329d6e741461030957806336fc697e1461031c578063377a6db71461032457600080fd5b8063138461e0116101d9578063138461e0146102935780631eff4b221461029b5780631f8e8f36146102d0578063214cdb80146102e357600080fd5b806301ffc9a71461020b57806306fa45651461024d5780630d8e6e2c146102625780630fec111c1461027e575b600080fd5b6102386102193660046137f6565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61026061025b366004613835565b610510565b005b61026a610700565b60405162ffffff9091168152602001610244565b61028661078a565b60405161024491906138a2565b6102606108ab565b6102c27f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610244565b6102606102de366004613a33565b610ab2565b6102606102f13660046137f6565b610d6f565b610260610304366004613b0f565b610d9c565b610260610317366004613ba7565b610e41565b610260610f86565b610260610332366004613bdb565b610fcc565b610260610345366004613c4c565b61133c565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610244565b61026061037d366004613c9b565b61143b565b6000805160206148af833981519152546001600160601b03165b6040516001600160601b039091168152602001610244565b6102606103c2366004613ce6565b611538565b6102606103d5366004613d03565b611646565b6102606103e8366004613ce6565b611816565b610357611899565b610260610403366004613d3c565b6119d0565b610410611c09565b6040516001600160e01b03199091168152602001610244565b6104556040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b6040516102449190613d7c565b610260610470366004613d03565b611c41565b610260610483366004613d8f565b611e8b565b6102c26000805160206148af83398151915281565b6102606104ab366004613835565b612011565b60405160dc8152602001610244565b6102606104cd366004613c9b565b6121f8565b610357612408565b610357612424565b610357612430565b61039c6104f8366004613dfe565b61243c565b61026061050b366004613edf565b61294c565b600061051c608c6129c3565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561055e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105829190613f0d565b6001600160a01b031663fe1f18d68360646040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b1580156105dc57600080fd5b505af11580156105f0573d6000803e3d6000fd5b505050506000816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610634573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106589190613f0d565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa456590602401600060405180830381600087803b1580156106a557600080fd5b505af11580156106b9573d6000803e3d6000fd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610761573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107859190613f2a565b905090565b6107926137b8565b6040805160e081018252600081527f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b038116602084015260ff600160601b8204811694840194909452600160681b90049092161515606082015230608082015260a08101610807611899565b6001600160a01b0316815260200182600101805461082490613f4f565b80601f016020809104026020016040519081016040528092919081815260200182805461085090613f4f565b801561089d5780601f106108725761010080835404028352916020019161089d565b820191906000526020600020905b81548152906001019060200180831161088057829003601f168201915b505050505081525091505090565b60006000805160206148af83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561091a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093e9190613f99565b1561096f5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306109826001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156109ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ee9190613f99565b610a165760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610966565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8e9190613fc1565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b600080610abf608c6129c3565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b289190613f0d565b604051634793b4ab60e01b81526001600160601b03871660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa158015610b7b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ba3919081019061405e565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190613f99565b15610c4e576040516349e9f38360e01b81526001600160601b0387166004820152602401610966565b80516001600160601b03858116911614610c9957805160405163dab86e4560e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610966565b848160200181905250826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ce0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d049190613f0d565b6001600160a01b03166359852426878360ff5b6040518463ffffffff1660e01b8152600401610d3593929190614229565b600060405180830381600087803b158015610d4f57600080fd5b505af1158015610d63573d6000803e3d6000fd5b50505050505050505050565b610d77612b65565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610da4612b65565b610dae828761294c565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610e3783826142a4565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610e63610700565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610ea3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec79190614363565b6000805160206148ef8339815191528054600160401b900460ff1680610efa575080546001600160401b03808416911610155b15610f185760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f4283612b9e565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016106f3565b610f8e612b65565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610fd9335b600036612ba6565b6000856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611019573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103d9190613f0d565b905060006001600160a01b03821663a5961b4c73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b03891660dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156110c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e6919061438c565b6040518263ffffffff1660e01b815260040161110491815260200190565b60a060405180830381865afa158015611121573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114591906143cd565b60200151604051634793b4ab60e01b81526001600160601b03871660048201529091506000906001600160a01b03841690634793b4ab90602401600060405180830381865afa15801561119c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111c4919081019061405e565b905060ff8216606414158061125857506112588160e0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112499190614464565b64ffffffffff90811691161090565b1561129d5760e081015160405163bf5b8f0960e01b81526001600160601b038816600482015260ff8416602482015264ffffffffff9091166044820152606401610966565b60006112ba6112b0836060015187612ca4565b8360800151612d33565b90506112c68187612d7e565b156112ff5760405163826a5ff960e01b81526001600160601b038089166004830152808316602483015287166044820152606401610966565b61130d826080015187612ca4565b6001600160601b0316608083015261132789888488612e05565b6113318989612fb3565b505050505050505050565b6000805160206148ef8339815191528054600160401b810460ff1615906001600160401b031660008115801561136f5750825b90506000826001600160401b0316600114801561138b5750303b155b905081158015611399575080155b156113b75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113e157845460ff60401b1916600160401b1785555b6113eb878761325d565b831561143257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61144433610fd1565b6000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611484573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a89190613f0d565b604051634793b4ab60e01b81526001600160601b03851660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa1580156114fb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611523919081019061405e565b905061153185858386612e05565b5050505050565b611540612b65565b806001600160a01b03163b6000036115765760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610966565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263530ca14960e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156115f0575060408051601f3d908101601f191682019092526115ed91810190613f99565b60015b6116185760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610966565b806116415760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610966565b505b50565b61164f33610fd1565b816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561168d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b19190613f0d565b6040516375d357df60e01b81526001600160601b03831660048201526001600160a01b0391909116906375d357df90602401602060405180830381865afa158015611700573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117249190613f99565b61174c576040516392bb4dff60e01b81526001600160601b0382166004820152602401610966565b816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa15801561178a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ae9190613f0d565b604051631351fccf60e31b81526001600160601b03831660048201526001600160a01b039190911690639a8fe67890602401600060405180830381600087803b1580156117fa57600080fd5b505af115801561180e573d6000803e3d6000fd5b505050505050565b3361181f612408565b6001600160a01b0316816001600160a01b03161461185a5760405162d1953b60e31b81526001600160a01b0382166004820152602401610966565b816001600160a01b03163b600003611890576040516361798f2f60e11b81526001600160a01b0383166004820152602401610966565b6116418261337d565b6000806000805160206148af83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192d9190613f99565b156119ba576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611990573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b49190613f0d565b91505090565b54600160601b90046001600160a01b0316919050565b6119d8612b65565b611a5883846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3e9190613fc1565b603c60008560405180602001604052806000815250610d9c565b6001600160a01b03821615611a7557611a70826133de565b611be4565b6000611a896001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611ae9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0d9190614481565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611b52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b769190613f0d565b9050611be2816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdd9190613f0d565b6133de565b505b611bf4634a531f3360e01b610d6f565b611c0463b68d180960e01b610d6f565b505050565b6000805160206148cf833981519152805460009190600160a01b900460ff16611c335760006119b4565b638fb3603760e01b91505090565b611c4a33610fd1565b816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cac9190613f0d565b6001600160a01b031663fe1f18d68260c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b158015611d0657600080fd5b505af1158015611d1a573d6000803e3d6000fd5b505050506000826001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d829190613f0d565b6040516322cc1d4560e11b81526001600160601b03841660048201529091506000906001600160a01b038316906345983a8a90602401602060405180830381865afa158015611dd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df9919061438c565b90508015611e2c576040516356a410b760e01b81526001600160601b038416600482015260248101829052604401610966565b60405163b5346af560e01b81526001600160601b03841660048201526001600160a01b0383169063b5346af5906024015b600060405180830381600087803b158015611e7757600080fd5b505af1158015610e37573d6000803e3d6000fd5b611e9433610fd1565b6000846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ed4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef89190613f0d565b604051634793b4ab60e01b81526001600160601b03851660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa158015611f4b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f73919081019061405e565b9050611f83816080015184612d33565b6001600160601b0316608082015260408051631a99b41b60e31b815290516001600160a01b0388169163d4cda0d89160048083019260209291908290030181865afa158015611fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffa9190613f0d565b6001600160a01b03166359852426858360ff610d17565b600061201d608c6129c3565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561205f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120839190613f0d565b6001600160a01b031663fe1f18d683606e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b1580156120dd57600080fd5b505af11580156120f1573d6000803e3d6000fd5b505050506000816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015612135573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121599190613f0d565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af590602401600060405180830381600087803b1580156121a657600080fd5b505af11580156121ba573d6000803e3d6000fd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f4925060200190506106f3565b6000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061225c9190613f0d565b604051634793b4ab60e01b81526001600160601b03851660048201526001600160a01b039190911690634793b4ab90602401600060405180830381865afa1580156122ab573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526122d3919081019061405e565b60a081015160405163274acb3560e01b81526001600160601b039182166004820152908416602482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801561233c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123609190613fc1565b6001600160601b031660a082015260408051631a99b41b60e31b815290516001600160a01b0386169163d4cda0d89160048083019260209291908290030181865afa1580156123b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d79190613f0d565b6001600160a01b03166359852426848360ff5b6040518463ffffffff1660e01b8152600401611e5d93929190614229565b6000805160206148cf833981519152546001600160a01b031690565b600061078560286133ef565b600061078560466133ef565b600061244733610fd1565b61244f612424565b6001600160a01b031663c2bf08c86040518060e00160405280612470600090565b6001600160601b031681526020018b6001600160601b0316815260200161249560dc90565b60ff16815260200160001515815260200160006001600160a01b031681526020018a6001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b81526004016124f491906138a2565b6020604051808303816000875af1158015612513573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125379190613fc1565b9050886001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612577573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259b9190613f0d565b6001600160a01b03166397affbf5826040518061012001604052808c6001600160601b031681526020018a815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506001600160601b038a166020808301919091526040805163bc1b392d60e01b81528151919093019273__$3bac17678db7ae928afa209f2f44deec9c$__9263bc1b392d926004808401938290030181865af4158015612667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268b9190613fc1565b6001600160601b0316815260200173__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156126e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127069190613fc1565b6001600160601b031681526020018864ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561276a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061278e9190614464565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908a16602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af41580156127ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128119190614464565b64ffffffffff16815260006020909101526040516001600160e01b031960e085901b16815261284492919060040161449e565b600060405180830381600087803b15801561285e57600080fd5b505af1158015612872573d6000803e3d6000fd5b505050506000896001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128da9190613f0d565b6040516346f0e8a760e11b81526001600160601b03841660048201529091506001600160a01b03821690638de1d14e90602401600060405180830381600087803b15801561292757600080fd5b505af115801561293b573d6000803e3d6000fd5b505050505098975050505050505050565b612954612b65565b61295d81611538565b612965610f86565b6001600160a01b03821661298c5760405163f17ef42d60e01b815260040160405180910390fd5b506000805160206148af83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60006129cd6137b8565b60006129e16001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015612a27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4b9190613fc1565b9250612a578385613502565b8092508193505050806001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ac19190613f0d565b6080830151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015612b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b2f9190613f99565b15612b5e57608082015160405163d53987e560e01b81526001600160a01b039091166004820152602401610966565b9193909250565b6000805160206148ef83398151915254600160401b900460ff16612b9c57604051631afcd79f60e31b815260040160405180910390fd5b565b610206612b65565b6000805160206148cf833981519152600080612be1612bc3612408565b8730612bd3600460008a8c6144c0565b612bdc916144ea565b613606565b915091508161180e5763ffffffff811615612c8157825460ff60a01b1916600160a01b178355612c0f612408565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612c3e9392919061451a565b600060405180830381600087803b158015612c5857600080fd5b505af1158015612c6c573d6000803e3d6000fd5b5050845460ff60a01b191685555061180e9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610966565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612d08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2c9190613fc1565b9392505050565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612ceb565b6040516304d40eb160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401602060405180830381865af4158015612de1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2c9190613f99565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e819190613f99565b15612f3a57602082810151604051634f69237560e11b81528151600482015291015160248201526001600160601b038216604482015260009073__$58e11c6004c5796aaa8c56e718245e69a2$__90639ed246ea906064016040805180830381865af4158015612ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f19919061455a565b915050612f2a836060015182612ca4565b6001600160601b03166060840152505b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f9c9190613f0d565b6001600160a01b03166359852426848460ff6123ea565b6000826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ff3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130179190613f0d565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091506000906001600160a01b0383169063bd7d9d8590602401600060405180830381865afa15801561306a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261309291908101906145b3565b6101c0810151604051638d38cd4b60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af41580156130f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131169190613f99565b801561316f575061316f816101c0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611225573d6000803e3d6000fd5b1561319857604051630cd0c0b560e31b81526001600160601b0384166004820152602401610966565b6000846001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131fc9190613f0d565b604051630331f98560e21b81526001600160601b03861660048201529091506001600160a01b03821690630cc7e61490602401600060405180830381600087803b15801561324957600080fd5b505af1158015611331573d6000803e3d6000fd5b6000805160206148ef8339815191528054600160401b810460ff1615906001600160401b03166000811580156132905750825b90506000826001600160401b031660011480156132ac5750303b155b9050811580156132ba575080155b156132d85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561330257845460ff60401b1916600160401b1785555b60008087806020019051810190613319919061474f565b925050915061332982828b6119d0565b613339630e1d6de360e41b610d6f565b5050831561143257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611429565b6000805160206148cf83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6133e6612b65565b61164381613712565b60006134036001546001600160a01b031690565b6001600160a01b031663d39e60438361341a610700565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af415801561346f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134939190614481565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156134d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134fc9190613f0d565b92915050565b61350a6137b8565b600061351e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03861660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561356d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526135959190810190614791565b91506135ac82604001518460ff9081169116141590565b156135f057608082015160408084015190516304081d4960e41b81526001600160a01b03909216600483015260ff8086166024840152166044820152606401610966565b6135fd8260200151613723565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516136759190614863565b600060405180830381855afa9150503d80600081146136b0576040519150601f19603f3d011682016040523d82523d6000602084013e6136b5565b606091505b509150915081156137075760408151106136e757808060200190518101906136dd919061487f565b9094509250613707565b602081511061370757808060200190518101906137049190613f99565b93505b505094509492505050565b61371a612b65565b6116438161337d565b60006137376001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613786573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526137ae9190810190614791565b6080015192915050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60006020828403121561380857600080fd5b81356001600160e01b031981168114612d2c57600080fd5b6001600160601b038116811461164357600080fd5b60006020828403121561384757600080fd5b8135612d2c81613820565b60005b8381101561386d578181015183820152602001613855565b50506000910152565b6000815180845261388e816020860160208601613852565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161390b60c08401826001600160a01b03169052565b5060c083015160e080840152613925610100840182613876565b949350505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156139655761396561392d565b60405290565b60405161012081016001600160401b03811182821017156139655761396561392d565b60405161022081016001600160401b03811182821017156139655761396561392d565b60405160e081016001600160401b03811182821017156139655761396561392d565b604051601f8201601f191681016001600160401b03811182821017156139fb576139fb61392d565b604052919050565b600060408284031215613a1557600080fd5b613a1d613943565b9050813581526020820135602082015292915050565b60008060608385031215613a4657600080fd5b8235613a5181613820565b91506135fd8460208501613a03565b6001600160a01b038116811461164357600080fd5b60ff8116811461164357600080fd5b801515811461164357600080fd5b60006001600160401b03821115613aab57613aab61392d565b50601f01601f191660200190565b600082601f830112613aca57600080fd5b8135613add613ad882613a92565b6139d3565b818152846020838601011115613af257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215613b2857600080fd5b8635613b3381613a60565b95506020870135613b4381613820565b94506040870135613b5381613a75565b93506060870135613b6381613a84565b92506080870135613b7381613a60565b915060a08701356001600160401b03811115613b8e57600080fd5b613b9a89828a01613ab9565b9150509295509295509295565b600060208284031215613bb957600080fd5b81356001600160401b03811115613bcf57600080fd5b61392584828501613ab9565b600080600080600060a08688031215613bf357600080fd5b8535613bfe81613a60565b94506020860135613c0e81613820565b93506040860135613c1e81613820565b92506060860135613c2e81613820565b91506080860135613c3e81613820565b809150509295509295909350565b60008060408385031215613c5f57600080fd5b8235613c6a81613a60565b915060208301356001600160401b03811115613c8557600080fd5b613c9185828601613ab9565b9150509250929050565b600080600060608486031215613cb057600080fd5b8335613cbb81613a60565b92506020840135613ccb81613820565b91506040840135613cdb81613820565b809150509250925092565b600060208284031215613cf857600080fd5b8135612d2c81613a60565b60008060408385031215613d1657600080fd5b8235613d2181613a60565b91506020830135613d3181613820565b809150509250929050565b600080600060608486031215613d5157600080fd5b8335613d5c81613a60565b92506020840135613d6c81613a60565b91506040840135613cdb81613a60565b602081526000612d2c6020830184613876565b60008060008060808587031215613da557600080fd5b8435613db081613a60565b93506020850135613dc081613820565b92506040850135613dd081613820565b91506060850135613de081613820565b939692955090935050565b64ffffffffff8116811461164357600080fd5b600080600080600080600080610100898b031215613e1b57600080fd5b8835613e2681613a60565b97506020890135613e3681613820565b96506040890135613e4681613a60565b9550613e558a60608b01613a03565b945060a0890135613e6581613820565b935060c0890135613e7581613deb565b925060e08901356001600160401b0380821115613e9157600080fd5b818b0191508b601f830112613ea557600080fd5b813581811115613eb457600080fd5b8c6020828501011115613ec657600080fd5b6020830194508093505050509295985092959890939650565b60008060408385031215613ef257600080fd5b8235613efd81613a60565b91506020830135613d3181613a60565b600060208284031215613f1f57600080fd5b8151612d2c81613a60565b600060208284031215613f3c57600080fd5b815162ffffff81168114612d2c57600080fd5b600181811c90821680613f6357607f821691505b602082108103613f8357634e487b7160e01b600052602260045260246000fd5b50919050565b8051613f9481613a84565b919050565b600060208284031215613fab57600080fd5b8151612d2c81613a84565b8051613f9481613820565b600060208284031215613fd357600080fd5b8151612d2c81613820565b600060408284031215613ff057600080fd5b613ff8613943565b9050815181526020820151602082015292915050565b600082601f83011261401f57600080fd5b815161402d613ad882613a92565b81815284602083860101111561404257600080fd5b613925826020830160208701613852565b8051613f9481613deb565b60006020828403121561407057600080fd5b81516001600160401b038082111561408757600080fd5b90830190610140828603121561409c57600080fd5b6140a461396b565b6140ad83613fb6565b81526140bc8660208501613fde565b60208201526060830151828111156140d357600080fd5b6140df8782860161400e565b6040830152506140f160808401613fb6565b606082015261410260a08401613fb6565b608082015261411360c08401613fb6565b60a082015261412460e08401614053565b60c08201526101009150614139828401614053565b60e082015261414b6101208401614053565b91810191909152949350505050565b80516001600160601b03168252600061014060208381015180518683015290810151604086015250604083015181606086015261419982860182613876565b91505060608301516141b660808601826001600160601b03169052565b5060808301516001600160601b03811660a08601525060a08301516001600160601b03811660c08601525060c083015164ffffffffff811660e08601525060e083015161010061420e8187018364ffffffffff169052565b84015164ffffffffff81166101208701529050509392505050565b6001600160601b038416815260606020820152600061424b606083018561415a565b905060ff83166040830152949350505050565b601f821115611c0457600081815260208120601f850160051c810160208610156142855750805b601f850160051c820191505b8181101561180e57828155600101614291565b81516001600160401b038111156142bd576142bd61392d565b6142d1816142cb8454613f4f565b8461425e565b602080601f83116001811461430657600084156142ee5750858301515b600019600386901b1c1916600185901b17855561180e565b600085815260208120601f198616915b8281101561433557888601518255948401946001909101908401614316565b50858210156143535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561437557600080fd5b81516001600160401b0381168114612d2c57600080fd5b60006020828403121561439e57600080fd5b5051919050565b8051613f9481613a75565b8051613f9481613a60565b63ffffffff8116811461164357600080fd5b600060a082840312156143df57600080fd5b60405160a081018181106001600160401b03821117156144015761440161392d565b604052825161440f81613a75565b8152602083015161441f81613a75565b6020820152604083015161443281613a60565b60408201526060830151614445816143bb565b60608201526080830151614458816143bb565b60808201529392505050565b60006020828403121561447657600080fd5b8151612d2c81613deb565b60006020828403121561449357600080fd5b8151612d2c81613a75565b6001600160601b0383168152604060208201526000613925604083018461415a565b600080858511156144d057600080fd5b838611156144dd57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156145125780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000806040838503121561456d57600080fd5b825161457881613820565b6020840151909250613d3181613820565b80516001600160c01b031981168114613f9457600080fd5b805161ffff81168114613f9457600080fd5b6000602082840312156145c557600080fd5b81516001600160401b03808211156145dc57600080fd5b9083019061022082860312156145f157600080fd5b6145f961398e565b61460283613fb6565b815261461060208401613fb6565b602082015261462160408401614589565b604082015261463260608401614589565b606082015261464360808401613fb6565b608082015261465460a08401613fb6565b60a082015261466560c08401613fb6565b60c082015261467660e08401614053565b60e0820152610100808401518381111561468f57600080fd5b61469b8882870161400e565b82840152505061012080840151838111156146b557600080fd5b6146c18882870161400e565b82840152505061014091506146d78284016145a1565b8282015261016091506146eb8284016145a1565b8282015261018091506146ff828401613fb6565b828201526101a09150614713828401613fb6565b828201526101c09150614727828401614053565b828201526101e0915061473b828401614053565b82820152610200915061414b828401614053565b60008060006060848603121561476457600080fd5b835161476f81613a60565b602085015190935061478081613a60565b6040850151909250613cdb81613a60565b6000602082840312156147a357600080fd5b81516001600160401b03808211156147ba57600080fd5b9083019060e082860312156147ce57600080fd5b6147d66139b1565b6147df83613fb6565b81526147ed60208401613fb6565b60208201526147fe604084016143a5565b604082015261480f60608401613f89565b6060820152614820608084016143b0565b608082015261483160a084016143b0565b60a082015260c08301518281111561484857600080fd5b6148548782860161400e565b60c08301525095945050505050565b60008251614875818460208701613852565b9190910192915050565b6000806040838503121561489257600080fd5b825161489d81613a84565b6020840151909250613d31816143bb56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212208776c6897abf25c34af311343621594dfcbef597fdacee6f1daa579278ade50e64736f6c63430008140033",
         
     | 
| 
      
 1072 
     | 
    
         
            +
              "linkReferences": {
         
     | 
| 
      
 1073 
     | 
    
         
            +
                "contracts/type/Amount.sol": {
         
     | 
| 
      
 1074 
     | 
    
         
            +
                  "AmountLib": [
         
     | 
| 
      
 1075 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1076 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1077 
     | 
    
         
            +
                      "start": 9192
         
     | 
| 
      
 1078 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1079 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1080 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1081 
     | 
    
         
            +
                      "start": 10004
         
     | 
| 
      
 1082 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1083 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1084 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1085 
     | 
    
         
            +
                      "start": 10113
         
     | 
| 
      
 1086 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1087 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1088 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1089 
     | 
    
         
            +
                      "start": 11699
         
     | 
| 
      
 1090 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1091 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1092 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1093 
     | 
    
         
            +
                      "start": 11842
         
     | 
| 
      
 1094 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1095 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1096 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1097 
     | 
    
         
            +
                      "start": 11917
         
     | 
| 
      
 1098 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1099 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1100 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1101 
     | 
    
         
            +
                      "start": 12041
         
     | 
| 
      
 1102 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1103 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1104 
     | 
    
         
            +
                },
         
     | 
| 
      
 1105 
     | 
    
         
            +
                "contracts/type/Fee.sol": {
         
     | 
| 
      
 1106 
     | 
    
         
            +
                  "FeeLib": [
         
     | 
| 
      
 1107 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1108 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1109 
     | 
    
         
            +
                      "start": 12194
         
     | 
| 
      
 1110 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1111 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1112 
     | 
    
         
            +
                },
         
     | 
| 
      
 1113 
     | 
    
         
            +
                "contracts/type/NftId.sol": {
         
     | 
| 
      
 1114 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1115 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1116 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1117 
     | 
    
         
            +
                      "start": 2502
         
     | 
| 
      
 1118 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1119 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1120 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1121 
     | 
    
         
            +
                      "start": 3245
         
     | 
| 
      
 1122 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1123 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1124 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1125 
     | 
    
         
            +
                      "start": 4408
         
     | 
| 
      
 1126 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1127 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1128 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1129 
     | 
    
         
            +
                      "start": 6581
         
     | 
| 
      
 1130 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1131 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1132 
     | 
    
         
            +
                },
         
     | 
| 
      
 1133 
     | 
    
         
            +
                "contracts/type/Timestamp.sol": {
         
     | 
| 
      
 1134 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 1135 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1136 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1137 
     | 
    
         
            +
                      "start": 4804
         
     | 
| 
      
 1138 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1139 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1140 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1141 
     | 
    
         
            +
                      "start": 10249
         
     | 
| 
      
 1142 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1143 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1144 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1145 
     | 
    
         
            +
                      "start": 10393
         
     | 
| 
      
 1146 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1147 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1148 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1149 
     | 
    
         
            +
                      "start": 12702
         
     | 
| 
      
 1150 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1151 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1152 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1153 
     | 
    
         
            +
                      "start": 12814
         
     | 
| 
      
 1154 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1155 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1156 
     | 
    
         
            +
                },
         
     | 
| 
      
 1157 
     | 
    
         
            +
                "contracts/type/Version.sol": {
         
     | 
| 
      
 1158 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 1159 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1160 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1161 
     | 
    
         
            +
                      "start": 2061
         
     | 
| 
      
 1162 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1163 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1164 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1165 
     | 
    
         
            +
                      "start": 3881
         
     | 
| 
      
 1166 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1167 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1168 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1169 
     | 
    
         
            +
                      "start": 13595
         
     | 
| 
      
 1170 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1171 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1172 
     | 
    
         
            +
                  "VersionPartLib": [
         
     | 
| 
      
 1173 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1174 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1175 
     | 
    
         
            +
                      "start": 7061
         
     | 
| 
      
 1176 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1177 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1178 
     | 
    
         
            +
                }
         
     | 
| 
      
 1179 
     | 
    
         
            +
              },
         
     | 
| 
      
 1180 
     | 
    
         
            +
              "deployedLinkReferences": {
         
     | 
| 
      
 1181 
     | 
    
         
            +
                "contracts/type/Amount.sol": {
         
     | 
| 
      
 1182 
     | 
    
         
            +
                  "AmountLib": [
         
     | 
| 
      
 1183 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1184 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1185 
     | 
    
         
            +
                      "start": 8962
         
     | 
| 
      
 1186 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1187 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1188 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1189 
     | 
    
         
            +
                      "start": 9774
         
     | 
| 
      
 1190 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1191 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1192 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1193 
     | 
    
         
            +
                      "start": 9883
         
     | 
| 
      
 1194 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1195 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1196 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1197 
     | 
    
         
            +
                      "start": 11469
         
     | 
| 
      
 1198 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1199 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1200 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1201 
     | 
    
         
            +
                      "start": 11612
         
     | 
| 
      
 1202 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1203 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1204 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1205 
     | 
    
         
            +
                      "start": 11687
         
     | 
| 
      
 1206 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1207 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1208 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1209 
     | 
    
         
            +
                      "start": 11811
         
     | 
| 
      
 1210 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1211 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1212 
     | 
    
         
            +
                },
         
     | 
| 
      
 1213 
     | 
    
         
            +
                "contracts/type/Fee.sol": {
         
     | 
| 
      
 1214 
     | 
    
         
            +
                  "FeeLib": [
         
     | 
| 
      
 1215 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1216 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1217 
     | 
    
         
            +
                      "start": 11964
         
     | 
| 
      
 1218 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1219 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1220 
     | 
    
         
            +
                },
         
     | 
| 
      
 1221 
     | 
    
         
            +
                "contracts/type/NftId.sol": {
         
     | 
| 
      
 1222 
     | 
    
         
            +
                  "NftIdLib": [
         
     | 
| 
      
 1223 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1224 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1225 
     | 
    
         
            +
                      "start": 2272
         
     | 
| 
      
 1226 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1227 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1228 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1229 
     | 
    
         
            +
                      "start": 3015
         
     | 
| 
      
 1230 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1231 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1232 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1233 
     | 
    
         
            +
                      "start": 4178
         
     | 
| 
      
 1234 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1235 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1236 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1237 
     | 
    
         
            +
                      "start": 6351
         
     | 
| 
      
 1238 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1239 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1240 
     | 
    
         
            +
                },
         
     | 
| 
      
 1241 
     | 
    
         
            +
                "contracts/type/Timestamp.sol": {
         
     | 
| 
      
 1242 
     | 
    
         
            +
                  "TimestampLib": [
         
     | 
| 
      
 1243 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1244 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1245 
     | 
    
         
            +
                      "start": 4574
         
     | 
| 
      
 1246 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1247 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1248 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1249 
     | 
    
         
            +
                      "start": 10019
         
     | 
| 
      
 1250 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1251 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1252 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1253 
     | 
    
         
            +
                      "start": 10163
         
     | 
| 
      
 1254 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1255 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1256 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1257 
     | 
    
         
            +
                      "start": 12472
         
     | 
| 
      
 1258 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1259 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1260 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1261 
     | 
    
         
            +
                      "start": 12584
         
     | 
| 
      
 1262 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1263 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1264 
     | 
    
         
            +
                },
         
     | 
| 
      
 1265 
     | 
    
         
            +
                "contracts/type/Version.sol": {
         
     | 
| 
      
 1266 
     | 
    
         
            +
                  "VersionLib": [
         
     | 
| 
      
 1267 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1268 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1269 
     | 
    
         
            +
                      "start": 1831
         
     | 
| 
      
 1270 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1271 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1272 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1273 
     | 
    
         
            +
                      "start": 3651
         
     | 
| 
      
 1274 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1275 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1276 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1277 
     | 
    
         
            +
                      "start": 13365
         
     | 
| 
      
 1278 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1279 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1280 
     | 
    
         
            +
                  "VersionPartLib": [
         
     | 
| 
      
 1281 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1282 
     | 
    
         
            +
                      "length": 20,
         
     | 
| 
      
 1283 
     | 
    
         
            +
                      "start": 6831
         
     | 
| 
      
 1284 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1285 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 1286 
     | 
    
         
            +
                }
         
     | 
| 
      
 1287 
     | 
    
         
            +
              }
         
     | 
| 
      
 1288 
     | 
    
         
            +
            }
         
     |