@etherisc/gif-next 0.0.2-f2df3e2-873 → 0.0.2-f398177-971
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +37 -6
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +44 -13
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +37 -6
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +44 -13
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +55 -24
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +52 -21
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +55 -24
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +52 -21
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +2 -2
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +252 -2210
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +21 -38
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +346 -2685
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +67 -49
- 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 +219 -53
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +59 -220
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +32 -117
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +2 -2
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +37 -13
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- 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 +2 -2
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
- 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/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +75 -217
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +33 -66
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +155 -133
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +35 -64
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +463 -119
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +109 -42
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +181 -399
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +81 -94
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +11 -145
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +79 -30
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +229 -88
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +23 -273
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +40 -326
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +265 -32
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +5 -13
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +213 -443
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +74 -75
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +439 -54
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +84 -37
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +55 -31
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +22 -35
- 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/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +5 -13
- 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 +2 -2
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +17 -25
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +21 -34
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +2 -2
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +10 -23
- 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/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- 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 +6 -19
- 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 +14 -27
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +6 -19
- 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/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +6 -19
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +17 -25
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +100 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +2 -2
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +42 -18
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +2 -2
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +21 -2
- package/contracts/components/Distribution.sol +5 -4
- package/contracts/components/IComponent.sol +16 -2
- package/contracts/components/IPoolComponent.sol +7 -6
- package/contracts/components/IProductComponent.sol +5 -4
- package/contracts/components/Pool.sol +8 -8
- package/contracts/components/Product.sol +21 -17
- package/contracts/instance/IInstance.sol +28 -53
- package/contracts/instance/IInstanceService.sol +15 -10
- package/contracts/instance/Instance.sol +90 -171
- package/contracts/instance/InstanceAccessManager.sol +35 -21
- package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
- package/contracts/instance/InstanceReader.sol +56 -5
- package/contracts/instance/InstanceService.sol +96 -266
- package/contracts/instance/InstanceStore.sol +212 -0
- package/contracts/instance/ObjectManager.sol +1 -1
- package/contracts/instance/base/ComponentService.sol +47 -20
- package/contracts/instance/base/KeyValueStore.sol +0 -31
- package/contracts/instance/base/Lifecycle.sol +7 -4
- package/contracts/instance/module/IComponents.sol +3 -3
- package/contracts/instance/module/IDistribution.sol +3 -2
- package/contracts/instance/module/IPolicy.sol +5 -5
- package/contracts/instance/service/ApplicationService.sol +58 -227
- package/contracts/instance/service/BundleService.sol +65 -119
- package/contracts/instance/service/ClaimService.sol +232 -34
- package/contracts/instance/service/DistributionService.sol +51 -134
- package/contracts/instance/service/IApplicationService.sol +5 -21
- package/contracts/instance/service/IBundleService.sol +32 -10
- package/contracts/instance/service/IClaimService.sol +37 -39
- package/contracts/instance/service/IDistributionService.sol +10 -22
- package/contracts/instance/service/IPolicyService.sol +15 -72
- package/contracts/instance/service/IPoolService.sol +18 -3
- package/contracts/instance/service/IPricingService.sol +37 -0
- package/contracts/instance/service/PolicyService.sol +112 -277
- package/contracts/instance/service/PoolService.sol +121 -21
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +10 -10
- package/contracts/registry/IRegistryService.sol +0 -2
- package/contracts/registry/RegistryService.sol +14 -10
- package/contracts/shared/IPolicyHolder.sol +23 -9
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +2 -0
- package/contracts/shared/NftOwnable.sol +0 -2
- package/contracts/shared/PolicyHolder.sol +30 -17
- package/contracts/shared/Registerable.sol +10 -9
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/TokenHandler.sol +4 -2
- package/contracts/types/Amount.sol +44 -0
- package/contracts/types/Fee.sol +7 -6
- package/contracts/types/ObjectType.sol +5 -1
- package/package.json +1 -1
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- /package/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol +0 -0
| @@ -96,6 +96,11 @@ | |
| 96 96 | 
             
                  "name": "ErrorInstanceInstanceAccessManagerAuthorityMismatch",
         | 
| 97 97 | 
             
                  "type": "error"
         | 
| 98 98 | 
             
                },
         | 
| 99 | 
            +
                {
         | 
| 100 | 
            +
                  "inputs": [],
         | 
| 101 | 
            +
                  "name": "ErrorInstanceInstanceAccessManagerZero",
         | 
| 102 | 
            +
                  "type": "error"
         | 
| 103 | 
            +
                },
         | 
| 99 104 | 
             
                {
         | 
| 100 105 | 
             
                  "inputs": [
         | 
| 101 106 | 
             
                    {
         | 
| @@ -110,22 +115,23 @@ | |
| 110 115 | 
             
                {
         | 
| 111 116 | 
             
                  "inputs": [
         | 
| 112 117 | 
             
                    {
         | 
| 113 | 
            -
                      "internalType": " | 
| 114 | 
            -
                      "name": " | 
| 115 | 
            -
                      "type": " | 
| 116 | 
            -
                    } | 
| 117 | 
            -
             | 
| 118 | 
            -
             | 
| 119 | 
            -
             | 
| 120 | 
            -
             | 
| 121 | 
            -
             | 
| 118 | 
            +
                      "internalType": "address",
         | 
| 119 | 
            +
                      "name": "instanceStore",
         | 
| 120 | 
            +
                      "type": "address"
         | 
| 121 | 
            +
                    }
         | 
| 122 | 
            +
                  ],
         | 
| 123 | 
            +
                  "name": "ErrorInstanceInstanceStoreAlreadySet",
         | 
| 124 | 
            +
                  "type": "error"
         | 
| 125 | 
            +
                },
         | 
| 126 | 
            +
                {
         | 
| 127 | 
            +
                  "inputs": [
         | 
| 122 128 | 
             
                    {
         | 
| 123 | 
            -
                      "internalType": " | 
| 124 | 
            -
                      "name": " | 
| 125 | 
            -
                      "type": " | 
| 129 | 
            +
                      "internalType": "address",
         | 
| 130 | 
            +
                      "name": "instanceAuthority",
         | 
| 131 | 
            +
                      "type": "address"
         | 
| 126 132 | 
             
                    }
         | 
| 127 133 | 
             
                  ],
         | 
| 128 | 
            -
                  "name": " | 
| 134 | 
            +
                  "name": "ErrorInstanceInstanceStoreAuthorityMismatch",
         | 
| 129 135 | 
             
                  "type": "error"
         | 
| 130 136 | 
             
                },
         | 
| 131 137 | 
             
                {
         | 
| @@ -166,22 +172,6 @@ | |
| 166 172 | 
             
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 167 173 | 
             
                  "type": "error"
         | 
| 168 174 | 
             
                },
         | 
| 169 | 
            -
                {
         | 
| 170 | 
            -
                  "inputs": [
         | 
| 171 | 
            -
                    {
         | 
| 172 | 
            -
                      "internalType": "NftId",
         | 
| 173 | 
            -
                      "name": "nftId",
         | 
| 174 | 
            -
                      "type": "uint96"
         | 
| 175 | 
            -
                    },
         | 
| 176 | 
            -
                    {
         | 
| 177 | 
            -
                      "internalType": "ObjectType",
         | 
| 178 | 
            -
                      "name": "objectType",
         | 
| 179 | 
            -
                      "type": "uint8"
         | 
| 180 | 
            -
                    }
         | 
| 181 | 
            -
                  ],
         | 
| 182 | 
            -
                  "name": "ErrorNoLifecycle",
         | 
| 183 | 
            -
                  "type": "error"
         | 
| 184 | 
            -
                },
         | 
| 185 175 | 
             
                {
         | 
| 186 176 | 
             
                  "inputs": [
         | 
| 187 177 | 
             
                    {
         | 
| @@ -230,142 +220,112 @@ | |
| 230 220 | 
             
                  "type": "event"
         | 
| 231 221 | 
             
                },
         | 
| 232 222 | 
             
                {
         | 
| 233 | 
            -
                  " | 
| 234 | 
            -
                  " | 
| 235 | 
            -
             | 
| 236 | 
            -
                      "indexed": false,
         | 
| 237 | 
            -
                      "internalType": "ObjectType",
         | 
| 238 | 
            -
                      "name": "objectType",
         | 
| 239 | 
            -
                      "type": "uint8"
         | 
| 240 | 
            -
                    },
         | 
| 223 | 
            +
                  "inputs": [],
         | 
| 224 | 
            +
                  "name": "GIF_MAJOR_VERSION",
         | 
| 225 | 
            +
                  "outputs": [
         | 
| 241 226 | 
             
                    {
         | 
| 242 | 
            -
                      " | 
| 243 | 
            -
                      " | 
| 244 | 
            -
                      " | 
| 245 | 
            -
             | 
| 246 | 
            -
             | 
| 227 | 
            +
                      "internalType": "uint256",
         | 
| 228 | 
            +
                      "name": "",
         | 
| 229 | 
            +
                      "type": "uint256"
         | 
| 230 | 
            +
                    }
         | 
| 231 | 
            +
                  ],
         | 
| 232 | 
            +
                  "stateMutability": "view",
         | 
| 233 | 
            +
                  "type": "function"
         | 
| 234 | 
            +
                },
         | 
| 235 | 
            +
                {
         | 
| 236 | 
            +
                  "inputs": [],
         | 
| 237 | 
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         | 
| 238 | 
            +
                  "outputs": [
         | 
| 247 239 | 
             
                    {
         | 
| 248 | 
            -
                      " | 
| 249 | 
            -
                      " | 
| 250 | 
            -
                      " | 
| 251 | 
            -
             | 
| 252 | 
            -
             | 
| 240 | 
            +
                      "internalType": "bytes32",
         | 
| 241 | 
            +
                      "name": "",
         | 
| 242 | 
            +
                      "type": "bytes32"
         | 
| 243 | 
            +
                    }
         | 
| 244 | 
            +
                  ],
         | 
| 245 | 
            +
                  "stateMutability": "view",
         | 
| 246 | 
            +
                  "type": "function"
         | 
| 247 | 
            +
                },
         | 
| 248 | 
            +
                {
         | 
| 249 | 
            +
                  "inputs": [],
         | 
| 250 | 
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         | 
| 251 | 
            +
                  "outputs": [
         | 
| 253 252 | 
             
                    {
         | 
| 254 | 
            -
                      " | 
| 255 | 
            -
                      " | 
| 256 | 
            -
                      " | 
| 257 | 
            -
             | 
| 258 | 
            -
             | 
| 253 | 
            +
                      "internalType": "bytes32",
         | 
| 254 | 
            +
                      "name": "",
         | 
| 255 | 
            +
                      "type": "bytes32"
         | 
| 256 | 
            +
                    }
         | 
| 257 | 
            +
                  ],
         | 
| 258 | 
            +
                  "stateMutability": "view",
         | 
| 259 | 
            +
                  "type": "function"
         | 
| 260 | 
            +
                },
         | 
| 261 | 
            +
                {
         | 
| 262 | 
            +
                  "inputs": [],
         | 
| 263 | 
            +
                  "name": "authority",
         | 
| 264 | 
            +
                  "outputs": [
         | 
| 259 265 | 
             
                    {
         | 
| 260 | 
            -
                      "indexed": false,
         | 
| 261 266 | 
             
                      "internalType": "address",
         | 
| 262 | 
            -
                      "name": " | 
| 267 | 
            +
                      "name": "",
         | 
| 263 268 | 
             
                      "type": "address"
         | 
| 264 269 | 
             
                    }
         | 
| 265 270 | 
             
                  ],
         | 
| 266 | 
            -
                  " | 
| 267 | 
            -
                  "type": " | 
| 271 | 
            +
                  "stateMutability": "view",
         | 
| 272 | 
            +
                  "type": "function"
         | 
| 268 273 | 
             
                },
         | 
| 269 274 | 
             
                {
         | 
| 270 | 
            -
                  "anonymous": false,
         | 
| 271 275 | 
             
                  "inputs": [
         | 
| 272 276 | 
             
                    {
         | 
| 273 | 
            -
                      " | 
| 274 | 
            -
                      " | 
| 275 | 
            -
                      " | 
| 276 | 
            -
                      "type": "uint8"
         | 
| 277 | 
            -
                    },
         | 
| 278 | 
            -
                    {
         | 
| 279 | 
            -
                      "indexed": false,
         | 
| 280 | 
            -
                      "internalType": "KeyId",
         | 
| 281 | 
            -
                      "name": "keyId",
         | 
| 282 | 
            -
                      "type": "bytes31"
         | 
| 283 | 
            -
                    },
         | 
| 284 | 
            -
                    {
         | 
| 285 | 
            -
                      "indexed": false,
         | 
| 286 | 
            -
                      "internalType": "StateId",
         | 
| 287 | 
            -
                      "name": "state",
         | 
| 288 | 
            -
                      "type": "uint8"
         | 
| 277 | 
            +
                      "internalType": "string",
         | 
| 278 | 
            +
                      "name": "roleName",
         | 
| 279 | 
            +
                      "type": "string"
         | 
| 289 280 | 
             
                    },
         | 
| 290 281 | 
             
                    {
         | 
| 291 | 
            -
                      " | 
| 292 | 
            -
                      " | 
| 293 | 
            -
                      " | 
| 294 | 
            -
             | 
| 295 | 
            -
             | 
| 282 | 
            +
                      "internalType": "string",
         | 
| 283 | 
            +
                      "name": "adminName",
         | 
| 284 | 
            +
                      "type": "string"
         | 
| 285 | 
            +
                    }
         | 
| 286 | 
            +
                  ],
         | 
| 287 | 
            +
                  "name": "createRole",
         | 
| 288 | 
            +
                  "outputs": [
         | 
| 296 289 | 
             
                    {
         | 
| 297 | 
            -
                      " | 
| 298 | 
            -
                      " | 
| 299 | 
            -
                      " | 
| 300 | 
            -
                      "type": "address"
         | 
| 290 | 
            +
                      "internalType": "RoleId",
         | 
| 291 | 
            +
                      "name": "roleId",
         | 
| 292 | 
            +
                      "type": "uint64"
         | 
| 301 293 | 
             
                    },
         | 
| 302 294 | 
             
                    {
         | 
| 303 | 
            -
                      " | 
| 304 | 
            -
                      " | 
| 305 | 
            -
                      " | 
| 306 | 
            -
                      "type": "uint32"
         | 
| 295 | 
            +
                      "internalType": "RoleId",
         | 
| 296 | 
            +
                      "name": "admin",
         | 
| 297 | 
            +
                      "type": "uint64"
         | 
| 307 298 | 
             
                    }
         | 
| 308 299 | 
             
                  ],
         | 
| 309 | 
            -
                  " | 
| 310 | 
            -
                  "type": " | 
| 300 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 301 | 
            +
                  "type": "function"
         | 
| 311 302 | 
             
                },
         | 
| 312 303 | 
             
                {
         | 
| 313 | 
            -
                  "anonymous": false,
         | 
| 314 304 | 
             
                  "inputs": [
         | 
| 315 305 | 
             
                    {
         | 
| 316 | 
            -
                      "indexed": false,
         | 
| 317 | 
            -
                      "internalType": "ObjectType",
         | 
| 318 | 
            -
                      "name": "objectType",
         | 
| 319 | 
            -
                      "type": "uint8"
         | 
| 320 | 
            -
                    },
         | 
| 321 | 
            -
                    {
         | 
| 322 | 
            -
                      "indexed": false,
         | 
| 323 | 
            -
                      "internalType": "KeyId",
         | 
| 324 | 
            -
                      "name": "keyId",
         | 
| 325 | 
            -
                      "type": "bytes31"
         | 
| 326 | 
            -
                    },
         | 
| 327 | 
            -
                    {
         | 
| 328 | 
            -
                      "indexed": false,
         | 
| 329 | 
            -
                      "internalType": "StateId",
         | 
| 330 | 
            -
                      "name": "stateOld",
         | 
| 331 | 
            -
                      "type": "uint8"
         | 
| 332 | 
            -
                    },
         | 
| 333 | 
            -
                    {
         | 
| 334 | 
            -
                      "indexed": false,
         | 
| 335 | 
            -
                      "internalType": "StateId",
         | 
| 336 | 
            -
                      "name": "stateNew",
         | 
| 337 | 
            -
                      "type": "uint8"
         | 
| 338 | 
            -
                    },
         | 
| 339 | 
            -
                    {
         | 
| 340 | 
            -
                      "indexed": false,
         | 
| 341 | 
            -
                      "internalType": "address",
         | 
| 342 | 
            -
                      "name": "updatedBy",
         | 
| 343 | 
            -
                      "type": "address"
         | 
| 344 | 
            -
                    },
         | 
| 345 | 
            -
                    {
         | 
| 346 | 
            -
                      "indexed": false,
         | 
| 347 306 | 
             
                      "internalType": "address",
         | 
| 348 | 
            -
                      "name": " | 
| 307 | 
            +
                      "name": "target",
         | 
| 349 308 | 
             
                      "type": "address"
         | 
| 350 309 | 
             
                    },
         | 
| 351 310 | 
             
                    {
         | 
| 352 | 
            -
                      " | 
| 353 | 
            -
                      " | 
| 354 | 
            -
                      " | 
| 355 | 
            -
                      "type": "uint32"
         | 
| 311 | 
            +
                      "internalType": "string",
         | 
| 312 | 
            +
                      "name": "name",
         | 
| 313 | 
            +
                      "type": "string"
         | 
| 356 314 | 
             
                    }
         | 
| 357 315 | 
             
                  ],
         | 
| 358 | 
            -
                  "name": " | 
| 359 | 
            -
                  " | 
| 316 | 
            +
                  "name": "createTarget",
         | 
| 317 | 
            +
                  "outputs": [],
         | 
| 318 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 319 | 
            +
                  "type": "function"
         | 
| 360 320 | 
             
                },
         | 
| 361 321 | 
             
                {
         | 
| 362 322 | 
             
                  "inputs": [],
         | 
| 363 | 
            -
                  "name": " | 
| 323 | 
            +
                  "name": "getBundleManager",
         | 
| 364 324 | 
             
                  "outputs": [
         | 
| 365 325 | 
             
                    {
         | 
| 366 | 
            -
                      "internalType": " | 
| 326 | 
            +
                      "internalType": "contract BundleManager",
         | 
| 367 327 | 
             
                      "name": "",
         | 
| 368 | 
            -
                      "type": " | 
| 328 | 
            +
                      "type": "address"
         | 
| 369 329 | 
             
                    }
         | 
| 370 330 | 
             
                  ],
         | 
| 371 331 | 
             
                  "stateMutability": "view",
         | 
| @@ -373,12 +333,12 @@ | |
| 373 333 | 
             
                },
         | 
| 374 334 | 
             
                {
         | 
| 375 335 | 
             
                  "inputs": [],
         | 
| 376 | 
            -
                  "name": " | 
| 336 | 
            +
                  "name": "getBundleService",
         | 
| 377 337 | 
             
                  "outputs": [
         | 
| 378 338 | 
             
                    {
         | 
| 379 | 
            -
                      "internalType": " | 
| 339 | 
            +
                      "internalType": "contract IBundleService",
         | 
| 380 340 | 
             
                      "name": "",
         | 
| 381 | 
            -
                      "type": " | 
| 341 | 
            +
                      "type": "address"
         | 
| 382 342 | 
             
                    }
         | 
| 383 343 | 
             
                  ],
         | 
| 384 344 | 
             
                  "stateMutability": "view",
         | 
| @@ -386,12 +346,12 @@ | |
| 386 346 | 
             
                },
         | 
| 387 347 | 
             
                {
         | 
| 388 348 | 
             
                  "inputs": [],
         | 
| 389 | 
            -
                  "name": " | 
| 349 | 
            +
                  "name": "getDistributionService",
         | 
| 390 350 | 
             
                  "outputs": [
         | 
| 391 351 | 
             
                    {
         | 
| 392 | 
            -
                      "internalType": " | 
| 352 | 
            +
                      "internalType": "contract IDistributionService",
         | 
| 393 353 | 
             
                      "name": "",
         | 
| 394 | 
            -
                      "type": " | 
| 354 | 
            +
                      "type": "address"
         | 
| 395 355 | 
             
                    }
         | 
| 396 356 | 
             
                  ],
         | 
| 397 357 | 
             
                  "stateMutability": "view",
         | 
| @@ -399,12 +359,49 @@ | |
| 399 359 | 
             
                },
         | 
| 400 360 | 
             
                {
         | 
| 401 361 | 
             
                  "inputs": [],
         | 
| 402 | 
            -
                  "name": " | 
| 362 | 
            +
                  "name": "getInitialInfo",
         | 
| 403 363 | 
             
                  "outputs": [
         | 
| 404 364 | 
             
                    {
         | 
| 405 | 
            -
                      " | 
| 406 | 
            -
             | 
| 407 | 
            -
             | 
| 365 | 
            +
                      "components": [
         | 
| 366 | 
            +
                        {
         | 
| 367 | 
            +
                          "internalType": "NftId",
         | 
| 368 | 
            +
                          "name": "nftId",
         | 
| 369 | 
            +
                          "type": "uint96"
         | 
| 370 | 
            +
                        },
         | 
| 371 | 
            +
                        {
         | 
| 372 | 
            +
                          "internalType": "NftId",
         | 
| 373 | 
            +
                          "name": "parentNftId",
         | 
| 374 | 
            +
                          "type": "uint96"
         | 
| 375 | 
            +
                        },
         | 
| 376 | 
            +
                        {
         | 
| 377 | 
            +
                          "internalType": "ObjectType",
         | 
| 378 | 
            +
                          "name": "objectType",
         | 
| 379 | 
            +
                          "type": "uint8"
         | 
| 380 | 
            +
                        },
         | 
| 381 | 
            +
                        {
         | 
| 382 | 
            +
                          "internalType": "bool",
         | 
| 383 | 
            +
                          "name": "isInterceptor",
         | 
| 384 | 
            +
                          "type": "bool"
         | 
| 385 | 
            +
                        },
         | 
| 386 | 
            +
                        {
         | 
| 387 | 
            +
                          "internalType": "address",
         | 
| 388 | 
            +
                          "name": "objectAddress",
         | 
| 389 | 
            +
                          "type": "address"
         | 
| 390 | 
            +
                        },
         | 
| 391 | 
            +
                        {
         | 
| 392 | 
            +
                          "internalType": "address",
         | 
| 393 | 
            +
                          "name": "initialOwner",
         | 
| 394 | 
            +
                          "type": "address"
         | 
| 395 | 
            +
                        },
         | 
| 396 | 
            +
                        {
         | 
| 397 | 
            +
                          "internalType": "bytes",
         | 
| 398 | 
            +
                          "name": "data",
         | 
| 399 | 
            +
                          "type": "bytes"
         | 
| 400 | 
            +
                        }
         | 
| 401 | 
            +
                      ],
         | 
| 402 | 
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 403 | 
            +
                      "name": "info",
         | 
| 404 | 
            +
                      "type": "tuple"
         | 
| 408 405 | 
             
                    }
         | 
| 409 406 | 
             
                  ],
         | 
| 410 407 | 
             
                  "stateMutability": "view",
         | 
| @@ -412,12 +409,12 @@ | |
| 412 409 | 
             
                },
         | 
| 413 410 | 
             
                {
         | 
| 414 411 | 
             
                  "inputs": [],
         | 
| 415 | 
            -
                  "name": " | 
| 412 | 
            +
                  "name": "getInstanceAccessManager",
         | 
| 416 413 | 
             
                  "outputs": [
         | 
| 417 414 | 
             
                    {
         | 
| 418 | 
            -
                      "internalType": " | 
| 415 | 
            +
                      "internalType": "contract InstanceAccessManager",
         | 
| 419 416 | 
             
                      "name": "",
         | 
| 420 | 
            -
                      "type": " | 
| 417 | 
            +
                      "type": "address"
         | 
| 421 418 | 
             
                    }
         | 
| 422 419 | 
             
                  ],
         | 
| 423 420 | 
             
                  "stateMutability": "view",
         | 
| @@ -425,12 +422,12 @@ | |
| 425 422 | 
             
                },
         | 
| 426 423 | 
             
                {
         | 
| 427 424 | 
             
                  "inputs": [],
         | 
| 428 | 
            -
                  "name": " | 
| 425 | 
            +
                  "name": "getInstanceReader",
         | 
| 429 426 | 
             
                  "outputs": [
         | 
| 430 427 | 
             
                    {
         | 
| 431 | 
            -
                      "internalType": " | 
| 428 | 
            +
                      "internalType": "contract InstanceReader",
         | 
| 432 429 | 
             
                      "name": "",
         | 
| 433 | 
            -
                      "type": " | 
| 430 | 
            +
                      "type": "address"
         | 
| 434 431 | 
             
                    }
         | 
| 435 432 | 
             
                  ],
         | 
| 436 433 | 
             
                  "stateMutability": "view",
         | 
| @@ -438,12 +435,12 @@ | |
| 438 435 | 
             
                },
         | 
| 439 436 | 
             
                {
         | 
| 440 437 | 
             
                  "inputs": [],
         | 
| 441 | 
            -
                  "name": " | 
| 438 | 
            +
                  "name": "getInstanceStore",
         | 
| 442 439 | 
             
                  "outputs": [
         | 
| 443 440 | 
             
                    {
         | 
| 444 | 
            -
                      "internalType": " | 
| 441 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 445 442 | 
             
                      "name": "",
         | 
| 446 | 
            -
                      "type": " | 
| 443 | 
            +
                      "type": "address"
         | 
| 447 444 | 
             
                    }
         | 
| 448 445 | 
             
                  ],
         | 
| 449 446 | 
             
                  "stateMutability": "view",
         | 
| @@ -451,1684 +448,109 @@ | |
| 451 448 | 
             
                },
         | 
| 452 449 | 
             
                {
         | 
| 453 450 | 
             
                  "inputs": [],
         | 
| 454 | 
            -
                  "name": " | 
| 451 | 
            +
                  "name": "getMajorVersion",
         | 
| 455 452 | 
             
                  "outputs": [
         | 
| 456 453 | 
             
                    {
         | 
| 457 | 
            -
                      "internalType": " | 
| 458 | 
            -
                      "name": "",
         | 
| 459 | 
            -
                      "type": " | 
| 454 | 
            +
                      "internalType": "VersionPart",
         | 
| 455 | 
            +
                      "name": "majorVersion",
         | 
| 456 | 
            +
                      "type": "uint8"
         | 
| 460 457 | 
             
                    }
         | 
| 461 458 | 
             
                  ],
         | 
| 462 | 
            -
                  "stateMutability": " | 
| 459 | 
            +
                  "stateMutability": "pure",
         | 
| 463 460 | 
             
                  "type": "function"
         | 
| 464 461 | 
             
                },
         | 
| 465 462 | 
             
                {
         | 
| 466 | 
            -
                  "inputs": [
         | 
| 467 | 
            -
             | 
| 468 | 
            -
             | 
| 469 | 
            -
                      "name": "objectType",
         | 
| 470 | 
            -
                      "type": "uint8"
         | 
| 471 | 
            -
                    },
         | 
| 472 | 
            -
                    {
         | 
| 473 | 
            -
                      "internalType": "StateId",
         | 
| 474 | 
            -
                      "name": "fromId",
         | 
| 475 | 
            -
                      "type": "uint8"
         | 
| 476 | 
            -
                    },
         | 
| 463 | 
            +
                  "inputs": [],
         | 
| 464 | 
            +
                  "name": "getNftId",
         | 
| 465 | 
            +
                  "outputs": [
         | 
| 477 466 | 
             
                    {
         | 
| 478 | 
            -
                      "internalType": " | 
| 479 | 
            -
                      "name": " | 
| 480 | 
            -
                      "type": " | 
| 467 | 
            +
                      "internalType": "NftId",
         | 
| 468 | 
            +
                      "name": "",
         | 
| 469 | 
            +
                      "type": "uint96"
         | 
| 481 470 | 
             
                    }
         | 
| 482 471 | 
             
                  ],
         | 
| 483 | 
            -
                  "name": "checkTransition",
         | 
| 484 | 
            -
                  "outputs": [],
         | 
| 485 472 | 
             
                  "stateMutability": "view",
         | 
| 486 473 | 
             
                  "type": "function"
         | 
| 487 474 | 
             
                },
         | 
| 488 475 | 
             
                {
         | 
| 489 | 
            -
                  "inputs": [
         | 
| 490 | 
            -
             | 
| 491 | 
            -
             | 
| 492 | 
            -
                      "name": "applicationNftId",
         | 
| 493 | 
            -
                      "type": "uint96"
         | 
| 494 | 
            -
                    },
         | 
| 495 | 
            -
                    {
         | 
| 496 | 
            -
                      "components": [
         | 
| 497 | 
            -
                        {
         | 
| 498 | 
            -
                          "internalType": "NftId",
         | 
| 499 | 
            -
                          "name": "productNftId",
         | 
| 500 | 
            -
                          "type": "uint96"
         | 
| 501 | 
            -
                        },
         | 
| 502 | 
            -
                        {
         | 
| 503 | 
            -
                          "internalType": "NftId",
         | 
| 504 | 
            -
                          "name": "bundleNftId",
         | 
| 505 | 
            -
                          "type": "uint96"
         | 
| 506 | 
            -
                        },
         | 
| 507 | 
            -
                        {
         | 
| 508 | 
            -
                          "internalType": "ReferralId",
         | 
| 509 | 
            -
                          "name": "referralId",
         | 
| 510 | 
            -
                          "type": "bytes8"
         | 
| 511 | 
            -
                        },
         | 
| 512 | 
            -
                        {
         | 
| 513 | 
            -
                          "internalType": "RiskId",
         | 
| 514 | 
            -
                          "name": "riskId",
         | 
| 515 | 
            -
                          "type": "bytes8"
         | 
| 516 | 
            -
                        },
         | 
| 517 | 
            -
                        {
         | 
| 518 | 
            -
                          "internalType": "uint256",
         | 
| 519 | 
            -
                          "name": "sumInsuredAmount",
         | 
| 520 | 
            -
                          "type": "uint256"
         | 
| 521 | 
            -
                        },
         | 
| 522 | 
            -
                        {
         | 
| 523 | 
            -
                          "internalType": "uint256",
         | 
| 524 | 
            -
                          "name": "premiumAmount",
         | 
| 525 | 
            -
                          "type": "uint256"
         | 
| 526 | 
            -
                        },
         | 
| 527 | 
            -
                        {
         | 
| 528 | 
            -
                          "internalType": "uint256",
         | 
| 529 | 
            -
                          "name": "premiumPaidAmount",
         | 
| 530 | 
            -
                          "type": "uint256"
         | 
| 531 | 
            -
                        },
         | 
| 532 | 
            -
                        {
         | 
| 533 | 
            -
                          "internalType": "Seconds",
         | 
| 534 | 
            -
                          "name": "lifetime",
         | 
| 535 | 
            -
                          "type": "uint40"
         | 
| 536 | 
            -
                        },
         | 
| 537 | 
            -
                        {
         | 
| 538 | 
            -
                          "internalType": "bytes",
         | 
| 539 | 
            -
                          "name": "applicationData",
         | 
| 540 | 
            -
                          "type": "bytes"
         | 
| 541 | 
            -
                        },
         | 
| 542 | 
            -
                        {
         | 
| 543 | 
            -
                          "internalType": "bytes",
         | 
| 544 | 
            -
                          "name": "policyData",
         | 
| 545 | 
            -
                          "type": "bytes"
         | 
| 546 | 
            -
                        },
         | 
| 547 | 
            -
                        {
         | 
| 548 | 
            -
                          "internalType": "uint16",
         | 
| 549 | 
            -
                          "name": "claimsCount",
         | 
| 550 | 
            -
                          "type": "uint16"
         | 
| 551 | 
            -
                        },
         | 
| 552 | 
            -
                        {
         | 
| 553 | 
            -
                          "internalType": "uint16",
         | 
| 554 | 
            -
                          "name": "openClaimsCount",
         | 
| 555 | 
            -
                          "type": "uint16"
         | 
| 556 | 
            -
                        },
         | 
| 557 | 
            -
                        {
         | 
| 558 | 
            -
                          "internalType": "Amount",
         | 
| 559 | 
            -
                          "name": "payoutAmount",
         | 
| 560 | 
            -
                          "type": "uint96"
         | 
| 561 | 
            -
                        },
         | 
| 562 | 
            -
                        {
         | 
| 563 | 
            -
                          "internalType": "Timestamp",
         | 
| 564 | 
            -
                          "name": "activatedAt",
         | 
| 565 | 
            -
                          "type": "uint40"
         | 
| 566 | 
            -
                        },
         | 
| 567 | 
            -
                        {
         | 
| 568 | 
            -
                          "internalType": "Timestamp",
         | 
| 569 | 
            -
                          "name": "expiredAt",
         | 
| 570 | 
            -
                          "type": "uint40"
         | 
| 571 | 
            -
                        },
         | 
| 572 | 
            -
                        {
         | 
| 573 | 
            -
                          "internalType": "Timestamp",
         | 
| 574 | 
            -
                          "name": "closedAt",
         | 
| 575 | 
            -
                          "type": "uint40"
         | 
| 576 | 
            -
                        }
         | 
| 577 | 
            -
                      ],
         | 
| 578 | 
            -
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 579 | 
            -
                      "name": "policy",
         | 
| 580 | 
            -
                      "type": "tuple"
         | 
| 581 | 
            -
                    }
         | 
| 582 | 
            -
                  ],
         | 
| 583 | 
            -
                  "name": "createApplication",
         | 
| 584 | 
            -
                  "outputs": [],
         | 
| 585 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 586 | 
            -
                  "type": "function"
         | 
| 587 | 
            -
                },
         | 
| 588 | 
            -
                {
         | 
| 589 | 
            -
                  "inputs": [
         | 
| 590 | 
            -
                    {
         | 
| 591 | 
            -
                      "internalType": "NftId",
         | 
| 592 | 
            -
                      "name": "bundleNftId",
         | 
| 593 | 
            -
                      "type": "uint96"
         | 
| 594 | 
            -
                    },
         | 
| 595 | 
            -
                    {
         | 
| 596 | 
            -
                      "components": [
         | 
| 597 | 
            -
                        {
         | 
| 598 | 
            -
                          "internalType": "NftId",
         | 
| 599 | 
            -
                          "name": "poolNftId",
         | 
| 600 | 
            -
                          "type": "uint96"
         | 
| 601 | 
            -
                        },
         | 
| 602 | 
            -
                        {
         | 
| 603 | 
            -
                          "components": [
         | 
| 604 | 
            -
                            {
         | 
| 605 | 
            -
                              "internalType": "UFixed",
         | 
| 606 | 
            -
                              "name": "fractionalFee",
         | 
| 607 | 
            -
                              "type": "uint256"
         | 
| 608 | 
            -
                            },
         | 
| 609 | 
            -
                            {
         | 
| 610 | 
            -
                              "internalType": "uint256",
         | 
| 611 | 
            -
                              "name": "fixedFee",
         | 
| 612 | 
            -
                              "type": "uint256"
         | 
| 613 | 
            -
                            }
         | 
| 614 | 
            -
                          ],
         | 
| 615 | 
            -
                          "internalType": "struct Fee",
         | 
| 616 | 
            -
                          "name": "fee",
         | 
| 617 | 
            -
                          "type": "tuple"
         | 
| 618 | 
            -
                        },
         | 
| 619 | 
            -
                        {
         | 
| 620 | 
            -
                          "internalType": "bytes",
         | 
| 621 | 
            -
                          "name": "filter",
         | 
| 622 | 
            -
                          "type": "bytes"
         | 
| 623 | 
            -
                        },
         | 
| 624 | 
            -
                        {
         | 
| 625 | 
            -
                          "internalType": "Amount",
         | 
| 626 | 
            -
                          "name": "capitalAmount",
         | 
| 627 | 
            -
                          "type": "uint96"
         | 
| 628 | 
            -
                        },
         | 
| 629 | 
            -
                        {
         | 
| 630 | 
            -
                          "internalType": "Amount",
         | 
| 631 | 
            -
                          "name": "lockedAmount",
         | 
| 632 | 
            -
                          "type": "uint96"
         | 
| 633 | 
            -
                        },
         | 
| 634 | 
            -
                        {
         | 
| 635 | 
            -
                          "internalType": "Amount",
         | 
| 636 | 
            -
                          "name": "feeAmount",
         | 
| 637 | 
            -
                          "type": "uint96"
         | 
| 638 | 
            -
                        },
         | 
| 639 | 
            -
                        {
         | 
| 640 | 
            -
                          "internalType": "Seconds",
         | 
| 641 | 
            -
                          "name": "lifetime",
         | 
| 642 | 
            -
                          "type": "uint40"
         | 
| 643 | 
            -
                        },
         | 
| 644 | 
            -
                        {
         | 
| 645 | 
            -
                          "internalType": "Timestamp",
         | 
| 646 | 
            -
                          "name": "expiredAt",
         | 
| 647 | 
            -
                          "type": "uint40"
         | 
| 648 | 
            -
                        },
         | 
| 649 | 
            -
                        {
         | 
| 650 | 
            -
                          "internalType": "Timestamp",
         | 
| 651 | 
            -
                          "name": "closedAt",
         | 
| 652 | 
            -
                          "type": "uint40"
         | 
| 653 | 
            -
                        }
         | 
| 654 | 
            -
                      ],
         | 
| 655 | 
            -
                      "internalType": "struct IBundle.BundleInfo",
         | 
| 656 | 
            -
                      "name": "bundle",
         | 
| 657 | 
            -
                      "type": "tuple"
         | 
| 658 | 
            -
                    }
         | 
| 659 | 
            -
                  ],
         | 
| 660 | 
            -
                  "name": "createBundle",
         | 
| 661 | 
            -
                  "outputs": [],
         | 
| 662 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 663 | 
            -
                  "type": "function"
         | 
| 664 | 
            -
                },
         | 
| 665 | 
            -
                {
         | 
| 666 | 
            -
                  "inputs": [
         | 
| 667 | 
            -
                    {
         | 
| 668 | 
            -
                      "internalType": "NftId",
         | 
| 669 | 
            -
                      "name": "policyNftId",
         | 
| 670 | 
            -
                      "type": "uint96"
         | 
| 671 | 
            -
                    },
         | 
| 672 | 
            -
                    {
         | 
| 673 | 
            -
                      "internalType": "ClaimId",
         | 
| 674 | 
            -
                      "name": "claimId",
         | 
| 675 | 
            -
                      "type": "uint16"
         | 
| 676 | 
            -
                    },
         | 
| 677 | 
            -
                    {
         | 
| 678 | 
            -
                      "components": [
         | 
| 679 | 
            -
                        {
         | 
| 680 | 
            -
                          "internalType": "Amount",
         | 
| 681 | 
            -
                          "name": "claimAmount",
         | 
| 682 | 
            -
                          "type": "uint96"
         | 
| 683 | 
            -
                        },
         | 
| 684 | 
            -
                        {
         | 
| 685 | 
            -
                          "internalType": "Amount",
         | 
| 686 | 
            -
                          "name": "paidAmount",
         | 
| 687 | 
            -
                          "type": "uint96"
         | 
| 688 | 
            -
                        },
         | 
| 689 | 
            -
                        {
         | 
| 690 | 
            -
                          "internalType": "uint8",
         | 
| 691 | 
            -
                          "name": "payoutsCount",
         | 
| 692 | 
            -
                          "type": "uint8"
         | 
| 693 | 
            -
                        },
         | 
| 694 | 
            -
                        {
         | 
| 695 | 
            -
                          "internalType": "uint8",
         | 
| 696 | 
            -
                          "name": "openPayoutsCount",
         | 
| 697 | 
            -
                          "type": "uint8"
         | 
| 698 | 
            -
                        },
         | 
| 699 | 
            -
                        {
         | 
| 700 | 
            -
                          "internalType": "bytes",
         | 
| 701 | 
            -
                          "name": "data",
         | 
| 702 | 
            -
                          "type": "bytes"
         | 
| 703 | 
            -
                        },
         | 
| 704 | 
            -
                        {
         | 
| 705 | 
            -
                          "internalType": "Timestamp",
         | 
| 706 | 
            -
                          "name": "closedAt",
         | 
| 707 | 
            -
                          "type": "uint40"
         | 
| 708 | 
            -
                        }
         | 
| 709 | 
            -
                      ],
         | 
| 710 | 
            -
                      "internalType": "struct IPolicy.ClaimInfo",
         | 
| 711 | 
            -
                      "name": "claim",
         | 
| 712 | 
            -
                      "type": "tuple"
         | 
| 713 | 
            -
                    }
         | 
| 714 | 
            -
                  ],
         | 
| 715 | 
            -
                  "name": "createClaim",
         | 
| 716 | 
            -
                  "outputs": [],
         | 
| 717 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 718 | 
            -
                  "type": "function"
         | 
| 719 | 
            -
                },
         | 
| 720 | 
            -
                {
         | 
| 721 | 
            -
                  "inputs": [
         | 
| 722 | 
            -
                    {
         | 
| 723 | 
            -
                      "internalType": "NftId",
         | 
| 724 | 
            -
                      "name": "distributionNftId",
         | 
| 725 | 
            -
                      "type": "uint96"
         | 
| 726 | 
            -
                    },
         | 
| 727 | 
            -
                    {
         | 
| 728 | 
            -
                      "components": [
         | 
| 729 | 
            -
                        {
         | 
| 730 | 
            -
                          "internalType": "NftId",
         | 
| 731 | 
            -
                          "name": "productNftId",
         | 
| 732 | 
            -
                          "type": "uint96"
         | 
| 733 | 
            -
                        },
         | 
| 734 | 
            -
                        {
         | 
| 735 | 
            -
                          "internalType": "contract TokenHandler",
         | 
| 736 | 
            -
                          "name": "tokenHandler",
         | 
| 737 | 
            -
                          "type": "address"
         | 
| 738 | 
            -
                        },
         | 
| 739 | 
            -
                        {
         | 
| 740 | 
            -
                          "components": [
         | 
| 741 | 
            -
                            {
         | 
| 742 | 
            -
                              "internalType": "UFixed",
         | 
| 743 | 
            -
                              "name": "fractionalFee",
         | 
| 744 | 
            -
                              "type": "uint256"
         | 
| 745 | 
            -
                            },
         | 
| 746 | 
            -
                            {
         | 
| 747 | 
            -
                              "internalType": "uint256",
         | 
| 748 | 
            -
                              "name": "fixedFee",
         | 
| 749 | 
            -
                              "type": "uint256"
         | 
| 750 | 
            -
                            }
         | 
| 751 | 
            -
                          ],
         | 
| 752 | 
            -
                          "internalType": "struct Fee",
         | 
| 753 | 
            -
                          "name": "minDistributionOwnerFee",
         | 
| 754 | 
            -
                          "type": "tuple"
         | 
| 755 | 
            -
                        },
         | 
| 756 | 
            -
                        {
         | 
| 757 | 
            -
                          "components": [
         | 
| 758 | 
            -
                            {
         | 
| 759 | 
            -
                              "internalType": "UFixed",
         | 
| 760 | 
            -
                              "name": "fractionalFee",
         | 
| 761 | 
            -
                              "type": "uint256"
         | 
| 762 | 
            -
                            },
         | 
| 763 | 
            -
                            {
         | 
| 764 | 
            -
                              "internalType": "uint256",
         | 
| 765 | 
            -
                              "name": "fixedFee",
         | 
| 766 | 
            -
                              "type": "uint256"
         | 
| 767 | 
            -
                            }
         | 
| 768 | 
            -
                          ],
         | 
| 769 | 
            -
                          "internalType": "struct Fee",
         | 
| 770 | 
            -
                          "name": "distributionFee",
         | 
| 771 | 
            -
                          "type": "tuple"
         | 
| 772 | 
            -
                        },
         | 
| 773 | 
            -
                        {
         | 
| 774 | 
            -
                          "internalType": "address",
         | 
| 775 | 
            -
                          "name": "wallet",
         | 
| 776 | 
            -
                          "type": "address"
         | 
| 777 | 
            -
                        },
         | 
| 778 | 
            -
                        {
         | 
| 779 | 
            -
                          "internalType": "uint256",
         | 
| 780 | 
            -
                          "name": "sumDistributionOwnerFees",
         | 
| 781 | 
            -
                          "type": "uint256"
         | 
| 782 | 
            -
                        }
         | 
| 783 | 
            -
                      ],
         | 
| 784 | 
            -
                      "internalType": "struct ISetup.DistributionSetupInfo",
         | 
| 785 | 
            -
                      "name": "setup",
         | 
| 786 | 
            -
                      "type": "tuple"
         | 
| 787 | 
            -
                    }
         | 
| 788 | 
            -
                  ],
         | 
| 789 | 
            -
                  "name": "createDistributionSetup",
         | 
| 790 | 
            -
                  "outputs": [],
         | 
| 791 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 792 | 
            -
                  "type": "function"
         | 
| 793 | 
            -
                },
         | 
| 794 | 
            -
                {
         | 
| 795 | 
            -
                  "inputs": [
         | 
| 796 | 
            -
                    {
         | 
| 797 | 
            -
                      "internalType": "NftId",
         | 
| 798 | 
            -
                      "name": "distributorNftId",
         | 
| 799 | 
            -
                      "type": "uint96"
         | 
| 800 | 
            -
                    },
         | 
| 801 | 
            -
                    {
         | 
| 802 | 
            -
                      "components": [
         | 
| 803 | 
            -
                        {
         | 
| 804 | 
            -
                          "internalType": "DistributorType",
         | 
| 805 | 
            -
                          "name": "distributorType",
         | 
| 806 | 
            -
                          "type": "bytes8"
         | 
| 807 | 
            -
                        },
         | 
| 808 | 
            -
                        {
         | 
| 809 | 
            -
                          "internalType": "bool",
         | 
| 810 | 
            -
                          "name": "active",
         | 
| 811 | 
            -
                          "type": "bool"
         | 
| 812 | 
            -
                        },
         | 
| 813 | 
            -
                        {
         | 
| 814 | 
            -
                          "internalType": "bytes",
         | 
| 815 | 
            -
                          "name": "data",
         | 
| 816 | 
            -
                          "type": "bytes"
         | 
| 817 | 
            -
                        },
         | 
| 818 | 
            -
                        {
         | 
| 819 | 
            -
                          "internalType": "uint256",
         | 
| 820 | 
            -
                          "name": "sumCommisions",
         | 
| 821 | 
            -
                          "type": "uint256"
         | 
| 822 | 
            -
                        },
         | 
| 823 | 
            -
                        {
         | 
| 824 | 
            -
                          "internalType": "uint256",
         | 
| 825 | 
            -
                          "name": "numPoliciesSold",
         | 
| 826 | 
            -
                          "type": "uint256"
         | 
| 827 | 
            -
                        }
         | 
| 828 | 
            -
                      ],
         | 
| 829 | 
            -
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 830 | 
            -
                      "name": "info",
         | 
| 831 | 
            -
                      "type": "tuple"
         | 
| 832 | 
            -
                    }
         | 
| 833 | 
            -
                  ],
         | 
| 834 | 
            -
                  "name": "createDistributor",
         | 
| 835 | 
            -
                  "outputs": [],
         | 
| 836 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 837 | 
            -
                  "type": "function"
         | 
| 838 | 
            -
                },
         | 
| 839 | 
            -
                {
         | 
| 840 | 
            -
                  "inputs": [
         | 
| 841 | 
            -
                    {
         | 
| 842 | 
            -
                      "internalType": "DistributorType",
         | 
| 843 | 
            -
                      "name": "distributorType",
         | 
| 844 | 
            -
                      "type": "bytes8"
         | 
| 845 | 
            -
                    },
         | 
| 846 | 
            -
                    {
         | 
| 847 | 
            -
                      "components": [
         | 
| 848 | 
            -
                        {
         | 
| 849 | 
            -
                          "internalType": "string",
         | 
| 850 | 
            -
                          "name": "name",
         | 
| 851 | 
            -
                          "type": "string"
         | 
| 852 | 
            -
                        },
         | 
| 853 | 
            -
                        {
         | 
| 854 | 
            -
                          "internalType": "UFixed",
         | 
| 855 | 
            -
                          "name": "minDiscountPercentage",
         | 
| 856 | 
            -
                          "type": "uint256"
         | 
| 857 | 
            -
                        },
         | 
| 858 | 
            -
                        {
         | 
| 859 | 
            -
                          "internalType": "UFixed",
         | 
| 860 | 
            -
                          "name": "maxDiscountPercentage",
         | 
| 861 | 
            -
                          "type": "uint256"
         | 
| 862 | 
            -
                        },
         | 
| 863 | 
            -
                        {
         | 
| 864 | 
            -
                          "internalType": "UFixed",
         | 
| 865 | 
            -
                          "name": "commissionPercentage",
         | 
| 866 | 
            -
                          "type": "uint256"
         | 
| 867 | 
            -
                        },
         | 
| 868 | 
            -
                        {
         | 
| 869 | 
            -
                          "internalType": "uint32",
         | 
| 870 | 
            -
                          "name": "maxReferralCount",
         | 
| 871 | 
            -
                          "type": "uint32"
         | 
| 872 | 
            -
                        },
         | 
| 873 | 
            -
                        {
         | 
| 874 | 
            -
                          "internalType": "uint32",
         | 
| 875 | 
            -
                          "name": "maxReferralLifetime",
         | 
| 876 | 
            -
                          "type": "uint32"
         | 
| 877 | 
            -
                        },
         | 
| 878 | 
            -
                        {
         | 
| 879 | 
            -
                          "internalType": "bool",
         | 
| 880 | 
            -
                          "name": "allowSelfReferrals",
         | 
| 881 | 
            -
                          "type": "bool"
         | 
| 882 | 
            -
                        },
         | 
| 883 | 
            -
                        {
         | 
| 884 | 
            -
                          "internalType": "bool",
         | 
| 885 | 
            -
                          "name": "allowRenewals",
         | 
| 886 | 
            -
                          "type": "bool"
         | 
| 887 | 
            -
                        },
         | 
| 888 | 
            -
                        {
         | 
| 889 | 
            -
                          "internalType": "bytes",
         | 
| 890 | 
            -
                          "name": "data",
         | 
| 891 | 
            -
                          "type": "bytes"
         | 
| 892 | 
            -
                        }
         | 
| 893 | 
            -
                      ],
         | 
| 894 | 
            -
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 895 | 
            -
                      "name": "info",
         | 
| 896 | 
            -
                      "type": "tuple"
         | 
| 897 | 
            -
                    }
         | 
| 898 | 
            -
                  ],
         | 
| 899 | 
            -
                  "name": "createDistributorType",
         | 
| 900 | 
            -
                  "outputs": [],
         | 
| 901 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 902 | 
            -
                  "type": "function"
         | 
| 903 | 
            -
                },
         | 
| 904 | 
            -
                {
         | 
| 905 | 
            -
                  "inputs": [
         | 
| 906 | 
            -
                    {
         | 
| 907 | 
            -
                      "internalType": "NftId",
         | 
| 908 | 
            -
                      "name": "policyNftId",
         | 
| 909 | 
            -
                      "type": "uint96"
         | 
| 910 | 
            -
                    },
         | 
| 911 | 
            -
                    {
         | 
| 912 | 
            -
                      "internalType": "PayoutId",
         | 
| 913 | 
            -
                      "name": "payoutId",
         | 
| 914 | 
            -
                      "type": "uint24"
         | 
| 915 | 
            -
                    },
         | 
| 916 | 
            -
                    {
         | 
| 917 | 
            -
                      "components": [
         | 
| 918 | 
            -
                        {
         | 
| 919 | 
            -
                          "internalType": "ClaimId",
         | 
| 920 | 
            -
                          "name": "claimId",
         | 
| 921 | 
            -
                          "type": "uint16"
         | 
| 922 | 
            -
                        },
         | 
| 923 | 
            -
                        {
         | 
| 924 | 
            -
                          "internalType": "Amount",
         | 
| 925 | 
            -
                          "name": "amount",
         | 
| 926 | 
            -
                          "type": "uint96"
         | 
| 927 | 
            -
                        },
         | 
| 928 | 
            -
                        {
         | 
| 929 | 
            -
                          "internalType": "bytes",
         | 
| 930 | 
            -
                          "name": "data",
         | 
| 931 | 
            -
                          "type": "bytes"
         | 
| 932 | 
            -
                        },
         | 
| 933 | 
            -
                        {
         | 
| 934 | 
            -
                          "internalType": "Timestamp",
         | 
| 935 | 
            -
                          "name": "paidAt",
         | 
| 936 | 
            -
                          "type": "uint40"
         | 
| 937 | 
            -
                        }
         | 
| 938 | 
            -
                      ],
         | 
| 939 | 
            -
                      "internalType": "struct IPolicy.PayoutInfo",
         | 
| 940 | 
            -
                      "name": "payout",
         | 
| 941 | 
            -
                      "type": "tuple"
         | 
| 942 | 
            -
                    }
         | 
| 943 | 
            -
                  ],
         | 
| 944 | 
            -
                  "name": "createPayout",
         | 
| 945 | 
            -
                  "outputs": [],
         | 
| 946 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 947 | 
            -
                  "type": "function"
         | 
| 948 | 
            -
                },
         | 
| 949 | 
            -
                {
         | 
| 950 | 
            -
                  "inputs": [
         | 
| 951 | 
            -
                    {
         | 
| 952 | 
            -
                      "internalType": "NftId",
         | 
| 953 | 
            -
                      "name": "poolNftId",
         | 
| 954 | 
            -
                      "type": "uint96"
         | 
| 955 | 
            -
                    },
         | 
| 956 | 
            -
                    {
         | 
| 957 | 
            -
                      "components": [
         | 
| 958 | 
            -
                        {
         | 
| 959 | 
            -
                          "internalType": "string",
         | 
| 960 | 
            -
                          "name": "name",
         | 
| 961 | 
            -
                          "type": "string"
         | 
| 962 | 
            -
                        },
         | 
| 963 | 
            -
                        {
         | 
| 964 | 
            -
                          "internalType": "contract IERC20Metadata",
         | 
| 965 | 
            -
                          "name": "token",
         | 
| 966 | 
            -
                          "type": "address"
         | 
| 967 | 
            -
                        },
         | 
| 968 | 
            -
                        {
         | 
| 969 | 
            -
                          "internalType": "contract TokenHandler",
         | 
| 970 | 
            -
                          "name": "tokenHandler",
         | 
| 971 | 
            -
                          "type": "address"
         | 
| 972 | 
            -
                        },
         | 
| 973 | 
            -
                        {
         | 
| 974 | 
            -
                          "internalType": "address",
         | 
| 975 | 
            -
                          "name": "wallet",
         | 
| 976 | 
            -
                          "type": "address"
         | 
| 977 | 
            -
                        },
         | 
| 978 | 
            -
                        {
         | 
| 979 | 
            -
                          "internalType": "Amount",
         | 
| 980 | 
            -
                          "name": "balanceAmount",
         | 
| 981 | 
            -
                          "type": "uint96"
         | 
| 982 | 
            -
                        },
         | 
| 983 | 
            -
                        {
         | 
| 984 | 
            -
                          "internalType": "Amount",
         | 
| 985 | 
            -
                          "name": "feeAmount",
         | 
| 986 | 
            -
                          "type": "uint96"
         | 
| 987 | 
            -
                        },
         | 
| 988 | 
            -
                        {
         | 
| 989 | 
            -
                          "internalType": "bytes",
         | 
| 990 | 
            -
                          "name": "data",
         | 
| 991 | 
            -
                          "type": "bytes"
         | 
| 992 | 
            -
                        }
         | 
| 993 | 
            -
                      ],
         | 
| 994 | 
            -
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 995 | 
            -
                      "name": "info",
         | 
| 996 | 
            -
                      "type": "tuple"
         | 
| 997 | 
            -
                    }
         | 
| 998 | 
            -
                  ],
         | 
| 999 | 
            -
                  "name": "createPoolSetup",
         | 
| 1000 | 
            -
                  "outputs": [],
         | 
| 1001 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1002 | 
            -
                  "type": "function"
         | 
| 1003 | 
            -
                },
         | 
| 1004 | 
            -
                {
         | 
| 1005 | 
            -
                  "inputs": [
         | 
| 1006 | 
            -
                    {
         | 
| 1007 | 
            -
                      "internalType": "NftId",
         | 
| 1008 | 
            -
                      "name": "productNftId",
         | 
| 1009 | 
            -
                      "type": "uint96"
         | 
| 1010 | 
            -
                    },
         | 
| 1011 | 
            -
                    {
         | 
| 1012 | 
            -
                      "components": [
         | 
| 1013 | 
            -
                        {
         | 
| 1014 | 
            -
                          "internalType": "contract IERC20Metadata",
         | 
| 1015 | 
            -
                          "name": "token",
         | 
| 1016 | 
            -
                          "type": "address"
         | 
| 1017 | 
            -
                        },
         | 
| 1018 | 
            -
                        {
         | 
| 1019 | 
            -
                          "internalType": "contract TokenHandler",
         | 
| 1020 | 
            -
                          "name": "tokenHandler",
         | 
| 1021 | 
            -
                          "type": "address"
         | 
| 1022 | 
            -
                        },
         | 
| 1023 | 
            -
                        {
         | 
| 1024 | 
            -
                          "internalType": "NftId",
         | 
| 1025 | 
            -
                          "name": "distributionNftId",
         | 
| 1026 | 
            -
                          "type": "uint96"
         | 
| 1027 | 
            -
                        },
         | 
| 1028 | 
            -
                        {
         | 
| 1029 | 
            -
                          "internalType": "NftId",
         | 
| 1030 | 
            -
                          "name": "poolNftId",
         | 
| 1031 | 
            -
                          "type": "uint96"
         | 
| 1032 | 
            -
                        },
         | 
| 1033 | 
            -
                        {
         | 
| 1034 | 
            -
                          "components": [
         | 
| 1035 | 
            -
                            {
         | 
| 1036 | 
            -
                              "internalType": "UFixed",
         | 
| 1037 | 
            -
                              "name": "fractionalFee",
         | 
| 1038 | 
            -
                              "type": "uint256"
         | 
| 1039 | 
            -
                            },
         | 
| 1040 | 
            -
                            {
         | 
| 1041 | 
            -
                              "internalType": "uint256",
         | 
| 1042 | 
            -
                              "name": "fixedFee",
         | 
| 1043 | 
            -
                              "type": "uint256"
         | 
| 1044 | 
            -
                            }
         | 
| 1045 | 
            -
                          ],
         | 
| 1046 | 
            -
                          "internalType": "struct Fee",
         | 
| 1047 | 
            -
                          "name": "productFee",
         | 
| 1048 | 
            -
                          "type": "tuple"
         | 
| 1049 | 
            -
                        },
         | 
| 1050 | 
            -
                        {
         | 
| 1051 | 
            -
                          "components": [
         | 
| 1052 | 
            -
                            {
         | 
| 1053 | 
            -
                              "internalType": "UFixed",
         | 
| 1054 | 
            -
                              "name": "fractionalFee",
         | 
| 1055 | 
            -
                              "type": "uint256"
         | 
| 1056 | 
            -
                            },
         | 
| 1057 | 
            -
                            {
         | 
| 1058 | 
            -
                              "internalType": "uint256",
         | 
| 1059 | 
            -
                              "name": "fixedFee",
         | 
| 1060 | 
            -
                              "type": "uint256"
         | 
| 1061 | 
            -
                            }
         | 
| 1062 | 
            -
                          ],
         | 
| 1063 | 
            -
                          "internalType": "struct Fee",
         | 
| 1064 | 
            -
                          "name": "processingFee",
         | 
| 1065 | 
            -
                          "type": "tuple"
         | 
| 1066 | 
            -
                        },
         | 
| 1067 | 
            -
                        {
         | 
| 1068 | 
            -
                          "internalType": "bool",
         | 
| 1069 | 
            -
                          "name": "isIntercepting",
         | 
| 1070 | 
            -
                          "type": "bool"
         | 
| 1071 | 
            -
                        },
         | 
| 1072 | 
            -
                        {
         | 
| 1073 | 
            -
                          "internalType": "address",
         | 
| 1074 | 
            -
                          "name": "wallet",
         | 
| 1075 | 
            -
                          "type": "address"
         | 
| 1076 | 
            -
                        }
         | 
| 1077 | 
            -
                      ],
         | 
| 1078 | 
            -
                      "internalType": "struct ISetup.ProductSetupInfo",
         | 
| 1079 | 
            -
                      "name": "setup",
         | 
| 1080 | 
            -
                      "type": "tuple"
         | 
| 1081 | 
            -
                    }
         | 
| 1082 | 
            -
                  ],
         | 
| 1083 | 
            -
                  "name": "createProductSetup",
         | 
| 1084 | 
            -
                  "outputs": [],
         | 
| 1085 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1086 | 
            -
                  "type": "function"
         | 
| 1087 | 
            -
                },
         | 
| 1088 | 
            -
                {
         | 
| 1089 | 
            -
                  "inputs": [
         | 
| 1090 | 
            -
                    {
         | 
| 1091 | 
            -
                      "internalType": "ReferralId",
         | 
| 1092 | 
            -
                      "name": "referralId",
         | 
| 1093 | 
            -
                      "type": "bytes8"
         | 
| 1094 | 
            -
                    },
         | 
| 1095 | 
            -
                    {
         | 
| 1096 | 
            -
                      "components": [
         | 
| 1097 | 
            -
                        {
         | 
| 1098 | 
            -
                          "internalType": "NftId",
         | 
| 1099 | 
            -
                          "name": "distributorNftId",
         | 
| 1100 | 
            -
                          "type": "uint96"
         | 
| 1101 | 
            -
                        },
         | 
| 1102 | 
            -
                        {
         | 
| 1103 | 
            -
                          "internalType": "string",
         | 
| 1104 | 
            -
                          "name": "referralCode",
         | 
| 1105 | 
            -
                          "type": "string"
         | 
| 1106 | 
            -
                        },
         | 
| 1107 | 
            -
                        {
         | 
| 1108 | 
            -
                          "internalType": "UFixed",
         | 
| 1109 | 
            -
                          "name": "discountPercentage",
         | 
| 1110 | 
            -
                          "type": "uint256"
         | 
| 1111 | 
            -
                        },
         | 
| 1112 | 
            -
                        {
         | 
| 1113 | 
            -
                          "internalType": "uint32",
         | 
| 1114 | 
            -
                          "name": "maxReferrals",
         | 
| 1115 | 
            -
                          "type": "uint32"
         | 
| 1116 | 
            -
                        },
         | 
| 1117 | 
            -
                        {
         | 
| 1118 | 
            -
                          "internalType": "uint32",
         | 
| 1119 | 
            -
                          "name": "usedReferrals",
         | 
| 1120 | 
            -
                          "type": "uint32"
         | 
| 1121 | 
            -
                        },
         | 
| 1122 | 
            -
                        {
         | 
| 1123 | 
            -
                          "internalType": "Timestamp",
         | 
| 1124 | 
            -
                          "name": "expiryAt",
         | 
| 1125 | 
            -
                          "type": "uint40"
         | 
| 1126 | 
            -
                        },
         | 
| 1127 | 
            -
                        {
         | 
| 1128 | 
            -
                          "internalType": "bytes",
         | 
| 1129 | 
            -
                          "name": "data",
         | 
| 1130 | 
            -
                          "type": "bytes"
         | 
| 1131 | 
            -
                        }
         | 
| 1132 | 
            -
                      ],
         | 
| 1133 | 
            -
                      "internalType": "struct IDistribution.ReferralInfo",
         | 
| 1134 | 
            -
                      "name": "referralInfo",
         | 
| 1135 | 
            -
                      "type": "tuple"
         | 
| 1136 | 
            -
                    }
         | 
| 1137 | 
            -
                  ],
         | 
| 1138 | 
            -
                  "name": "createReferral",
         | 
| 1139 | 
            -
                  "outputs": [],
         | 
| 1140 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1141 | 
            -
                  "type": "function"
         | 
| 1142 | 
            -
                },
         | 
| 1143 | 
            -
                {
         | 
| 1144 | 
            -
                  "inputs": [
         | 
| 1145 | 
            -
                    {
         | 
| 1146 | 
            -
                      "internalType": "RiskId",
         | 
| 1147 | 
            -
                      "name": "riskId",
         | 
| 1148 | 
            -
                      "type": "bytes8"
         | 
| 1149 | 
            -
                    },
         | 
| 1150 | 
            -
                    {
         | 
| 1151 | 
            -
                      "components": [
         | 
| 1152 | 
            -
                        {
         | 
| 1153 | 
            -
                          "internalType": "NftId",
         | 
| 1154 | 
            -
                          "name": "productNftId",
         | 
| 1155 | 
            -
                          "type": "uint96"
         | 
| 1156 | 
            -
                        },
         | 
| 1157 | 
            -
                        {
         | 
| 1158 | 
            -
                          "internalType": "bytes",
         | 
| 1159 | 
            -
                          "name": "data",
         | 
| 1160 | 
            -
                          "type": "bytes"
         | 
| 1161 | 
            -
                        }
         | 
| 1162 | 
            -
                      ],
         | 
| 1163 | 
            -
                      "internalType": "struct IRisk.RiskInfo",
         | 
| 1164 | 
            -
                      "name": "risk",
         | 
| 1165 | 
            -
                      "type": "tuple"
         | 
| 1166 | 
            -
                    }
         | 
| 1167 | 
            -
                  ],
         | 
| 1168 | 
            -
                  "name": "createRisk",
         | 
| 1169 | 
            -
                  "outputs": [],
         | 
| 1170 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1171 | 
            -
                  "type": "function"
         | 
| 1172 | 
            -
                },
         | 
| 1173 | 
            -
                {
         | 
| 1174 | 
            -
                  "inputs": [
         | 
| 1175 | 
            -
                    {
         | 
| 1176 | 
            -
                      "internalType": "Key32",
         | 
| 1177 | 
            -
                      "name": "key32",
         | 
| 1178 | 
            -
                      "type": "bytes32"
         | 
| 1179 | 
            -
                    }
         | 
| 1180 | 
            -
                  ],
         | 
| 1181 | 
            -
                  "name": "exists",
         | 
| 1182 | 
            -
                  "outputs": [
         | 
| 1183 | 
            -
                    {
         | 
| 1184 | 
            -
                      "internalType": "bool",
         | 
| 1185 | 
            -
                      "name": "",
         | 
| 1186 | 
            -
                      "type": "bool"
         | 
| 1187 | 
            -
                    }
         | 
| 1188 | 
            -
                  ],
         | 
| 1189 | 
            -
                  "stateMutability": "view",
         | 
| 1190 | 
            -
                  "type": "function"
         | 
| 1191 | 
            -
                },
         | 
| 1192 | 
            -
                {
         | 
| 1193 | 
            -
                  "inputs": [
         | 
| 1194 | 
            -
                    {
         | 
| 1195 | 
            -
                      "internalType": "Key32",
         | 
| 1196 | 
            -
                      "name": "key32",
         | 
| 1197 | 
            -
                      "type": "bytes32"
         | 
| 1198 | 
            -
                    }
         | 
| 1199 | 
            -
                  ],
         | 
| 1200 | 
            -
                  "name": "get",
         | 
| 1201 | 
            -
                  "outputs": [
         | 
| 1202 | 
            -
                    {
         | 
| 1203 | 
            -
                      "components": [
         | 
| 1204 | 
            -
                        {
         | 
| 1205 | 
            -
                          "components": [
         | 
| 1206 | 
            -
                            {
         | 
| 1207 | 
            -
                              "internalType": "ObjectType",
         | 
| 1208 | 
            -
                              "name": "objectType",
         | 
| 1209 | 
            -
                              "type": "uint8"
         | 
| 1210 | 
            -
                            },
         | 
| 1211 | 
            -
                            {
         | 
| 1212 | 
            -
                              "internalType": "StateId",
         | 
| 1213 | 
            -
                              "name": "state",
         | 
| 1214 | 
            -
                              "type": "uint8"
         | 
| 1215 | 
            -
                            },
         | 
| 1216 | 
            -
                            {
         | 
| 1217 | 
            -
                              "internalType": "address",
         | 
| 1218 | 
            -
                              "name": "updatedBy",
         | 
| 1219 | 
            -
                              "type": "address"
         | 
| 1220 | 
            -
                            },
         | 
| 1221 | 
            -
                            {
         | 
| 1222 | 
            -
                              "internalType": "Blocknumber",
         | 
| 1223 | 
            -
                              "name": "updatedIn",
         | 
| 1224 | 
            -
                              "type": "uint32"
         | 
| 1225 | 
            -
                            },
         | 
| 1226 | 
            -
                            {
         | 
| 1227 | 
            -
                              "internalType": "Blocknumber",
         | 
| 1228 | 
            -
                              "name": "createdIn",
         | 
| 1229 | 
            -
                              "type": "uint32"
         | 
| 1230 | 
            -
                            }
         | 
| 1231 | 
            -
                          ],
         | 
| 1232 | 
            -
                          "internalType": "struct IKeyValueStore.Metadata",
         | 
| 1233 | 
            -
                          "name": "metadata",
         | 
| 1234 | 
            -
                          "type": "tuple"
         | 
| 1235 | 
            -
                        },
         | 
| 1236 | 
            -
                        {
         | 
| 1237 | 
            -
                          "internalType": "bytes",
         | 
| 1238 | 
            -
                          "name": "data",
         | 
| 1239 | 
            -
                          "type": "bytes"
         | 
| 1240 | 
            -
                        }
         | 
| 1241 | 
            -
                      ],
         | 
| 1242 | 
            -
                      "internalType": "struct IKeyValueStore.Value",
         | 
| 1243 | 
            -
                      "name": "value",
         | 
| 1244 | 
            -
                      "type": "tuple"
         | 
| 1245 | 
            -
                    }
         | 
| 1246 | 
            -
                  ],
         | 
| 1247 | 
            -
                  "stateMutability": "view",
         | 
| 1248 | 
            -
                  "type": "function"
         | 
| 1249 | 
            -
                },
         | 
| 1250 | 
            -
                {
         | 
| 1251 | 
            -
                  "inputs": [],
         | 
| 1252 | 
            -
                  "name": "getBundleManager",
         | 
| 1253 | 
            -
                  "outputs": [
         | 
| 1254 | 
            -
                    {
         | 
| 1255 | 
            -
                      "internalType": "contract BundleManager",
         | 
| 1256 | 
            -
                      "name": "",
         | 
| 1257 | 
            -
                      "type": "address"
         | 
| 1258 | 
            -
                    }
         | 
| 1259 | 
            -
                  ],
         | 
| 1260 | 
            -
                  "stateMutability": "view",
         | 
| 1261 | 
            -
                  "type": "function"
         | 
| 1262 | 
            -
                },
         | 
| 1263 | 
            -
                {
         | 
| 1264 | 
            -
                  "inputs": [
         | 
| 1265 | 
            -
                    {
         | 
| 1266 | 
            -
                      "internalType": "Key32",
         | 
| 1267 | 
            -
                      "name": "key32",
         | 
| 1268 | 
            -
                      "type": "bytes32"
         | 
| 1269 | 
            -
                    }
         | 
| 1270 | 
            -
                  ],
         | 
| 1271 | 
            -
                  "name": "getData",
         | 
| 1272 | 
            -
                  "outputs": [
         | 
| 1273 | 
            -
                    {
         | 
| 1274 | 
            -
                      "internalType": "bytes",
         | 
| 1275 | 
            -
                      "name": "data",
         | 
| 1276 | 
            -
                      "type": "bytes"
         | 
| 1277 | 
            -
                    }
         | 
| 1278 | 
            -
                  ],
         | 
| 1279 | 
            -
                  "stateMutability": "view",
         | 
| 1280 | 
            -
                  "type": "function"
         | 
| 1281 | 
            -
                },
         | 
| 1282 | 
            -
                {
         | 
| 1283 | 
            -
                  "inputs": [],
         | 
| 1284 | 
            -
                  "name": "getInitialInfo",
         | 
| 1285 | 
            -
                  "outputs": [
         | 
| 1286 | 
            -
                    {
         | 
| 1287 | 
            -
                      "components": [
         | 
| 1288 | 
            -
                        {
         | 
| 1289 | 
            -
                          "internalType": "NftId",
         | 
| 1290 | 
            -
                          "name": "nftId",
         | 
| 1291 | 
            -
                          "type": "uint96"
         | 
| 1292 | 
            -
                        },
         | 
| 1293 | 
            -
                        {
         | 
| 1294 | 
            -
                          "internalType": "NftId",
         | 
| 1295 | 
            -
                          "name": "parentNftId",
         | 
| 1296 | 
            -
                          "type": "uint96"
         | 
| 1297 | 
            -
                        },
         | 
| 1298 | 
            -
                        {
         | 
| 1299 | 
            -
                          "internalType": "ObjectType",
         | 
| 1300 | 
            -
                          "name": "objectType",
         | 
| 1301 | 
            -
                          "type": "uint8"
         | 
| 1302 | 
            -
                        },
         | 
| 1303 | 
            -
                        {
         | 
| 1304 | 
            -
                          "internalType": "bool",
         | 
| 1305 | 
            -
                          "name": "isInterceptor",
         | 
| 1306 | 
            -
                          "type": "bool"
         | 
| 1307 | 
            -
                        },
         | 
| 1308 | 
            -
                        {
         | 
| 1309 | 
            -
                          "internalType": "address",
         | 
| 1310 | 
            -
                          "name": "objectAddress",
         | 
| 1311 | 
            -
                          "type": "address"
         | 
| 1312 | 
            -
                        },
         | 
| 1313 | 
            -
                        {
         | 
| 1314 | 
            -
                          "internalType": "address",
         | 
| 1315 | 
            -
                          "name": "initialOwner",
         | 
| 1316 | 
            -
                          "type": "address"
         | 
| 1317 | 
            -
                        },
         | 
| 1318 | 
            -
                        {
         | 
| 1319 | 
            -
                          "internalType": "bytes",
         | 
| 1320 | 
            -
                          "name": "data",
         | 
| 1321 | 
            -
                          "type": "bytes"
         | 
| 1322 | 
            -
                        }
         | 
| 1323 | 
            -
                      ],
         | 
| 1324 | 
            -
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 1325 | 
            -
                      "name": "info",
         | 
| 1326 | 
            -
                      "type": "tuple"
         | 
| 1327 | 
            -
                    }
         | 
| 1328 | 
            -
                  ],
         | 
| 1329 | 
            -
                  "stateMutability": "view",
         | 
| 1330 | 
            -
                  "type": "function"
         | 
| 1331 | 
            -
                },
         | 
| 1332 | 
            -
                {
         | 
| 1333 | 
            -
                  "inputs": [
         | 
| 1334 | 
            -
                    {
         | 
| 1335 | 
            -
                      "internalType": "ObjectType",
         | 
| 1336 | 
            -
                      "name": "objectType",
         | 
| 1337 | 
            -
                      "type": "uint8"
         | 
| 1338 | 
            -
                    }
         | 
| 1339 | 
            -
                  ],
         | 
| 1340 | 
            -
                  "name": "getInitialState",
         | 
| 1341 | 
            -
                  "outputs": [
         | 
| 1342 | 
            -
                    {
         | 
| 1343 | 
            -
                      "internalType": "StateId",
         | 
| 1344 | 
            -
                      "name": "",
         | 
| 1345 | 
            -
                      "type": "uint8"
         | 
| 1346 | 
            -
                    }
         | 
| 1347 | 
            -
                  ],
         | 
| 1348 | 
            -
                  "stateMutability": "view",
         | 
| 1349 | 
            -
                  "type": "function"
         | 
| 1350 | 
            -
                },
         | 
| 1351 | 
            -
                {
         | 
| 1352 | 
            -
                  "inputs": [],
         | 
| 1353 | 
            -
                  "name": "getInstanceAccessManager",
         | 
| 1354 | 
            -
                  "outputs": [
         | 
| 1355 | 
            -
                    {
         | 
| 1356 | 
            -
                      "internalType": "contract InstanceAccessManager",
         | 
| 1357 | 
            -
                      "name": "",
         | 
| 1358 | 
            -
                      "type": "address"
         | 
| 1359 | 
            -
                    }
         | 
| 1360 | 
            -
                  ],
         | 
| 1361 | 
            -
                  "stateMutability": "view",
         | 
| 1362 | 
            -
                  "type": "function"
         | 
| 1363 | 
            -
                },
         | 
| 1364 | 
            -
                {
         | 
| 1365 | 
            -
                  "inputs": [],
         | 
| 1366 | 
            -
                  "name": "getInstanceReader",
         | 
| 1367 | 
            -
                  "outputs": [
         | 
| 1368 | 
            -
                    {
         | 
| 1369 | 
            -
                      "internalType": "contract InstanceReader",
         | 
| 1370 | 
            -
                      "name": "",
         | 
| 1371 | 
            -
                      "type": "address"
         | 
| 1372 | 
            -
                    }
         | 
| 1373 | 
            -
                  ],
         | 
| 1374 | 
            -
                  "stateMutability": "view",
         | 
| 1375 | 
            -
                  "type": "function"
         | 
| 1376 | 
            -
                },
         | 
| 1377 | 
            -
                {
         | 
| 1378 | 
            -
                  "inputs": [],
         | 
| 1379 | 
            -
                  "name": "getMajorVersion",
         | 
| 1380 | 
            -
                  "outputs": [
         | 
| 1381 | 
            -
                    {
         | 
| 1382 | 
            -
                      "internalType": "VersionPart",
         | 
| 1383 | 
            -
                      "name": "majorVersion",
         | 
| 1384 | 
            -
                      "type": "uint8"
         | 
| 1385 | 
            -
                    }
         | 
| 1386 | 
            -
                  ],
         | 
| 1387 | 
            -
                  "stateMutability": "pure",
         | 
| 1388 | 
            -
                  "type": "function"
         | 
| 1389 | 
            -
                },
         | 
| 1390 | 
            -
                {
         | 
| 1391 | 
            -
                  "inputs": [
         | 
| 1392 | 
            -
                    {
         | 
| 1393 | 
            -
                      "internalType": "Key32",
         | 
| 1394 | 
            -
                      "name": "key32",
         | 
| 1395 | 
            -
                      "type": "bytes32"
         | 
| 1396 | 
            -
                    }
         | 
| 1397 | 
            -
                  ],
         | 
| 1398 | 
            -
                  "name": "getMetadata",
         | 
| 1399 | 
            -
                  "outputs": [
         | 
| 1400 | 
            -
                    {
         | 
| 1401 | 
            -
                      "components": [
         | 
| 1402 | 
            -
                        {
         | 
| 1403 | 
            -
                          "internalType": "ObjectType",
         | 
| 1404 | 
            -
                          "name": "objectType",
         | 
| 1405 | 
            -
                          "type": "uint8"
         | 
| 1406 | 
            -
                        },
         | 
| 1407 | 
            -
                        {
         | 
| 1408 | 
            -
                          "internalType": "StateId",
         | 
| 1409 | 
            -
                          "name": "state",
         | 
| 1410 | 
            -
                          "type": "uint8"
         | 
| 1411 | 
            -
                        },
         | 
| 1412 | 
            -
                        {
         | 
| 1413 | 
            -
                          "internalType": "address",
         | 
| 1414 | 
            -
                          "name": "updatedBy",
         | 
| 1415 | 
            -
                          "type": "address"
         | 
| 1416 | 
            -
                        },
         | 
| 1417 | 
            -
                        {
         | 
| 1418 | 
            -
                          "internalType": "Blocknumber",
         | 
| 1419 | 
            -
                          "name": "updatedIn",
         | 
| 1420 | 
            -
                          "type": "uint32"
         | 
| 1421 | 
            -
                        },
         | 
| 1422 | 
            -
                        {
         | 
| 1423 | 
            -
                          "internalType": "Blocknumber",
         | 
| 1424 | 
            -
                          "name": "createdIn",
         | 
| 1425 | 
            -
                          "type": "uint32"
         | 
| 1426 | 
            -
                        }
         | 
| 1427 | 
            -
                      ],
         | 
| 1428 | 
            -
                      "internalType": "struct IKeyValueStore.Metadata",
         | 
| 1429 | 
            -
                      "name": "metadata",
         | 
| 1430 | 
            -
                      "type": "tuple"
         | 
| 1431 | 
            -
                    }
         | 
| 1432 | 
            -
                  ],
         | 
| 1433 | 
            -
                  "stateMutability": "view",
         | 
| 1434 | 
            -
                  "type": "function"
         | 
| 1435 | 
            -
                },
         | 
| 1436 | 
            -
                {
         | 
| 1437 | 
            -
                  "inputs": [],
         | 
| 1438 | 
            -
                  "name": "getNftId",
         | 
| 1439 | 
            -
                  "outputs": [
         | 
| 1440 | 
            -
                    {
         | 
| 1441 | 
            -
                      "internalType": "NftId",
         | 
| 1442 | 
            -
                      "name": "",
         | 
| 1443 | 
            -
                      "type": "uint96"
         | 
| 1444 | 
            -
                    }
         | 
| 1445 | 
            -
                  ],
         | 
| 1446 | 
            -
                  "stateMutability": "view",
         | 
| 1447 | 
            -
                  "type": "function"
         | 
| 1448 | 
            -
                },
         | 
| 1449 | 
            -
                {
         | 
| 1450 | 
            -
                  "inputs": [],
         | 
| 1451 | 
            -
                  "name": "getOwner",
         | 
| 1452 | 
            -
                  "outputs": [
         | 
| 1453 | 
            -
                    {
         | 
| 1454 | 
            -
                      "internalType": "address",
         | 
| 1455 | 
            -
                      "name": "",
         | 
| 1456 | 
            -
                      "type": "address"
         | 
| 1457 | 
            -
                    }
         | 
| 1458 | 
            -
                  ],
         | 
| 1459 | 
            -
                  "stateMutability": "view",
         | 
| 1460 | 
            -
                  "type": "function"
         | 
| 1461 | 
            -
                },
         | 
| 1462 | 
            -
                {
         | 
| 1463 | 
            -
                  "inputs": [],
         | 
| 1464 | 
            -
                  "name": "getRegistry",
         | 
| 1465 | 
            -
                  "outputs": [
         | 
| 1466 | 
            -
                    {
         | 
| 1467 | 
            -
                      "internalType": "contract IRegistry",
         | 
| 1468 | 
            -
                      "name": "",
         | 
| 1469 | 
            -
                      "type": "address"
         | 
| 1470 | 
            -
                    }
         | 
| 1471 | 
            -
                  ],
         | 
| 1472 | 
            -
                  "stateMutability": "view",
         | 
| 1473 | 
            -
                  "type": "function"
         | 
| 1474 | 
            -
                },
         | 
| 1475 | 
            -
                {
         | 
| 1476 | 
            -
                  "inputs": [],
         | 
| 1477 | 
            -
                  "name": "getRegistryAddress",
         | 
| 1478 | 
            -
                  "outputs": [
         | 
| 1479 | 
            -
                    {
         | 
| 1480 | 
            -
                      "internalType": "address",
         | 
| 1481 | 
            -
                      "name": "",
         | 
| 1482 | 
            -
                      "type": "address"
         | 
| 1483 | 
            -
                    }
         | 
| 1484 | 
            -
                  ],
         | 
| 1485 | 
            -
                  "stateMutability": "view",
         | 
| 1486 | 
            -
                  "type": "function"
         | 
| 1487 | 
            -
                },
         | 
| 1488 | 
            -
                {
         | 
| 1489 | 
            -
                  "inputs": [
         | 
| 1490 | 
            -
                    {
         | 
| 1491 | 
            -
                      "internalType": "Key32",
         | 
| 1492 | 
            -
                      "name": "key32",
         | 
| 1493 | 
            -
                      "type": "bytes32"
         | 
| 1494 | 
            -
                    }
         | 
| 1495 | 
            -
                  ],
         | 
| 1496 | 
            -
                  "name": "getState",
         | 
| 1497 | 
            -
                  "outputs": [
         | 
| 1498 | 
            -
                    {
         | 
| 1499 | 
            -
                      "internalType": "StateId",
         | 
| 1500 | 
            -
                      "name": "state",
         | 
| 1501 | 
            -
                      "type": "uint8"
         | 
| 1502 | 
            -
                    }
         | 
| 1503 | 
            -
                  ],
         | 
| 1504 | 
            -
                  "stateMutability": "view",
         | 
| 1505 | 
            -
                  "type": "function"
         | 
| 1506 | 
            -
                },
         | 
| 1507 | 
            -
                {
         | 
| 1508 | 
            -
                  "inputs": [
         | 
| 1509 | 
            -
                    {
         | 
| 1510 | 
            -
                      "internalType": "ObjectType",
         | 
| 1511 | 
            -
                      "name": "objectType",
         | 
| 1512 | 
            -
                      "type": "uint8"
         | 
| 1513 | 
            -
                    }
         | 
| 1514 | 
            -
                  ],
         | 
| 1515 | 
            -
                  "name": "hasLifecycle",
         | 
| 1516 | 
            -
                  "outputs": [
         | 
| 1517 | 
            -
                    {
         | 
| 1518 | 
            -
                      "internalType": "bool",
         | 
| 1519 | 
            -
                      "name": "",
         | 
| 1520 | 
            -
                      "type": "bool"
         | 
| 1521 | 
            -
                    }
         | 
| 1522 | 
            -
                  ],
         | 
| 1523 | 
            -
                  "stateMutability": "view",
         | 
| 1524 | 
            -
                  "type": "function"
         | 
| 1525 | 
            -
                },
         | 
| 1526 | 
            -
                {
         | 
| 1527 | 
            -
                  "inputs": [
         | 
| 1528 | 
            -
                    {
         | 
| 1529 | 
            -
                      "internalType": "address",
         | 
| 1530 | 
            -
                      "name": "authority",
         | 
| 1531 | 
            -
                      "type": "address"
         | 
| 1532 | 
            -
                    },
         | 
| 1533 | 
            -
                    {
         | 
| 1534 | 
            -
                      "internalType": "address",
         | 
| 1535 | 
            -
                      "name": "registryAddress",
         | 
| 1536 | 
            -
                      "type": "address"
         | 
| 1537 | 
            -
                    },
         | 
| 1538 | 
            -
                    {
         | 
| 1539 | 
            -
                      "internalType": "address",
         | 
| 1540 | 
            -
                      "name": "initialOwner",
         | 
| 1541 | 
            -
                      "type": "address"
         | 
| 1542 | 
            -
                    }
         | 
| 1543 | 
            -
                  ],
         | 
| 1544 | 
            -
                  "name": "initialize",
         | 
| 1545 | 
            -
                  "outputs": [],
         | 
| 1546 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1547 | 
            -
                  "type": "function"
         | 
| 1548 | 
            -
                },
         | 
| 1549 | 
            -
                {
         | 
| 1550 | 
            -
                  "inputs": [],
         | 
| 1551 | 
            -
                  "name": "initializeERC165",
         | 
| 1552 | 
            -
                  "outputs": [],
         | 
| 1553 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1554 | 
            -
                  "type": "function"
         | 
| 1555 | 
            -
                },
         | 
| 1556 | 
            -
                {
         | 
| 1557 | 
            -
                  "inputs": [],
         | 
| 1558 | 
            -
                  "name": "initializeLifecycle",
         | 
| 1559 | 
            -
                  "outputs": [],
         | 
| 1560 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1561 | 
            -
                  "type": "function"
         | 
| 1562 | 
            -
                },
         | 
| 1563 | 
            -
                {
         | 
| 1564 | 
            -
                  "inputs": [
         | 
| 1565 | 
            -
                    {
         | 
| 1566 | 
            -
                      "internalType": "address",
         | 
| 1567 | 
            -
                      "name": "initialOwner",
         | 
| 1568 | 
            -
                      "type": "address"
         | 
| 1569 | 
            -
                    },
         | 
| 1570 | 
            -
                    {
         | 
| 1571 | 
            -
                      "internalType": "address",
         | 
| 1572 | 
            -
                      "name": "registryAddress",
         | 
| 1573 | 
            -
                      "type": "address"
         | 
| 1574 | 
            -
                    }
         | 
| 1575 | 
            -
                  ],
         | 
| 1576 | 
            -
                  "name": "initializeNftOwnable",
         | 
| 1577 | 
            -
                  "outputs": [],
         | 
| 1578 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1579 | 
            -
                  "type": "function"
         | 
| 1580 | 
            -
                },
         | 
| 1581 | 
            -
                {
         | 
| 1582 | 
            -
                  "inputs": [
         | 
| 1583 | 
            -
                    {
         | 
| 1584 | 
            -
                      "internalType": "address",
         | 
| 1585 | 
            -
                      "name": "registryAddress",
         | 
| 1586 | 
            -
                      "type": "address"
         | 
| 1587 | 
            -
                    },
         | 
| 1588 | 
            -
                    {
         | 
| 1589 | 
            -
                      "internalType": "NftId",
         | 
| 1590 | 
            -
                      "name": "parentNftId",
         | 
| 1591 | 
            -
                      "type": "uint96"
         | 
| 1592 | 
            -
                    },
         | 
| 1593 | 
            -
                    {
         | 
| 1594 | 
            -
                      "internalType": "ObjectType",
         | 
| 1595 | 
            -
                      "name": "objectType",
         | 
| 1596 | 
            -
                      "type": "uint8"
         | 
| 1597 | 
            -
                    },
         | 
| 1598 | 
            -
                    {
         | 
| 1599 | 
            -
                      "internalType": "bool",
         | 
| 1600 | 
            -
                      "name": "isInterceptor",
         | 
| 1601 | 
            -
                      "type": "bool"
         | 
| 1602 | 
            -
                    },
         | 
| 1603 | 
            -
                    {
         | 
| 1604 | 
            -
                      "internalType": "address",
         | 
| 1605 | 
            -
                      "name": "initialOwner",
         | 
| 1606 | 
            -
                      "type": "address"
         | 
| 1607 | 
            -
                    },
         | 
| 1608 | 
            -
                    {
         | 
| 1609 | 
            -
                      "internalType": "bytes",
         | 
| 1610 | 
            -
                      "name": "registryData",
         | 
| 1611 | 
            -
                      "type": "bytes"
         | 
| 1612 | 
            -
                    }
         | 
| 1613 | 
            -
                  ],
         | 
| 1614 | 
            -
                  "name": "initializeRegisterable",
         | 
| 1615 | 
            -
                  "outputs": [],
         | 
| 1616 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1617 | 
            -
                  "type": "function"
         | 
| 1618 | 
            -
                },
         | 
| 1619 | 
            -
                {
         | 
| 1620 | 
            -
                  "inputs": [
         | 
| 1621 | 
            -
                    {
         | 
| 1622 | 
            -
                      "internalType": "address",
         | 
| 1623 | 
            -
                      "name": "registryAddress",
         | 
| 1624 | 
            -
                      "type": "address"
         | 
| 1625 | 
            -
                    }
         | 
| 1626 | 
            -
                  ],
         | 
| 1627 | 
            -
                  "name": "initializeRegistryLinked",
         | 
| 1628 | 
            -
                  "outputs": [],
         | 
| 1629 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1630 | 
            -
                  "type": "function"
         | 
| 1631 | 
            -
                },
         | 
| 1632 | 
            -
                {
         | 
| 1633 | 
            -
                  "inputs": [],
         | 
| 1634 | 
            -
                  "name": "isConsumingScheduledOp",
         | 
| 1635 | 
            -
                  "outputs": [
         | 
| 1636 | 
            -
                    {
         | 
| 1637 | 
            -
                      "internalType": "bytes4",
         | 
| 1638 | 
            -
                      "name": "",
         | 
| 1639 | 
            -
                      "type": "bytes4"
         | 
| 1640 | 
            -
                    }
         | 
| 1641 | 
            -
                  ],
         | 
| 1642 | 
            -
                  "stateMutability": "view",
         | 
| 1643 | 
            -
                  "type": "function"
         | 
| 1644 | 
            -
                },
         | 
| 1645 | 
            -
                {
         | 
| 1646 | 
            -
                  "inputs": [
         | 
| 1647 | 
            -
                    {
         | 
| 1648 | 
            -
                      "internalType": "ObjectType",
         | 
| 1649 | 
            -
                      "name": "objectType",
         | 
| 1650 | 
            -
                      "type": "uint8"
         | 
| 1651 | 
            -
                    },
         | 
| 1652 | 
            -
                    {
         | 
| 1653 | 
            -
                      "internalType": "StateId",
         | 
| 1654 | 
            -
                      "name": "fromId",
         | 
| 1655 | 
            -
                      "type": "uint8"
         | 
| 1656 | 
            -
                    },
         | 
| 1657 | 
            -
                    {
         | 
| 1658 | 
            -
                      "internalType": "StateId",
         | 
| 1659 | 
            -
                      "name": "toId",
         | 
| 1660 | 
            -
                      "type": "uint8"
         | 
| 1661 | 
            -
                    }
         | 
| 1662 | 
            -
                  ],
         | 
| 1663 | 
            -
                  "name": "isValidTransition",
         | 
| 1664 | 
            -
                  "outputs": [
         | 
| 1665 | 
            -
                    {
         | 
| 1666 | 
            -
                      "internalType": "bool",
         | 
| 1667 | 
            -
                      "name": "",
         | 
| 1668 | 
            -
                      "type": "bool"
         | 
| 1669 | 
            -
                    }
         | 
| 1670 | 
            -
                  ],
         | 
| 1671 | 
            -
                  "stateMutability": "view",
         | 
| 1672 | 
            -
                  "type": "function"
         | 
| 1673 | 
            -
                },
         | 
| 1674 | 
            -
                {
         | 
| 1675 | 
            -
                  "inputs": [],
         | 
| 1676 | 
            -
                  "name": "linkToRegisteredNftId",
         | 
| 1677 | 
            -
                  "outputs": [],
         | 
| 1678 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1679 | 
            -
                  "type": "function"
         | 
| 1680 | 
            -
                },
         | 
| 1681 | 
            -
                {
         | 
| 1682 | 
            -
                  "inputs": [
         | 
| 1683 | 
            -
                    {
         | 
| 1684 | 
            -
                      "internalType": "address",
         | 
| 1685 | 
            -
                      "name": "to",
         | 
| 1686 | 
            -
                      "type": "address"
         | 
| 1687 | 
            -
                    },
         | 
| 1688 | 
            -
                    {
         | 
| 1689 | 
            -
                      "internalType": "uint256",
         | 
| 1690 | 
            -
                      "name": "tokenId",
         | 
| 1691 | 
            -
                      "type": "uint256"
         | 
| 1692 | 
            -
                    }
         | 
| 1693 | 
            -
                  ],
         | 
| 1694 | 
            -
                  "name": "nftMint",
         | 
| 1695 | 
            -
                  "outputs": [],
         | 
| 1696 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1697 | 
            -
                  "type": "function"
         | 
| 1698 | 
            -
                },
         | 
| 1699 | 
            -
                {
         | 
| 1700 | 
            -
                  "inputs": [
         | 
| 1701 | 
            -
                    {
         | 
| 1702 | 
            -
                      "internalType": "address",
         | 
| 1703 | 
            -
                      "name": "from",
         | 
| 1704 | 
            -
                      "type": "address"
         | 
| 1705 | 
            -
                    },
         | 
| 1706 | 
            -
                    {
         | 
| 1707 | 
            -
                      "internalType": "address",
         | 
| 1708 | 
            -
                      "name": "to",
         | 
| 1709 | 
            -
                      "type": "address"
         | 
| 1710 | 
            -
                    },
         | 
| 1711 | 
            -
                    {
         | 
| 1712 | 
            -
                      "internalType": "uint256",
         | 
| 1713 | 
            -
                      "name": "tokenId",
         | 
| 1714 | 
            -
                      "type": "uint256"
         | 
| 1715 | 
            -
                    }
         | 
| 1716 | 
            -
                  ],
         | 
| 1717 | 
            -
                  "name": "nftTransferFrom",
         | 
| 1718 | 
            -
                  "outputs": [],
         | 
| 1719 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1720 | 
            -
                  "type": "function"
         | 
| 1721 | 
            -
                },
         | 
| 1722 | 
            -
                {
         | 
| 1723 | 
            -
                  "inputs": [
         | 
| 1724 | 
            -
                    {
         | 
| 1725 | 
            -
                      "internalType": "bytes4",
         | 
| 1726 | 
            -
                      "name": "interfaceId",
         | 
| 1727 | 
            -
                      "type": "bytes4"
         | 
| 1728 | 
            -
                    }
         | 
| 1729 | 
            -
                  ],
         | 
| 1730 | 
            -
                  "name": "registerInterface",
         | 
| 1731 | 
            -
                  "outputs": [],
         | 
| 1732 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1733 | 
            -
                  "type": "function"
         | 
| 1734 | 
            -
                },
         | 
| 1735 | 
            -
                {
         | 
| 1736 | 
            -
                  "inputs": [
         | 
| 1737 | 
            -
                    {
         | 
| 1738 | 
            -
                      "internalType": "address",
         | 
| 1739 | 
            -
                      "name": "newAuthority",
         | 
| 1740 | 
            -
                      "type": "address"
         | 
| 1741 | 
            -
                    }
         | 
| 1742 | 
            -
                  ],
         | 
| 1743 | 
            -
                  "name": "setAuthority",
         | 
| 1744 | 
            -
                  "outputs": [],
         | 
| 1745 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1746 | 
            -
                  "type": "function"
         | 
| 1747 | 
            -
                },
         | 
| 1748 | 
            -
                {
         | 
| 1749 | 
            -
                  "inputs": [
         | 
| 1750 | 
            -
                    {
         | 
| 1751 | 
            -
                      "internalType": "contract BundleManager",
         | 
| 1752 | 
            -
                      "name": "bundleManager",
         | 
| 1753 | 
            -
                      "type": "address"
         | 
| 1754 | 
            -
                    }
         | 
| 1755 | 
            -
                  ],
         | 
| 1756 | 
            -
                  "name": "setBundleManager",
         | 
| 1757 | 
            -
                  "outputs": [],
         | 
| 1758 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1759 | 
            -
                  "type": "function"
         | 
| 1760 | 
            -
                },
         | 
| 1761 | 
            -
                {
         | 
| 1762 | 
            -
                  "inputs": [
         | 
| 1763 | 
            -
                    {
         | 
| 1764 | 
            -
                      "internalType": "contract InstanceAccessManager",
         | 
| 1765 | 
            -
                      "name": "accessManager",
         | 
| 1766 | 
            -
                      "type": "address"
         | 
| 1767 | 
            -
                    }
         | 
| 1768 | 
            -
                  ],
         | 
| 1769 | 
            -
                  "name": "setInstanceAccessManager",
         | 
| 1770 | 
            -
                  "outputs": [],
         | 
| 1771 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1772 | 
            -
                  "type": "function"
         | 
| 1773 | 
            -
                },
         | 
| 1774 | 
            -
                {
         | 
| 1775 | 
            -
                  "inputs": [
         | 
| 1776 | 
            -
                    {
         | 
| 1777 | 
            -
                      "internalType": "contract InstanceReader",
         | 
| 1778 | 
            -
                      "name": "instanceReader",
         | 
| 1779 | 
            -
                      "type": "address"
         | 
| 1780 | 
            -
                    }
         | 
| 1781 | 
            -
                  ],
         | 
| 1782 | 
            -
                  "name": "setInstanceReader",
         | 
| 1783 | 
            -
                  "outputs": [],
         | 
| 1784 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 1785 | 
            -
                  "type": "function"
         | 
| 1786 | 
            -
                },
         | 
| 1787 | 
            -
                {
         | 
| 1788 | 
            -
                  "inputs": [
         | 
| 1789 | 
            -
                    {
         | 
| 1790 | 
            -
                      "internalType": "bytes4",
         | 
| 1791 | 
            -
                      "name": "interfaceId",
         | 
| 1792 | 
            -
                      "type": "bytes4"
         | 
| 1793 | 
            -
                    }
         | 
| 1794 | 
            -
                  ],
         | 
| 1795 | 
            -
                  "name": "supportsInterface",
         | 
| 1796 | 
            -
                  "outputs": [
         | 
| 1797 | 
            -
                    {
         | 
| 1798 | 
            -
                      "internalType": "bool",
         | 
| 1799 | 
            -
                      "name": "",
         | 
| 1800 | 
            -
                      "type": "bool"
         | 
| 1801 | 
            -
                    }
         | 
| 1802 | 
            -
                  ],
         | 
| 1803 | 
            -
                  "stateMutability": "view",
         | 
| 1804 | 
            -
                  "type": "function"
         | 
| 1805 | 
            -
                },
         | 
| 1806 | 
            -
                {
         | 
| 1807 | 
            -
                  "inputs": [
         | 
| 1808 | 
            -
                    {
         | 
| 1809 | 
            -
                      "internalType": "ObjectType",
         | 
| 1810 | 
            -
                      "name": "objectType",
         | 
| 1811 | 
            -
                      "type": "uint8"
         | 
| 1812 | 
            -
                    },
         | 
| 1813 | 
            -
                    {
         | 
| 1814 | 
            -
                      "internalType": "KeyId",
         | 
| 1815 | 
            -
                      "name": "id",
         | 
| 1816 | 
            -
                      "type": "bytes31"
         | 
| 1817 | 
            -
                    }
         | 
| 1818 | 
            -
                  ],
         | 
| 1819 | 
            -
                  "name": "toKey32",
         | 
| 1820 | 
            -
                  "outputs": [
         | 
| 1821 | 
            -
                    {
         | 
| 1822 | 
            -
                      "internalType": "Key32",
         | 
| 1823 | 
            -
                      "name": "",
         | 
| 1824 | 
            -
                      "type": "bytes32"
         | 
| 1825 | 
            -
                    }
         | 
| 1826 | 
            -
                  ],
         | 
| 1827 | 
            -
                  "stateMutability": "pure",
         | 
| 1828 | 
            -
                  "type": "function"
         | 
| 1829 | 
            -
                },
         | 
| 1830 | 
            -
                {
         | 
| 1831 | 
            -
                  "inputs": [
         | 
| 1832 | 
            -
                    {
         | 
| 1833 | 
            -
                      "internalType": "NftId",
         | 
| 1834 | 
            -
                      "name": "applicationNftId",
         | 
| 1835 | 
            -
                      "type": "uint96"
         | 
| 1836 | 
            -
                    },
         | 
| 1837 | 
            -
                    {
         | 
| 1838 | 
            -
                      "components": [
         | 
| 1839 | 
            -
                        {
         | 
| 1840 | 
            -
                          "internalType": "NftId",
         | 
| 1841 | 
            -
                          "name": "productNftId",
         | 
| 1842 | 
            -
                          "type": "uint96"
         | 
| 1843 | 
            -
                        },
         | 
| 1844 | 
            -
                        {
         | 
| 1845 | 
            -
                          "internalType": "NftId",
         | 
| 1846 | 
            -
                          "name": "bundleNftId",
         | 
| 1847 | 
            -
                          "type": "uint96"
         | 
| 1848 | 
            -
                        },
         | 
| 1849 | 
            -
                        {
         | 
| 1850 | 
            -
                          "internalType": "ReferralId",
         | 
| 1851 | 
            -
                          "name": "referralId",
         | 
| 1852 | 
            -
                          "type": "bytes8"
         | 
| 1853 | 
            -
                        },
         | 
| 1854 | 
            -
                        {
         | 
| 1855 | 
            -
                          "internalType": "RiskId",
         | 
| 1856 | 
            -
                          "name": "riskId",
         | 
| 1857 | 
            -
                          "type": "bytes8"
         | 
| 1858 | 
            -
                        },
         | 
| 1859 | 
            -
                        {
         | 
| 1860 | 
            -
                          "internalType": "uint256",
         | 
| 1861 | 
            -
                          "name": "sumInsuredAmount",
         | 
| 1862 | 
            -
                          "type": "uint256"
         | 
| 1863 | 
            -
                        },
         | 
| 1864 | 
            -
                        {
         | 
| 1865 | 
            -
                          "internalType": "uint256",
         | 
| 1866 | 
            -
                          "name": "premiumAmount",
         | 
| 1867 | 
            -
                          "type": "uint256"
         | 
| 1868 | 
            -
                        },
         | 
| 1869 | 
            -
                        {
         | 
| 1870 | 
            -
                          "internalType": "uint256",
         | 
| 1871 | 
            -
                          "name": "premiumPaidAmount",
         | 
| 1872 | 
            -
                          "type": "uint256"
         | 
| 1873 | 
            -
                        },
         | 
| 1874 | 
            -
                        {
         | 
| 1875 | 
            -
                          "internalType": "Seconds",
         | 
| 1876 | 
            -
                          "name": "lifetime",
         | 
| 1877 | 
            -
                          "type": "uint40"
         | 
| 1878 | 
            -
                        },
         | 
| 1879 | 
            -
                        {
         | 
| 1880 | 
            -
                          "internalType": "bytes",
         | 
| 1881 | 
            -
                          "name": "applicationData",
         | 
| 1882 | 
            -
                          "type": "bytes"
         | 
| 1883 | 
            -
                        },
         | 
| 1884 | 
            -
                        {
         | 
| 1885 | 
            -
                          "internalType": "bytes",
         | 
| 1886 | 
            -
                          "name": "policyData",
         | 
| 1887 | 
            -
                          "type": "bytes"
         | 
| 1888 | 
            -
                        },
         | 
| 1889 | 
            -
                        {
         | 
| 1890 | 
            -
                          "internalType": "uint16",
         | 
| 1891 | 
            -
                          "name": "claimsCount",
         | 
| 1892 | 
            -
                          "type": "uint16"
         | 
| 1893 | 
            -
                        },
         | 
| 1894 | 
            -
                        {
         | 
| 1895 | 
            -
                          "internalType": "uint16",
         | 
| 1896 | 
            -
                          "name": "openClaimsCount",
         | 
| 1897 | 
            -
                          "type": "uint16"
         | 
| 1898 | 
            -
                        },
         | 
| 1899 | 
            -
                        {
         | 
| 1900 | 
            -
                          "internalType": "Amount",
         | 
| 1901 | 
            -
                          "name": "payoutAmount",
         | 
| 1902 | 
            -
                          "type": "uint96"
         | 
| 1903 | 
            -
                        },
         | 
| 1904 | 
            -
                        {
         | 
| 1905 | 
            -
                          "internalType": "Timestamp",
         | 
| 1906 | 
            -
                          "name": "activatedAt",
         | 
| 1907 | 
            -
                          "type": "uint40"
         | 
| 1908 | 
            -
                        },
         | 
| 1909 | 
            -
                        {
         | 
| 1910 | 
            -
                          "internalType": "Timestamp",
         | 
| 1911 | 
            -
                          "name": "expiredAt",
         | 
| 1912 | 
            -
                          "type": "uint40"
         | 
| 1913 | 
            -
                        },
         | 
| 1914 | 
            -
                        {
         | 
| 1915 | 
            -
                          "internalType": "Timestamp",
         | 
| 1916 | 
            -
                          "name": "closedAt",
         | 
| 1917 | 
            -
                          "type": "uint40"
         | 
| 1918 | 
            -
                        }
         | 
| 1919 | 
            -
                      ],
         | 
| 1920 | 
            -
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 1921 | 
            -
                      "name": "policy",
         | 
| 1922 | 
            -
                      "type": "tuple"
         | 
| 1923 | 
            -
                    },
         | 
| 476 | 
            +
                  "inputs": [],
         | 
| 477 | 
            +
                  "name": "getOwner",
         | 
| 478 | 
            +
                  "outputs": [
         | 
| 1924 479 | 
             
                    {
         | 
| 1925 | 
            -
                      "internalType": " | 
| 1926 | 
            -
                      "name": " | 
| 1927 | 
            -
                      "type": " | 
| 480 | 
            +
                      "internalType": "address",
         | 
| 481 | 
            +
                      "name": "",
         | 
| 482 | 
            +
                      "type": "address"
         | 
| 1928 483 | 
             
                    }
         | 
| 1929 484 | 
             
                  ],
         | 
| 1930 | 
            -
                  " | 
| 1931 | 
            -
                  "outputs": [],
         | 
| 1932 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 485 | 
            +
                  "stateMutability": "view",
         | 
| 1933 486 | 
             
                  "type": "function"
         | 
| 1934 487 | 
             
                },
         | 
| 1935 488 | 
             
                {
         | 
| 1936 | 
            -
                  "inputs": [
         | 
| 1937 | 
            -
             | 
| 1938 | 
            -
             | 
| 1939 | 
            -
                      "name": "applicationNftId",
         | 
| 1940 | 
            -
                      "type": "uint96"
         | 
| 1941 | 
            -
                    },
         | 
| 489 | 
            +
                  "inputs": [],
         | 
| 490 | 
            +
                  "name": "getPolicyService",
         | 
| 491 | 
            +
                  "outputs": [
         | 
| 1942 492 | 
             
                    {
         | 
| 1943 | 
            -
                      "internalType": " | 
| 1944 | 
            -
                      "name": " | 
| 1945 | 
            -
                      "type": " | 
| 493 | 
            +
                      "internalType": "contract IPolicyService",
         | 
| 494 | 
            +
                      "name": "",
         | 
| 495 | 
            +
                      "type": "address"
         | 
| 1946 496 | 
             
                    }
         | 
| 1947 497 | 
             
                  ],
         | 
| 1948 | 
            -
                  " | 
| 1949 | 
            -
                  "outputs": [],
         | 
| 1950 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 498 | 
            +
                  "stateMutability": "view",
         | 
| 1951 499 | 
             
                  "type": "function"
         | 
| 1952 500 | 
             
                },
         | 
| 1953 501 | 
             
                {
         | 
| 1954 | 
            -
                  "inputs": [
         | 
| 1955 | 
            -
             | 
| 1956 | 
            -
             | 
| 1957 | 
            -
                      "name": "bundleNftId",
         | 
| 1958 | 
            -
                      "type": "uint96"
         | 
| 1959 | 
            -
                    },
         | 
| 1960 | 
            -
                    {
         | 
| 1961 | 
            -
                      "components": [
         | 
| 1962 | 
            -
                        {
         | 
| 1963 | 
            -
                          "internalType": "NftId",
         | 
| 1964 | 
            -
                          "name": "poolNftId",
         | 
| 1965 | 
            -
                          "type": "uint96"
         | 
| 1966 | 
            -
                        },
         | 
| 1967 | 
            -
                        {
         | 
| 1968 | 
            -
                          "components": [
         | 
| 1969 | 
            -
                            {
         | 
| 1970 | 
            -
                              "internalType": "UFixed",
         | 
| 1971 | 
            -
                              "name": "fractionalFee",
         | 
| 1972 | 
            -
                              "type": "uint256"
         | 
| 1973 | 
            -
                            },
         | 
| 1974 | 
            -
                            {
         | 
| 1975 | 
            -
                              "internalType": "uint256",
         | 
| 1976 | 
            -
                              "name": "fixedFee",
         | 
| 1977 | 
            -
                              "type": "uint256"
         | 
| 1978 | 
            -
                            }
         | 
| 1979 | 
            -
                          ],
         | 
| 1980 | 
            -
                          "internalType": "struct Fee",
         | 
| 1981 | 
            -
                          "name": "fee",
         | 
| 1982 | 
            -
                          "type": "tuple"
         | 
| 1983 | 
            -
                        },
         | 
| 1984 | 
            -
                        {
         | 
| 1985 | 
            -
                          "internalType": "bytes",
         | 
| 1986 | 
            -
                          "name": "filter",
         | 
| 1987 | 
            -
                          "type": "bytes"
         | 
| 1988 | 
            -
                        },
         | 
| 1989 | 
            -
                        {
         | 
| 1990 | 
            -
                          "internalType": "Amount",
         | 
| 1991 | 
            -
                          "name": "capitalAmount",
         | 
| 1992 | 
            -
                          "type": "uint96"
         | 
| 1993 | 
            -
                        },
         | 
| 1994 | 
            -
                        {
         | 
| 1995 | 
            -
                          "internalType": "Amount",
         | 
| 1996 | 
            -
                          "name": "lockedAmount",
         | 
| 1997 | 
            -
                          "type": "uint96"
         | 
| 1998 | 
            -
                        },
         | 
| 1999 | 
            -
                        {
         | 
| 2000 | 
            -
                          "internalType": "Amount",
         | 
| 2001 | 
            -
                          "name": "feeAmount",
         | 
| 2002 | 
            -
                          "type": "uint96"
         | 
| 2003 | 
            -
                        },
         | 
| 2004 | 
            -
                        {
         | 
| 2005 | 
            -
                          "internalType": "Seconds",
         | 
| 2006 | 
            -
                          "name": "lifetime",
         | 
| 2007 | 
            -
                          "type": "uint40"
         | 
| 2008 | 
            -
                        },
         | 
| 2009 | 
            -
                        {
         | 
| 2010 | 
            -
                          "internalType": "Timestamp",
         | 
| 2011 | 
            -
                          "name": "expiredAt",
         | 
| 2012 | 
            -
                          "type": "uint40"
         | 
| 2013 | 
            -
                        },
         | 
| 2014 | 
            -
                        {
         | 
| 2015 | 
            -
                          "internalType": "Timestamp",
         | 
| 2016 | 
            -
                          "name": "closedAt",
         | 
| 2017 | 
            -
                          "type": "uint40"
         | 
| 2018 | 
            -
                        }
         | 
| 2019 | 
            -
                      ],
         | 
| 2020 | 
            -
                      "internalType": "struct IBundle.BundleInfo",
         | 
| 2021 | 
            -
                      "name": "bundle",
         | 
| 2022 | 
            -
                      "type": "tuple"
         | 
| 2023 | 
            -
                    },
         | 
| 502 | 
            +
                  "inputs": [],
         | 
| 503 | 
            +
                  "name": "getPoolService",
         | 
| 504 | 
            +
                  "outputs": [
         | 
| 2024 505 | 
             
                    {
         | 
| 2025 | 
            -
                      "internalType": " | 
| 2026 | 
            -
                      "name": " | 
| 2027 | 
            -
                      "type": " | 
| 506 | 
            +
                      "internalType": "contract IPoolService",
         | 
| 507 | 
            +
                      "name": "",
         | 
| 508 | 
            +
                      "type": "address"
         | 
| 2028 509 | 
             
                    }
         | 
| 2029 510 | 
             
                  ],
         | 
| 2030 | 
            -
                  " | 
| 2031 | 
            -
                  "outputs": [],
         | 
| 2032 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 511 | 
            +
                  "stateMutability": "view",
         | 
| 2033 512 | 
             
                  "type": "function"
         | 
| 2034 513 | 
             
                },
         | 
| 2035 514 | 
             
                {
         | 
| 2036 | 
            -
                  "inputs": [
         | 
| 2037 | 
            -
             | 
| 2038 | 
            -
             | 
| 2039 | 
            -
                      "name": "bundleNftId",
         | 
| 2040 | 
            -
                      "type": "uint96"
         | 
| 2041 | 
            -
                    },
         | 
| 515 | 
            +
                  "inputs": [],
         | 
| 516 | 
            +
                  "name": "getProductService",
         | 
| 517 | 
            +
                  "outputs": [
         | 
| 2042 518 | 
             
                    {
         | 
| 2043 | 
            -
                      "internalType": " | 
| 2044 | 
            -
                      "name": " | 
| 2045 | 
            -
                      "type": " | 
| 519 | 
            +
                      "internalType": "contract IProductService",
         | 
| 520 | 
            +
                      "name": "",
         | 
| 521 | 
            +
                      "type": "address"
         | 
| 2046 522 | 
             
                    }
         | 
| 2047 523 | 
             
                  ],
         | 
| 2048 | 
            -
                  " | 
| 2049 | 
            -
                  "outputs": [],
         | 
| 2050 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 524 | 
            +
                  "stateMutability": "view",
         | 
| 2051 525 | 
             
                  "type": "function"
         | 
| 2052 526 | 
             
                },
         | 
| 2053 527 | 
             
                {
         | 
| 2054 | 
            -
                  "inputs": [
         | 
| 2055 | 
            -
             | 
| 2056 | 
            -
             | 
| 2057 | 
            -
                      "name": "policyNftId",
         | 
| 2058 | 
            -
                      "type": "uint96"
         | 
| 2059 | 
            -
                    },
         | 
| 2060 | 
            -
                    {
         | 
| 2061 | 
            -
                      "internalType": "ClaimId",
         | 
| 2062 | 
            -
                      "name": "claimId",
         | 
| 2063 | 
            -
                      "type": "uint16"
         | 
| 2064 | 
            -
                    },
         | 
| 2065 | 
            -
                    {
         | 
| 2066 | 
            -
                      "components": [
         | 
| 2067 | 
            -
                        {
         | 
| 2068 | 
            -
                          "internalType": "Amount",
         | 
| 2069 | 
            -
                          "name": "claimAmount",
         | 
| 2070 | 
            -
                          "type": "uint96"
         | 
| 2071 | 
            -
                        },
         | 
| 2072 | 
            -
                        {
         | 
| 2073 | 
            -
                          "internalType": "Amount",
         | 
| 2074 | 
            -
                          "name": "paidAmount",
         | 
| 2075 | 
            -
                          "type": "uint96"
         | 
| 2076 | 
            -
                        },
         | 
| 2077 | 
            -
                        {
         | 
| 2078 | 
            -
                          "internalType": "uint8",
         | 
| 2079 | 
            -
                          "name": "payoutsCount",
         | 
| 2080 | 
            -
                          "type": "uint8"
         | 
| 2081 | 
            -
                        },
         | 
| 2082 | 
            -
                        {
         | 
| 2083 | 
            -
                          "internalType": "uint8",
         | 
| 2084 | 
            -
                          "name": "openPayoutsCount",
         | 
| 2085 | 
            -
                          "type": "uint8"
         | 
| 2086 | 
            -
                        },
         | 
| 2087 | 
            -
                        {
         | 
| 2088 | 
            -
                          "internalType": "bytes",
         | 
| 2089 | 
            -
                          "name": "data",
         | 
| 2090 | 
            -
                          "type": "bytes"
         | 
| 2091 | 
            -
                        },
         | 
| 2092 | 
            -
                        {
         | 
| 2093 | 
            -
                          "internalType": "Timestamp",
         | 
| 2094 | 
            -
                          "name": "closedAt",
         | 
| 2095 | 
            -
                          "type": "uint40"
         | 
| 2096 | 
            -
                        }
         | 
| 2097 | 
            -
                      ],
         | 
| 2098 | 
            -
                      "internalType": "struct IPolicy.ClaimInfo",
         | 
| 2099 | 
            -
                      "name": "claim",
         | 
| 2100 | 
            -
                      "type": "tuple"
         | 
| 2101 | 
            -
                    },
         | 
| 528 | 
            +
                  "inputs": [],
         | 
| 529 | 
            +
                  "name": "getRegistry",
         | 
| 530 | 
            +
                  "outputs": [
         | 
| 2102 531 | 
             
                    {
         | 
| 2103 | 
            -
                      "internalType": " | 
| 2104 | 
            -
                      "name": " | 
| 2105 | 
            -
                      "type": " | 
| 532 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 533 | 
            +
                      "name": "",
         | 
| 534 | 
            +
                      "type": "address"
         | 
| 2106 535 | 
             
                    }
         | 
| 2107 536 | 
             
                  ],
         | 
| 2108 | 
            -
                  " | 
| 2109 | 
            -
                  "outputs": [],
         | 
| 2110 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 537 | 
            +
                  "stateMutability": "view",
         | 
| 2111 538 | 
             
                  "type": "function"
         | 
| 2112 539 | 
             
                },
         | 
| 2113 540 | 
             
                {
         | 
| 2114 541 | 
             
                  "inputs": [
         | 
| 2115 542 | 
             
                    {
         | 
| 2116 | 
            -
                      "internalType": " | 
| 2117 | 
            -
                      "name": " | 
| 2118 | 
            -
                      "type": " | 
| 2119 | 
            -
                    },
         | 
| 2120 | 
            -
                    {
         | 
| 2121 | 
            -
                      "internalType": "ClaimId",
         | 
| 2122 | 
            -
                      "name": "claimId",
         | 
| 2123 | 
            -
                      "type": "uint16"
         | 
| 543 | 
            +
                      "internalType": "RoleId",
         | 
| 544 | 
            +
                      "name": "roleId",
         | 
| 545 | 
            +
                      "type": "uint64"
         | 
| 2124 546 | 
             
                    },
         | 
| 2125 547 | 
             
                    {
         | 
| 2126 | 
            -
                      "internalType": " | 
| 2127 | 
            -
                      "name": " | 
| 2128 | 
            -
                      "type": " | 
| 548 | 
            +
                      "internalType": "address",
         | 
| 549 | 
            +
                      "name": "account",
         | 
| 550 | 
            +
                      "type": "address"
         | 
| 2129 551 | 
             
                    }
         | 
| 2130 552 | 
             
                  ],
         | 
| 2131 | 
            -
                  "name": " | 
| 553 | 
            +
                  "name": "grantRole",
         | 
| 2132 554 | 
             
                  "outputs": [],
         | 
| 2133 555 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2134 556 | 
             
                  "type": "function"
         | 
| @@ -2136,96 +558,29 @@ | |
| 2136 558 | 
             
                {
         | 
| 2137 559 | 
             
                  "inputs": [
         | 
| 2138 560 | 
             
                    {
         | 
| 2139 | 
            -
                      "internalType": " | 
| 2140 | 
            -
                      "name": " | 
| 2141 | 
            -
                      "type": " | 
| 561 | 
            +
                      "internalType": "address",
         | 
| 562 | 
            +
                      "name": "authority",
         | 
| 563 | 
            +
                      "type": "address"
         | 
| 2142 564 | 
             
                    },
         | 
| 2143 565 | 
             
                    {
         | 
| 2144 | 
            -
                      " | 
| 2145 | 
            -
             | 
| 2146 | 
            -
             | 
| 2147 | 
            -
                          "name": "productNftId",
         | 
| 2148 | 
            -
                          "type": "uint96"
         | 
| 2149 | 
            -
                        },
         | 
| 2150 | 
            -
                        {
         | 
| 2151 | 
            -
                          "internalType": "contract TokenHandler",
         | 
| 2152 | 
            -
                          "name": "tokenHandler",
         | 
| 2153 | 
            -
                          "type": "address"
         | 
| 2154 | 
            -
                        },
         | 
| 2155 | 
            -
                        {
         | 
| 2156 | 
            -
                          "components": [
         | 
| 2157 | 
            -
                            {
         | 
| 2158 | 
            -
                              "internalType": "UFixed",
         | 
| 2159 | 
            -
                              "name": "fractionalFee",
         | 
| 2160 | 
            -
                              "type": "uint256"
         | 
| 2161 | 
            -
                            },
         | 
| 2162 | 
            -
                            {
         | 
| 2163 | 
            -
                              "internalType": "uint256",
         | 
| 2164 | 
            -
                              "name": "fixedFee",
         | 
| 2165 | 
            -
                              "type": "uint256"
         | 
| 2166 | 
            -
                            }
         | 
| 2167 | 
            -
                          ],
         | 
| 2168 | 
            -
                          "internalType": "struct Fee",
         | 
| 2169 | 
            -
                          "name": "minDistributionOwnerFee",
         | 
| 2170 | 
            -
                          "type": "tuple"
         | 
| 2171 | 
            -
                        },
         | 
| 2172 | 
            -
                        {
         | 
| 2173 | 
            -
                          "components": [
         | 
| 2174 | 
            -
                            {
         | 
| 2175 | 
            -
                              "internalType": "UFixed",
         | 
| 2176 | 
            -
                              "name": "fractionalFee",
         | 
| 2177 | 
            -
                              "type": "uint256"
         | 
| 2178 | 
            -
                            },
         | 
| 2179 | 
            -
                            {
         | 
| 2180 | 
            -
                              "internalType": "uint256",
         | 
| 2181 | 
            -
                              "name": "fixedFee",
         | 
| 2182 | 
            -
                              "type": "uint256"
         | 
| 2183 | 
            -
                            }
         | 
| 2184 | 
            -
                          ],
         | 
| 2185 | 
            -
                          "internalType": "struct Fee",
         | 
| 2186 | 
            -
                          "name": "distributionFee",
         | 
| 2187 | 
            -
                          "type": "tuple"
         | 
| 2188 | 
            -
                        },
         | 
| 2189 | 
            -
                        {
         | 
| 2190 | 
            -
                          "internalType": "address",
         | 
| 2191 | 
            -
                          "name": "wallet",
         | 
| 2192 | 
            -
                          "type": "address"
         | 
| 2193 | 
            -
                        },
         | 
| 2194 | 
            -
                        {
         | 
| 2195 | 
            -
                          "internalType": "uint256",
         | 
| 2196 | 
            -
                          "name": "sumDistributionOwnerFees",
         | 
| 2197 | 
            -
                          "type": "uint256"
         | 
| 2198 | 
            -
                        }
         | 
| 2199 | 
            -
                      ],
         | 
| 2200 | 
            -
                      "internalType": "struct ISetup.DistributionSetupInfo",
         | 
| 2201 | 
            -
                      "name": "setup",
         | 
| 2202 | 
            -
                      "type": "tuple"
         | 
| 566 | 
            +
                      "internalType": "address",
         | 
| 567 | 
            +
                      "name": "registryAddress",
         | 
| 568 | 
            +
                      "type": "address"
         | 
| 2203 569 | 
             
                    },
         | 
| 2204 570 | 
             
                    {
         | 
| 2205 | 
            -
                      "internalType": " | 
| 2206 | 
            -
                      "name": " | 
| 2207 | 
            -
                      "type": " | 
| 571 | 
            +
                      "internalType": "address",
         | 
| 572 | 
            +
                      "name": "initialOwner",
         | 
| 573 | 
            +
                      "type": "address"
         | 
| 2208 574 | 
             
                    }
         | 
| 2209 575 | 
             
                  ],
         | 
| 2210 | 
            -
                  "name": " | 
| 576 | 
            +
                  "name": "initialize",
         | 
| 2211 577 | 
             
                  "outputs": [],
         | 
| 2212 578 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2213 579 | 
             
                  "type": "function"
         | 
| 2214 580 | 
             
                },
         | 
| 2215 581 | 
             
                {
         | 
| 2216 | 
            -
                  "inputs": [
         | 
| 2217 | 
            -
             | 
| 2218 | 
            -
                      "internalType": "NftId",
         | 
| 2219 | 
            -
                      "name": "distributionNftId",
         | 
| 2220 | 
            -
                      "type": "uint96"
         | 
| 2221 | 
            -
                    },
         | 
| 2222 | 
            -
                    {
         | 
| 2223 | 
            -
                      "internalType": "StateId",
         | 
| 2224 | 
            -
                      "name": "newState",
         | 
| 2225 | 
            -
                      "type": "uint8"
         | 
| 2226 | 
            -
                    }
         | 
| 2227 | 
            -
                  ],
         | 
| 2228 | 
            -
                  "name": "updateDistributionSetupState",
         | 
| 582 | 
            +
                  "inputs": [],
         | 
| 583 | 
            +
                  "name": "initializeERC165",
         | 
| 2229 584 | 
             
                  "outputs": [],
         | 
| 2230 585 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2231 586 | 
             
                  "type": "function"
         | 
| @@ -2233,137 +588,55 @@ | |
| 2233 588 | 
             
                {
         | 
| 2234 589 | 
             
                  "inputs": [
         | 
| 2235 590 | 
             
                    {
         | 
| 2236 | 
            -
                      "internalType": " | 
| 2237 | 
            -
                      "name": " | 
| 2238 | 
            -
                      "type": " | 
| 2239 | 
            -
                    },
         | 
| 2240 | 
            -
                    {
         | 
| 2241 | 
            -
                      "components": [
         | 
| 2242 | 
            -
                        {
         | 
| 2243 | 
            -
                          "internalType": "DistributorType",
         | 
| 2244 | 
            -
                          "name": "distributorType",
         | 
| 2245 | 
            -
                          "type": "bytes8"
         | 
| 2246 | 
            -
                        },
         | 
| 2247 | 
            -
                        {
         | 
| 2248 | 
            -
                          "internalType": "bool",
         | 
| 2249 | 
            -
                          "name": "active",
         | 
| 2250 | 
            -
                          "type": "bool"
         | 
| 2251 | 
            -
                        },
         | 
| 2252 | 
            -
                        {
         | 
| 2253 | 
            -
                          "internalType": "bytes",
         | 
| 2254 | 
            -
                          "name": "data",
         | 
| 2255 | 
            -
                          "type": "bytes"
         | 
| 2256 | 
            -
                        },
         | 
| 2257 | 
            -
                        {
         | 
| 2258 | 
            -
                          "internalType": "uint256",
         | 
| 2259 | 
            -
                          "name": "sumCommisions",
         | 
| 2260 | 
            -
                          "type": "uint256"
         | 
| 2261 | 
            -
                        },
         | 
| 2262 | 
            -
                        {
         | 
| 2263 | 
            -
                          "internalType": "uint256",
         | 
| 2264 | 
            -
                          "name": "numPoliciesSold",
         | 
| 2265 | 
            -
                          "type": "uint256"
         | 
| 2266 | 
            -
                        }
         | 
| 2267 | 
            -
                      ],
         | 
| 2268 | 
            -
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 2269 | 
            -
                      "name": "info",
         | 
| 2270 | 
            -
                      "type": "tuple"
         | 
| 591 | 
            +
                      "internalType": "address",
         | 
| 592 | 
            +
                      "name": "initialOwner",
         | 
| 593 | 
            +
                      "type": "address"
         | 
| 2271 594 | 
             
                    },
         | 
| 2272 595 | 
             
                    {
         | 
| 2273 | 
            -
                      "internalType": " | 
| 2274 | 
            -
                      "name": " | 
| 2275 | 
            -
                      "type": " | 
| 596 | 
            +
                      "internalType": "address",
         | 
| 597 | 
            +
                      "name": "registryAddress",
         | 
| 598 | 
            +
                      "type": "address"
         | 
| 2276 599 | 
             
                    }
         | 
| 2277 600 | 
             
                  ],
         | 
| 2278 | 
            -
                  "name": " | 
| 601 | 
            +
                  "name": "initializeNftOwnable",
         | 
| 2279 602 | 
             
                  "outputs": [],
         | 
| 2280 603 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2281 604 | 
             
                  "type": "function"
         | 
| 2282 605 | 
             
                },
         | 
| 2283 606 | 
             
                {
         | 
| 2284 607 | 
             
                  "inputs": [
         | 
| 608 | 
            +
                    {
         | 
| 609 | 
            +
                      "internalType": "address",
         | 
| 610 | 
            +
                      "name": "registryAddress",
         | 
| 611 | 
            +
                      "type": "address"
         | 
| 612 | 
            +
                    },
         | 
| 2285 613 | 
             
                    {
         | 
| 2286 614 | 
             
                      "internalType": "NftId",
         | 
| 2287 | 
            -
                      "name": " | 
| 615 | 
            +
                      "name": "parentNftId",
         | 
| 2288 616 | 
             
                      "type": "uint96"
         | 
| 2289 617 | 
             
                    },
         | 
| 2290 618 | 
             
                    {
         | 
| 2291 | 
            -
                      "internalType": " | 
| 2292 | 
            -
                      "name": " | 
| 619 | 
            +
                      "internalType": "ObjectType",
         | 
| 620 | 
            +
                      "name": "objectType",
         | 
| 2293 621 | 
             
                      "type": "uint8"
         | 
| 2294 | 
            -
                    }
         | 
| 2295 | 
            -
                  ],
         | 
| 2296 | 
            -
                  "name": "updateDistributorState",
         | 
| 2297 | 
            -
                  "outputs": [],
         | 
| 2298 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 2299 | 
            -
                  "type": "function"
         | 
| 2300 | 
            -
                },
         | 
| 2301 | 
            -
                {
         | 
| 2302 | 
            -
                  "inputs": [
         | 
| 2303 | 
            -
                    {
         | 
| 2304 | 
            -
                      "internalType": "DistributorType",
         | 
| 2305 | 
            -
                      "name": "distributorType",
         | 
| 2306 | 
            -
                      "type": "bytes8"
         | 
| 2307 622 | 
             
                    },
         | 
| 2308 623 | 
             
                    {
         | 
| 2309 | 
            -
                      " | 
| 2310 | 
            -
             | 
| 2311 | 
            -
             | 
| 2312 | 
            -
             | 
| 2313 | 
            -
             | 
| 2314 | 
            -
             | 
| 2315 | 
            -
             | 
| 2316 | 
            -
             | 
| 2317 | 
            -
                          "name": "minDiscountPercentage",
         | 
| 2318 | 
            -
                          "type": "uint256"
         | 
| 2319 | 
            -
                        },
         | 
| 2320 | 
            -
                        {
         | 
| 2321 | 
            -
                          "internalType": "UFixed",
         | 
| 2322 | 
            -
                          "name": "maxDiscountPercentage",
         | 
| 2323 | 
            -
                          "type": "uint256"
         | 
| 2324 | 
            -
                        },
         | 
| 2325 | 
            -
                        {
         | 
| 2326 | 
            -
                          "internalType": "UFixed",
         | 
| 2327 | 
            -
                          "name": "commissionPercentage",
         | 
| 2328 | 
            -
                          "type": "uint256"
         | 
| 2329 | 
            -
                        },
         | 
| 2330 | 
            -
                        {
         | 
| 2331 | 
            -
                          "internalType": "uint32",
         | 
| 2332 | 
            -
                          "name": "maxReferralCount",
         | 
| 2333 | 
            -
                          "type": "uint32"
         | 
| 2334 | 
            -
                        },
         | 
| 2335 | 
            -
                        {
         | 
| 2336 | 
            -
                          "internalType": "uint32",
         | 
| 2337 | 
            -
                          "name": "maxReferralLifetime",
         | 
| 2338 | 
            -
                          "type": "uint32"
         | 
| 2339 | 
            -
                        },
         | 
| 2340 | 
            -
                        {
         | 
| 2341 | 
            -
                          "internalType": "bool",
         | 
| 2342 | 
            -
                          "name": "allowSelfReferrals",
         | 
| 2343 | 
            -
                          "type": "bool"
         | 
| 2344 | 
            -
                        },
         | 
| 2345 | 
            -
                        {
         | 
| 2346 | 
            -
                          "internalType": "bool",
         | 
| 2347 | 
            -
                          "name": "allowRenewals",
         | 
| 2348 | 
            -
                          "type": "bool"
         | 
| 2349 | 
            -
                        },
         | 
| 2350 | 
            -
                        {
         | 
| 2351 | 
            -
                          "internalType": "bytes",
         | 
| 2352 | 
            -
                          "name": "data",
         | 
| 2353 | 
            -
                          "type": "bytes"
         | 
| 2354 | 
            -
                        }
         | 
| 2355 | 
            -
                      ],
         | 
| 2356 | 
            -
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 2357 | 
            -
                      "name": "info",
         | 
| 2358 | 
            -
                      "type": "tuple"
         | 
| 624 | 
            +
                      "internalType": "bool",
         | 
| 625 | 
            +
                      "name": "isInterceptor",
         | 
| 626 | 
            +
                      "type": "bool"
         | 
| 627 | 
            +
                    },
         | 
| 628 | 
            +
                    {
         | 
| 629 | 
            +
                      "internalType": "address",
         | 
| 630 | 
            +
                      "name": "initialOwner",
         | 
| 631 | 
            +
                      "type": "address"
         | 
| 2359 632 | 
             
                    },
         | 
| 2360 633 | 
             
                    {
         | 
| 2361 | 
            -
                      "internalType": " | 
| 2362 | 
            -
                      "name": " | 
| 2363 | 
            -
                      "type": " | 
| 634 | 
            +
                      "internalType": "bytes",
         | 
| 635 | 
            +
                      "name": "registryData",
         | 
| 636 | 
            +
                      "type": "bytes"
         | 
| 2364 637 | 
             
                    }
         | 
| 2365 638 | 
             
                  ],
         | 
| 2366 | 
            -
                  "name": " | 
| 639 | 
            +
                  "name": "initializeRegisterable",
         | 
| 2367 640 | 
             
                  "outputs": [],
         | 
| 2368 641 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2369 642 | 
             
                  "type": "function"
         | 
| @@ -2371,67 +644,32 @@ | |
| 2371 644 | 
             
                {
         | 
| 2372 645 | 
             
                  "inputs": [
         | 
| 2373 646 | 
             
                    {
         | 
| 2374 | 
            -
                      "internalType": " | 
| 2375 | 
            -
                      "name": " | 
| 2376 | 
            -
                      "type": " | 
| 2377 | 
            -
                    },
         | 
| 2378 | 
            -
                    {
         | 
| 2379 | 
            -
                      "internalType": "StateId",
         | 
| 2380 | 
            -
                      "name": "newState",
         | 
| 2381 | 
            -
                      "type": "uint8"
         | 
| 647 | 
            +
                      "internalType": "address",
         | 
| 648 | 
            +
                      "name": "registryAddress",
         | 
| 649 | 
            +
                      "type": "address"
         | 
| 2382 650 | 
             
                    }
         | 
| 2383 651 | 
             
                  ],
         | 
| 2384 | 
            -
                  "name": " | 
| 652 | 
            +
                  "name": "initializeRegistryLinked",
         | 
| 2385 653 | 
             
                  "outputs": [],
         | 
| 2386 654 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2387 655 | 
             
                  "type": "function"
         | 
| 2388 656 | 
             
                },
         | 
| 2389 657 | 
             
                {
         | 
| 2390 | 
            -
                  "inputs": [
         | 
| 2391 | 
            -
             | 
| 2392 | 
            -
             | 
| 2393 | 
            -
                      "name": "policyNftId",
         | 
| 2394 | 
            -
                      "type": "uint96"
         | 
| 2395 | 
            -
                    },
         | 
| 2396 | 
            -
                    {
         | 
| 2397 | 
            -
                      "internalType": "PayoutId",
         | 
| 2398 | 
            -
                      "name": "payoutId",
         | 
| 2399 | 
            -
                      "type": "uint24"
         | 
| 2400 | 
            -
                    },
         | 
| 2401 | 
            -
                    {
         | 
| 2402 | 
            -
                      "components": [
         | 
| 2403 | 
            -
                        {
         | 
| 2404 | 
            -
                          "internalType": "ClaimId",
         | 
| 2405 | 
            -
                          "name": "claimId",
         | 
| 2406 | 
            -
                          "type": "uint16"
         | 
| 2407 | 
            -
                        },
         | 
| 2408 | 
            -
                        {
         | 
| 2409 | 
            -
                          "internalType": "Amount",
         | 
| 2410 | 
            -
                          "name": "amount",
         | 
| 2411 | 
            -
                          "type": "uint96"
         | 
| 2412 | 
            -
                        },
         | 
| 2413 | 
            -
                        {
         | 
| 2414 | 
            -
                          "internalType": "bytes",
         | 
| 2415 | 
            -
                          "name": "data",
         | 
| 2416 | 
            -
                          "type": "bytes"
         | 
| 2417 | 
            -
                        },
         | 
| 2418 | 
            -
                        {
         | 
| 2419 | 
            -
                          "internalType": "Timestamp",
         | 
| 2420 | 
            -
                          "name": "paidAt",
         | 
| 2421 | 
            -
                          "type": "uint40"
         | 
| 2422 | 
            -
                        }
         | 
| 2423 | 
            -
                      ],
         | 
| 2424 | 
            -
                      "internalType": "struct IPolicy.PayoutInfo",
         | 
| 2425 | 
            -
                      "name": "payout",
         | 
| 2426 | 
            -
                      "type": "tuple"
         | 
| 2427 | 
            -
                    },
         | 
| 658 | 
            +
                  "inputs": [],
         | 
| 659 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 660 | 
            +
                  "outputs": [
         | 
| 2428 661 | 
             
                    {
         | 
| 2429 | 
            -
                      "internalType": " | 
| 2430 | 
            -
                      "name": " | 
| 2431 | 
            -
                      "type": " | 
| 662 | 
            +
                      "internalType": "bytes4",
         | 
| 663 | 
            +
                      "name": "",
         | 
| 664 | 
            +
                      "type": "bytes4"
         | 
| 2432 665 | 
             
                    }
         | 
| 2433 666 | 
             
                  ],
         | 
| 2434 | 
            -
                  " | 
| 667 | 
            +
                  "stateMutability": "view",
         | 
| 668 | 
            +
                  "type": "function"
         | 
| 669 | 
            +
                },
         | 
| 670 | 
            +
                {
         | 
| 671 | 
            +
                  "inputs": [],
         | 
| 672 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 2435 673 | 
             
                  "outputs": [],
         | 
| 2436 674 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2437 675 | 
             
                  "type": "function"
         | 
| @@ -2439,22 +677,17 @@ | |
| 2439 677 | 
             
                {
         | 
| 2440 678 | 
             
                  "inputs": [
         | 
| 2441 679 | 
             
                    {
         | 
| 2442 | 
            -
                      "internalType": " | 
| 2443 | 
            -
                      "name": " | 
| 2444 | 
            -
                      "type": " | 
| 2445 | 
            -
                    },
         | 
| 2446 | 
            -
                    {
         | 
| 2447 | 
            -
                      "internalType": "PayoutId",
         | 
| 2448 | 
            -
                      "name": "payoutId",
         | 
| 2449 | 
            -
                      "type": "uint24"
         | 
| 680 | 
            +
                      "internalType": "address",
         | 
| 681 | 
            +
                      "name": "to",
         | 
| 682 | 
            +
                      "type": "address"
         | 
| 2450 683 | 
             
                    },
         | 
| 2451 684 | 
             
                    {
         | 
| 2452 | 
            -
                      "internalType": " | 
| 2453 | 
            -
                      "name": " | 
| 2454 | 
            -
                      "type": " | 
| 685 | 
            +
                      "internalType": "uint256",
         | 
| 686 | 
            +
                      "name": "tokenId",
         | 
| 687 | 
            +
                      "type": "uint256"
         | 
| 2455 688 | 
             
                    }
         | 
| 2456 689 | 
             
                  ],
         | 
| 2457 | 
            -
                  "name": " | 
| 690 | 
            +
                  "name": "nftMint",
         | 
| 2458 691 | 
             
                  "outputs": [],
         | 
| 2459 692 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2460 693 | 
             
                  "type": "function"
         | 
| @@ -2462,104 +695,22 @@ | |
| 2462 695 | 
             
                {
         | 
| 2463 696 | 
             
                  "inputs": [
         | 
| 2464 697 | 
             
                    {
         | 
| 2465 | 
            -
                      "internalType": " | 
| 2466 | 
            -
                      "name": " | 
| 2467 | 
            -
                      "type": " | 
| 698 | 
            +
                      "internalType": "address",
         | 
| 699 | 
            +
                      "name": "from",
         | 
| 700 | 
            +
                      "type": "address"
         | 
| 2468 701 | 
             
                    },
         | 
| 2469 702 | 
             
                    {
         | 
| 2470 | 
            -
                      " | 
| 2471 | 
            -
             | 
| 2472 | 
            -
             | 
| 2473 | 
            -
                          "name": "productNftId",
         | 
| 2474 | 
            -
                          "type": "uint96"
         | 
| 2475 | 
            -
                        },
         | 
| 2476 | 
            -
                        {
         | 
| 2477 | 
            -
                          "internalType": "NftId",
         | 
| 2478 | 
            -
                          "name": "bundleNftId",
         | 
| 2479 | 
            -
                          "type": "uint96"
         | 
| 2480 | 
            -
                        },
         | 
| 2481 | 
            -
                        {
         | 
| 2482 | 
            -
                          "internalType": "ReferralId",
         | 
| 2483 | 
            -
                          "name": "referralId",
         | 
| 2484 | 
            -
                          "type": "bytes8"
         | 
| 2485 | 
            -
                        },
         | 
| 2486 | 
            -
                        {
         | 
| 2487 | 
            -
                          "internalType": "RiskId",
         | 
| 2488 | 
            -
                          "name": "riskId",
         | 
| 2489 | 
            -
                          "type": "bytes8"
         | 
| 2490 | 
            -
                        },
         | 
| 2491 | 
            -
                        {
         | 
| 2492 | 
            -
                          "internalType": "uint256",
         | 
| 2493 | 
            -
                          "name": "sumInsuredAmount",
         | 
| 2494 | 
            -
                          "type": "uint256"
         | 
| 2495 | 
            -
                        },
         | 
| 2496 | 
            -
                        {
         | 
| 2497 | 
            -
                          "internalType": "uint256",
         | 
| 2498 | 
            -
                          "name": "premiumAmount",
         | 
| 2499 | 
            -
                          "type": "uint256"
         | 
| 2500 | 
            -
                        },
         | 
| 2501 | 
            -
                        {
         | 
| 2502 | 
            -
                          "internalType": "uint256",
         | 
| 2503 | 
            -
                          "name": "premiumPaidAmount",
         | 
| 2504 | 
            -
                          "type": "uint256"
         | 
| 2505 | 
            -
                        },
         | 
| 2506 | 
            -
                        {
         | 
| 2507 | 
            -
                          "internalType": "Seconds",
         | 
| 2508 | 
            -
                          "name": "lifetime",
         | 
| 2509 | 
            -
                          "type": "uint40"
         | 
| 2510 | 
            -
                        },
         | 
| 2511 | 
            -
                        {
         | 
| 2512 | 
            -
                          "internalType": "bytes",
         | 
| 2513 | 
            -
                          "name": "applicationData",
         | 
| 2514 | 
            -
                          "type": "bytes"
         | 
| 2515 | 
            -
                        },
         | 
| 2516 | 
            -
                        {
         | 
| 2517 | 
            -
                          "internalType": "bytes",
         | 
| 2518 | 
            -
                          "name": "policyData",
         | 
| 2519 | 
            -
                          "type": "bytes"
         | 
| 2520 | 
            -
                        },
         | 
| 2521 | 
            -
                        {
         | 
| 2522 | 
            -
                          "internalType": "uint16",
         | 
| 2523 | 
            -
                          "name": "claimsCount",
         | 
| 2524 | 
            -
                          "type": "uint16"
         | 
| 2525 | 
            -
                        },
         | 
| 2526 | 
            -
                        {
         | 
| 2527 | 
            -
                          "internalType": "uint16",
         | 
| 2528 | 
            -
                          "name": "openClaimsCount",
         | 
| 2529 | 
            -
                          "type": "uint16"
         | 
| 2530 | 
            -
                        },
         | 
| 2531 | 
            -
                        {
         | 
| 2532 | 
            -
                          "internalType": "Amount",
         | 
| 2533 | 
            -
                          "name": "payoutAmount",
         | 
| 2534 | 
            -
                          "type": "uint96"
         | 
| 2535 | 
            -
                        },
         | 
| 2536 | 
            -
                        {
         | 
| 2537 | 
            -
                          "internalType": "Timestamp",
         | 
| 2538 | 
            -
                          "name": "activatedAt",
         | 
| 2539 | 
            -
                          "type": "uint40"
         | 
| 2540 | 
            -
                        },
         | 
| 2541 | 
            -
                        {
         | 
| 2542 | 
            -
                          "internalType": "Timestamp",
         | 
| 2543 | 
            -
                          "name": "expiredAt",
         | 
| 2544 | 
            -
                          "type": "uint40"
         | 
| 2545 | 
            -
                        },
         | 
| 2546 | 
            -
                        {
         | 
| 2547 | 
            -
                          "internalType": "Timestamp",
         | 
| 2548 | 
            -
                          "name": "closedAt",
         | 
| 2549 | 
            -
                          "type": "uint40"
         | 
| 2550 | 
            -
                        }
         | 
| 2551 | 
            -
                      ],
         | 
| 2552 | 
            -
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 2553 | 
            -
                      "name": "policy",
         | 
| 2554 | 
            -
                      "type": "tuple"
         | 
| 703 | 
            +
                      "internalType": "address",
         | 
| 704 | 
            +
                      "name": "to",
         | 
| 705 | 
            +
                      "type": "address"
         | 
| 2555 706 | 
             
                    },
         | 
| 2556 707 | 
             
                    {
         | 
| 2557 | 
            -
                      "internalType": " | 
| 2558 | 
            -
                      "name": " | 
| 2559 | 
            -
                      "type": " | 
| 708 | 
            +
                      "internalType": "uint256",
         | 
| 709 | 
            +
                      "name": "tokenId",
         | 
| 710 | 
            +
                      "type": "uint256"
         | 
| 2560 711 | 
             
                    }
         | 
| 2561 712 | 
             
                  ],
         | 
| 2562 | 
            -
                  "name": " | 
| 713 | 
            +
                  "name": "nftTransferFrom",
         | 
| 2563 714 | 
             
                  "outputs": [],
         | 
| 2564 715 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2565 716 | 
             
                  "type": "function"
         | 
| @@ -2567,17 +718,12 @@ | |
| 2567 718 | 
             
                {
         | 
| 2568 719 | 
             
                  "inputs": [
         | 
| 2569 720 | 
             
                    {
         | 
| 2570 | 
            -
                      "internalType": " | 
| 2571 | 
            -
                      "name": " | 
| 2572 | 
            -
                      "type": " | 
| 2573 | 
            -
                    },
         | 
| 2574 | 
            -
                    {
         | 
| 2575 | 
            -
                      "internalType": "StateId",
         | 
| 2576 | 
            -
                      "name": "newState",
         | 
| 2577 | 
            -
                      "type": "uint8"
         | 
| 721 | 
            +
                      "internalType": "bytes4",
         | 
| 722 | 
            +
                      "name": "interfaceId",
         | 
| 723 | 
            +
                      "type": "bytes4"
         | 
| 2578 724 | 
             
                    }
         | 
| 2579 725 | 
             
                  ],
         | 
| 2580 | 
            -
                  "name": " | 
| 726 | 
            +
                  "name": "registerInterface",
         | 
| 2581 727 | 
             
                  "outputs": [],
         | 
| 2582 728 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2583 729 | 
             
                  "type": "function"
         | 
| @@ -2585,59 +731,17 @@ | |
| 2585 731 | 
             
                {
         | 
| 2586 732 | 
             
                  "inputs": [
         | 
| 2587 733 | 
             
                    {
         | 
| 2588 | 
            -
                      "internalType": " | 
| 2589 | 
            -
                      "name": " | 
| 2590 | 
            -
                      "type": " | 
| 2591 | 
            -
                    },
         | 
| 2592 | 
            -
                    {
         | 
| 2593 | 
            -
                      "components": [
         | 
| 2594 | 
            -
                        {
         | 
| 2595 | 
            -
                          "internalType": "string",
         | 
| 2596 | 
            -
                          "name": "name",
         | 
| 2597 | 
            -
                          "type": "string"
         | 
| 2598 | 
            -
                        },
         | 
| 2599 | 
            -
                        {
         | 
| 2600 | 
            -
                          "internalType": "contract IERC20Metadata",
         | 
| 2601 | 
            -
                          "name": "token",
         | 
| 2602 | 
            -
                          "type": "address"
         | 
| 2603 | 
            -
                        },
         | 
| 2604 | 
            -
                        {
         | 
| 2605 | 
            -
                          "internalType": "contract TokenHandler",
         | 
| 2606 | 
            -
                          "name": "tokenHandler",
         | 
| 2607 | 
            -
                          "type": "address"
         | 
| 2608 | 
            -
                        },
         | 
| 2609 | 
            -
                        {
         | 
| 2610 | 
            -
                          "internalType": "address",
         | 
| 2611 | 
            -
                          "name": "wallet",
         | 
| 2612 | 
            -
                          "type": "address"
         | 
| 2613 | 
            -
                        },
         | 
| 2614 | 
            -
                        {
         | 
| 2615 | 
            -
                          "internalType": "Amount",
         | 
| 2616 | 
            -
                          "name": "balanceAmount",
         | 
| 2617 | 
            -
                          "type": "uint96"
         | 
| 2618 | 
            -
                        },
         | 
| 2619 | 
            -
                        {
         | 
| 2620 | 
            -
                          "internalType": "Amount",
         | 
| 2621 | 
            -
                          "name": "feeAmount",
         | 
| 2622 | 
            -
                          "type": "uint96"
         | 
| 2623 | 
            -
                        },
         | 
| 2624 | 
            -
                        {
         | 
| 2625 | 
            -
                          "internalType": "bytes",
         | 
| 2626 | 
            -
                          "name": "data",
         | 
| 2627 | 
            -
                          "type": "bytes"
         | 
| 2628 | 
            -
                        }
         | 
| 2629 | 
            -
                      ],
         | 
| 2630 | 
            -
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 2631 | 
            -
                      "name": "info",
         | 
| 2632 | 
            -
                      "type": "tuple"
         | 
| 734 | 
            +
                      "internalType": "RoleId",
         | 
| 735 | 
            +
                      "name": "roleId",
         | 
| 736 | 
            +
                      "type": "uint64"
         | 
| 2633 737 | 
             
                    },
         | 
| 2634 738 | 
             
                    {
         | 
| 2635 | 
            -
                      "internalType": " | 
| 2636 | 
            -
                      "name": " | 
| 2637 | 
            -
                      "type": " | 
| 739 | 
            +
                      "internalType": "address",
         | 
| 740 | 
            +
                      "name": "account",
         | 
| 741 | 
            +
                      "type": "address"
         | 
| 2638 742 | 
             
                    }
         | 
| 2639 743 | 
             
                  ],
         | 
| 2640 | 
            -
                  "name": " | 
| 744 | 
            +
                  "name": "revokeRole",
         | 
| 2641 745 | 
             
                  "outputs": [],
         | 
| 2642 746 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2643 747 | 
             
                  "type": "function"
         | 
| @@ -2645,17 +749,12 @@ | |
| 2645 749 | 
             
                {
         | 
| 2646 750 | 
             
                  "inputs": [
         | 
| 2647 751 | 
             
                    {
         | 
| 2648 | 
            -
                      "internalType": " | 
| 2649 | 
            -
                      "name": " | 
| 2650 | 
            -
                      "type": " | 
| 2651 | 
            -
                    },
         | 
| 2652 | 
            -
                    {
         | 
| 2653 | 
            -
                      "internalType": "StateId",
         | 
| 2654 | 
            -
                      "name": "newState",
         | 
| 2655 | 
            -
                      "type": "uint8"
         | 
| 752 | 
            +
                      "internalType": "address",
         | 
| 753 | 
            +
                      "name": "newAuthority",
         | 
| 754 | 
            +
                      "type": "address"
         | 
| 2656 755 | 
             
                    }
         | 
| 2657 756 | 
             
                  ],
         | 
| 2658 | 
            -
                  "name": " | 
| 757 | 
            +
                  "name": "setAuthority",
         | 
| 2659 758 | 
             
                  "outputs": [],
         | 
| 2660 759 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2661 760 | 
             
                  "type": "function"
         | 
| @@ -2663,88 +762,12 @@ | |
| 2663 762 | 
             
                {
         | 
| 2664 763 | 
             
                  "inputs": [
         | 
| 2665 764 | 
             
                    {
         | 
| 2666 | 
            -
                      "internalType": " | 
| 2667 | 
            -
                      "name": " | 
| 2668 | 
            -
                      "type": " | 
| 2669 | 
            -
                    },
         | 
| 2670 | 
            -
                    {
         | 
| 2671 | 
            -
                      "components": [
         | 
| 2672 | 
            -
                        {
         | 
| 2673 | 
            -
                          "internalType": "contract IERC20Metadata",
         | 
| 2674 | 
            -
                          "name": "token",
         | 
| 2675 | 
            -
                          "type": "address"
         | 
| 2676 | 
            -
                        },
         | 
| 2677 | 
            -
                        {
         | 
| 2678 | 
            -
                          "internalType": "contract TokenHandler",
         | 
| 2679 | 
            -
                          "name": "tokenHandler",
         | 
| 2680 | 
            -
                          "type": "address"
         | 
| 2681 | 
            -
                        },
         | 
| 2682 | 
            -
                        {
         | 
| 2683 | 
            -
                          "internalType": "NftId",
         | 
| 2684 | 
            -
                          "name": "distributionNftId",
         | 
| 2685 | 
            -
                          "type": "uint96"
         | 
| 2686 | 
            -
                        },
         | 
| 2687 | 
            -
                        {
         | 
| 2688 | 
            -
                          "internalType": "NftId",
         | 
| 2689 | 
            -
                          "name": "poolNftId",
         | 
| 2690 | 
            -
                          "type": "uint96"
         | 
| 2691 | 
            -
                        },
         | 
| 2692 | 
            -
                        {
         | 
| 2693 | 
            -
                          "components": [
         | 
| 2694 | 
            -
                            {
         | 
| 2695 | 
            -
                              "internalType": "UFixed",
         | 
| 2696 | 
            -
                              "name": "fractionalFee",
         | 
| 2697 | 
            -
                              "type": "uint256"
         | 
| 2698 | 
            -
                            },
         | 
| 2699 | 
            -
                            {
         | 
| 2700 | 
            -
                              "internalType": "uint256",
         | 
| 2701 | 
            -
                              "name": "fixedFee",
         | 
| 2702 | 
            -
                              "type": "uint256"
         | 
| 2703 | 
            -
                            }
         | 
| 2704 | 
            -
                          ],
         | 
| 2705 | 
            -
                          "internalType": "struct Fee",
         | 
| 2706 | 
            -
                          "name": "productFee",
         | 
| 2707 | 
            -
                          "type": "tuple"
         | 
| 2708 | 
            -
                        },
         | 
| 2709 | 
            -
                        {
         | 
| 2710 | 
            -
                          "components": [
         | 
| 2711 | 
            -
                            {
         | 
| 2712 | 
            -
                              "internalType": "UFixed",
         | 
| 2713 | 
            -
                              "name": "fractionalFee",
         | 
| 2714 | 
            -
                              "type": "uint256"
         | 
| 2715 | 
            -
                            },
         | 
| 2716 | 
            -
                            {
         | 
| 2717 | 
            -
                              "internalType": "uint256",
         | 
| 2718 | 
            -
                              "name": "fixedFee",
         | 
| 2719 | 
            -
                              "type": "uint256"
         | 
| 2720 | 
            -
                            }
         | 
| 2721 | 
            -
                          ],
         | 
| 2722 | 
            -
                          "internalType": "struct Fee",
         | 
| 2723 | 
            -
                          "name": "processingFee",
         | 
| 2724 | 
            -
                          "type": "tuple"
         | 
| 2725 | 
            -
                        },
         | 
| 2726 | 
            -
                        {
         | 
| 2727 | 
            -
                          "internalType": "bool",
         | 
| 2728 | 
            -
                          "name": "isIntercepting",
         | 
| 2729 | 
            -
                          "type": "bool"
         | 
| 2730 | 
            -
                        },
         | 
| 2731 | 
            -
                        {
         | 
| 2732 | 
            -
                          "internalType": "address",
         | 
| 2733 | 
            -
                          "name": "wallet",
         | 
| 2734 | 
            -
                          "type": "address"
         | 
| 2735 | 
            -
                        }
         | 
| 2736 | 
            -
                      ],
         | 
| 2737 | 
            -
                      "internalType": "struct ISetup.ProductSetupInfo",
         | 
| 2738 | 
            -
                      "name": "setup",
         | 
| 2739 | 
            -
                      "type": "tuple"
         | 
| 2740 | 
            -
                    },
         | 
| 2741 | 
            -
                    {
         | 
| 2742 | 
            -
                      "internalType": "StateId",
         | 
| 2743 | 
            -
                      "name": "newState",
         | 
| 2744 | 
            -
                      "type": "uint8"
         | 
| 765 | 
            +
                      "internalType": "contract BundleManager",
         | 
| 766 | 
            +
                      "name": "bundleManager",
         | 
| 767 | 
            +
                      "type": "address"
         | 
| 2745 768 | 
             
                    }
         | 
| 2746 769 | 
             
                  ],
         | 
| 2747 | 
            -
                  "name": " | 
| 770 | 
            +
                  "name": "setBundleManager",
         | 
| 2748 771 | 
             
                  "outputs": [],
         | 
| 2749 772 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2750 773 | 
             
                  "type": "function"
         | 
| @@ -2752,17 +775,12 @@ | |
| 2752 775 | 
             
                {
         | 
| 2753 776 | 
             
                  "inputs": [
         | 
| 2754 777 | 
             
                    {
         | 
| 2755 | 
            -
                      "internalType": " | 
| 2756 | 
            -
                      "name": " | 
| 2757 | 
            -
                      "type": " | 
| 2758 | 
            -
                    },
         | 
| 2759 | 
            -
                    {
         | 
| 2760 | 
            -
                      "internalType": "StateId",
         | 
| 2761 | 
            -
                      "name": "newState",
         | 
| 2762 | 
            -
                      "type": "uint8"
         | 
| 778 | 
            +
                      "internalType": "contract InstanceAccessManager",
         | 
| 779 | 
            +
                      "name": "accessManager",
         | 
| 780 | 
            +
                      "type": "address"
         | 
| 2763 781 | 
             
                    }
         | 
| 2764 782 | 
             
                  ],
         | 
| 2765 | 
            -
                  "name": " | 
| 783 | 
            +
                  "name": "setInstanceAccessManager",
         | 
| 2766 784 | 
             
                  "outputs": [],
         | 
| 2767 785 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2768 786 | 
             
                  "type": "function"
         | 
| @@ -2770,59 +788,12 @@ | |
| 2770 788 | 
             
                {
         | 
| 2771 789 | 
             
                  "inputs": [
         | 
| 2772 790 | 
             
                    {
         | 
| 2773 | 
            -
                      "internalType": " | 
| 2774 | 
            -
                      "name": " | 
| 2775 | 
            -
                      "type": " | 
| 2776 | 
            -
                    },
         | 
| 2777 | 
            -
                    {
         | 
| 2778 | 
            -
                      "components": [
         | 
| 2779 | 
            -
                        {
         | 
| 2780 | 
            -
                          "internalType": "NftId",
         | 
| 2781 | 
            -
                          "name": "distributorNftId",
         | 
| 2782 | 
            -
                          "type": "uint96"
         | 
| 2783 | 
            -
                        },
         | 
| 2784 | 
            -
                        {
         | 
| 2785 | 
            -
                          "internalType": "string",
         | 
| 2786 | 
            -
                          "name": "referralCode",
         | 
| 2787 | 
            -
                          "type": "string"
         | 
| 2788 | 
            -
                        },
         | 
| 2789 | 
            -
                        {
         | 
| 2790 | 
            -
                          "internalType": "UFixed",
         | 
| 2791 | 
            -
                          "name": "discountPercentage",
         | 
| 2792 | 
            -
                          "type": "uint256"
         | 
| 2793 | 
            -
                        },
         | 
| 2794 | 
            -
                        {
         | 
| 2795 | 
            -
                          "internalType": "uint32",
         | 
| 2796 | 
            -
                          "name": "maxReferrals",
         | 
| 2797 | 
            -
                          "type": "uint32"
         | 
| 2798 | 
            -
                        },
         | 
| 2799 | 
            -
                        {
         | 
| 2800 | 
            -
                          "internalType": "uint32",
         | 
| 2801 | 
            -
                          "name": "usedReferrals",
         | 
| 2802 | 
            -
                          "type": "uint32"
         | 
| 2803 | 
            -
                        },
         | 
| 2804 | 
            -
                        {
         | 
| 2805 | 
            -
                          "internalType": "Timestamp",
         | 
| 2806 | 
            -
                          "name": "expiryAt",
         | 
| 2807 | 
            -
                          "type": "uint40"
         | 
| 2808 | 
            -
                        },
         | 
| 2809 | 
            -
                        {
         | 
| 2810 | 
            -
                          "internalType": "bytes",
         | 
| 2811 | 
            -
                          "name": "data",
         | 
| 2812 | 
            -
                          "type": "bytes"
         | 
| 2813 | 
            -
                        }
         | 
| 2814 | 
            -
                      ],
         | 
| 2815 | 
            -
                      "internalType": "struct IDistribution.ReferralInfo",
         | 
| 2816 | 
            -
                      "name": "referralInfo",
         | 
| 2817 | 
            -
                      "type": "tuple"
         | 
| 2818 | 
            -
                    },
         | 
| 2819 | 
            -
                    {
         | 
| 2820 | 
            -
                      "internalType": "StateId",
         | 
| 2821 | 
            -
                      "name": "newState",
         | 
| 2822 | 
            -
                      "type": "uint8"
         | 
| 791 | 
            +
                      "internalType": "contract InstanceReader",
         | 
| 792 | 
            +
                      "name": "instanceReader",
         | 
| 793 | 
            +
                      "type": "address"
         | 
| 2823 794 | 
             
                    }
         | 
| 2824 795 | 
             
                  ],
         | 
| 2825 | 
            -
                  "name": " | 
| 796 | 
            +
                  "name": "setInstanceReader",
         | 
| 2826 797 | 
             
                  "outputs": [],
         | 
| 2827 798 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2828 799 | 
             
                  "type": "function"
         | 
| @@ -2830,17 +801,12 @@ | |
| 2830 801 | 
             
                {
         | 
| 2831 802 | 
             
                  "inputs": [
         | 
| 2832 803 | 
             
                    {
         | 
| 2833 | 
            -
                      "internalType": " | 
| 2834 | 
            -
                      "name": " | 
| 2835 | 
            -
                      "type": " | 
| 2836 | 
            -
                    },
         | 
| 2837 | 
            -
                    {
         | 
| 2838 | 
            -
                      "internalType": "StateId",
         | 
| 2839 | 
            -
                      "name": "newState",
         | 
| 2840 | 
            -
                      "type": "uint8"
         | 
| 804 | 
            +
                      "internalType": "contract InstanceStore",
         | 
| 805 | 
            +
                      "name": "instanceStore",
         | 
| 806 | 
            +
                      "type": "address"
         | 
| 2841 807 | 
             
                    }
         | 
| 2842 808 | 
             
                  ],
         | 
| 2843 | 
            -
                  "name": " | 
| 809 | 
            +
                  "name": "setInstanceStore",
         | 
| 2844 810 | 
             
                  "outputs": [],
         | 
| 2845 811 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2846 812 | 
             
                  "type": "function"
         | 
| @@ -2848,34 +814,22 @@ | |
| 2848 814 | 
             
                {
         | 
| 2849 815 | 
             
                  "inputs": [
         | 
| 2850 816 | 
             
                    {
         | 
| 2851 | 
            -
                      "internalType": " | 
| 2852 | 
            -
                      "name": " | 
| 2853 | 
            -
                      "type": " | 
| 817 | 
            +
                      "internalType": "string",
         | 
| 818 | 
            +
                      "name": "targetName",
         | 
| 819 | 
            +
                      "type": "string"
         | 
| 2854 820 | 
             
                    },
         | 
| 2855 821 | 
             
                    {
         | 
| 2856 | 
            -
                      " | 
| 2857 | 
            -
             | 
| 2858 | 
            -
             | 
| 2859 | 
            -
                          "name": "productNftId",
         | 
| 2860 | 
            -
                          "type": "uint96"
         | 
| 2861 | 
            -
                        },
         | 
| 2862 | 
            -
                        {
         | 
| 2863 | 
            -
                          "internalType": "bytes",
         | 
| 2864 | 
            -
                          "name": "data",
         | 
| 2865 | 
            -
                          "type": "bytes"
         | 
| 2866 | 
            -
                        }
         | 
| 2867 | 
            -
                      ],
         | 
| 2868 | 
            -
                      "internalType": "struct IRisk.RiskInfo",
         | 
| 2869 | 
            -
                      "name": "risk",
         | 
| 2870 | 
            -
                      "type": "tuple"
         | 
| 822 | 
            +
                      "internalType": "bytes4[]",
         | 
| 823 | 
            +
                      "name": "selectors",
         | 
| 824 | 
            +
                      "type": "bytes4[]"
         | 
| 2871 825 | 
             
                    },
         | 
| 2872 826 | 
             
                    {
         | 
| 2873 | 
            -
                      "internalType": " | 
| 2874 | 
            -
                      "name": " | 
| 2875 | 
            -
                      "type": " | 
| 827 | 
            +
                      "internalType": "RoleId",
         | 
| 828 | 
            +
                      "name": "roleId",
         | 
| 829 | 
            +
                      "type": "uint64"
         | 
| 2876 830 | 
             
                    }
         | 
| 2877 831 | 
             
                  ],
         | 
| 2878 | 
            -
                  "name": " | 
| 832 | 
            +
                  "name": "setTargetFunctionRole",
         | 
| 2879 833 | 
             
                  "outputs": [],
         | 
| 2880 834 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2881 835 | 
             
                  "type": "function"
         | 
| @@ -2883,154 +837,53 @@ | |
| 2883 837 | 
             
                {
         | 
| 2884 838 | 
             
                  "inputs": [
         | 
| 2885 839 | 
             
                    {
         | 
| 2886 | 
            -
                      "internalType": " | 
| 2887 | 
            -
                      "name": " | 
| 2888 | 
            -
                      "type": " | 
| 840 | 
            +
                      "internalType": "address",
         | 
| 841 | 
            +
                      "name": "target",
         | 
| 842 | 
            +
                      "type": "address"
         | 
| 2889 843 | 
             
                    },
         | 
| 2890 844 | 
             
                    {
         | 
| 2891 | 
            -
                      "internalType": " | 
| 2892 | 
            -
                      "name": " | 
| 2893 | 
            -
                      "type": " | 
| 845 | 
            +
                      "internalType": "bool",
         | 
| 846 | 
            +
                      "name": "locked",
         | 
| 847 | 
            +
                      "type": "bool"
         | 
| 2894 848 | 
             
                    }
         | 
| 2895 849 | 
             
                  ],
         | 
| 2896 | 
            -
                  "name": " | 
| 850 | 
            +
                  "name": "setTargetLocked",
         | 
| 2897 851 | 
             
                  "outputs": [],
         | 
| 2898 852 | 
             
                  "stateMutability": "nonpayable",
         | 
| 2899 853 | 
             
                  "type": "function"
         | 
| 2900 | 
            -
                }
         | 
| 2901 | 
            -
              ],
         | 
| 2902 | 
            -
              "bytecode": "0x608060405234801561001057600080fd5b50615e8a80620000216000396000f3fe608060405234801561001057600080fd5b506004361061046a5760003560e01c80637cef48421161024c578063bf1db3f911610146578063e7f7fb86116100c3578063f7bc431c11610087578063f7bc431c14610b04578063f7c34ee014610b17578063fb4a8e3414610b2a578063fbc1a3a014610b3d578063fe1f18d614610b5057600080fd5b8063e7f7fb8614610a8d578063e9e96c7014610aa0578063f21de1e814610735578063f48016ce14610ade578063f7b442d114610af157600080fd5b8063cde749f41161010a578063cde749f414610a36578063d2f21a2914610a3e578063d5c9d77d14610a51578063dee3262314610a64578063e5f6cd2714610a7757600080fd5b8063bf1db3f9146109f5578063bf7e214f14610a08578063c0c53b8b14610a10578063ca0e7f0814610a23578063cbe864251461074657600080fd5b8063a472a832116101d4578063a898967511610198578063a898967514610994578063ada9652e146109a7578063af902500146109bc578063b6d7cd62146109cf578063bb1e0e59146109e257600080fd5b8063a472a83214610897578063a4eeee59146108aa578063a5961b4c146108bd578063a671495e1461096e578063a76ee0181461098157600080fd5b80638fb360371161021b5780638fb360371461082a57806397affbf51461084b5780639e90178c1461085e578063a1ef60e914610871578063a28422291461088457600080fd5b80637cef4842146107dc57806381c2b282146107ef578063893d20e8146108025780638eaa6ac01461080a57600080fd5b806337f135d7116103685780635ab1bd53116102e557806361f5f420116102a957806361f5f42014610775578063644c45e014610786578063675393bf146107ae57806375b238fc146107c15780637a9e5e4b146107c957600080fd5b80635ab1bd53146107355780635d0c9334146107465780635d4345cc146105845780635dfa73db1461075957806361105e0e1461076257600080fd5b8063422c9d001161032c578063422c9d00146106d4578063468bce06146106e757806354f6127f146106ef578063598524261461070f5780635a8416b01461072257600080fd5b806337f135d7146106585780633870a7701461067557806338a699a4146106885780633ca7c02a1461069b57806340529b0f146106c157600080fd5b80630fec111c116103f657806327bb7a33116103ba57806327bb7a331461060457806329e63f62146106175780632f61088a1461062a57806330a130ba1461063d57806336fc697e1461065057600080fd5b80630fec111c14610597578063138461e0146105ac5780631eff4b22146105b4578063214cdb80146105e95780632781d443146105fc57600080fd5b80630d3581811161043d5780630d358181146105255780630f526f7d1461054b5780630f6c29ef1461055e5780630f749a89146105715780630fad0eb11461058457600080fd5b806301ffc9a71461046f57806302cd3071146104b157806309648a9d146104d65780630cbc6b8914610510575b600080fd5b61049c61047d366004613ed4565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6006546001600160a01b03165b6040516001600160a01b0390911681526020016104a8565b6104fe6104e4366004613efe565b600090815260046020526040902054610100900460ff1690565b60405160ff90911681526020016104a8565b61052361051e366004614148565b610b63565b005b6104fe610533366004614194565b60ff9081166000908152600260205260409020541690565b6105236105593660046141b1565b610ba9565b61052361056c366004614365565b610bca565b61052361057f3660046143d7565b610bf7565b6105236105923660046141b1565b610d1d565b61059f610d34565b6040516104a89190614444565b610523610ee3565b6105db7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016104a8565b6105236105f7366004613ed4565b6110e5565b6105db600381565b6105236106123660046144cf565b611112565b61052361062536600461460d565b61119e565b6105236106383660046146e0565b6111c5565b61052361064b36600461481f565b611279565b610523611319565b610660600081565b60405163ffffffff90911681526020016104a8565b610523610683366004614864565b61135f565b61049c610696366004613efe565b611375565b6106a96001600160401b0381565b6040516001600160401b0390911681526020016104a8565b6105236106cf3660046141b1565b61140a565b6105236106e23660046143d7565b611421565b6105236115c8565b6107026106fd366004613efe565b6115fa565b6040516104a891906148a2565b61052361071d366004614988565b61169f565b6105236107303660046149e0565b6116c7565b6001546001600160a01b03166104be565b610523610754366004614b70565b611767565b6106a961271081565b610523610770366004614c73565b61178f565b6007546001600160a01b03166104be565b600080516020615e15833981519152546040516001600160601b0390911681526020016104a8565b6105236107bc3660046143d7565b61182f565b6106a9600081565b6105236107d73660046143d7565b61193b565b6105236107ea366004614cba565b6119be565b6105236107fd366004614cd8565b611a4d565b6104be611a74565b61081d610818366004613efe565b611bab565b6040516104a89190614d81565b610832611cec565b6040516001600160e01b031990911681526020016104a8565b610523610859366004614dad565b611d24565b61052361086c366004614e77565b611d4c565b61052361087f366004614eae565b611d74565b610523610892366004614cba565b611d9b565b6105236108a5366004614f05565b611de9565b6105236108b8366004614fdb565b611e11565b6109616108cb366004613efe565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260046020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104a89190615022565b61052361097c3660046150d3565b611e39565b61052361098f366004615118565b611e61565b6105236109a236600461515f565b611f01565b6105db600080516020615e1583398151915281565b6105236109ca366004614cba565b611ff2565b6105236109dd36600461518f565b612040565b6105236109f03660046151bf565b612056565b61049c610a03366004614194565b61221b565b6104be612268565b610523610a1e3660046151eb565b612284565b610523610a3136600461522b565b612431565b6104fe6124d1565b610523610a4c3660046141b1565b61254d565b610523610a5f366004615270565b612564565b610523610a723660046141b1565b61258c565b60055461010090046001600160a01b03166104be565b610523610a9b3660046152b5565b6125a3565b61049c610aae36600461515f565b60ff9283166000908152600360209081526040808320948616835293815283822092851682529190915220541690565b6105db610aec366004615306565b61277d565b610523610aff366004615334565b612808565b610523610b123660046143d7565b612830565b610523610b25366004615375565b6128f0565b610523610b383660046153a3565b612967565b610523610b4b3660046153ea565b61298f565b610523610b5e3660046141b1565b6129b7565b610b70335b6000366129ce565b610ba4610b7e84606e612ad4565b83604051602001610b8f9190615418565b60405160208183030381529060405283612b20565b505050565b610bb233610b68565b610bc6610bc083608c612ad4565b82612b2b565b5050565b610bd333610b68565b610bf1610be08585612b35565b83604051602001610b8f91906154c7565b50505050565b610c0033610b68565b60055461010090046001600160a01b031615610c475760055460405163e02ca03360e01b81526101009091046001600160a01b031660048201526024015b60405180910390fd5b610c4f612268565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cba9190615521565b6001600160a01b031614610cf557610cd0612268565b6040516374150f9560e11b81526001600160a01b039091166004820152602401610c3e565b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610d2633610b68565b610bc6610bc08360d3612ad4565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b90910416151591810191909152600182018054919291606084019190610ddf9061553e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b9061553e565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b50505050508152505090506040518060e00160405280610e76600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610ec7611a74565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020615e1583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f769190615578565b15610fa25780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c3e565b30610fb56001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610ffd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110219190615578565b6110495760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610c3e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801561109d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c19190615595565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6110ed612b83565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61111a612b83565b61112482876128f0565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161119483826155f8565b5050505050505050565b6111a733610b68565b610bf16111b48585612bcc565b83604051602001610b8f91906156b7565b6111ce33610b68565b6040516355ee627560e01b8152610bc69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590611213906001600160c01b031987169060040161572b565b602060405180830381865af4158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190615740565b826040516020016112659190615759565b604051602081830303815290604052612c19565b61128233610b68565b6040516355ee627560e01b8152610bc69073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee6275906112c7906001600160c01b031987169060040161572b565b602060405180830381865af41580156112e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113089190615740565b826040516020016112659190615787565b611321612b83565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61136833610b68565b610ba4610bc08484612b35565b600081815260046020819052604080832054905163b2466acf60e01b815261010090910460ff169181019190915273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114049190615578565b92915050565b61141333610b68565b610bc6610bc083607a612ad4565b61142a33610b68565b6007546001600160a01b0316156114635760075460405163384c2dbd60e11b81526001600160a01b039091166004820152602401610c3e565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cf9190615521565b6001600160a01b0316146114f85760405163decb98c560e01b8152306004820152602401610c3e565b611500612268565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156b9190615521565b6001600160a01b0316146115a657611581612268565b604051630312205960e41b81526001600160a01b039091166004820152602401610c3e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6115d0612b83565b6115d8612c23565b6115e0612d46565b6115e8612e39565b6115f0612f47565b6115f8613003565b565b600081815260046020526040902060010180546060919061161a9061553e565b80601f01602080910402602001604051908101604052809291908181526020018280546116469061553e565b80156116935780601f1061166857610100808354040283529160200191611693565b820191906000526020600020905b81548152906001019060200180831161167657829003601f168201915b50505050509050919050565b6116a833610b68565b610ba46116b68460dc612ad4565b83604051602001610b8f9190615837565b6116d033610b68565b6040516355ee627560e01b8152610ba49073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee627590611715906001600160c01b031988169060040161572b565b602060405180830381865af4158015611732573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117569190615740565b83604051602001610b8f9190615787565b61177033610b68565b610ba461177e8460d3612ad4565b83604051602001610b8f919061591a565b61179833610b68565b6040516355ee627560e01b8152610ba49073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee6275906117dd906001600160c01b031988169060040161572b565b602060405180830381865af41580156117fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181e9190615740565b83604051602001610b8f9190615a77565b611837612b83565b806001600160a01b03163b60000361186d5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c3e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156118e7575060408051601f3d908101601f191682019092526118e491810190615578565b60015b61190f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c3e565b80610bc65760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c3e565b50565b33611944612268565b6001600160a01b0316816001600160a01b03161461197f5760405162d1953b60e31b81526001600160a01b0382166004820152602401610c3e565b816001600160a01b03163b6000036119b5576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c3e565b610bc6826130bf565b6119c733610b68565b6040516355ee627560e01b8152610bc69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590611a0c906001600160c01b031987169060040161572b565b602060405180830381865af4158015611a29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc09190615740565b611a5633610b68565b610ba4611a638484612b35565b8260405160200161126591906154c7565b600080600080516020615e1583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b089190615578565b15611b95576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8f9190615521565b91505090565b54600160601b90046001600160a01b0316919050565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260046020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611c639061553e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8f9061553e565b8015611cdc5780601f10611cb157610100808354040283529160200191611cdc565b820191906000526020600020905b815481529060010190602001808311611cbf57829003601f168201915b5050505050815250509050919050565b600080516020615e35833981519152805460009190600160a01b900460ff16611d16576000611b8f565b638fb3603760e01b91505090565b611d2d33610b68565b610bc6611d3b8360dc612ad4565b826040516020016112659190615837565b611d5533610b68565b610bc6611d63836078612ad4565b826040516020016112659190615b13565b611d7d33610b68565b610ba4611d8a8484612bcc565b8260405160200161126591906156b7565b611da433610b68565b6040516355ee627560e01b8152610bc69073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee627590611a0c906001600160c01b031987169060040161572b565b611df233610b68565b610bc6611e008360d3612ad4565b82604051602001611265919061591a565b611e1a33610b68565b610ba4611e2884608c612ad4565b83604051602001610b8f9190615b87565b611e4233610b68565b610bc6611e5083607a612ad4565b826040516020016112659190615c08565b611e6a33610b68565b6040516355ee627560e01b8152610ba49073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590611eaf906001600160c01b031988169060040161572b565b602060405180830381865af4158015611ecc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef09190615740565b83604051602001610b8f9190615759565b60ff8381166000908152600260205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8a9190615578565b15611f9457505050565b60ff808416600090815260036020908152604080832086851684528252808320858516845290915290205416610ba457604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610c3e565b611ffb33610b68565b6040516355ee627560e01b8152610bc69073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee627590611a0c906001600160c01b031987169060040161572b565b61204933610b68565b610ba4610bc08484612bcc565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561209f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c39190615521565b6001600160a01b0316336001600160a01b0316146120e057600080fd5b60055461010090046001600160a01b031663030149746120fe613120565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa158015612142573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121669190615740565b1561217357612173615c66565b60055461010090046001600160a01b031663b428b0b0612191613120565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af11580156121e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220a9190615578565b1515600114610bc657610bc6615c66565b60ff81811660009081526002602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113c3565b600080516020615e35833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156122c95750825b90506000826001600160401b031660011480156122e55750303b155b9050811580156122f3575080155b156123115760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561233b57845460ff60401b1916600160401b1785555b61234488613198565b60008790506123c988826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561238b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123af9190615595565b604660018b60405180602001604052806000815250611112565b6123d16115c8565b6123e1632d7f9b4d60e11b6110e5565b50831561119457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b61243a33610b68565b6040516355ee627560e01b8152610bc69073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee62759061247f906001600160c01b031987169060040161572b565b602060405180830381865af415801561249c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c09190615740565b826040516020016112659190615a77565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015612524573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125489190615c7c565b905090565b61255633610b68565b610bc6610bc0836078612ad4565b61256d33610b68565b610bc661257b83608c612ad4565b826040516020016112659190615b87565b61259533610b68565b610bc6610bc083606e612ad4565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126109190615521565b6001600160a01b0316336001600160a01b03161461262d57600080fd5b60055461010090046001600160a01b031663b7d2b16261264b613120565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016020604051808303816000875af11580156126a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c49190615578565b15156001146126d5576126d5615c66565b60055461010090046001600160a01b031663b428b0b06126f3613120565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af1158015612748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061276c9190615578565b1515600114610ba457610ba4615c66565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156127dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128019190615740565b9392505050565b61281133610b68565b610ba461281f846078612ad4565b83604051602001610b8f9190615b13565b61283933610b68565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015612881573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a59190615521565b6001600160a01b0316146128ce576040516345789cf560e01b8152306004820152602401610c3e565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6128f8612b83565b6129018161182f565b612909611319565b6001600160a01b0382166129305760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615e1583398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61297033610b68565b610ba461297e84607a612ad4565b83604051602001610b8f9190615c08565b61299833610b68565b610bc66129a683606e612ad4565b826040516020016112659190615418565b6129c033610b68565b610bc6610bc08360dc612ad4565b600080516020615e35833981519152600080612a096129eb612268565b87306129fb600460008a8c615c99565b612a0491615cc3565b6131a9565b9150915081612acc5763ffffffff811615612aa957825460ff60a01b1916600160a01b178355612a37612268565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612a6693929190615cf3565b600060405180830381600087803b158015612a8057600080fd5b505af1158015612a94573d6000803e3d6000fd5b5050845460ff60a01b1916855550612acc9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610c3e565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c8906044016127c0565b610ba48383836132b5565b610bc68282613766565b604051635927341160e01b815262ffffff821660048201526001600160601b038316602482015260009073__$e1d43d4fb5c0494c5b7331f52c1ee41012$__906359273411906044016127c0565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166115f857604051631afcd79f60e31b815260040160405180910390fd5b604051637d56159160e11b815261ffff821660048201526001600160601b038316602482015260009073__$0e0c503522f35343ef1955427c5075b143$__9063faac2b22906044016127c0565b610bc68282613aaa565b7f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef08054606460ff19918216179091557ffb39f406c8d3ff86a211d5f8c6729c90fce2fed80808bb47b6dc39e975a7d4d68054821660019081179091557fe59968928be831d9cd5403370c74d9f1dac318690d88a2efef2b29079332ee4f80548316821790557fe78520cf30689bb50fce16ae1e25040217df710de55e9ed38f2b2722b2a984688054909216811790915560dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f90606e5b60ff1660ff1681526020019081526020016000206000612d2260c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a8054606460ff1991821681179092557fa1c69de77e78d12e062170d002ba111ba52c8f452f3b0ca326991b7298fd7aaf80548216600190811790915560008381527f6dcc58afd04aec67a07f8168234edce351865815e87e6f9a62e977830ebfce226020527f5267f8fb4089eaca6dac10383f9a063927ca0092f9c59d7ca3b3d61812638b028054909316821790925591600391905b60ff1660ff1681526020019081526020016000206000612e1b606e90565b60ff1660ff1681526020019081526020016000206000612d2260d290565b7feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d8054600a60ff19918216179091557f4b5a0a5953a753e51be29e6e2b638995162612852ea3b46cff09cbac61f9cb568054821660019081179091557fb7939d1e06f7236b22c8e9bf344ab29b7c87eec9f53e55d389378ef7585ffd7e80548316821790557f158b1af96972c14cb1a5e39cbdbd793a3bc4f7c57c85ef22cf298bf517d6e0b380548316821790557f6160f9e22b3793ed435de7ac6b8dd0ee9d3110d626fe8135ffbb7d38470f229a8054909216811790915560d3600090815260036020527fb0b6d2d73fcb69de4c434c711239319c2c669ebf6407f36fc258ff9f98f803fa906064612d04565b7f07f164294c9f742449ae2b41ea995596da138b514d14d5f233585da8f92971968054603260ff19918216179091557f1aaad14668ac20aeb8e1295d4016ff57ca4e7d9a5d4ddded8fc4cc10cbd645768054821660019081179091557fe2294421c3570585f969350452a698010f0ce83857042531533f0ca7234165f78054909216811790915560d4600090815260036020527f8cabc3f67f90d9c8052e24f35f5812d18f2439ca7faf98b1d4d5d0b98dd1603e906033612d04565b7fec56eb74d500f9b1bf8f0c5cc42ff5ed51e8d9e3a2ebb6e83a26383f297e0f1e8054606460ff1991821681179092557fe63626ccd25c67b6e53c3bd622e9c77c962be121e55eb3904854ac631eb8f9f080548216600190811790915560009283527fa74711c3b0f698a9dde85849aefdd2d454c235a4c161e6f019356c5ec8490c816020527fbed2f4a35dfbfdf2c5294831261529ea73fa5b94705484f5af8ba1bc3cb59362805490921681179091559060039060c8612dfd565b600080516020615e3583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015613174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125489190615d33565b6131a0612b83565b61193881613ec3565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516132189190615d5c565b600060405180830381855afa9150503d8060008114613253576040519150601f19603f3d011682016040523d82523d6000602084013e613258565b606091505b509150915081156132aa57604081511061328a57808060200190518101906132809190615d78565b90945092506132aa565b60208151106132aa57808060200190518101906132a79190615578565b93505b505094509492505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332b9190615578565b6133775760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610c3e565b6000838152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156133e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134079190615578565b6134535760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610c3e565b600085815260046020526040902060010161346e85826155f8565b5060ff8084161461348c57815461ff00191661010060ff8516021782555b8154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166134bc4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561354e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135729190615c7c565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156135c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135e69190615da7565b85888632876040516135fe9796959493929190615dc4565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061369c9190615c7c565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156136ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137109190615da7565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156137b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137dc9190615578565b6138285760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610c3e565b6000828152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138b89190615578565b6139045760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610c3e565b81546139149060ff168285611f01565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166139584390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156139ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a0e9190615c7c565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a829190615da7565b8588863287604051613a9a9796959493929190615dc4565b60405180910390a1505050505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613afd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b219190615c7c565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015613b76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b9a9190615578565b613be65760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610c3e565b6000838152600460208190526040918290208054925163037c8cb160e51b815261010090930460ff16918301919091529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015613c53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c779190615578565b613cc35760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610c3e565b33436000613cd08561221b565b613cdb576064613cf1565b60ff808616600090815260026020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600460205260409020909150600101613d7b87826155f8565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613dee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e129190615c7c565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613e62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e869190615da7565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a001613755565b613ecb612b83565b611938816130bf565b600060208284031215613ee657600080fd5b81356001600160e01b03198116811461280157600080fd5b600060208284031215613f1057600080fd5b5035919050565b6001600160601b038116811461193857600080fd5b8035613f3781613f17565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613f7457613f74613f3c565b60405290565b60405161010081016001600160401b0381118282101715613f7457613f74613f3c565b60405160c081016001600160401b0381118282101715613f7457613f74613f3c565b60405161012081016001600160401b0381118282101715613f7457613f74613f3c565b60405161020081016001600160401b0381118282101715613f7457613f74613f3c565b60405160e081016001600160401b0381118282101715613f7457613f74613f3c565b6001600160a01b038116811461193857600080fd5b8035613f3781614027565b60006040828403121561405957600080fd5b614061613f52565b9050813581526020820135602082015292915050565b801515811461193857600080fd5b8035613f3781614077565b600061014082840312156140a357600080fd5b6140ab613f7a565b90506140b68261403c565b81526140c46020830161403c565b60208201526140d560408301613f2c565b60408201526140e660608301613f2c565b60608201526140f88360808401614047565b608082015261410a8360c08401614047565b60a082015261411c6101008301614085565b60c082015261412e610120830161403c565b60e082015292915050565b60ff8116811461193857600080fd5b6000806000610180848603121561415e57600080fd5b833561416981613f17565b92506141788560208601614090565b915061016084013561418981614139565b809150509250925092565b6000602082840312156141a657600080fd5b813561280181614139565b600080604083850312156141c457600080fd5b82356141cf81613f17565b915060208301356141df81614139565b809150509250929050565b803562ffffff81168114613f3757600080fd5b61ffff8116811461193857600080fd5b8035613f37816141fd565b600082601f83011261422957600080fd5b81356001600160401b038082111561424357614243613f3c565b604051601f8301601f19908116603f0116810190828211818310171561426b5761426b613f3c565b8160405283815286602085880101111561428457600080fd5b836020870160208301376000602085830101528094505050505092915050565b64ffffffffff8116811461193857600080fd5b8035613f37816142a4565b6000608082840312156142d457600080fd5b604051608081016001600160401b0382821081831117156142f7576142f7613f3c565b816040528293508435915061430b826141fd565b90825260208401359061431d82613f17565b816020840152604085013591508082111561433757600080fd5b5061434485828601614218565b6040830152506060830135614358816142a4565b6060919091015292915050565b6000806000806080858703121561437b57600080fd5b843561438681613f17565b9350614394602086016141ea565b925060408501356001600160401b038111156143af57600080fd5b6143bb878288016142c2565b92505060608501356143cc81614139565b939692955090935050565b6000602082840312156143e957600080fd5b813561280181614027565b60005b8381101561440f5781810151838201526020016143f7565b50506000910152565b600081518084526144308160208601602086016143f4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516144ad60c08401826001600160a01b03169052565b5060c083015160e0808401526144c7610100840182614418565b949350505050565b60008060008060008060c087890312156144e857600080fd5b86356144f381614027565b9550602087013561450381613f17565b9450604087013561451381614139565b9350606087013561452381614077565b9250608087013561453381614027565b915060a08701356001600160401b0381111561454e57600080fd5b61455a89828a01614218565b9150509295509295509295565b600060c0828403121561457957600080fd5b614581613f9d565b9050813561458e81613f17565b8152602082013561459e81613f17565b602082015260408201356145b181614139565b604082015260608201356145c481614139565b606082015260808201356001600160401b038111156145e257600080fd5b6145ee84828501614218565b60808301525060a0820135614602816142a4565b60a082015292915050565b6000806000806080858703121561462357600080fd5b843561462e81613f17565b9350602085013561463e816141fd565b925060408501356001600160401b0381111561465957600080fd5b6143bb87828801614567565b6001600160c01b03198116811461193857600080fd5b8035613f3781614665565b60006040828403121561469857600080fd5b6146a0613f52565b905081356146ad81613f17565b815260208201356001600160401b038111156146c857600080fd5b6146d484828501614218565b60208301525092915050565b600080604083850312156146f357600080fd5b82356146fe81614665565b915060208301356001600160401b0381111561471957600080fd5b61472585828601614686565b9150509250929050565b63ffffffff8116811461193857600080fd5b8035613f378161472f565b6000610120828403121561475f57600080fd5b614767613fbf565b905081356001600160401b038082111561478057600080fd5b61478c85838601614218565b83526020840135602084015260408401356040840152606084013560608401526147b860808501614741565b60808401526147c960a08501614741565b60a08401526147da60c08501614085565b60c08401526147eb60e08501614085565b60e08401526101009150818401358181111561480657600080fd5b61481286828701614218565b8385015250505092915050565b6000806040838503121561483257600080fd5b823561483d81614665565b915060208301356001600160401b0381111561485857600080fd5b6147258582860161474c565b60008060006060848603121561487957600080fd5b833561488481613f17565b9250614892602085016141ea565b9150604084013561418981614139565b6020815260006128016020830184614418565b600061014082840312156148c857600080fd5b6148d0613fbf565b90506148db82613f2c565b81526148ea8360208401614047565b602082015260608201356001600160401b0381111561490857600080fd5b61491484828501614218565b60408301525061492660808301613f2c565b606082015261493760a08301613f2c565b608082015261494860c08301613f2c565b60a082015261495960e083016142b7565b60c082015261010061496c8184016142b7565b60e083015261497e61012084016142b7565b9082015292915050565b60008060006060848603121561499d57600080fd5b83356149a881613f17565b925060208401356001600160401b038111156149c357600080fd5b6149cf868287016148b5565b925050604084013561418981614139565b6000806000606084860312156149f557600080fd5b8335614a0081614665565b925060208401356001600160401b03811115614a1b57600080fd5b6149cf8682870161474c565b60006102008284031215614a3a57600080fd5b614a42613fe2565b9050614a4d82613f2c565b8152614a5b60208301613f2c565b6020820152614a6c6040830161467b565b6040820152614a7d6060830161467b565b60608201526080820135608082015260a082013560a082015260c082013560c0820152614aac60e083016142b7565b60e0820152610100808301356001600160401b0380821115614acd57600080fd5b614ad986838701614218565b83850152610120925082850135915080821115614af557600080fd5b50614b0285828601614218565b828401525050610140614b1681840161420d565b90820152610160614b2883820161420d565b90820152610180614b3a838201613f2c565b908201526101a0614b4c8382016142b7565b908201526101c0614b5e8382016142b7565b908201526101e061497e8382016142b7565b600080600060608486031215614b8557600080fd5b8335614b9081613f17565b925060208401356001600160401b03811115614bab57600080fd5b6149cf86828701614a27565b600060e08284031215614bc957600080fd5b614bd1614005565b9050614bdc82613f2c565b815260208201356001600160401b0380821115614bf857600080fd5b614c0485838601614218565b602084015260408401356040840152614c1f60608501614741565b6060840152614c3060808501614741565b6080840152614c4160a085016142b7565b60a084015260c0840135915080821115614c5a57600080fd5b50614c6784828501614218565b60c08301525092915050565b600080600060608486031215614c8857600080fd5b8335614c9381614665565b925060208401356001600160401b03811115614cae57600080fd5b6149cf86828701614bb7565b60008060408385031215614ccd57600080fd5b82356141cf81614665565b600080600060608486031215614ced57600080fd5b8335614cf881613f17565b9250614d06602085016141ea565b915060408401356001600160401b03811115614d2157600080fd5b614d2d868287016142c2565b9150509250925092565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152614d93602082018351614d37565b6000602083015160c0808401526144c760e0840182614418565b60008060408385031215614dc057600080fd5b8235614dcb81613f17565b915060208301356001600160401b03811115614de657600080fd5b614725858286016148b5565b60006101008284031215614e0557600080fd5b614e0d613f9d565b90508135614e1a81613f17565b81526020820135614e2a81614027565b6020820152614e3c8360408401614047565b6040820152614e4e8360808401614047565b606082015260c0820135614e6181614027565b608082015260e0919091013560a0820152919050565b6000806101208385031215614e8b57600080fd5b8235614e9681613f17565b9150614ea58460208501614df2565b90509250929050565b600080600060608486031215614ec357600080fd5b8335614ece81613f17565b92506020840135614ede816141fd565b915060408401356001600160401b03811115614ef957600080fd5b614d2d86828701614567565b60008060408385031215614f1857600080fd5b8235614f2381613f17565b915060208301356001600160401b03811115614f3e57600080fd5b61472585828601614a27565b600060e08284031215614f5c57600080fd5b614f64614005565b905081356001600160401b0380821115614f7d57600080fd5b614f8985838601614218565b8352614f976020850161403c565b6020840152614fa86040850161403c565b6040840152614fb96060850161403c565b6060840152614fca60808501613f2c565b6080840152614c4160a08501613f2c565b600080600060608486031215614ff057600080fd5b8335614ffb81613f17565b925060208401356001600160401b0381111561501657600080fd5b6149cf86828701614f4a565b60a081016114048284614d37565b600060a0828403121561504257600080fd5b60405160a081016001600160401b03828210818311171561506557615065613f3c565b816040528293508435915061507982614665565b90825260208401359061508b82614077565b81602084015260408501359150808211156150a557600080fd5b506150b285828601614218565b60408301525060608301356060820152608083013560808201525092915050565b600080604083850312156150e657600080fd5b82356150f181613f17565b915060208301356001600160401b0381111561510c57600080fd5b61472585828601615030565b60008060006060848603121561512d57600080fd5b833561513881614665565b925060208401356001600160401b0381111561515357600080fd5b6149cf86828701614686565b60008060006060848603121561517457600080fd5b833561517f81614139565b9250602084013561489281614139565b6000806000606084860312156151a457600080fd5b83356151af81613f17565b92506020840135614892816141fd565b600080604083850312156151d257600080fd5b82356151dd81614027565b946020939093013593505050565b60008060006060848603121561520057600080fd5b833561520b81614027565b9250602084013561521b81614027565b9150604084013561418981614027565b6000806040838503121561523e57600080fd5b823561524981614665565b915060208301356001600160401b0381111561526457600080fd5b61472585828601614bb7565b6000806040838503121561528357600080fd5b823561528e81613f17565b915060208301356001600160401b038111156152a957600080fd5b61472585828601614f4a565b6000806000606084860312156152ca57600080fd5b83356152d581614027565b925060208401356152e581614027565b929592945050506040919091013590565b60ff198116811461193857600080fd5b6000806040838503121561531957600080fd5b823561532481614139565b915060208301356141df816152f6565b6000806000610140848603121561534a57600080fd5b833561535581613f17565b92506153648560208601614df2565b915061012084013561418981614139565b6000806040838503121561538857600080fd5b823561539381614027565b915060208301356141df81614027565b6000806000606084860312156153b857600080fd5b83356153c381613f17565b925060208401356001600160401b038111156153de57600080fd5b6149cf86828701615030565b60008061016083850312156153fe57600080fd5b823561540981613f17565b9150614ea58460208501614090565b81516001600160a01b039081168252602080840151909116908201526040808301516001600160601b031690820152606080830151610140830191615467908401826001600160601b03169052565b506080830151615484608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301518015156101008401525060e08301516001600160a01b0381166101208401525092915050565b6020815261ffff82511660208201526001600160601b036020830151166040820152600060408301516080606084015261550460a0840182614418565b905064ffffffffff60608501511660808401528091505092915050565b60006020828403121561553357600080fd5b815161280181614027565b600181811c9082168061555257607f821691505b60208210810361557257634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561558a57600080fd5b815161280181614077565b6000602082840312156155a757600080fd5b815161280181613f17565b601f821115610ba457600081815260208120601f850160051c810160208610156155d95750805b601f850160051c820191505b81811015612acc578281556001016155e5565b81516001600160401b0381111561561157615611613f3c565b6156258161561f845461553e565b846155b2565b602080601f83116001811461565a57600084156156425750858301515b600019600386901b1c1916600185901b178555612acc565b600085815260208120601f198616915b828110156156895788860151825594840194600190910190840161566a565b50858210156156a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260ff6060840151166080830152608083015160c060a084015261570e60e0840182614418565b905064ffffffffff60a08501511660c08401528091505092915050565b6001600160c01b031991909116815260200190565b60006020828403121561575257600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526144c76060840182614418565b60208152600082516101208060208501526157a6610140850183614418565b915060208501516040850152604085015160608501526060850151608085015260808501516157dd60a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e08501516101006158138187018315159052565b860151858403601f190183870152905061582d8382614418565b9695505050505050565b602081526158516020820183516001600160601b03169052565b6000602083015161586f604084018280518252602090810151910152565b50604083015161014080608085015261588c610160850183614418565b915060608501516158a860a08601826001600160601b03169052565b5060808501516001600160601b03811660c08601525060a08501516001600160601b03811660e08601525060c08501516101006158ed8187018364ffffffffff169052565b60e087015164ffffffffff811661012088015291505b9095015164ffffffffff1693019290925250919050565b602081526159346020820183516001600160601b03169052565b6000602083015161595060408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101006159b58185018364ffffffffff169052565b8085015191505061020061012081818601526159d5610220860184614418565b9250808601519050610140601f1986850301818701526159f58483614418565b935080870151915050610160615a108187018361ffff169052565b8601519050610180615a278682018361ffff169052565b86015190506101a0615a43868201836001600160601b03169052565b86015190506101c0615a5d8682018364ffffffffff169052565b86015190506101e06159038682018364ffffffffff169052565b602081526001600160601b0382511660208201526000602083015160e06040840152615aa7610100840182614418565b90506040840151606084015263ffffffff60608501511660808401526080840151615ada60a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525b5060c0840151838203601f190160e0850152615b0a8282614418565b95945050505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015261010083019190606085015180516080860152602081015160a0860152915060808501511660c08401525060a09092015160e09091015290565b602081526000825160e06020840152615ba4610100840182614418565b9050602084015160018060a01b03808216604086015280604087015116606086015280606087015116608086015250506080840151615bee60a08501826001600160601b03169052565b5060a08401516001600160601b03811660c0850152615aee565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152615c4660c0840182614418565b905060608401516080840152608084015160a08401528091505092915050565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615c8e57600080fd5b815161280181614139565b60008085851115615ca957600080fd5b83861115615cb657600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015615ceb5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215615d4557600080fd5b81516001600160401b038116811461280157600080fd5b60008251615d6e8184602087016143f4565b9190910192915050565b60008060408385031215615d8b57600080fd5b8251615d9681614077565b60208401519092506141df8161472f565b600060208284031215615db957600080fd5b8151612801816152f6565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e0019056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b81de7d7246faacc32389bc30dd6cc11c1c2772fb54d8155f6574ae8762d1ffe64736f6c63430008140033",
         | 
| 2903 | 
            -
              "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061046a5760003560e01c80637cef48421161024c578063bf1db3f911610146578063e7f7fb86116100c3578063f7bc431c11610087578063f7bc431c14610b04578063f7c34ee014610b17578063fb4a8e3414610b2a578063fbc1a3a014610b3d578063fe1f18d614610b5057600080fd5b8063e7f7fb8614610a8d578063e9e96c7014610aa0578063f21de1e814610735578063f48016ce14610ade578063f7b442d114610af157600080fd5b8063cde749f41161010a578063cde749f414610a36578063d2f21a2914610a3e578063d5c9d77d14610a51578063dee3262314610a64578063e5f6cd2714610a7757600080fd5b8063bf1db3f9146109f5578063bf7e214f14610a08578063c0c53b8b14610a10578063ca0e7f0814610a23578063cbe864251461074657600080fd5b8063a472a832116101d4578063a898967511610198578063a898967514610994578063ada9652e146109a7578063af902500146109bc578063b6d7cd62146109cf578063bb1e0e59146109e257600080fd5b8063a472a83214610897578063a4eeee59146108aa578063a5961b4c146108bd578063a671495e1461096e578063a76ee0181461098157600080fd5b80638fb360371161021b5780638fb360371461082a57806397affbf51461084b5780639e90178c1461085e578063a1ef60e914610871578063a28422291461088457600080fd5b80637cef4842146107dc57806381c2b282146107ef578063893d20e8146108025780638eaa6ac01461080a57600080fd5b806337f135d7116103685780635ab1bd53116102e557806361f5f420116102a957806361f5f42014610775578063644c45e014610786578063675393bf146107ae57806375b238fc146107c15780637a9e5e4b146107c957600080fd5b80635ab1bd53146107355780635d0c9334146107465780635d4345cc146105845780635dfa73db1461075957806361105e0e1461076257600080fd5b8063422c9d001161032c578063422c9d00146106d4578063468bce06146106e757806354f6127f146106ef578063598524261461070f5780635a8416b01461072257600080fd5b806337f135d7146106585780633870a7701461067557806338a699a4146106885780633ca7c02a1461069b57806340529b0f146106c157600080fd5b80630fec111c116103f657806327bb7a33116103ba57806327bb7a331461060457806329e63f62146106175780632f61088a1461062a57806330a130ba1461063d57806336fc697e1461065057600080fd5b80630fec111c14610597578063138461e0146105ac5780631eff4b22146105b4578063214cdb80146105e95780632781d443146105fc57600080fd5b80630d3581811161043d5780630d358181146105255780630f526f7d1461054b5780630f6c29ef1461055e5780630f749a89146105715780630fad0eb11461058457600080fd5b806301ffc9a71461046f57806302cd3071146104b157806309648a9d146104d65780630cbc6b8914610510575b600080fd5b61049c61047d366004613ed4565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6006546001600160a01b03165b6040516001600160a01b0390911681526020016104a8565b6104fe6104e4366004613efe565b600090815260046020526040902054610100900460ff1690565b60405160ff90911681526020016104a8565b61052361051e366004614148565b610b63565b005b6104fe610533366004614194565b60ff9081166000908152600260205260409020541690565b6105236105593660046141b1565b610ba9565b61052361056c366004614365565b610bca565b61052361057f3660046143d7565b610bf7565b6105236105923660046141b1565b610d1d565b61059f610d34565b6040516104a89190614444565b610523610ee3565b6105db7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016104a8565b6105236105f7366004613ed4565b6110e5565b6105db600381565b6105236106123660046144cf565b611112565b61052361062536600461460d565b61119e565b6105236106383660046146e0565b6111c5565b61052361064b36600461481f565b611279565b610523611319565b610660600081565b60405163ffffffff90911681526020016104a8565b610523610683366004614864565b61135f565b61049c610696366004613efe565b611375565b6106a96001600160401b0381565b6040516001600160401b0390911681526020016104a8565b6105236106cf3660046141b1565b61140a565b6105236106e23660046143d7565b611421565b6105236115c8565b6107026106fd366004613efe565b6115fa565b6040516104a891906148a2565b61052361071d366004614988565b61169f565b6105236107303660046149e0565b6116c7565b6001546001600160a01b03166104be565b610523610754366004614b70565b611767565b6106a961271081565b610523610770366004614c73565b61178f565b6007546001600160a01b03166104be565b600080516020615e15833981519152546040516001600160601b0390911681526020016104a8565b6105236107bc3660046143d7565b61182f565b6106a9600081565b6105236107d73660046143d7565b61193b565b6105236107ea366004614cba565b6119be565b6105236107fd366004614cd8565b611a4d565b6104be611a74565b61081d610818366004613efe565b611bab565b6040516104a89190614d81565b610832611cec565b6040516001600160e01b031990911681526020016104a8565b610523610859366004614dad565b611d24565b61052361086c366004614e77565b611d4c565b61052361087f366004614eae565b611d74565b610523610892366004614cba565b611d9b565b6105236108a5366004614f05565b611de9565b6105236108b8366004614fdb565b611e11565b6109616108cb366004613efe565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260046020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104a89190615022565b61052361097c3660046150d3565b611e39565b61052361098f366004615118565b611e61565b6105236109a236600461515f565b611f01565b6105db600080516020615e1583398151915281565b6105236109ca366004614cba565b611ff2565b6105236109dd36600461518f565b612040565b6105236109f03660046151bf565b612056565b61049c610a03366004614194565b61221b565b6104be612268565b610523610a1e3660046151eb565b612284565b610523610a3136600461522b565b612431565b6104fe6124d1565b610523610a4c3660046141b1565b61254d565b610523610a5f366004615270565b612564565b610523610a723660046141b1565b61258c565b60055461010090046001600160a01b03166104be565b610523610a9b3660046152b5565b6125a3565b61049c610aae36600461515f565b60ff9283166000908152600360209081526040808320948616835293815283822092851682529190915220541690565b6105db610aec366004615306565b61277d565b610523610aff366004615334565b612808565b610523610b123660046143d7565b612830565b610523610b25366004615375565b6128f0565b610523610b383660046153a3565b612967565b610523610b4b3660046153ea565b61298f565b610523610b5e3660046141b1565b6129b7565b610b70335b6000366129ce565b610ba4610b7e84606e612ad4565b83604051602001610b8f9190615418565b60405160208183030381529060405283612b20565b505050565b610bb233610b68565b610bc6610bc083608c612ad4565b82612b2b565b5050565b610bd333610b68565b610bf1610be08585612b35565b83604051602001610b8f91906154c7565b50505050565b610c0033610b68565b60055461010090046001600160a01b031615610c475760055460405163e02ca03360e01b81526101009091046001600160a01b031660048201526024015b60405180910390fd5b610c4f612268565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cba9190615521565b6001600160a01b031614610cf557610cd0612268565b6040516374150f9560e11b81526001600160a01b039091166004820152602401610c3e565b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610d2633610b68565b610bc6610bc08360d3612ad4565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b90910416151591810191909152600182018054919291606084019190610ddf9061553e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0b9061553e565b8015610e585780601f10610e2d57610100808354040283529160200191610e58565b820191906000526020600020905b815481529060010190602001808311610e3b57829003601f168201915b50505050508152505090506040518060e00160405280610e76600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610ec7611a74565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020615e1583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610f52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f769190615578565b15610fa25780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c3e565b30610fb56001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610ffd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110219190615578565b6110495760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610c3e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801561109d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c19190615595565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6110ed612b83565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61111a612b83565b61112482876128f0565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161119483826155f8565b5050505050505050565b6111a733610b68565b610bf16111b48585612bcc565b83604051602001610b8f91906156b7565b6111ce33610b68565b6040516355ee627560e01b8152610bc69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590611213906001600160c01b031987169060040161572b565b602060405180830381865af4158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190615740565b826040516020016112659190615759565b604051602081830303815290604052612c19565b61128233610b68565b6040516355ee627560e01b8152610bc69073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee6275906112c7906001600160c01b031987169060040161572b565b602060405180830381865af41580156112e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113089190615740565b826040516020016112659190615787565b611321612b83565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61136833610b68565b610ba4610bc08484612b35565b600081815260046020819052604080832054905163b2466acf60e01b815261010090910460ff169181019190915273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114049190615578565b92915050565b61141333610b68565b610bc6610bc083607a612ad4565b61142a33610b68565b6007546001600160a01b0316156114635760075460405163384c2dbd60e11b81526001600160a01b039091166004820152602401610c3e565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cf9190615521565b6001600160a01b0316146114f85760405163decb98c560e01b8152306004820152602401610c3e565b611500612268565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611547573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156b9190615521565b6001600160a01b0316146115a657611581612268565b604051630312205960e41b81526001600160a01b039091166004820152602401610c3e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6115d0612b83565b6115d8612c23565b6115e0612d46565b6115e8612e39565b6115f0612f47565b6115f8613003565b565b600081815260046020526040902060010180546060919061161a9061553e565b80601f01602080910402602001604051908101604052809291908181526020018280546116469061553e565b80156116935780601f1061166857610100808354040283529160200191611693565b820191906000526020600020905b81548152906001019060200180831161167657829003601f168201915b50505050509050919050565b6116a833610b68565b610ba46116b68460dc612ad4565b83604051602001610b8f9190615837565b6116d033610b68565b6040516355ee627560e01b8152610ba49073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee627590611715906001600160c01b031988169060040161572b565b602060405180830381865af4158015611732573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117569190615740565b83604051602001610b8f9190615787565b61177033610b68565b610ba461177e8460d3612ad4565b83604051602001610b8f919061591a565b61179833610b68565b6040516355ee627560e01b8152610ba49073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee6275906117dd906001600160c01b031988169060040161572b565b602060405180830381865af41580156117fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181e9190615740565b83604051602001610b8f9190615a77565b611837612b83565b806001600160a01b03163b60000361186d5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c3e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156118e7575060408051601f3d908101601f191682019092526118e491810190615578565b60015b61190f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c3e565b80610bc65760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c3e565b50565b33611944612268565b6001600160a01b0316816001600160a01b03161461197f5760405162d1953b60e31b81526001600160a01b0382166004820152602401610c3e565b816001600160a01b03163b6000036119b5576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c3e565b610bc6826130bf565b6119c733610b68565b6040516355ee627560e01b8152610bc69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590611a0c906001600160c01b031987169060040161572b565b602060405180830381865af4158015611a29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc09190615740565b611a5633610b68565b610ba4611a638484612b35565b8260405160200161126591906154c7565b600080600080516020615e1583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b089190615578565b15611b95576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8f9190615521565b91505090565b54600160601b90046001600160a01b0316919050565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260046020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611c639061553e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8f9061553e565b8015611cdc5780601f10611cb157610100808354040283529160200191611cdc565b820191906000526020600020905b815481529060010190602001808311611cbf57829003601f168201915b5050505050815250509050919050565b600080516020615e35833981519152805460009190600160a01b900460ff16611d16576000611b8f565b638fb3603760e01b91505090565b611d2d33610b68565b610bc6611d3b8360dc612ad4565b826040516020016112659190615837565b611d5533610b68565b610bc6611d63836078612ad4565b826040516020016112659190615b13565b611d7d33610b68565b610ba4611d8a8484612bcc565b8260405160200161126591906156b7565b611da433610b68565b6040516355ee627560e01b8152610bc69073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee627590611a0c906001600160c01b031987169060040161572b565b611df233610b68565b610bc6611e008360d3612ad4565b82604051602001611265919061591a565b611e1a33610b68565b610ba4611e2884608c612ad4565b83604051602001610b8f9190615b87565b611e4233610b68565b610bc6611e5083607a612ad4565b826040516020016112659190615c08565b611e6a33610b68565b6040516355ee627560e01b8152610ba49073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590611eaf906001600160c01b031988169060040161572b565b602060405180830381865af4158015611ecc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef09190615740565b83604051602001610b8f9190615759565b60ff8381166000908152600260205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611f66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8a9190615578565b15611f9457505050565b60ff808416600090815260036020908152604080832086851684528252808320858516845290915290205416610ba457604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610c3e565b611ffb33610b68565b6040516355ee627560e01b8152610bc69073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee627590611a0c906001600160c01b031987169060040161572b565b61204933610b68565b610ba4610bc08484612bcc565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561209f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c39190615521565b6001600160a01b0316336001600160a01b0316146120e057600080fd5b60055461010090046001600160a01b031663030149746120fe613120565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa158015612142573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121669190615740565b1561217357612173615c66565b60055461010090046001600160a01b031663b428b0b0612191613120565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af11580156121e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220a9190615578565b1515600114610bc657610bc6615c66565b60ff81811660009081526002602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113c3565b600080516020615e35833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156122c95750825b90506000826001600160401b031660011480156122e55750303b155b9050811580156122f3575080155b156123115760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561233b57845460ff60401b1916600160401b1785555b61234488613198565b60008790506123c988826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561238b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123af9190615595565b604660018b60405180602001604052806000815250611112565b6123d16115c8565b6123e1632d7f9b4d60e11b6110e5565b50831561119457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b61243a33610b68565b6040516355ee627560e01b8152610bc69073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee62759061247f906001600160c01b031987169060040161572b565b602060405180830381865af415801561249c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c09190615740565b826040516020016112659190615a77565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015612524573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125489190615c7c565b905090565b61255633610b68565b610bc6610bc0836078612ad4565b61256d33610b68565b610bc661257b83608c612ad4565b826040516020016112659190615b87565b61259533610b68565b610bc6610bc083606e612ad4565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126109190615521565b6001600160a01b0316336001600160a01b03161461262d57600080fd5b60055461010090046001600160a01b031663b7d2b16261264b613120565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016020604051808303816000875af11580156126a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c49190615578565b15156001146126d5576126d5615c66565b60055461010090046001600160a01b031663b428b0b06126f3613120565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af1158015612748573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061276c9190615578565b1515600114610ba457610ba4615c66565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156127dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128019190615740565b9392505050565b61281133610b68565b610ba461281f846078612ad4565b83604051602001610b8f9190615b13565b61283933610b68565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015612881573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a59190615521565b6001600160a01b0316146128ce576040516345789cf560e01b8152306004820152602401610c3e565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6128f8612b83565b6129018161182f565b612909611319565b6001600160a01b0382166129305760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615e1583398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61297033610b68565b610ba461297e84607a612ad4565b83604051602001610b8f9190615c08565b61299833610b68565b610bc66129a683606e612ad4565b826040516020016112659190615418565b6129c033610b68565b610bc6610bc08360dc612ad4565b600080516020615e35833981519152600080612a096129eb612268565b87306129fb600460008a8c615c99565b612a0491615cc3565b6131a9565b9150915081612acc5763ffffffff811615612aa957825460ff60a01b1916600160a01b178355612a37612268565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612a6693929190615cf3565b600060405180830381600087803b158015612a8057600080fd5b505af1158015612a94573d6000803e3d6000fd5b5050845460ff60a01b1916855550612acc9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610c3e565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c8906044016127c0565b610ba48383836132b5565b610bc68282613766565b604051635927341160e01b815262ffffff821660048201526001600160601b038316602482015260009073__$e1d43d4fb5c0494c5b7331f52c1ee41012$__906359273411906044016127c0565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166115f857604051631afcd79f60e31b815260040160405180910390fd5b604051637d56159160e11b815261ffff821660048201526001600160601b038316602482015260009073__$0e0c503522f35343ef1955427c5075b143$__9063faac2b22906044016127c0565b610bc68282613aaa565b7f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef08054606460ff19918216179091557ffb39f406c8d3ff86a211d5f8c6729c90fce2fed80808bb47b6dc39e975a7d4d68054821660019081179091557fe59968928be831d9cd5403370c74d9f1dac318690d88a2efef2b29079332ee4f80548316821790557fe78520cf30689bb50fce16ae1e25040217df710de55e9ed38f2b2722b2a984688054909216811790915560dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f90606e5b60ff1660ff1681526020019081526020016000206000612d2260c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a8054606460ff1991821681179092557fa1c69de77e78d12e062170d002ba111ba52c8f452f3b0ca326991b7298fd7aaf80548216600190811790915560008381527f6dcc58afd04aec67a07f8168234edce351865815e87e6f9a62e977830ebfce226020527f5267f8fb4089eaca6dac10383f9a063927ca0092f9c59d7ca3b3d61812638b028054909316821790925591600391905b60ff1660ff1681526020019081526020016000206000612e1b606e90565b60ff1660ff1681526020019081526020016000206000612d2260d290565b7feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d8054600a60ff19918216179091557f4b5a0a5953a753e51be29e6e2b638995162612852ea3b46cff09cbac61f9cb568054821660019081179091557fb7939d1e06f7236b22c8e9bf344ab29b7c87eec9f53e55d389378ef7585ffd7e80548316821790557f158b1af96972c14cb1a5e39cbdbd793a3bc4f7c57c85ef22cf298bf517d6e0b380548316821790557f6160f9e22b3793ed435de7ac6b8dd0ee9d3110d626fe8135ffbb7d38470f229a8054909216811790915560d3600090815260036020527fb0b6d2d73fcb69de4c434c711239319c2c669ebf6407f36fc258ff9f98f803fa906064612d04565b7f07f164294c9f742449ae2b41ea995596da138b514d14d5f233585da8f92971968054603260ff19918216179091557f1aaad14668ac20aeb8e1295d4016ff57ca4e7d9a5d4ddded8fc4cc10cbd645768054821660019081179091557fe2294421c3570585f969350452a698010f0ce83857042531533f0ca7234165f78054909216811790915560d4600090815260036020527f8cabc3f67f90d9c8052e24f35f5812d18f2439ca7faf98b1d4d5d0b98dd1603e906033612d04565b7fec56eb74d500f9b1bf8f0c5cc42ff5ed51e8d9e3a2ebb6e83a26383f297e0f1e8054606460ff1991821681179092557fe63626ccd25c67b6e53c3bd622e9c77c962be121e55eb3904854ac631eb8f9f080548216600190811790915560009283527fa74711c3b0f698a9dde85849aefdd2d454c235a4c161e6f019356c5ec8490c816020527fbed2f4a35dfbfdf2c5294831261529ea73fa5b94705484f5af8ba1bc3cb59362805490921681179091559060039060c8612dfd565b600080516020615e3583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015613174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125489190615d33565b6131a0612b83565b61193881613ec3565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516132189190615d5c565b600060405180830381855afa9150503d8060008114613253576040519150601f19603f3d011682016040523d82523d6000602084013e613258565b606091505b509150915081156132aa57604081511061328a57808060200190518101906132809190615d78565b90945092506132aa565b60208151106132aa57808060200190518101906132a79190615578565b93505b505094509492505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332b9190615578565b6133775760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610c3e565b6000838152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156133e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134079190615578565b6134535760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610c3e565b600085815260046020526040902060010161346e85826155f8565b5060ff8084161461348c57815461ff00191661010060ff8516021782555b8154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166134bc4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561354e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135729190615c7c565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156135c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135e69190615da7565b85888632876040516135fe9796959493929190615dc4565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061369c9190615c7c565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156136ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137109190615da7565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156137b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137dc9190615578565b6138285760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610c3e565b6000828152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138b89190615578565b6139045760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610c3e565b81546139149060ff168285611f01565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166139584390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156139ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a0e9190615c7c565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a829190615da7565b8588863287604051613a9a9796959493929190615dc4565b60405180910390a1505050505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613afd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b219190615c7c565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015613b76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b9a9190615578565b613be65760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610c3e565b6000838152600460208190526040918290208054925163037c8cb160e51b815261010090930460ff16918301919091529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015613c53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c779190615578565b613cc35760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610c3e565b33436000613cd08561221b565b613cdb576064613cf1565b60ff808616600090815260026020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600460205260409020909150600101613d7b87826155f8565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613dee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e129190615c7c565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613e62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e869190615da7565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a001613755565b613ecb612b83565b611938816130bf565b600060208284031215613ee657600080fd5b81356001600160e01b03198116811461280157600080fd5b600060208284031215613f1057600080fd5b5035919050565b6001600160601b038116811461193857600080fd5b8035613f3781613f17565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613f7457613f74613f3c565b60405290565b60405161010081016001600160401b0381118282101715613f7457613f74613f3c565b60405160c081016001600160401b0381118282101715613f7457613f74613f3c565b60405161012081016001600160401b0381118282101715613f7457613f74613f3c565b60405161020081016001600160401b0381118282101715613f7457613f74613f3c565b60405160e081016001600160401b0381118282101715613f7457613f74613f3c565b6001600160a01b038116811461193857600080fd5b8035613f3781614027565b60006040828403121561405957600080fd5b614061613f52565b9050813581526020820135602082015292915050565b801515811461193857600080fd5b8035613f3781614077565b600061014082840312156140a357600080fd5b6140ab613f7a565b90506140b68261403c565b81526140c46020830161403c565b60208201526140d560408301613f2c565b60408201526140e660608301613f2c565b60608201526140f88360808401614047565b608082015261410a8360c08401614047565b60a082015261411c6101008301614085565b60c082015261412e610120830161403c565b60e082015292915050565b60ff8116811461193857600080fd5b6000806000610180848603121561415e57600080fd5b833561416981613f17565b92506141788560208601614090565b915061016084013561418981614139565b809150509250925092565b6000602082840312156141a657600080fd5b813561280181614139565b600080604083850312156141c457600080fd5b82356141cf81613f17565b915060208301356141df81614139565b809150509250929050565b803562ffffff81168114613f3757600080fd5b61ffff8116811461193857600080fd5b8035613f37816141fd565b600082601f83011261422957600080fd5b81356001600160401b038082111561424357614243613f3c565b604051601f8301601f19908116603f0116810190828211818310171561426b5761426b613f3c565b8160405283815286602085880101111561428457600080fd5b836020870160208301376000602085830101528094505050505092915050565b64ffffffffff8116811461193857600080fd5b8035613f37816142a4565b6000608082840312156142d457600080fd5b604051608081016001600160401b0382821081831117156142f7576142f7613f3c565b816040528293508435915061430b826141fd565b90825260208401359061431d82613f17565b816020840152604085013591508082111561433757600080fd5b5061434485828601614218565b6040830152506060830135614358816142a4565b6060919091015292915050565b6000806000806080858703121561437b57600080fd5b843561438681613f17565b9350614394602086016141ea565b925060408501356001600160401b038111156143af57600080fd5b6143bb878288016142c2565b92505060608501356143cc81614139565b939692955090935050565b6000602082840312156143e957600080fd5b813561280181614027565b60005b8381101561440f5781810151838201526020016143f7565b50506000910152565b600081518084526144308160208601602086016143f4565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516144ad60c08401826001600160a01b03169052565b5060c083015160e0808401526144c7610100840182614418565b949350505050565b60008060008060008060c087890312156144e857600080fd5b86356144f381614027565b9550602087013561450381613f17565b9450604087013561451381614139565b9350606087013561452381614077565b9250608087013561453381614027565b915060a08701356001600160401b0381111561454e57600080fd5b61455a89828a01614218565b9150509295509295509295565b600060c0828403121561457957600080fd5b614581613f9d565b9050813561458e81613f17565b8152602082013561459e81613f17565b602082015260408201356145b181614139565b604082015260608201356145c481614139565b606082015260808201356001600160401b038111156145e257600080fd5b6145ee84828501614218565b60808301525060a0820135614602816142a4565b60a082015292915050565b6000806000806080858703121561462357600080fd5b843561462e81613f17565b9350602085013561463e816141fd565b925060408501356001600160401b0381111561465957600080fd5b6143bb87828801614567565b6001600160c01b03198116811461193857600080fd5b8035613f3781614665565b60006040828403121561469857600080fd5b6146a0613f52565b905081356146ad81613f17565b815260208201356001600160401b038111156146c857600080fd5b6146d484828501614218565b60208301525092915050565b600080604083850312156146f357600080fd5b82356146fe81614665565b915060208301356001600160401b0381111561471957600080fd5b61472585828601614686565b9150509250929050565b63ffffffff8116811461193857600080fd5b8035613f378161472f565b6000610120828403121561475f57600080fd5b614767613fbf565b905081356001600160401b038082111561478057600080fd5b61478c85838601614218565b83526020840135602084015260408401356040840152606084013560608401526147b860808501614741565b60808401526147c960a08501614741565b60a08401526147da60c08501614085565b60c08401526147eb60e08501614085565b60e08401526101009150818401358181111561480657600080fd5b61481286828701614218565b8385015250505092915050565b6000806040838503121561483257600080fd5b823561483d81614665565b915060208301356001600160401b0381111561485857600080fd5b6147258582860161474c565b60008060006060848603121561487957600080fd5b833561488481613f17565b9250614892602085016141ea565b9150604084013561418981614139565b6020815260006128016020830184614418565b600061014082840312156148c857600080fd5b6148d0613fbf565b90506148db82613f2c565b81526148ea8360208401614047565b602082015260608201356001600160401b0381111561490857600080fd5b61491484828501614218565b60408301525061492660808301613f2c565b606082015261493760a08301613f2c565b608082015261494860c08301613f2c565b60a082015261495960e083016142b7565b60c082015261010061496c8184016142b7565b60e083015261497e61012084016142b7565b9082015292915050565b60008060006060848603121561499d57600080fd5b83356149a881613f17565b925060208401356001600160401b038111156149c357600080fd5b6149cf868287016148b5565b925050604084013561418981614139565b6000806000606084860312156149f557600080fd5b8335614a0081614665565b925060208401356001600160401b03811115614a1b57600080fd5b6149cf8682870161474c565b60006102008284031215614a3a57600080fd5b614a42613fe2565b9050614a4d82613f2c565b8152614a5b60208301613f2c565b6020820152614a6c6040830161467b565b6040820152614a7d6060830161467b565b60608201526080820135608082015260a082013560a082015260c082013560c0820152614aac60e083016142b7565b60e0820152610100808301356001600160401b0380821115614acd57600080fd5b614ad986838701614218565b83850152610120925082850135915080821115614af557600080fd5b50614b0285828601614218565b828401525050610140614b1681840161420d565b90820152610160614b2883820161420d565b90820152610180614b3a838201613f2c565b908201526101a0614b4c8382016142b7565b908201526101c0614b5e8382016142b7565b908201526101e061497e8382016142b7565b600080600060608486031215614b8557600080fd5b8335614b9081613f17565b925060208401356001600160401b03811115614bab57600080fd5b6149cf86828701614a27565b600060e08284031215614bc957600080fd5b614bd1614005565b9050614bdc82613f2c565b815260208201356001600160401b0380821115614bf857600080fd5b614c0485838601614218565b602084015260408401356040840152614c1f60608501614741565b6060840152614c3060808501614741565b6080840152614c4160a085016142b7565b60a084015260c0840135915080821115614c5a57600080fd5b50614c6784828501614218565b60c08301525092915050565b600080600060608486031215614c8857600080fd5b8335614c9381614665565b925060208401356001600160401b03811115614cae57600080fd5b6149cf86828701614bb7565b60008060408385031215614ccd57600080fd5b82356141cf81614665565b600080600060608486031215614ced57600080fd5b8335614cf881613f17565b9250614d06602085016141ea565b915060408401356001600160401b03811115614d2157600080fd5b614d2d868287016142c2565b9150509250925092565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152614d93602082018351614d37565b6000602083015160c0808401526144c760e0840182614418565b60008060408385031215614dc057600080fd5b8235614dcb81613f17565b915060208301356001600160401b03811115614de657600080fd5b614725858286016148b5565b60006101008284031215614e0557600080fd5b614e0d613f9d565b90508135614e1a81613f17565b81526020820135614e2a81614027565b6020820152614e3c8360408401614047565b6040820152614e4e8360808401614047565b606082015260c0820135614e6181614027565b608082015260e0919091013560a0820152919050565b6000806101208385031215614e8b57600080fd5b8235614e9681613f17565b9150614ea58460208501614df2565b90509250929050565b600080600060608486031215614ec357600080fd5b8335614ece81613f17565b92506020840135614ede816141fd565b915060408401356001600160401b03811115614ef957600080fd5b614d2d86828701614567565b60008060408385031215614f1857600080fd5b8235614f2381613f17565b915060208301356001600160401b03811115614f3e57600080fd5b61472585828601614a27565b600060e08284031215614f5c57600080fd5b614f64614005565b905081356001600160401b0380821115614f7d57600080fd5b614f8985838601614218565b8352614f976020850161403c565b6020840152614fa86040850161403c565b6040840152614fb96060850161403c565b6060840152614fca60808501613f2c565b6080840152614c4160a08501613f2c565b600080600060608486031215614ff057600080fd5b8335614ffb81613f17565b925060208401356001600160401b0381111561501657600080fd5b6149cf86828701614f4a565b60a081016114048284614d37565b600060a0828403121561504257600080fd5b60405160a081016001600160401b03828210818311171561506557615065613f3c565b816040528293508435915061507982614665565b90825260208401359061508b82614077565b81602084015260408501359150808211156150a557600080fd5b506150b285828601614218565b60408301525060608301356060820152608083013560808201525092915050565b600080604083850312156150e657600080fd5b82356150f181613f17565b915060208301356001600160401b0381111561510c57600080fd5b61472585828601615030565b60008060006060848603121561512d57600080fd5b833561513881614665565b925060208401356001600160401b0381111561515357600080fd5b6149cf86828701614686565b60008060006060848603121561517457600080fd5b833561517f81614139565b9250602084013561489281614139565b6000806000606084860312156151a457600080fd5b83356151af81613f17565b92506020840135614892816141fd565b600080604083850312156151d257600080fd5b82356151dd81614027565b946020939093013593505050565b60008060006060848603121561520057600080fd5b833561520b81614027565b9250602084013561521b81614027565b9150604084013561418981614027565b6000806040838503121561523e57600080fd5b823561524981614665565b915060208301356001600160401b0381111561526457600080fd5b61472585828601614bb7565b6000806040838503121561528357600080fd5b823561528e81613f17565b915060208301356001600160401b038111156152a957600080fd5b61472585828601614f4a565b6000806000606084860312156152ca57600080fd5b83356152d581614027565b925060208401356152e581614027565b929592945050506040919091013590565b60ff198116811461193857600080fd5b6000806040838503121561531957600080fd5b823561532481614139565b915060208301356141df816152f6565b6000806000610140848603121561534a57600080fd5b833561535581613f17565b92506153648560208601614df2565b915061012084013561418981614139565b6000806040838503121561538857600080fd5b823561539381614027565b915060208301356141df81614027565b6000806000606084860312156153b857600080fd5b83356153c381613f17565b925060208401356001600160401b038111156153de57600080fd5b6149cf86828701615030565b60008061016083850312156153fe57600080fd5b823561540981613f17565b9150614ea58460208501614090565b81516001600160a01b039081168252602080840151909116908201526040808301516001600160601b031690820152606080830151610140830191615467908401826001600160601b03169052565b506080830151615484608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301518015156101008401525060e08301516001600160a01b0381166101208401525092915050565b6020815261ffff82511660208201526001600160601b036020830151166040820152600060408301516080606084015261550460a0840182614418565b905064ffffffffff60608501511660808401528091505092915050565b60006020828403121561553357600080fd5b815161280181614027565b600181811c9082168061555257607f821691505b60208210810361557257634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561558a57600080fd5b815161280181614077565b6000602082840312156155a757600080fd5b815161280181613f17565b601f821115610ba457600081815260208120601f850160051c810160208610156155d95750805b601f850160051c820191505b81811015612acc578281556001016155e5565b81516001600160401b0381111561561157615611613f3c565b6156258161561f845461553e565b846155b2565b602080601f83116001811461565a57600084156156425750858301515b600019600386901b1c1916600185901b178555612acc565b600085815260208120601f198616915b828110156156895788860151825594840194600190910190840161566a565b50858210156156a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260ff6060840151166080830152608083015160c060a084015261570e60e0840182614418565b905064ffffffffff60a08501511660c08401528091505092915050565b6001600160c01b031991909116815260200190565b60006020828403121561575257600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526144c76060840182614418565b60208152600082516101208060208501526157a6610140850183614418565b915060208501516040850152604085015160608501526060850151608085015260808501516157dd60a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e08501516101006158138187018315159052565b860151858403601f190183870152905061582d8382614418565b9695505050505050565b602081526158516020820183516001600160601b03169052565b6000602083015161586f604084018280518252602090810151910152565b50604083015161014080608085015261588c610160850183614418565b915060608501516158a860a08601826001600160601b03169052565b5060808501516001600160601b03811660c08601525060a08501516001600160601b03811660e08601525060c08501516101006158ed8187018364ffffffffff169052565b60e087015164ffffffffff811661012088015291505b9095015164ffffffffff1693019290925250919050565b602081526159346020820183516001600160601b03169052565b6000602083015161595060408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101006159b58185018364ffffffffff169052565b8085015191505061020061012081818601526159d5610220860184614418565b9250808601519050610140601f1986850301818701526159f58483614418565b935080870151915050610160615a108187018361ffff169052565b8601519050610180615a278682018361ffff169052565b86015190506101a0615a43868201836001600160601b03169052565b86015190506101c0615a5d8682018364ffffffffff169052565b86015190506101e06159038682018364ffffffffff169052565b602081526001600160601b0382511660208201526000602083015160e06040840152615aa7610100840182614418565b90506040840151606084015263ffffffff60608501511660808401526080840151615ada60a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525b5060c0840151838203601f190160e0850152615b0a8282614418565b95945050505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015261010083019190606085015180516080860152602081015160a0860152915060808501511660c08401525060a09092015160e09091015290565b602081526000825160e06020840152615ba4610100840182614418565b9050602084015160018060a01b03808216604086015280604087015116606086015280606087015116608086015250506080840151615bee60a08501826001600160601b03169052565b5060a08401516001600160601b03811660c0850152615aee565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152615c4660c0840182614418565b905060608401516080840152608084015160a08401528091505092915050565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615c8e57600080fd5b815161280181614139565b60008085851115615ca957600080fd5b83861115615cb657600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015615ceb5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215615d4557600080fd5b81516001600160401b038116811461280157600080fd5b60008251615d6e8184602087016143f4565b9190910192915050565b60008060408385031215615d8b57600080fd5b8251615d9681614077565b60208401519092506141df8161472f565b600060208284031215615db957600080fd5b8151612801816152f6565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e0019056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b81de7d7246faacc32389bc30dd6cc11c1c2772fb54d8155f6574ae8762d1ffe64736f6c63430008140033",
         | 
| 2904 | 
            -
              "linkReferences": {
         | 
| 2905 | 
            -
                "contracts/types/ClaimId.sol": {
         | 
| 2906 | 
            -
                  "ClaimIdLib": [
         | 
| 2907 | 
            -
                    {
         | 
| 2908 | 
            -
                      "length": 20,
         | 
| 2909 | 
            -
                      "start": 11288
         | 
| 2910 | 
            -
                    }
         | 
| 2911 | 
            -
                  ]
         | 
| 2912 854 | 
             
                },
         | 
| 2913 | 
            -
                 | 
| 2914 | 
            -
                  " | 
| 2915 | 
            -
                    {
         | 
| 2916 | 
            -
                      "length": 20,
         | 
| 2917 | 
            -
                      "start": 4790
         | 
| 2918 | 
            -
                    },
         | 
| 2919 | 
            -
                    {
         | 
| 2920 | 
            -
                      "length": 20,
         | 
| 2921 | 
            -
                      "start": 5892
         | 
| 2922 | 
            -
                    },
         | 
| 855 | 
            +
                {
         | 
| 856 | 
            +
                  "inputs": [
         | 
| 2923 857 | 
             
                    {
         | 
| 2924 | 
            -
                      " | 
| 2925 | 
            -
                      " | 
| 858 | 
            +
                      "internalType": "bytes4",
         | 
| 859 | 
            +
                      "name": "interfaceId",
         | 
| 860 | 
            +
                      "type": "bytes4"
         | 
| 2926 861 | 
             
                    }
         | 
| 2927 | 
            -
                  ]
         | 
| 2928 | 
            -
             | 
| 2929 | 
            -
             | 
| 2930 | 
            -
                  "Key32Lib": [
         | 
| 2931 | 
            -
                    {
         | 
| 2932 | 
            -
                      "length": 20,
         | 
| 2933 | 
            -
                      "start": 10179
         | 
| 2934 | 
            -
                    },
         | 
| 2935 | 
            -
                    {
         | 
| 2936 | 
            -
                      "length": 20,
         | 
| 2937 | 
            -
                      "start": 13621
         | 
| 2938 | 
            -
                    },
         | 
| 2939 | 
            -
                    {
         | 
| 2940 | 
            -
                      "length": 20,
         | 
| 2941 | 
            -
                      "start": 13737
         | 
| 2942 | 
            -
                    },
         | 
| 2943 | 
            -
                    {
         | 
| 2944 | 
            -
                      "length": 20,
         | 
| 2945 | 
            -
                      "start": 13919
         | 
| 2946 | 
            -
                    },
         | 
| 2947 | 
            -
                    {
         | 
| 2948 | 
            -
                      "length": 20,
         | 
| 2949 | 
            -
                      "start": 14035
         | 
| 2950 | 
            -
                    },
         | 
| 2951 | 
            -
                    {
         | 
| 2952 | 
            -
                      "length": 20,
         | 
| 2953 | 
            -
                      "start": 14801
         | 
| 2954 | 
            -
                    },
         | 
| 2955 | 
            -
                    {
         | 
| 2956 | 
            -
                      "length": 20,
         | 
| 2957 | 
            -
                      "start": 14917
         | 
| 2958 | 
            -
                    },
         | 
| 2959 | 
            -
                    {
         | 
| 2960 | 
            -
                      "length": 20,
         | 
| 2961 | 
            -
                      "start": 15076
         | 
| 2962 | 
            -
                    },
         | 
| 2963 | 
            -
                    {
         | 
| 2964 | 
            -
                      "length": 20,
         | 
| 2965 | 
            -
                      "start": 15829
         | 
| 2966 | 
            -
                    },
         | 
| 862 | 
            +
                  ],
         | 
| 863 | 
            +
                  "name": "supportsInterface",
         | 
| 864 | 
            +
                  "outputs": [
         | 
| 2967 865 | 
             
                    {
         | 
| 2968 | 
            -
                      " | 
| 2969 | 
            -
                      " | 
| 866 | 
            +
                      "internalType": "bool",
         | 
| 867 | 
            +
                      "name": "",
         | 
| 868 | 
            +
                      "type": "bool"
         | 
| 2970 869 | 
             
                    }
         | 
| 2971 | 
            -
                  ]
         | 
| 2972 | 
            -
             | 
| 870 | 
            +
                  ],
         | 
| 871 | 
            +
                  "stateMutability": "view",
         | 
| 872 | 
            +
                  "type": "function"
         | 
| 873 | 
            +
                }
         | 
| 874 | 
            +
              ],
         | 
| 875 | 
            +
              "bytecode": "0x608060405234801561001057600080fd5b5061288f806100206000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80637a9e5e4b1161013b578063ca600b1c116100b8578063e5f6cd271161007c578063e5f6cd2714610530578063e7f7fb8614610541578063f7bc431c14610554578063f7c34ee014610567578063fed3d63f1461057a57600080fd5b8063ca600b1c146104c2578063cde749f4146104ca578063d2192dbf146104e4578063d4cda0d814610517578063e1033e7d1461052857600080fd5b8063b428b0b0116100ff578063b428b0b01461046e578063b7d2b16214610481578063bb1e0e5914610494578063bf7e214f146104a7578063c0c53b8b146104af57600080fd5b80637a9e5e4b1461040a578063868923131461041d578063893d20e8146104305780638fb3603714610438578063ada9652e1461045957600080fd5b806329db8c3d116101c95780635fa8aad41161018d5780635fa8aad4146103a357806361f5f420146103b6578063644c45e0146103c7578063675393bf146103ef5780636b9bf08b1461040257600080fd5b806329db8c3d1461035c57806336fc697e1461036f578063422c9d00146103775780634288121d1461038a5780635ab1bd531461039257600080fd5b80631eff4b22116102105780631eff4b22146102e6578063214cdb801461031b5780632449aea81461032e5780632781d4431461034157806327bb7a331461034957600080fd5b806301ffc9a71461024d57806302cd30711461028f5780630f749a89146102b45780630fec111c146102c9578063138461e0146102de575b600080fd5b61027a61025b366004611ead565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6003546001600160a01b03165b6040516001600160a01b039091168152602001610286565b6102c76102c2366004611ee4565b610582565b005b6102d161069d565b6040516102869190611f51565b6102c76107f0565b61030d7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610286565b6102c7610329366004611ead565b6109f2565b6102c761033c366004611ee4565b610a1f565b61030d600381565b6102c7610357366004612099565b610b31565b6102c761036a366004612185565b610bd6565b6102c7610c43565b6102c7610385366004611ee4565b610c89565b61029c610e33565b6001546001600160a01b031661029c565b6102c76103b136600461222f565b610ec6565b6004546001600160a01b031661029c565b60008051602061281a833981519152546040516001600160601b039091168152602001610286565b6102c76103fd366004611ee4565b610f37565b61029c611045565b6102c7610418366004611ee4565b61106e565b6102c761042b36600461227e565b6110f1565b61029c611134565b61044061126b565b6040516001600160e01b03199091168152602001610286565b61030d60008051602061281a83398151915281565b6102c761047c3660046122b7565b6112a3565b6102c761048f3660046122b7565b611326565b6102c76104a23660046122e5565b611361565b61029c611504565b6102c76104bd366004612311565b611520565b61029c6116ec565b6104d2611715565b60405160ff9091168152602001610286565b6104f76104f236600461235c565b61178c565b604080516001600160401b03938416815292909116602083015201610286565b6005546001600160a01b031661029c565b61029c611817565b6002546001600160a01b031661029c565b6102c761054f3660046123b5565b611840565b6102c7610562366004611ee4565b6119e0565b6102c76105753660046123f6565b611aa0565b61029c611b17565b61058f335b600036611b40565b6002546001600160a01b0316156105cd5760025460405163e02ca03360e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b6105d5611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561061c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106409190612414565b6001600160a01b03161461067b57610656611504565b6040516374150f9560e11b81526001600160a01b0390911660048201526024016105c4565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161074c611134565b6001600160a01b0316815260200182600101805461076990612431565b80601f016020809104026020016040519081016040528092919081815260200182805461079590612431565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b505050505081525091505090565b600060008051602061281a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561085f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610883919061246b565b156108af5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016105c4565b306108c26001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e919061246b565b6109565760405163b9304b0d60e01b81526001600160a01b03821660048201526024016105c4565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156109aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ce9190612488565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109fa611c3e565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610a2833610587565b6005546001600160a01b031615610a6157600554604051632e67e2ab60e21b81526001600160a01b0390911660048201526024016105c4565b610a69611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad49190612414565b6001600160a01b031614610b0f57610aea611504565b6040516348263eef60e01b81526001600160a01b0390911660048201526024016105c4565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610b39611c3e565b610b438287611aa0565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610bcc83826124eb565b5050505050505050565b610bdf33610587565b6002546040516329db8c3d60e01b81526001600160a01b03909116906329db8c3d90610c159087908790879087906004016125aa565b600060405180830381600087803b158015610c2f57600080fd5b505af1158015610bcc573d6000803e3d6000fd5b610c4b611c3e565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610c9233610587565b6004546001600160a01b031615610cce576004805460405163384c2dbd60e11b81526001600160a01b03909116918101919091526024016105c4565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190612414565b6001600160a01b031614610d635760405163decb98c560e01b81523060048201526024016105c4565b610d6b611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190612414565b6001600160a01b031614610e1157610dec611504565b604051630312205960e41b81526001600160a01b0390911660048201526024016105c4565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e476001546001600160a01b031690565b6001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff909116600482015260036024820152604401602060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190612414565b905090565b610ecf33610587565b6002546040516317ea2ab560e21b81526001600160a01b0390911690635fa8aad490610f01908590859060040161261f565b600060405180830381600087803b158015610f1b57600080fd5b505af1158015610f2f573d6000803e3d6000fd5b505050505050565b610f3f611c3e565b806001600160a01b03163b600003610f755760405163fdeac91f60e01b81526001600160a01b03821660048201526024016105c4565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610fef575060408051601f3d908101601f19168201909252610fec9181019061246b565b60015b6110175760405163fdeac91f60e01b81526001600160a01b03821660048201526024016105c4565b806110405760405163fdeac91f60e01b81526001600160a01b03831660048201526024016105c4565b505b50565b60006110596001546001600160a01b031690565b6001600160a01b031663d39e6043608c610e58565b33611077611504565b6001600160a01b0316816001600160a01b0316146110b25760405162d1953b60e31b81526001600160a01b03821660048201526024016105c4565b816001600160a01b03163b6000036110e8576040516361798f2f60e11b81526001600160a01b03831660048201526024016105c4565b61104082611c89565b6110fa33610587565b6002546040516308b6d1c760e21b81526001600160a01b0384811660048301528315156024830152909116906322db471c90604401610f01565b60008060008051602061281a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156111a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c8919061246b565b15611255576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190612414565b91505090565b54600160601b90046001600160a01b0316919050565b60008051602061283a833981519152805460009190600160a01b900460ff1661129557600061124f565b638fb3603760e01b91505090565b6112ac33610587565b600254604051630b428b0b60e41b81526001600160a01b039091169063b428b0b0906112de9085908590600401612643565b6020604051808303816000875af11580156112fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611321919061246b565b505050565b61132f33610587565b600254604051635be958b160e11b81526001600160a01b039091169063b7d2b162906112de9085908590600401612643565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce9190612414565b6001600160a01b0316336001600160a01b0316146113eb57600080fd5b6002546001600160a01b03166303014974611404611cea565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa158015611448573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146c9190612665565b156114795761147961267e565b6002546001600160a01b031663b428b0b0611492611cea565b846040518363ffffffff1660e01b81526004016114b0929190612643565b6020604051808303816000875af11580156114cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f3919061246b565b15156001146110405761104061267e565b60008051602061283a833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156115655750825b90506000826001600160401b031660011480156115815750303b155b90508115801561158f575080155b156115ad5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156115d757845460ff60401b1916600160401b1785555b6001600160a01b0388166115fe5760405163da1db49160e01b815260040160405180910390fd5b61160788611d62565b600087905061168c88826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190612488565b604660018b60405180602001604052806000815250610b31565b61169c63425ec80560e01b6109f2565b508315610bcc57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60006117006001546001600160a01b031690565b6001600160a01b031663d39e60436078610e58565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611768573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190612694565b60008061179833610587565b60025460405163d2192dbf60e01b81526001600160a01b039091169063d2192dbf906117ca90879087906004016126b1565b60408051808303816000875af11580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c91906126df565b909590945092505050565b600061182b6001546001600160a01b031690565b6001600160a01b031663d39e604360d3610e58565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ad9190612414565b6001600160a01b0316336001600160a01b0316146118ca57600080fd5b6002546001600160a01b031663b7d2b1626118e3611cea565b856040518363ffffffff1660e01b8152600401611901929190612643565b6020604051808303816000875af1158015611920573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611944919061246b565b15156001146119555761195561267e565b6002546001600160a01b031663b428b0b061196e611cea565b846040518363ffffffff1660e01b815260040161198c929190612643565b6020604051808303816000875af11580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf919061246b565b15156001146113215761132161267e565b6119e933610587565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a559190612414565b6001600160a01b031614611a7e576040516345789cf560e01b81523060048201526024016105c4565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b611aa8611c3e565b611ab181610f37565b611ab9610c43565b6001600160a01b038216611ae05760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061281a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000611b2b6001546001600160a01b031690565b6001600160a01b031663d39e604360dc610e58565b60008051602061283a833981519152600080611b7b611b5d611504565b8730611b6d600460008a8c61270e565b611b7691612738565b611d73565b9150915081610f2f5763ffffffff811615611c1b57825460ff60a01b1916600160a01b178355611ba9611504565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611bd893929190612768565b600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b5050845460ff60a01b1916855550610f2f9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016105c4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16611c8757604051631afcd79f60e31b815260040160405180910390fd5b565b60008051602061283a83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec191906127a8565b611d6a611c3e565b61104281611e7f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611de291906127c5565b600060405180830381855afa9150503d8060008114611e1d576040519150601f19603f3d011682016040523d82523d6000602084013e611e22565b606091505b50915091508115611e74576040815110611e545780806020019051810190611e4a91906127e1565b9094509250611e74565b6020815110611e745780806020019051810190611e71919061246b565b93505b505094509492505050565b611e87611c3e565b61104281611c89565b80356001600160e01b031981168114611ea857600080fd5b919050565b600060208284031215611ebf57600080fd5b611ec882611e90565b9392505050565b6001600160a01b038116811461104257600080fd5b600060208284031215611ef657600080fd5b8135611ec881611ecf565b60005b83811015611f1c578181015183820152602001611f04565b50506000910152565b60008151808452611f3d816020860160208601611f01565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151611fba60c08401826001600160a01b03169052565b5060c083015160e080840152611fd4610100840182611f25565b949350505050565b6001600160601b038116811461104257600080fd5b60ff8116811461104257600080fd5b801515811461104257600080fd5b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561203e5761203e61200e565b604051601f8501601f19908116603f011681019082821181831017156120665761206661200e565b8160405280935085815286868601111561207f57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060008060c087890312156120b257600080fd5b86356120bd81611ecf565b955060208701356120cd81611fdc565b945060408701356120dd81611ff1565b935060608701356120ed81612000565b925060808701356120fd81611ecf565b915060a08701356001600160401b0381111561211857600080fd5b8701601f8101891361212957600080fd5b61213889823560208401612024565b9150509295509295509295565b600082601f83011261215657600080fd5b611ec883833560208501612024565b6001600160401b038116811461104257600080fd5b8035611ea881612165565b6000806000806060858703121561219b57600080fd5b84356001600160401b03808211156121b257600080fd5b6121be88838901612145565b955060208701359150808211156121d457600080fd5b818701915087601f8301126121e857600080fd5b8135818111156121f757600080fd5b8860208260051b850101111561220c57600080fd5b6020830195508094505050506122246040860161217a565b905092959194509250565b6000806040838503121561224257600080fd5b823561224d81611ecf565b915060208301356001600160401b0381111561226857600080fd5b61227485828601612145565b9150509250929050565b6000806040838503121561229157600080fd5b823561229c81611ecf565b915060208301356122ac81612000565b809150509250929050565b600080604083850312156122ca57600080fd5b82356122d581612165565b915060208301356122ac81611ecf565b600080604083850312156122f857600080fd5b823561230381611ecf565b946020939093013593505050565b60008060006060848603121561232657600080fd5b833561233181611ecf565b9250602084013561234181611ecf565b9150604084013561235181611ecf565b809150509250925092565b6000806040838503121561236f57600080fd5b82356001600160401b038082111561238657600080fd5b61239286838701612145565b935060208501359150808211156123a857600080fd5b5061227485828601612145565b6000806000606084860312156123ca57600080fd5b83356123d581611ecf565b925060208401356123e581611ecf565b929592945050506040919091013590565b6000806040838503121561240957600080fd5b82356122d581611ecf565b60006020828403121561242657600080fd5b8151611ec881611ecf565b600181811c9082168061244557607f821691505b60208210810361246557634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561247d57600080fd5b8151611ec881612000565b60006020828403121561249a57600080fd5b8151611ec881611fdc565b601f82111561132157600081815260208120601f850160051c810160208610156124cc5750805b601f850160051c820191505b81811015610f2f578281556001016124d8565b81516001600160401b038111156125045761250461200e565b612518816125128454612431565b846124a5565b602080601f83116001811461254d57600084156125355750858301515b600019600386901b1c1916600185901b178555610f2f565b600085815260208120601f198616915b8281101561257c5788860151825594840194600190910190840161255d565b508582101561259a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6060815260006125bd6060830187611f25565b8281036020848101919091528582528691810160005b87811015612600576001600160e01b03196125ed85611e90565b16825292820192908201906001016125d3565b508093505050506001600160401b038316604083015295945050505050565b6001600160a01b0383168152604060208201819052600090611fd490830184611f25565b6001600160401b039290921682526001600160a01b0316602082015260400190565b60006020828403121561267757600080fd5b5051919050565b634e487b7160e01b600052600160045260246000fd5b6000602082840312156126a657600080fd5b8151611ec881611ff1565b6040815260006126c46040830185611f25565b82810360208401526126d68185611f25565b95945050505050565b600080604083850312156126f257600080fd5b82516126fd81612165565b60208401519092506122ac81612165565b6000808585111561271e57600080fd5b8386111561272b57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156127605780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000602082840312156127ba57600080fd5b8151611ec881612165565b600082516127d7818460208701611f01565b9190910192915050565b600080604083850312156127f457600080fd5b82516127ff81612000565b602084015190925063ffffffff811681146122ac57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220fe32f01f3c03d1bcc7464ac793ecc40685d7317ef9d1111a8c9974b89ee3818264736f6c63430008140033",
         | 
| 876 | 
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102485760003560e01c80637a9e5e4b1161013b578063ca600b1c116100b8578063e5f6cd271161007c578063e5f6cd2714610530578063e7f7fb8614610541578063f7bc431c14610554578063f7c34ee014610567578063fed3d63f1461057a57600080fd5b8063ca600b1c146104c2578063cde749f4146104ca578063d2192dbf146104e4578063d4cda0d814610517578063e1033e7d1461052857600080fd5b8063b428b0b0116100ff578063b428b0b01461046e578063b7d2b16214610481578063bb1e0e5914610494578063bf7e214f146104a7578063c0c53b8b146104af57600080fd5b80637a9e5e4b1461040a578063868923131461041d578063893d20e8146104305780638fb3603714610438578063ada9652e1461045957600080fd5b806329db8c3d116101c95780635fa8aad41161018d5780635fa8aad4146103a357806361f5f420146103b6578063644c45e0146103c7578063675393bf146103ef5780636b9bf08b1461040257600080fd5b806329db8c3d1461035c57806336fc697e1461036f578063422c9d00146103775780634288121d1461038a5780635ab1bd531461039257600080fd5b80631eff4b22116102105780631eff4b22146102e6578063214cdb801461031b5780632449aea81461032e5780632781d4431461034157806327bb7a331461034957600080fd5b806301ffc9a71461024d57806302cd30711461028f5780630f749a89146102b45780630fec111c146102c9578063138461e0146102de575b600080fd5b61027a61025b366004611ead565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6003546001600160a01b03165b6040516001600160a01b039091168152602001610286565b6102c76102c2366004611ee4565b610582565b005b6102d161069d565b6040516102869190611f51565b6102c76107f0565b61030d7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610286565b6102c7610329366004611ead565b6109f2565b6102c761033c366004611ee4565b610a1f565b61030d600381565b6102c7610357366004612099565b610b31565b6102c761036a366004612185565b610bd6565b6102c7610c43565b6102c7610385366004611ee4565b610c89565b61029c610e33565b6001546001600160a01b031661029c565b6102c76103b136600461222f565b610ec6565b6004546001600160a01b031661029c565b60008051602061281a833981519152546040516001600160601b039091168152602001610286565b6102c76103fd366004611ee4565b610f37565b61029c611045565b6102c7610418366004611ee4565b61106e565b6102c761042b36600461227e565b6110f1565b61029c611134565b61044061126b565b6040516001600160e01b03199091168152602001610286565b61030d60008051602061281a83398151915281565b6102c761047c3660046122b7565b6112a3565b6102c761048f3660046122b7565b611326565b6102c76104a23660046122e5565b611361565b61029c611504565b6102c76104bd366004612311565b611520565b61029c6116ec565b6104d2611715565b60405160ff9091168152602001610286565b6104f76104f236600461235c565b61178c565b604080516001600160401b03938416815292909116602083015201610286565b6005546001600160a01b031661029c565b61029c611817565b6002546001600160a01b031661029c565b6102c761054f3660046123b5565b611840565b6102c7610562366004611ee4565b6119e0565b6102c76105753660046123f6565b611aa0565b61029c611b17565b61058f335b600036611b40565b6002546001600160a01b0316156105cd5760025460405163e02ca03360e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b6105d5611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561061c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106409190612414565b6001600160a01b03161461067b57610656611504565b6040516374150f9560e11b81526001600160a01b0390911660048201526024016105c4565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161074c611134565b6001600160a01b0316815260200182600101805461076990612431565b80601f016020809104026020016040519081016040528092919081815260200182805461079590612431565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b505050505081525091505090565b600060008051602061281a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561085f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610883919061246b565b156108af5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016105c4565b306108c26001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e919061246b565b6109565760405163b9304b0d60e01b81526001600160a01b03821660048201526024016105c4565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156109aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ce9190612488565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109fa611c3e565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610a2833610587565b6005546001600160a01b031615610a6157600554604051632e67e2ab60e21b81526001600160a01b0390911660048201526024016105c4565b610a69611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad49190612414565b6001600160a01b031614610b0f57610aea611504565b6040516348263eef60e01b81526001600160a01b0390911660048201526024016105c4565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610b39611c3e565b610b438287611aa0565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610bcc83826124eb565b5050505050505050565b610bdf33610587565b6002546040516329db8c3d60e01b81526001600160a01b03909116906329db8c3d90610c159087908790879087906004016125aa565b600060405180830381600087803b158015610c2f57600080fd5b505af1158015610bcc573d6000803e3d6000fd5b610c4b611c3e565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610c9233610587565b6004546001600160a01b031615610cce576004805460405163384c2dbd60e11b81526001600160a01b03909116918101919091526024016105c4565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190612414565b6001600160a01b031614610d635760405163decb98c560e01b81523060048201526024016105c4565b610d6b611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190612414565b6001600160a01b031614610e1157610dec611504565b604051630312205960e41b81526001600160a01b0390911660048201526024016105c4565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e476001546001600160a01b031690565b6001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff909116600482015260036024820152604401602060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190612414565b905090565b610ecf33610587565b6002546040516317ea2ab560e21b81526001600160a01b0390911690635fa8aad490610f01908590859060040161261f565b600060405180830381600087803b158015610f1b57600080fd5b505af1158015610f2f573d6000803e3d6000fd5b505050505050565b610f3f611c3e565b806001600160a01b03163b600003610f755760405163fdeac91f60e01b81526001600160a01b03821660048201526024016105c4565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610fef575060408051601f3d908101601f19168201909252610fec9181019061246b565b60015b6110175760405163fdeac91f60e01b81526001600160a01b03821660048201526024016105c4565b806110405760405163fdeac91f60e01b81526001600160a01b03831660048201526024016105c4565b505b50565b60006110596001546001600160a01b031690565b6001600160a01b031663d39e6043608c610e58565b33611077611504565b6001600160a01b0316816001600160a01b0316146110b25760405162d1953b60e31b81526001600160a01b03821660048201526024016105c4565b816001600160a01b03163b6000036110e8576040516361798f2f60e11b81526001600160a01b03831660048201526024016105c4565b61104082611c89565b6110fa33610587565b6002546040516308b6d1c760e21b81526001600160a01b0384811660048301528315156024830152909116906322db471c90604401610f01565b60008060008051602061281a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156111a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c8919061246b565b15611255576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190612414565b91505090565b54600160601b90046001600160a01b0316919050565b60008051602061283a833981519152805460009190600160a01b900460ff1661129557600061124f565b638fb3603760e01b91505090565b6112ac33610587565b600254604051630b428b0b60e41b81526001600160a01b039091169063b428b0b0906112de9085908590600401612643565b6020604051808303816000875af11580156112fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611321919061246b565b505050565b61132f33610587565b600254604051635be958b160e11b81526001600160a01b039091169063b7d2b162906112de9085908590600401612643565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce9190612414565b6001600160a01b0316336001600160a01b0316146113eb57600080fd5b6002546001600160a01b03166303014974611404611cea565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa158015611448573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146c9190612665565b156114795761147961267e565b6002546001600160a01b031663b428b0b0611492611cea565b846040518363ffffffff1660e01b81526004016114b0929190612643565b6020604051808303816000875af11580156114cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f3919061246b565b15156001146110405761104061267e565b60008051602061283a833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156115655750825b90506000826001600160401b031660011480156115815750303b155b90508115801561158f575080155b156115ad5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156115d757845460ff60401b1916600160401b1785555b6001600160a01b0388166115fe5760405163da1db49160e01b815260040160405180910390fd5b61160788611d62565b600087905061168c88826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190612488565b604660018b60405180602001604052806000815250610b31565b61169c63425ec80560e01b6109f2565b508315610bcc57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60006117006001546001600160a01b031690565b6001600160a01b031663d39e60436078610e58565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611768573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190612694565b60008061179833610587565b60025460405163d2192dbf60e01b81526001600160a01b039091169063d2192dbf906117ca90879087906004016126b1565b60408051808303816000875af11580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c91906126df565b909590945092505050565b600061182b6001546001600160a01b031690565b6001600160a01b031663d39e604360d3610e58565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ad9190612414565b6001600160a01b0316336001600160a01b0316146118ca57600080fd5b6002546001600160a01b031663b7d2b1626118e3611cea565b856040518363ffffffff1660e01b8152600401611901929190612643565b6020604051808303816000875af1158015611920573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611944919061246b565b15156001146119555761195561267e565b6002546001600160a01b031663b428b0b061196e611cea565b846040518363ffffffff1660e01b815260040161198c929190612643565b6020604051808303816000875af11580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf919061246b565b15156001146113215761132161267e565b6119e933610587565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a559190612414565b6001600160a01b031614611a7e576040516345789cf560e01b81523060048201526024016105c4565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b611aa8611c3e565b611ab181610f37565b611ab9610c43565b6001600160a01b038216611ae05760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061281a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000611b2b6001546001600160a01b031690565b6001600160a01b031663d39e604360dc610e58565b60008051602061283a833981519152600080611b7b611b5d611504565b8730611b6d600460008a8c61270e565b611b7691612738565b611d73565b9150915081610f2f5763ffffffff811615611c1b57825460ff60a01b1916600160a01b178355611ba9611504565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611bd893929190612768565b600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b5050845460ff60a01b1916855550610f2f9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016105c4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16611c8757604051631afcd79f60e31b815260040160405180910390fd5b565b60008051602061283a83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec191906127a8565b611d6a611c3e565b61104281611e7f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611de291906127c5565b600060405180830381855afa9150503d8060008114611e1d576040519150601f19603f3d011682016040523d82523d6000602084013e611e22565b606091505b50915091508115611e74576040815110611e545780806020019051810190611e4a91906127e1565b9094509250611e74565b6020815110611e745780806020019051810190611e71919061246b565b93505b505094509492505050565b611e87611c3e565b61104281611c89565b80356001600160e01b031981168114611ea857600080fd5b919050565b600060208284031215611ebf57600080fd5b611ec882611e90565b9392505050565b6001600160a01b038116811461104257600080fd5b600060208284031215611ef657600080fd5b8135611ec881611ecf565b60005b83811015611f1c578181015183820152602001611f04565b50506000910152565b60008151808452611f3d816020860160208601611f01565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151611fba60c08401826001600160a01b03169052565b5060c083015160e080840152611fd4610100840182611f25565b949350505050565b6001600160601b038116811461104257600080fd5b60ff8116811461104257600080fd5b801515811461104257600080fd5b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561203e5761203e61200e565b604051601f8501601f19908116603f011681019082821181831017156120665761206661200e565b8160405280935085815286868601111561207f57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060008060c087890312156120b257600080fd5b86356120bd81611ecf565b955060208701356120cd81611fdc565b945060408701356120dd81611ff1565b935060608701356120ed81612000565b925060808701356120fd81611ecf565b915060a08701356001600160401b0381111561211857600080fd5b8701601f8101891361212957600080fd5b61213889823560208401612024565b9150509295509295509295565b600082601f83011261215657600080fd5b611ec883833560208501612024565b6001600160401b038116811461104257600080fd5b8035611ea881612165565b6000806000806060858703121561219b57600080fd5b84356001600160401b03808211156121b257600080fd5b6121be88838901612145565b955060208701359150808211156121d457600080fd5b818701915087601f8301126121e857600080fd5b8135818111156121f757600080fd5b8860208260051b850101111561220c57600080fd5b6020830195508094505050506122246040860161217a565b905092959194509250565b6000806040838503121561224257600080fd5b823561224d81611ecf565b915060208301356001600160401b0381111561226857600080fd5b61227485828601612145565b9150509250929050565b6000806040838503121561229157600080fd5b823561229c81611ecf565b915060208301356122ac81612000565b809150509250929050565b600080604083850312156122ca57600080fd5b82356122d581612165565b915060208301356122ac81611ecf565b600080604083850312156122f857600080fd5b823561230381611ecf565b946020939093013593505050565b60008060006060848603121561232657600080fd5b833561233181611ecf565b9250602084013561234181611ecf565b9150604084013561235181611ecf565b809150509250925092565b6000806040838503121561236f57600080fd5b82356001600160401b038082111561238657600080fd5b61239286838701612145565b935060208501359150808211156123a857600080fd5b5061227485828601612145565b6000806000606084860312156123ca57600080fd5b83356123d581611ecf565b925060208401356123e581611ecf565b929592945050506040919091013590565b6000806040838503121561240957600080fd5b82356122d581611ecf565b60006020828403121561242657600080fd5b8151611ec881611ecf565b600181811c9082168061244557607f821691505b60208210810361246557634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561247d57600080fd5b8151611ec881612000565b60006020828403121561249a57600080fd5b8151611ec881611fdc565b601f82111561132157600081815260208120601f850160051c810160208610156124cc5750805b601f850160051c820191505b81811015610f2f578281556001016124d8565b81516001600160401b038111156125045761250461200e565b612518816125128454612431565b846124a5565b602080601f83116001811461254d57600084156125355750858301515b600019600386901b1c1916600185901b178555610f2f565b600085815260208120601f198616915b8281101561257c5788860151825594840194600190910190840161255d565b508582101561259a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6060815260006125bd6060830187611f25565b8281036020848101919091528582528691810160005b87811015612600576001600160e01b03196125ed85611e90565b16825292820192908201906001016125d3565b508093505050506001600160401b038316604083015295945050505050565b6001600160a01b0383168152604060208201819052600090611fd490830184611f25565b6001600160401b039290921682526001600160a01b0316602082015260400190565b60006020828403121561267757600080fd5b5051919050565b634e487b7160e01b600052600160045260246000fd5b6000602082840312156126a657600080fd5b8151611ec881611ff1565b6040815260006126c46040830185611f25565b82810360208401526126d68185611f25565b95945050505050565b600080604083850312156126f257600080fd5b82516126fd81612165565b60208401519092506122ac81612165565b6000808585111561271e57600080fd5b8386111561272b57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156127605780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000602082840312156127ba57600080fd5b8151611ec881612165565b600082516127d7818460208701611f01565b9190910192915050565b600080604083850312156127f457600080fd5b82516127ff81612000565b602084015190925063ffffffff811681146122ac57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220fe32f01f3c03d1bcc7464ac793ecc40685d7317ef9d1111a8c9974b89ee3818264736f6c63430008140033",
         | 
| 877 | 
            +
              "linkReferences": {
         | 
| 2973 878 | 
             
                "contracts/types/NftId.sol": {
         | 
| 2974 879 | 
             
                  "NftIdLib": [
         | 
| 2975 880 | 
             
                    {
         | 
| 2976 881 | 
             
                      "length": 20,
         | 
| 2977 | 
            -
                      "start":  | 
| 2978 | 
            -
                    },
         | 
| 2979 | 
            -
                    {
         | 
| 2980 | 
            -
                      "length": 20,
         | 
| 2981 | 
            -
                      "start": 6859
         | 
| 2982 | 
            -
                    },
         | 
| 2983 | 
            -
                    {
         | 
| 2984 | 
            -
                      "length": 20,
         | 
| 2985 | 
            -
                      "start": 11039
         | 
| 2986 | 
            -
                    }
         | 
| 2987 | 
            -
                  ]
         | 
| 2988 | 
            -
                },
         | 
| 2989 | 
            -
                "contracts/types/ObjectType.sol": {
         | 
| 2990 | 
            -
                  "ObjectTypeLib": [
         | 
| 2991 | 
            -
                    {
         | 
| 2992 | 
            -
                      "length": 20,
         | 
| 2993 | 
            -
                      "start": 15197
         | 
| 2994 | 
            -
                    }
         | 
| 2995 | 
            -
                  ]
         | 
| 2996 | 
            -
                },
         | 
| 2997 | 
            -
                "contracts/types/PayoutId.sol": {
         | 
| 2998 | 
            -
                  "PayoutIdLib": [
         | 
| 2999 | 
            -
                    {
         | 
| 3000 | 
            -
                      "length": 20,
         | 
| 3001 | 
            -
                      "start": 11138
         | 
| 3002 | 
            -
                    }
         | 
| 3003 | 
            -
                  ]
         | 
| 3004 | 
            -
                },
         | 
| 3005 | 
            -
                "contracts/types/Referral.sol": {
         | 
| 3006 | 
            -
                  "ReferralLib": [
         | 
| 3007 | 
            -
                    {
         | 
| 3008 | 
            -
                      "length": 20,
         | 
| 3009 | 
            -
                      "start": 6092
         | 
| 3010 | 
            -
                    },
         | 
| 3011 | 
            -
                    {
         | 
| 3012 | 
            -
                      "length": 20,
         | 
| 3013 | 
            -
                      "start": 8239
         | 
| 3014 | 
            -
                    },
         | 
| 3015 | 
            -
                    {
         | 
| 3016 | 
            -
                      "length": 20,
         | 
| 3017 | 
            -
                      "start": 9326
         | 
| 3018 | 
            -
                    }
         | 
| 3019 | 
            -
                  ]
         | 
| 3020 | 
            -
                },
         | 
| 3021 | 
            -
                "contracts/types/RiskId.sol": {
         | 
| 3022 | 
            -
                  "RiskIdLib": [
         | 
| 3023 | 
            -
                    {
         | 
| 3024 | 
            -
                      "length": 20,
         | 
| 3025 | 
            -
                      "start": 4610
         | 
| 3026 | 
            -
                    },
         | 
| 3027 | 
            -
                    {
         | 
| 3028 | 
            -
                      "length": 20,
         | 
| 3029 | 
            -
                      "start": 6651
         | 
| 882 | 
            +
                      "start": 2117
         | 
| 3030 883 | 
             
                    },
         | 
| 3031 884 | 
             
                    {
         | 
| 3032 885 | 
             
                      "length": 20,
         | 
| 3033 | 
            -
                      "start":  | 
| 886 | 
            +
                      "start": 4490
         | 
| 3034 887 | 
             
                    }
         | 
| 3035 888 | 
             
                  ]
         | 
| 3036 889 | 
             
                },
         | 
| @@ -3038,43 +891,7 @@ | |
| 3038 891 | 
             
                  "RoleIdLib": [
         | 
| 3039 892 | 
             
                    {
         | 
| 3040 893 | 
             
                      "length": 20,
         | 
| 3041 | 
            -
                      "start":  | 
| 3042 | 
            -
                    }
         | 
| 3043 | 
            -
                  ]
         | 
| 3044 | 
            -
                },
         | 
| 3045 | 
            -
                "contracts/types/StateId.sol": {
         | 
| 3046 | 
            -
                  "StateIdLib": [
         | 
| 3047 | 
            -
                    {
         | 
| 3048 | 
            -
                      "length": 20,
         | 
| 3049 | 
            -
                      "start": 5062
         | 
| 3050 | 
            -
                    },
         | 
| 3051 | 
            -
                    {
         | 
| 3052 | 
            -
                      "length": 20,
         | 
| 3053 | 
            -
                      "start": 8013
         | 
| 3054 | 
            -
                    },
         | 
| 3055 | 
            -
                    {
         | 
| 3056 | 
            -
                      "length": 20,
         | 
| 3057 | 
            -
                      "start": 8807
         | 
| 3058 | 
            -
                    },
         | 
| 3059 | 
            -
                    {
         | 
| 3060 | 
            -
                      "length": 20,
         | 
| 3061 | 
            -
                      "start": 13038
         | 
| 3062 | 
            -
                    },
         | 
| 3063 | 
            -
                    {
         | 
| 3064 | 
            -
                      "length": 20,
         | 
| 3065 | 
            -
                      "start": 13258
         | 
| 3066 | 
            -
                    },
         | 
| 3067 | 
            -
                    {
         | 
| 3068 | 
            -
                      "length": 20,
         | 
| 3069 | 
            -
                      "start": 14239
         | 
| 3070 | 
            -
                    },
         | 
| 3071 | 
            -
                    {
         | 
| 3072 | 
            -
                      "length": 20,
         | 
| 3073 | 
            -
                      "start": 14459
         | 
| 3074 | 
            -
                    },
         | 
| 3075 | 
            -
                    {
         | 
| 3076 | 
            -
                      "length": 20,
         | 
| 3077 | 
            -
                      "start": 15418
         | 
| 894 | 
            +
                      "start": 7460
         | 
| 3078 895 | 
             
                    }
         | 
| 3079 896 | 
             
                  ]
         | 
| 3080 897 | 
             
                },
         | 
| @@ -3082,141 +899,21 @@ | |
| 3082 899 | 
             
                  "VersionPartLib": [
         | 
| 3083 900 | 
             
                    {
         | 
| 3084 901 | 
             
                      "length": 20,
         | 
| 3085 | 
            -
                      "start":  | 
| 902 | 
            +
                      "start": 5966
         | 
| 3086 903 | 
             
                    }
         | 
| 3087 904 | 
             
                  ]
         | 
| 3088 905 | 
             
                }
         | 
| 3089 906 | 
             
              },
         | 
| 3090 907 | 
             
              "deployedLinkReferences": {
         | 
| 3091 | 
            -
                "contracts/types/ClaimId.sol": {
         | 
| 3092 | 
            -
                  "ClaimIdLib": [
         | 
| 3093 | 
            -
                    {
         | 
| 3094 | 
            -
                      "length": 20,
         | 
| 3095 | 
            -
                      "start": 11255
         | 
| 3096 | 
            -
                    }
         | 
| 3097 | 
            -
                  ]
         | 
| 3098 | 
            -
                },
         | 
| 3099 | 
            -
                "contracts/types/DistributorType.sol": {
         | 
| 3100 | 
            -
                  "DistributorTypeLib": [
         | 
| 3101 | 
            -
                    {
         | 
| 3102 | 
            -
                      "length": 20,
         | 
| 3103 | 
            -
                      "start": 4757
         | 
| 3104 | 
            -
                    },
         | 
| 3105 | 
            -
                    {
         | 
| 3106 | 
            -
                      "length": 20,
         | 
| 3107 | 
            -
                      "start": 5859
         | 
| 3108 | 
            -
                    },
         | 
| 3109 | 
            -
                    {
         | 
| 3110 | 
            -
                      "length": 20,
         | 
| 3111 | 
            -
                      "start": 7607
         | 
| 3112 | 
            -
                    }
         | 
| 3113 | 
            -
                  ]
         | 
| 3114 | 
            -
                },
         | 
| 3115 | 
            -
                "contracts/types/Key32.sol": {
         | 
| 3116 | 
            -
                  "Key32Lib": [
         | 
| 3117 | 
            -
                    {
         | 
| 3118 | 
            -
                      "length": 20,
         | 
| 3119 | 
            -
                      "start": 10146
         | 
| 3120 | 
            -
                    },
         | 
| 3121 | 
            -
                    {
         | 
| 3122 | 
            -
                      "length": 20,
         | 
| 3123 | 
            -
                      "start": 13588
         | 
| 3124 | 
            -
                    },
         | 
| 3125 | 
            -
                    {
         | 
| 3126 | 
            -
                      "length": 20,
         | 
| 3127 | 
            -
                      "start": 13704
         | 
| 3128 | 
            -
                    },
         | 
| 3129 | 
            -
                    {
         | 
| 3130 | 
            -
                      "length": 20,
         | 
| 3131 | 
            -
                      "start": 13886
         | 
| 3132 | 
            -
                    },
         | 
| 3133 | 
            -
                    {
         | 
| 3134 | 
            -
                      "length": 20,
         | 
| 3135 | 
            -
                      "start": 14002
         | 
| 3136 | 
            -
                    },
         | 
| 3137 | 
            -
                    {
         | 
| 3138 | 
            -
                      "length": 20,
         | 
| 3139 | 
            -
                      "start": 14768
         | 
| 3140 | 
            -
                    },
         | 
| 3141 | 
            -
                    {
         | 
| 3142 | 
            -
                      "length": 20,
         | 
| 3143 | 
            -
                      "start": 14884
         | 
| 3144 | 
            -
                    },
         | 
| 3145 | 
            -
                    {
         | 
| 3146 | 
            -
                      "length": 20,
         | 
| 3147 | 
            -
                      "start": 15043
         | 
| 3148 | 
            -
                    },
         | 
| 3149 | 
            -
                    {
         | 
| 3150 | 
            -
                      "length": 20,
         | 
| 3151 | 
            -
                      "start": 15796
         | 
| 3152 | 
            -
                    },
         | 
| 3153 | 
            -
                    {
         | 
| 3154 | 
            -
                      "length": 20,
         | 
| 3155 | 
            -
                      "start": 15912
         | 
| 3156 | 
            -
                    }
         | 
| 3157 | 
            -
                  ]
         | 
| 3158 | 
            -
                },
         | 
| 3159 908 | 
             
                "contracts/types/NftId.sol": {
         | 
| 3160 909 | 
             
                  "NftIdLib": [
         | 
| 3161 910 | 
             
                    {
         | 
| 3162 911 | 
             
                      "length": 20,
         | 
| 3163 | 
            -
                      "start":  | 
| 3164 | 
            -
                    },
         | 
| 3165 | 
            -
                    {
         | 
| 3166 | 
            -
                      "length": 20,
         | 
| 3167 | 
            -
                      "start": 6826
         | 
| 3168 | 
            -
                    },
         | 
| 3169 | 
            -
                    {
         | 
| 3170 | 
            -
                      "length": 20,
         | 
| 3171 | 
            -
                      "start": 11006
         | 
| 3172 | 
            -
                    }
         | 
| 3173 | 
            -
                  ]
         | 
| 3174 | 
            -
                },
         | 
| 3175 | 
            -
                "contracts/types/ObjectType.sol": {
         | 
| 3176 | 
            -
                  "ObjectTypeLib": [
         | 
| 3177 | 
            -
                    {
         | 
| 3178 | 
            -
                      "length": 20,
         | 
| 3179 | 
            -
                      "start": 15164
         | 
| 3180 | 
            -
                    }
         | 
| 3181 | 
            -
                  ]
         | 
| 3182 | 
            -
                },
         | 
| 3183 | 
            -
                "contracts/types/PayoutId.sol": {
         | 
| 3184 | 
            -
                  "PayoutIdLib": [
         | 
| 3185 | 
            -
                    {
         | 
| 3186 | 
            -
                      "length": 20,
         | 
| 3187 | 
            -
                      "start": 11105
         | 
| 3188 | 
            -
                    }
         | 
| 3189 | 
            -
                  ]
         | 
| 3190 | 
            -
                },
         | 
| 3191 | 
            -
                "contracts/types/Referral.sol": {
         | 
| 3192 | 
            -
                  "ReferralLib": [
         | 
| 3193 | 
            -
                    {
         | 
| 3194 | 
            -
                      "length": 20,
         | 
| 3195 | 
            -
                      "start": 6059
         | 
| 3196 | 
            -
                    },
         | 
| 3197 | 
            -
                    {
         | 
| 3198 | 
            -
                      "length": 20,
         | 
| 3199 | 
            -
                      "start": 8206
         | 
| 3200 | 
            -
                    },
         | 
| 3201 | 
            -
                    {
         | 
| 3202 | 
            -
                      "length": 20,
         | 
| 3203 | 
            -
                      "start": 9293
         | 
| 3204 | 
            -
                    }
         | 
| 3205 | 
            -
                  ]
         | 
| 3206 | 
            -
                },
         | 
| 3207 | 
            -
                "contracts/types/RiskId.sol": {
         | 
| 3208 | 
            -
                  "RiskIdLib": [
         | 
| 3209 | 
            -
                    {
         | 
| 3210 | 
            -
                      "length": 20,
         | 
| 3211 | 
            -
                      "start": 4577
         | 
| 3212 | 
            -
                    },
         | 
| 3213 | 
            -
                    {
         | 
| 3214 | 
            -
                      "length": 20,
         | 
| 3215 | 
            -
                      "start": 6618
         | 
| 912 | 
            +
                      "start": 2085
         | 
| 3216 913 | 
             
                    },
         | 
| 3217 914 | 
             
                    {
         | 
| 3218 915 | 
             
                      "length": 20,
         | 
| 3219 | 
            -
                      "start":  | 
| 916 | 
            +
                      "start": 4458
         | 
| 3220 917 | 
             
                    }
         | 
| 3221 918 | 
             
                  ]
         | 
| 3222 919 | 
             
                },
         | 
| @@ -3224,43 +921,7 @@ | |
| 3224 921 | 
             
                  "RoleIdLib": [
         | 
| 3225 922 | 
             
                    {
         | 
| 3226 923 | 
             
                      "length": 20,
         | 
| 3227 | 
            -
                      "start":  | 
| 3228 | 
            -
                    }
         | 
| 3229 | 
            -
                  ]
         | 
| 3230 | 
            -
                },
         | 
| 3231 | 
            -
                "contracts/types/StateId.sol": {
         | 
| 3232 | 
            -
                  "StateIdLib": [
         | 
| 3233 | 
            -
                    {
         | 
| 3234 | 
            -
                      "length": 20,
         | 
| 3235 | 
            -
                      "start": 5029
         | 
| 3236 | 
            -
                    },
         | 
| 3237 | 
            -
                    {
         | 
| 3238 | 
            -
                      "length": 20,
         | 
| 3239 | 
            -
                      "start": 7980
         | 
| 3240 | 
            -
                    },
         | 
| 3241 | 
            -
                    {
         | 
| 3242 | 
            -
                      "length": 20,
         | 
| 3243 | 
            -
                      "start": 8774
         | 
| 3244 | 
            -
                    },
         | 
| 3245 | 
            -
                    {
         | 
| 3246 | 
            -
                      "length": 20,
         | 
| 3247 | 
            -
                      "start": 13005
         | 
| 3248 | 
            -
                    },
         | 
| 3249 | 
            -
                    {
         | 
| 3250 | 
            -
                      "length": 20,
         | 
| 3251 | 
            -
                      "start": 13225
         | 
| 3252 | 
            -
                    },
         | 
| 3253 | 
            -
                    {
         | 
| 3254 | 
            -
                      "length": 20,
         | 
| 3255 | 
            -
                      "start": 14206
         | 
| 3256 | 
            -
                    },
         | 
| 3257 | 
            -
                    {
         | 
| 3258 | 
            -
                      "length": 20,
         | 
| 3259 | 
            -
                      "start": 14426
         | 
| 3260 | 
            -
                    },
         | 
| 3261 | 
            -
                    {
         | 
| 3262 | 
            -
                      "length": 20,
         | 
| 3263 | 
            -
                      "start": 15385
         | 
| 924 | 
            +
                      "start": 7428
         | 
| 3264 925 | 
             
                    }
         | 
| 3265 926 | 
             
                  ]
         | 
| 3266 927 | 
             
                },
         | 
| @@ -3268,7 +929,7 @@ | |
| 3268 929 | 
             
                  "VersionPartLib": [
         | 
| 3269 930 | 
             
                    {
         | 
| 3270 931 | 
             
                      "length": 20,
         | 
| 3271 | 
            -
                      "start":  | 
| 932 | 
            +
                      "start": 5934
         | 
| 3272 933 | 
             
                    }
         | 
| 3273 934 | 
             
                  ]
         | 
| 3274 935 | 
             
                }
         |