@etherisc/gif-next 0.0.2-b2e620f-736 → 0.0.2-b37fa8b-169
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -1
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +1 -1
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +106 -38
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +91 -45
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +1 -1
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +58 -6
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +573 -288
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +8 -39
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +295 -47
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +452 -210
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +119 -14
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +246 -16
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +420 -27
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +66 -144
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +275 -59
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +21 -88
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +512 -204
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +147 -77
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +20 -87
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +358 -82
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +109 -100
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +274 -58
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +145 -132
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +274 -58
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +128 -168
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +274 -58
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +39 -63
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +130 -138
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +274 -58
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +342 -183
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
- package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
- package/artifacts/contracts/instance/BaseStore.sol/BaseStore.json +332 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +2 -2
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
- package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +304 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +429 -35
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +345 -12
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +473 -98
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +805 -448
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +246 -70
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +656 -418
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +377 -64
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +83 -55
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +524 -1520
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
- package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +2835 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +1 -1
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +101 -88
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +2 -2
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +20 -20
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +33 -35
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +294 -53
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +19 -21
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +29 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +19 -21
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +87 -42
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +96 -50
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +59 -69
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +274 -58
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +300 -123
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +124 -58
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +186 -33
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +29 -31
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +238 -19
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/pool/Pool.sol/Pool.json +29 -31
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +100 -34
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +346 -87
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +121 -63
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +273 -50
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +103 -41
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +46 -48
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +274 -58
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +142 -102
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +113 -75
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +208 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +50 -10
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +55 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +50 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +40 -42
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +231 -19
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +157 -86
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +511 -21
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +118 -72
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +116 -114
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +100 -70
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/product/Product.sol/Product.json +40 -42
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +279 -43
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +91 -41
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +33 -22
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +29 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +71 -60
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +704 -472
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1074 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +47 -18
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +76 -38
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +710 -407
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +184 -128
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +437 -26
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +119 -59
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/shared/Component.sol/Component.json +19 -21
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +224 -210
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +113 -63
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +130 -39
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +1 -1
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +2 -2
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +19 -21
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +131 -141
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +19 -21
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +43 -6
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +19 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +29 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -2
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +19 -21
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +43 -6
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +19 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +29 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +2 -2
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +2 -2
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1450 -140
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +161 -110
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1565 -229
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +129 -70
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +294 -177
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +200 -157
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +86 -52
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1633 -819
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +159 -87
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +10 -10
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +45 -19
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +93 -37
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +1 -1
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +2 -2
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +33 -31
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +9 -4
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +39 -218
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +45 -2
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
- package/artifacts/contracts/type/String.sol/StrLib.json +50 -2
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +3 -3
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +60 -36
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +56 -2
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +65 -27
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
- package/contracts/accounting/AccountingService.sol +15 -3
- package/contracts/accounting/IAccountingService.sol +4 -2
- package/contracts/authorization/AccessAdmin.sol +389 -298
- package/contracts/authorization/AccessAdminLib.sol +396 -0
- package/contracts/authorization/AccessManagerCloneable.sol +40 -31
- package/contracts/authorization/Authorization.sol +60 -228
- package/contracts/authorization/IAccess.sol +25 -7
- package/contracts/authorization/IAccessAdmin.sol +81 -80
- package/contracts/authorization/IAuthorization.sol +3 -51
- package/contracts/authorization/IServiceAuthorization.sol +55 -17
- package/contracts/authorization/ServiceAuthorization.sol +248 -34
- package/contracts/distribution/BasicDistribution.sol +13 -11
- package/contracts/distribution/BasicDistributionAuthorization.sol +11 -4
- package/contracts/distribution/Distribution.sol +20 -60
- package/contracts/distribution/DistributionService.sol +165 -74
- package/contracts/distribution/IDistributionComponent.sol +3 -10
- package/contracts/distribution/IDistributionService.sol +34 -19
- package/contracts/examples/fire/FirePool.sol +0 -4
- package/contracts/examples/fire/FireProduct.sol +7 -12
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +32 -8
- package/contracts/examples/unpermissioned/SimpleOracle.sol +4 -8
- package/contracts/examples/unpermissioned/SimplePool.sol +0 -4
- package/contracts/examples/unpermissioned/SimpleProduct.sol +87 -27
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BaseStore.sol +93 -0
- package/contracts/instance/IBaseStore.sol +37 -0
- package/contracts/instance/IInstance.sol +99 -14
- package/contracts/instance/IInstanceService.sol +54 -7
- package/contracts/instance/Instance.sol +166 -70
- package/contracts/instance/InstanceAdmin.sol +227 -296
- package/contracts/instance/InstanceAuthorizationV3.sol +121 -60
- package/contracts/instance/InstanceReader.sol +378 -373
- package/contracts/instance/InstanceService.sol +283 -173
- package/contracts/instance/InstanceStore.sol +9 -82
- package/contracts/instance/ProductStore.sol +235 -0
- package/contracts/instance/RiskSet.sol +10 -2
- package/contracts/instance/TargetNames.sol +10 -0
- package/contracts/instance/base/BalanceStore.sol +4 -6
- package/contracts/instance/base/ObjectLifecycle.sol +2 -6
- package/contracts/instance/module/IBundle.sol +6 -5
- package/contracts/instance/module/IComponents.sol +16 -5
- package/contracts/instance/module/IDistribution.sol +21 -8
- package/contracts/instance/module/IPolicy.sol +28 -8
- package/contracts/instance/module/IRisk.sol +2 -0
- package/contracts/oracle/BasicOracle.sol +2 -4
- package/contracts/oracle/BasicOracleAuthorization.sol +18 -2
- package/contracts/oracle/IOracle.sol +9 -4
- package/contracts/oracle/Oracle.sol +2 -4
- package/contracts/oracle/OracleService.sol +8 -8
- package/contracts/pool/BasicPool.sol +3 -16
- package/contracts/pool/BasicPoolAuthorization.sol +10 -5
- package/contracts/pool/BundleService.sol +34 -43
- package/contracts/pool/IBundleService.sol +14 -13
- package/contracts/pool/IPoolService.sol +7 -2
- package/contracts/pool/Pool.sol +4 -16
- package/contracts/pool/PoolLib.sol +127 -2
- package/contracts/pool/PoolService.sol +41 -184
- package/contracts/product/ApplicationService.sol +85 -17
- package/contracts/product/BasicProduct.sol +1 -3
- package/contracts/product/BasicProductAuthorization.sol +11 -4
- package/contracts/product/ClaimService.sol +99 -105
- package/contracts/product/IApplicationService.sol +24 -2
- package/contracts/product/IClaimService.sol +5 -4
- package/contracts/product/IPolicyService.sol +9 -2
- package/contracts/product/IPricingService.sol +1 -0
- package/contracts/product/IRiskService.sol +25 -10
- package/contracts/product/PolicyService.sol +41 -103
- package/contracts/product/PolicyServiceLib.sol +79 -5
- package/contracts/product/PricingService.sol +33 -31
- package/contracts/product/Product.sol +44 -29
- package/contracts/product/RiskService.sol +63 -18
- package/contracts/registry/IRegistry.sol +15 -9
- package/contracts/registry/IRelease.sol +6 -3
- package/contracts/registry/Registry.sol +15 -9
- package/contracts/registry/RegistryAdmin.sol +100 -263
- package/contracts/registry/RegistryAuthorization.sol +336 -0
- package/contracts/registry/RegistryService.sol +1 -1
- package/contracts/registry/ReleaseAdmin.sol +62 -112
- package/contracts/registry/ReleaseRegistry.sol +57 -43
- package/contracts/registry/ServiceAuthorizationV3.sol +48 -32
- package/contracts/registry/TokenRegistry.sol +56 -52
- package/contracts/shared/Component.sol +17 -29
- package/contracts/shared/ComponentService.sol +249 -238
- package/contracts/shared/ContractLib.sol +134 -75
- package/contracts/shared/IComponent.sol +1 -4
- package/contracts/shared/IComponentService.sol +21 -19
- package/contracts/shared/IKeyValueStore.sol +9 -1
- package/contracts/shared/INftOwnable.sol +2 -0
- package/contracts/shared/IRegisterable.sol +0 -1
- package/contracts/shared/InitializableERC165.sol +9 -1
- package/contracts/shared/InstanceLinkedComponent.sol +4 -7
- package/contracts/shared/KeyValueStore.sol +3 -3
- package/contracts/shared/NftOwnable.sol +4 -2
- package/contracts/shared/PolicyHolder.sol +3 -2
- package/contracts/shared/Registerable.sol +1 -4
- package/contracts/shared/Service.sol +6 -4
- package/contracts/shared/TokenHandler.sol +5 -4
- package/contracts/staking/IStaking.sol +266 -64
- package/contracts/staking/IStakingService.sol +44 -82
- package/contracts/staking/ITargetLimitHandler.sol +17 -0
- package/contracts/staking/Staking.sol +474 -202
- package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +55 -84
- package/contracts/staking/StakingManager.sol +4 -3
- package/contracts/staking/StakingReader.sol +58 -77
- package/contracts/staking/StakingService.sol +49 -158
- package/contracts/staking/StakingServiceManager.sol +1 -0
- package/contracts/staking/StakingStore.sol +1093 -330
- package/contracts/staking/TargetHandler.sol +132 -0
- package/contracts/staking/TargetManagerLib.sol +69 -46
- package/contracts/type/Amount.sol +4 -0
- package/contracts/type/Blocknumber.sol +15 -15
- package/contracts/type/ChainId.sol +101 -0
- package/contracts/type/Fee.sol +8 -8
- package/contracts/type/NftId.sol +3 -3
- package/contracts/type/ObjectType.sol +21 -17
- package/contracts/type/RiskId.sol +4 -3
- package/contracts/type/RoleId.sol +57 -59
- package/contracts/type/Seconds.sol +19 -0
- package/contracts/type/String.sol +12 -0
- package/contracts/type/Timestamp.sol +4 -2
- package/contracts/type/UFixed.sol +28 -10
- package/contracts/type/Version.sol +39 -0
- package/contracts/upgradeability/IVersionable.sol +3 -0
- package/contracts/upgradeability/ProxyManager.sol +25 -11
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
- package/contracts/upgradeability/Versionable.sol +6 -3
- package/package.json +2 -2
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +0 -4
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +0 -24
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +0 -485
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -440
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -205
- package/contracts/shared/ComponentVerifyingService.sol +0 -128
- package/contracts/staking/StakingLifecycle.sol +0 -23
@@ -252,7 +252,7 @@
|
|
252
252
|
"indexed": false,
|
253
253
|
"internalType": "Blocknumber",
|
254
254
|
"name": "lastUpdatedIn",
|
255
|
-
"type": "
|
255
|
+
"type": "uint40"
|
256
256
|
}
|
257
257
|
],
|
258
258
|
"name": "LogBalanceStoreBalanceDecreased",
|
@@ -283,7 +283,7 @@
|
|
283
283
|
"indexed": false,
|
284
284
|
"internalType": "Blocknumber",
|
285
285
|
"name": "lastUpdatedIn",
|
286
|
-
"type": "
|
286
|
+
"type": "uint40"
|
287
287
|
}
|
288
288
|
],
|
289
289
|
"name": "LogBalanceStoreBalanceIncreased",
|
@@ -314,7 +314,7 @@
|
|
314
314
|
"indexed": false,
|
315
315
|
"internalType": "Blocknumber",
|
316
316
|
"name": "lastUpdatedIn",
|
317
|
-
"type": "
|
317
|
+
"type": "uint40"
|
318
318
|
}
|
319
319
|
],
|
320
320
|
"name": "LogBalanceStoreFeesDecreased",
|
@@ -345,7 +345,7 @@
|
|
345
345
|
"indexed": false,
|
346
346
|
"internalType": "Blocknumber",
|
347
347
|
"name": "lastUpdatedIn",
|
348
|
-
"type": "
|
348
|
+
"type": "uint40"
|
349
349
|
}
|
350
350
|
],
|
351
351
|
"name": "LogBalanceStoreFeesIncreased",
|
@@ -376,7 +376,7 @@
|
|
376
376
|
"indexed": false,
|
377
377
|
"internalType": "Blocknumber",
|
378
378
|
"name": "lastUpdatedIn",
|
379
|
-
"type": "
|
379
|
+
"type": "uint40"
|
380
380
|
}
|
381
381
|
],
|
382
382
|
"name": "LogBalanceStoreLockedDecreased",
|
@@ -407,7 +407,7 @@
|
|
407
407
|
"indexed": false,
|
408
408
|
"internalType": "Blocknumber",
|
409
409
|
"name": "lastUpdatedIn",
|
410
|
-
"type": "
|
410
|
+
"type": "uint40"
|
411
411
|
}
|
412
412
|
],
|
413
413
|
"name": "LogBalanceStoreLockedIncreased",
|
@@ -500,12 +500,49 @@
|
|
500
500
|
"indexed": false,
|
501
501
|
"internalType": "Blocknumber",
|
502
502
|
"name": "lastUpdatedIn",
|
503
|
-
"type": "
|
503
|
+
"type": "uint40"
|
504
504
|
}
|
505
505
|
],
|
506
506
|
"name": "LogInfoUpdated",
|
507
507
|
"type": "event"
|
508
508
|
},
|
509
|
+
{
|
510
|
+
"anonymous": false,
|
511
|
+
"inputs": [
|
512
|
+
{
|
513
|
+
"indexed": false,
|
514
|
+
"internalType": "ObjectType",
|
515
|
+
"name": "objectType",
|
516
|
+
"type": "uint8"
|
517
|
+
},
|
518
|
+
{
|
519
|
+
"indexed": false,
|
520
|
+
"internalType": "KeyId",
|
521
|
+
"name": "keyId",
|
522
|
+
"type": "bytes31"
|
523
|
+
},
|
524
|
+
{
|
525
|
+
"indexed": false,
|
526
|
+
"internalType": "StateId",
|
527
|
+
"name": "state",
|
528
|
+
"type": "uint8"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"indexed": false,
|
532
|
+
"internalType": "address",
|
533
|
+
"name": "createdBy",
|
534
|
+
"type": "address"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"indexed": false,
|
538
|
+
"internalType": "address",
|
539
|
+
"name": "txOrigin",
|
540
|
+
"type": "address"
|
541
|
+
}
|
542
|
+
],
|
543
|
+
"name": "LogKeyValueStoreMetadataCreated",
|
544
|
+
"type": "event"
|
545
|
+
},
|
509
546
|
{
|
510
547
|
"anonymous": false,
|
511
548
|
"inputs": [
|
@@ -549,7 +586,7 @@
|
|
549
586
|
"indexed": false,
|
550
587
|
"internalType": "Blocknumber",
|
551
588
|
"name": "lastUpdatedIn",
|
552
|
-
"type": "
|
589
|
+
"type": "uint40"
|
553
590
|
}
|
554
591
|
],
|
555
592
|
"name": "LogStateUpdated",
|
@@ -600,76 +637,11 @@
|
|
600
637
|
"inputs": [
|
601
638
|
{
|
602
639
|
"internalType": "NftId",
|
603
|
-
"name": "
|
640
|
+
"name": "bundleNftId",
|
604
641
|
"type": "uint96"
|
605
642
|
},
|
606
643
|
{
|
607
644
|
"components": [
|
608
|
-
{
|
609
|
-
"internalType": "NftId",
|
610
|
-
"name": "productNftId",
|
611
|
-
"type": "uint96"
|
612
|
-
},
|
613
|
-
{
|
614
|
-
"internalType": "NftId",
|
615
|
-
"name": "bundleNftId",
|
616
|
-
"type": "uint96"
|
617
|
-
},
|
618
|
-
{
|
619
|
-
"internalType": "ReferralId",
|
620
|
-
"name": "referralId",
|
621
|
-
"type": "bytes8"
|
622
|
-
},
|
623
|
-
{
|
624
|
-
"internalType": "RiskId",
|
625
|
-
"name": "riskId",
|
626
|
-
"type": "bytes8"
|
627
|
-
},
|
628
|
-
{
|
629
|
-
"internalType": "Amount",
|
630
|
-
"name": "sumInsuredAmount",
|
631
|
-
"type": "uint96"
|
632
|
-
},
|
633
|
-
{
|
634
|
-
"internalType": "Amount",
|
635
|
-
"name": "premiumAmount",
|
636
|
-
"type": "uint96"
|
637
|
-
},
|
638
|
-
{
|
639
|
-
"internalType": "Seconds",
|
640
|
-
"name": "lifetime",
|
641
|
-
"type": "uint40"
|
642
|
-
},
|
643
|
-
{
|
644
|
-
"internalType": "bytes",
|
645
|
-
"name": "applicationData",
|
646
|
-
"type": "bytes"
|
647
|
-
},
|
648
|
-
{
|
649
|
-
"internalType": "bytes",
|
650
|
-
"name": "processData",
|
651
|
-
"type": "bytes"
|
652
|
-
},
|
653
|
-
{
|
654
|
-
"internalType": "uint16",
|
655
|
-
"name": "claimsCount",
|
656
|
-
"type": "uint16"
|
657
|
-
},
|
658
|
-
{
|
659
|
-
"internalType": "uint16",
|
660
|
-
"name": "openClaimsCount",
|
661
|
-
"type": "uint16"
|
662
|
-
},
|
663
|
-
{
|
664
|
-
"internalType": "Amount",
|
665
|
-
"name": "claimAmount",
|
666
|
-
"type": "uint96"
|
667
|
-
},
|
668
|
-
{
|
669
|
-
"internalType": "Amount",
|
670
|
-
"name": "payoutAmount",
|
671
|
-
"type": "uint96"
|
672
|
-
},
|
673
645
|
{
|
674
646
|
"internalType": "Timestamp",
|
675
647
|
"name": "activatedAt",
|
@@ -684,27 +656,7 @@
|
|
684
656
|
"internalType": "Timestamp",
|
685
657
|
"name": "closedAt",
|
686
658
|
"type": "uint40"
|
687
|
-
}
|
688
|
-
],
|
689
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
690
|
-
"name": "policy",
|
691
|
-
"type": "tuple"
|
692
|
-
}
|
693
|
-
],
|
694
|
-
"name": "createApplication",
|
695
|
-
"outputs": [],
|
696
|
-
"stateMutability": "nonpayable",
|
697
|
-
"type": "function"
|
698
|
-
},
|
699
|
-
{
|
700
|
-
"inputs": [
|
701
|
-
{
|
702
|
-
"internalType": "NftId",
|
703
|
-
"name": "bundleNftId",
|
704
|
-
"type": "uint96"
|
705
|
-
},
|
706
|
-
{
|
707
|
-
"components": [
|
659
|
+
},
|
708
660
|
{
|
709
661
|
"internalType": "NftId",
|
710
662
|
"name": "poolNftId",
|
@@ -715,12 +667,12 @@
|
|
715
667
|
{
|
716
668
|
"internalType": "UFixed",
|
717
669
|
"name": "fractionalFee",
|
718
|
-
"type": "
|
670
|
+
"type": "uint160"
|
719
671
|
},
|
720
672
|
{
|
721
|
-
"internalType": "
|
673
|
+
"internalType": "Amount",
|
722
674
|
"name": "fixedFee",
|
723
|
-
"type": "
|
675
|
+
"type": "uint96"
|
724
676
|
}
|
725
677
|
],
|
726
678
|
"internalType": "struct Fee",
|
@@ -731,21 +683,6 @@
|
|
731
683
|
"internalType": "bytes",
|
732
684
|
"name": "filter",
|
733
685
|
"type": "bytes"
|
734
|
-
},
|
735
|
-
{
|
736
|
-
"internalType": "Timestamp",
|
737
|
-
"name": "activatedAt",
|
738
|
-
"type": "uint40"
|
739
|
-
},
|
740
|
-
{
|
741
|
-
"internalType": "Timestamp",
|
742
|
-
"name": "expiredAt",
|
743
|
-
"type": "uint40"
|
744
|
-
},
|
745
|
-
{
|
746
|
-
"internalType": "Timestamp",
|
747
|
-
"name": "closedAt",
|
748
|
-
"type": "uint40"
|
749
686
|
}
|
750
687
|
],
|
751
688
|
"internalType": "struct IBundle.BundleInfo",
|
@@ -782,6 +719,11 @@
|
|
782
719
|
"name": "paidAmount",
|
783
720
|
"type": "uint96"
|
784
721
|
},
|
722
|
+
{
|
723
|
+
"internalType": "Timestamp",
|
724
|
+
"name": "closedAt",
|
725
|
+
"type": "uint40"
|
726
|
+
},
|
785
727
|
{
|
786
728
|
"internalType": "uint24",
|
787
729
|
"name": "payoutsCount",
|
@@ -801,11 +743,6 @@
|
|
801
743
|
"internalType": "bytes",
|
802
744
|
"name": "processData",
|
803
745
|
"type": "bytes"
|
804
|
-
},
|
805
|
-
{
|
806
|
-
"internalType": "Timestamp",
|
807
|
-
"name": "closedAt",
|
808
|
-
"type": "uint40"
|
809
746
|
}
|
810
747
|
],
|
811
748
|
"internalType": "struct IPolicy.ClaimInfo",
|
@@ -832,11 +769,6 @@
|
|
832
769
|
"name": "name",
|
833
770
|
"type": "string"
|
834
771
|
},
|
835
|
-
{
|
836
|
-
"internalType": "contract IERC20Metadata",
|
837
|
-
"name": "token",
|
838
|
-
"type": "address"
|
839
|
-
},
|
840
772
|
{
|
841
773
|
"internalType": "contract TokenHandler",
|
842
774
|
"name": "tokenHandler",
|
@@ -877,15 +809,15 @@
|
|
877
809
|
"name": "active",
|
878
810
|
"type": "bool"
|
879
811
|
},
|
880
|
-
{
|
881
|
-
"internalType": "bytes",
|
882
|
-
"name": "data",
|
883
|
-
"type": "bytes"
|
884
|
-
},
|
885
812
|
{
|
886
813
|
"internalType": "uint32",
|
887
814
|
"name": "numPoliciesSold",
|
888
815
|
"type": "uint32"
|
816
|
+
},
|
817
|
+
{
|
818
|
+
"internalType": "bytes",
|
819
|
+
"name": "data",
|
820
|
+
"type": "bytes"
|
889
821
|
}
|
890
822
|
],
|
891
823
|
"internalType": "struct IDistribution.DistributorInfo",
|
@@ -907,25 +839,20 @@
|
|
907
839
|
},
|
908
840
|
{
|
909
841
|
"components": [
|
910
|
-
{
|
911
|
-
"internalType": "string",
|
912
|
-
"name": "name",
|
913
|
-
"type": "string"
|
914
|
-
},
|
915
842
|
{
|
916
843
|
"internalType": "UFixed",
|
917
844
|
"name": "minDiscountPercentage",
|
918
|
-
"type": "
|
845
|
+
"type": "uint160"
|
919
846
|
},
|
920
847
|
{
|
921
|
-
"internalType": "
|
922
|
-
"name": "
|
923
|
-
"type": "
|
848
|
+
"internalType": "NftId",
|
849
|
+
"name": "distributionNftId",
|
850
|
+
"type": "uint96"
|
924
851
|
},
|
925
852
|
{
|
926
853
|
"internalType": "UFixed",
|
927
|
-
"name": "
|
928
|
-
"type": "
|
854
|
+
"name": "maxDiscountPercentage",
|
855
|
+
"type": "uint160"
|
929
856
|
},
|
930
857
|
{
|
931
858
|
"internalType": "uint32",
|
@@ -933,9 +860,9 @@
|
|
933
860
|
"type": "uint32"
|
934
861
|
},
|
935
862
|
{
|
936
|
-
"internalType": "
|
863
|
+
"internalType": "Seconds",
|
937
864
|
"name": "maxReferralLifetime",
|
938
|
-
"type": "
|
865
|
+
"type": "uint40"
|
939
866
|
},
|
940
867
|
{
|
941
868
|
"internalType": "bool",
|
@@ -947,6 +874,16 @@
|
|
947
874
|
"name": "allowRenewals",
|
948
875
|
"type": "bool"
|
949
876
|
},
|
877
|
+
{
|
878
|
+
"internalType": "UFixed",
|
879
|
+
"name": "commissionPercentage",
|
880
|
+
"type": "uint160"
|
881
|
+
},
|
882
|
+
{
|
883
|
+
"internalType": "string",
|
884
|
+
"name": "name",
|
885
|
+
"type": "string"
|
886
|
+
},
|
950
887
|
{
|
951
888
|
"internalType": "bytes",
|
952
889
|
"name": "data",
|
@@ -967,179 +904,40 @@
|
|
967
904
|
"inputs": [
|
968
905
|
{
|
969
906
|
"internalType": "NftId",
|
970
|
-
"name": "
|
907
|
+
"name": "policyNftId",
|
971
908
|
"type": "uint96"
|
972
909
|
},
|
910
|
+
{
|
911
|
+
"internalType": "PayoutId",
|
912
|
+
"name": "payoutId",
|
913
|
+
"type": "uint40"
|
914
|
+
},
|
973
915
|
{
|
974
916
|
"components": [
|
975
917
|
{
|
976
|
-
"
|
977
|
-
|
978
|
-
|
979
|
-
"name": "fractionalFee",
|
980
|
-
"type": "uint256"
|
981
|
-
},
|
982
|
-
{
|
983
|
-
"internalType": "uint256",
|
984
|
-
"name": "fixedFee",
|
985
|
-
"type": "uint256"
|
986
|
-
}
|
987
|
-
],
|
988
|
-
"internalType": "struct Fee",
|
989
|
-
"name": "productFee",
|
990
|
-
"type": "tuple"
|
918
|
+
"internalType": "ClaimId",
|
919
|
+
"name": "claimId",
|
920
|
+
"type": "uint16"
|
991
921
|
},
|
992
922
|
{
|
993
|
-
"
|
994
|
-
|
995
|
-
|
996
|
-
"name": "fractionalFee",
|
997
|
-
"type": "uint256"
|
998
|
-
},
|
999
|
-
{
|
1000
|
-
"internalType": "uint256",
|
1001
|
-
"name": "fixedFee",
|
1002
|
-
"type": "uint256"
|
1003
|
-
}
|
1004
|
-
],
|
1005
|
-
"internalType": "struct Fee",
|
1006
|
-
"name": "processingFee",
|
1007
|
-
"type": "tuple"
|
923
|
+
"internalType": "Amount",
|
924
|
+
"name": "amount",
|
925
|
+
"type": "uint96"
|
1008
926
|
},
|
1009
927
|
{
|
1010
|
-
"
|
1011
|
-
|
1012
|
-
|
1013
|
-
"name": "fractionalFee",
|
1014
|
-
"type": "uint256"
|
1015
|
-
},
|
1016
|
-
{
|
1017
|
-
"internalType": "uint256",
|
1018
|
-
"name": "fixedFee",
|
1019
|
-
"type": "uint256"
|
1020
|
-
}
|
1021
|
-
],
|
1022
|
-
"internalType": "struct Fee",
|
1023
|
-
"name": "distributionFee",
|
1024
|
-
"type": "tuple"
|
928
|
+
"internalType": "Timestamp",
|
929
|
+
"name": "paidAt",
|
930
|
+
"type": "uint40"
|
1025
931
|
},
|
1026
932
|
{
|
1027
|
-
"
|
1028
|
-
|
1029
|
-
|
1030
|
-
"name": "fractionalFee",
|
1031
|
-
"type": "uint256"
|
1032
|
-
},
|
1033
|
-
{
|
1034
|
-
"internalType": "uint256",
|
1035
|
-
"name": "fixedFee",
|
1036
|
-
"type": "uint256"
|
1037
|
-
}
|
1038
|
-
],
|
1039
|
-
"internalType": "struct Fee",
|
1040
|
-
"name": "minDistributionOwnerFee",
|
1041
|
-
"type": "tuple"
|
1042
|
-
},
|
1043
|
-
{
|
1044
|
-
"components": [
|
1045
|
-
{
|
1046
|
-
"internalType": "UFixed",
|
1047
|
-
"name": "fractionalFee",
|
1048
|
-
"type": "uint256"
|
1049
|
-
},
|
1050
|
-
{
|
1051
|
-
"internalType": "uint256",
|
1052
|
-
"name": "fixedFee",
|
1053
|
-
"type": "uint256"
|
1054
|
-
}
|
1055
|
-
],
|
1056
|
-
"internalType": "struct Fee",
|
1057
|
-
"name": "poolFee",
|
1058
|
-
"type": "tuple"
|
1059
|
-
},
|
1060
|
-
{
|
1061
|
-
"components": [
|
1062
|
-
{
|
1063
|
-
"internalType": "UFixed",
|
1064
|
-
"name": "fractionalFee",
|
1065
|
-
"type": "uint256"
|
1066
|
-
},
|
1067
|
-
{
|
1068
|
-
"internalType": "uint256",
|
1069
|
-
"name": "fixedFee",
|
1070
|
-
"type": "uint256"
|
1071
|
-
}
|
1072
|
-
],
|
1073
|
-
"internalType": "struct Fee",
|
1074
|
-
"name": "stakingFee",
|
1075
|
-
"type": "tuple"
|
1076
|
-
},
|
1077
|
-
{
|
1078
|
-
"components": [
|
1079
|
-
{
|
1080
|
-
"internalType": "UFixed",
|
1081
|
-
"name": "fractionalFee",
|
1082
|
-
"type": "uint256"
|
1083
|
-
},
|
1084
|
-
{
|
1085
|
-
"internalType": "uint256",
|
1086
|
-
"name": "fixedFee",
|
1087
|
-
"type": "uint256"
|
1088
|
-
}
|
1089
|
-
],
|
1090
|
-
"internalType": "struct Fee",
|
1091
|
-
"name": "performanceFee",
|
1092
|
-
"type": "tuple"
|
1093
|
-
}
|
1094
|
-
],
|
1095
|
-
"internalType": "struct IComponents.FeeInfo",
|
1096
|
-
"name": "info",
|
1097
|
-
"type": "tuple"
|
1098
|
-
}
|
1099
|
-
],
|
1100
|
-
"name": "createFee",
|
1101
|
-
"outputs": [],
|
1102
|
-
"stateMutability": "nonpayable",
|
1103
|
-
"type": "function"
|
1104
|
-
},
|
1105
|
-
{
|
1106
|
-
"inputs": [
|
1107
|
-
{
|
1108
|
-
"internalType": "NftId",
|
1109
|
-
"name": "policyNftId",
|
1110
|
-
"type": "uint96"
|
1111
|
-
},
|
1112
|
-
{
|
1113
|
-
"internalType": "PayoutId",
|
1114
|
-
"name": "payoutId",
|
1115
|
-
"type": "uint40"
|
1116
|
-
},
|
1117
|
-
{
|
1118
|
-
"components": [
|
1119
|
-
{
|
1120
|
-
"internalType": "ClaimId",
|
1121
|
-
"name": "claimId",
|
1122
|
-
"type": "uint16"
|
1123
|
-
},
|
1124
|
-
{
|
1125
|
-
"internalType": "Amount",
|
1126
|
-
"name": "amount",
|
1127
|
-
"type": "uint96"
|
1128
|
-
},
|
1129
|
-
{
|
1130
|
-
"internalType": "address",
|
1131
|
-
"name": "beneficiary",
|
1132
|
-
"type": "address"
|
933
|
+
"internalType": "address",
|
934
|
+
"name": "beneficiary",
|
935
|
+
"type": "address"
|
1133
936
|
},
|
1134
937
|
{
|
1135
938
|
"internalType": "bytes",
|
1136
939
|
"name": "data",
|
1137
940
|
"type": "bytes"
|
1138
|
-
},
|
1139
|
-
{
|
1140
|
-
"internalType": "Timestamp",
|
1141
|
-
"name": "paidAt",
|
1142
|
-
"type": "uint40"
|
1143
941
|
}
|
1144
942
|
],
|
1145
943
|
"internalType": "struct IPolicy.PayoutInfo",
|
@@ -1166,6 +964,16 @@
|
|
1166
964
|
"name": "maxBalanceAmount",
|
1167
965
|
"type": "uint96"
|
1168
966
|
},
|
967
|
+
{
|
968
|
+
"internalType": "UFixed",
|
969
|
+
"name": "collateralizationLevel",
|
970
|
+
"type": "uint160"
|
971
|
+
},
|
972
|
+
{
|
973
|
+
"internalType": "UFixed",
|
974
|
+
"name": "retentionLevel",
|
975
|
+
"type": "uint160"
|
976
|
+
},
|
1169
977
|
{
|
1170
978
|
"internalType": "bool",
|
1171
979
|
"name": "isInterceptingBundleTransfers",
|
@@ -1185,16 +993,6 @@
|
|
1185
993
|
"internalType": "bool",
|
1186
994
|
"name": "isVerifyingApplications",
|
1187
995
|
"type": "bool"
|
1188
|
-
},
|
1189
|
-
{
|
1190
|
-
"internalType": "UFixed",
|
1191
|
-
"name": "collateralizationLevel",
|
1192
|
-
"type": "uint256"
|
1193
|
-
},
|
1194
|
-
{
|
1195
|
-
"internalType": "UFixed",
|
1196
|
-
"name": "retentionLevel",
|
1197
|
-
"type": "uint256"
|
1198
996
|
}
|
1199
997
|
],
|
1200
998
|
"internalType": "struct IComponents.PoolInfo",
|
@@ -1210,330 +1008,130 @@
|
|
1210
1008
|
{
|
1211
1009
|
"inputs": [
|
1212
1010
|
{
|
1213
|
-
"internalType": "
|
1214
|
-
"name": "
|
1215
|
-
"type": "
|
1011
|
+
"internalType": "ReferralId",
|
1012
|
+
"name": "referralId",
|
1013
|
+
"type": "bytes8"
|
1216
1014
|
},
|
1217
1015
|
{
|
1218
1016
|
"components": [
|
1219
1017
|
{
|
1220
|
-
"internalType": "
|
1221
|
-
"name": "
|
1222
|
-
"type": "uint96"
|
1223
|
-
},
|
1224
|
-
{
|
1225
|
-
"internalType": "Amount",
|
1226
|
-
"name": "distributionFeeAndCommissionAmount",
|
1227
|
-
"type": "uint96"
|
1228
|
-
},
|
1229
|
-
{
|
1230
|
-
"internalType": "Amount",
|
1231
|
-
"name": "poolPremiumAndFeeAmount",
|
1232
|
-
"type": "uint96"
|
1233
|
-
},
|
1234
|
-
{
|
1235
|
-
"internalType": "Amount",
|
1236
|
-
"name": "netPremiumAmount",
|
1237
|
-
"type": "uint96"
|
1238
|
-
},
|
1239
|
-
{
|
1240
|
-
"internalType": "Amount",
|
1241
|
-
"name": "fullPremiumAmount",
|
1242
|
-
"type": "uint96"
|
1243
|
-
},
|
1244
|
-
{
|
1245
|
-
"internalType": "Amount",
|
1246
|
-
"name": "premiumAmount",
|
1247
|
-
"type": "uint96"
|
1248
|
-
},
|
1249
|
-
{
|
1250
|
-
"internalType": "Amount",
|
1251
|
-
"name": "productFeeFixAmount",
|
1252
|
-
"type": "uint96"
|
1253
|
-
},
|
1254
|
-
{
|
1255
|
-
"internalType": "Amount",
|
1256
|
-
"name": "poolFeeFixAmount",
|
1257
|
-
"type": "uint96"
|
1258
|
-
},
|
1259
|
-
{
|
1260
|
-
"internalType": "Amount",
|
1261
|
-
"name": "bundleFeeFixAmount",
|
1262
|
-
"type": "uint96"
|
1263
|
-
},
|
1264
|
-
{
|
1265
|
-
"internalType": "Amount",
|
1266
|
-
"name": "distributionFeeFixAmount",
|
1267
|
-
"type": "uint96"
|
1268
|
-
},
|
1269
|
-
{
|
1270
|
-
"internalType": "Amount",
|
1271
|
-
"name": "productFeeVarAmount",
|
1018
|
+
"internalType": "NftId",
|
1019
|
+
"name": "distributionNftId",
|
1272
1020
|
"type": "uint96"
|
1273
1021
|
},
|
1274
1022
|
{
|
1275
|
-
"internalType": "
|
1276
|
-
"name": "
|
1023
|
+
"internalType": "NftId",
|
1024
|
+
"name": "distributorNftId",
|
1277
1025
|
"type": "uint96"
|
1278
1026
|
},
|
1279
1027
|
{
|
1280
|
-
"internalType": "
|
1281
|
-
"name": "
|
1282
|
-
"type": "
|
1028
|
+
"internalType": "uint32",
|
1029
|
+
"name": "maxReferrals",
|
1030
|
+
"type": "uint32"
|
1283
1031
|
},
|
1284
1032
|
{
|
1285
|
-
"internalType": "
|
1286
|
-
"name": "
|
1287
|
-
"type": "
|
1033
|
+
"internalType": "uint32",
|
1034
|
+
"name": "usedReferrals",
|
1035
|
+
"type": "uint32"
|
1288
1036
|
},
|
1289
1037
|
{
|
1290
|
-
"internalType": "
|
1291
|
-
"name": "
|
1292
|
-
"type": "
|
1038
|
+
"internalType": "UFixed",
|
1039
|
+
"name": "discountPercentage",
|
1040
|
+
"type": "uint160"
|
1293
1041
|
},
|
1294
1042
|
{
|
1295
|
-
"internalType": "
|
1296
|
-
"name": "
|
1297
|
-
"type": "
|
1043
|
+
"internalType": "Timestamp",
|
1044
|
+
"name": "expiryAt",
|
1045
|
+
"type": "uint40"
|
1298
1046
|
},
|
1299
1047
|
{
|
1300
|
-
"internalType": "
|
1301
|
-
"name": "
|
1302
|
-
"type": "
|
1048
|
+
"internalType": "string",
|
1049
|
+
"name": "referralCode",
|
1050
|
+
"type": "string"
|
1303
1051
|
},
|
1304
1052
|
{
|
1305
|
-
"internalType": "
|
1306
|
-
"name": "
|
1307
|
-
"type": "
|
1053
|
+
"internalType": "bytes",
|
1054
|
+
"name": "data",
|
1055
|
+
"type": "bytes"
|
1308
1056
|
}
|
1309
1057
|
],
|
1310
|
-
"internalType": "struct
|
1311
|
-
"name": "
|
1058
|
+
"internalType": "struct IDistribution.ReferralInfo",
|
1059
|
+
"name": "referralInfo",
|
1312
1060
|
"type": "tuple"
|
1313
1061
|
}
|
1314
1062
|
],
|
1315
|
-
"name": "
|
1063
|
+
"name": "createReferral",
|
1316
1064
|
"outputs": [],
|
1317
1065
|
"stateMutability": "nonpayable",
|
1318
1066
|
"type": "function"
|
1319
1067
|
},
|
1320
1068
|
{
|
1321
1069
|
"inputs": [
|
1322
|
-
{
|
1323
|
-
"internalType": "NftId",
|
1324
|
-
"name": "productNftId",
|
1325
|
-
"type": "uint96"
|
1326
|
-
},
|
1327
1070
|
{
|
1328
1071
|
"components": [
|
1329
1072
|
{
|
1330
|
-
"internalType": "
|
1331
|
-
"name": "
|
1332
|
-
"type": "
|
1073
|
+
"internalType": "NftId",
|
1074
|
+
"name": "requesterNftId",
|
1075
|
+
"type": "uint96"
|
1333
1076
|
},
|
1334
1077
|
{
|
1335
|
-
"internalType": "
|
1336
|
-
"name": "
|
1337
|
-
"type": "
|
1078
|
+
"internalType": "NftId",
|
1079
|
+
"name": "oracleNftId",
|
1080
|
+
"type": "uint96"
|
1338
1081
|
},
|
1339
1082
|
{
|
1340
1083
|
"internalType": "bool",
|
1341
|
-
"name": "
|
1084
|
+
"name": "isCancelled",
|
1342
1085
|
"type": "bool"
|
1343
1086
|
},
|
1344
1087
|
{
|
1345
|
-
"internalType": "
|
1346
|
-
"name": "
|
1347
|
-
"type": "
|
1088
|
+
"internalType": "Timestamp",
|
1089
|
+
"name": "respondedAt",
|
1090
|
+
"type": "uint40"
|
1348
1091
|
},
|
1349
1092
|
{
|
1350
|
-
"internalType": "
|
1351
|
-
"name": "
|
1352
|
-
"type": "
|
1093
|
+
"internalType": "Timestamp",
|
1094
|
+
"name": "expiredAt",
|
1095
|
+
"type": "uint40"
|
1353
1096
|
},
|
1354
1097
|
{
|
1355
|
-
"internalType": "
|
1356
|
-
"name": "
|
1357
|
-
"type": "
|
1098
|
+
"internalType": "string",
|
1099
|
+
"name": "callbackMethodName",
|
1100
|
+
"type": "string"
|
1358
1101
|
},
|
1359
1102
|
{
|
1360
|
-
"internalType": "
|
1361
|
-
"name": "
|
1362
|
-
"type": "
|
1103
|
+
"internalType": "bytes",
|
1104
|
+
"name": "requestData",
|
1105
|
+
"type": "bytes"
|
1363
1106
|
},
|
1364
1107
|
{
|
1365
|
-
"internalType": "
|
1366
|
-
"name": "
|
1367
|
-
"type": "
|
1108
|
+
"internalType": "bytes",
|
1109
|
+
"name": "responseData",
|
1110
|
+
"type": "bytes"
|
1368
1111
|
}
|
1369
1112
|
],
|
1370
|
-
"internalType": "struct
|
1371
|
-
"name": "
|
1113
|
+
"internalType": "struct IOracle.RequestInfo",
|
1114
|
+
"name": "request",
|
1372
1115
|
"type": "tuple"
|
1373
1116
|
}
|
1374
1117
|
],
|
1375
|
-
"name": "
|
1376
|
-
"outputs": [
|
1118
|
+
"name": "createRequest",
|
1119
|
+
"outputs": [
|
1120
|
+
{
|
1121
|
+
"internalType": "RequestId",
|
1122
|
+
"name": "requestId",
|
1123
|
+
"type": "uint64"
|
1124
|
+
}
|
1125
|
+
],
|
1377
1126
|
"stateMutability": "nonpayable",
|
1378
1127
|
"type": "function"
|
1379
1128
|
},
|
1380
1129
|
{
|
1381
1130
|
"inputs": [
|
1382
1131
|
{
|
1383
|
-
"internalType": "
|
1384
|
-
"name": "
|
1385
|
-
"type": "
|
1386
|
-
},
|
1387
|
-
{
|
1388
|
-
"components": [
|
1389
|
-
{
|
1390
|
-
"internalType": "NftId",
|
1391
|
-
"name": "distributorNftId",
|
1392
|
-
"type": "uint96"
|
1393
|
-
},
|
1394
|
-
{
|
1395
|
-
"internalType": "string",
|
1396
|
-
"name": "referralCode",
|
1397
|
-
"type": "string"
|
1398
|
-
},
|
1399
|
-
{
|
1400
|
-
"internalType": "UFixed",
|
1401
|
-
"name": "discountPercentage",
|
1402
|
-
"type": "uint256"
|
1403
|
-
},
|
1404
|
-
{
|
1405
|
-
"internalType": "uint32",
|
1406
|
-
"name": "maxReferrals",
|
1407
|
-
"type": "uint32"
|
1408
|
-
},
|
1409
|
-
{
|
1410
|
-
"internalType": "uint32",
|
1411
|
-
"name": "usedReferrals",
|
1412
|
-
"type": "uint32"
|
1413
|
-
},
|
1414
|
-
{
|
1415
|
-
"internalType": "Timestamp",
|
1416
|
-
"name": "expiryAt",
|
1417
|
-
"type": "uint40"
|
1418
|
-
},
|
1419
|
-
{
|
1420
|
-
"internalType": "bytes",
|
1421
|
-
"name": "data",
|
1422
|
-
"type": "bytes"
|
1423
|
-
}
|
1424
|
-
],
|
1425
|
-
"internalType": "struct IDistribution.ReferralInfo",
|
1426
|
-
"name": "referralInfo",
|
1427
|
-
"type": "tuple"
|
1428
|
-
}
|
1429
|
-
],
|
1430
|
-
"name": "createReferral",
|
1431
|
-
"outputs": [],
|
1432
|
-
"stateMutability": "nonpayable",
|
1433
|
-
"type": "function"
|
1434
|
-
},
|
1435
|
-
{
|
1436
|
-
"inputs": [
|
1437
|
-
{
|
1438
|
-
"components": [
|
1439
|
-
{
|
1440
|
-
"internalType": "NftId",
|
1441
|
-
"name": "requesterNftId",
|
1442
|
-
"type": "uint96"
|
1443
|
-
},
|
1444
|
-
{
|
1445
|
-
"internalType": "string",
|
1446
|
-
"name": "callbackMethodName",
|
1447
|
-
"type": "string"
|
1448
|
-
},
|
1449
|
-
{
|
1450
|
-
"internalType": "NftId",
|
1451
|
-
"name": "oracleNftId",
|
1452
|
-
"type": "uint96"
|
1453
|
-
},
|
1454
|
-
{
|
1455
|
-
"internalType": "bytes",
|
1456
|
-
"name": "requestData",
|
1457
|
-
"type": "bytes"
|
1458
|
-
},
|
1459
|
-
{
|
1460
|
-
"internalType": "bytes",
|
1461
|
-
"name": "responseData",
|
1462
|
-
"type": "bytes"
|
1463
|
-
},
|
1464
|
-
{
|
1465
|
-
"internalType": "Timestamp",
|
1466
|
-
"name": "respondedAt",
|
1467
|
-
"type": "uint40"
|
1468
|
-
},
|
1469
|
-
{
|
1470
|
-
"internalType": "Timestamp",
|
1471
|
-
"name": "expiredAt",
|
1472
|
-
"type": "uint40"
|
1473
|
-
},
|
1474
|
-
{
|
1475
|
-
"internalType": "bool",
|
1476
|
-
"name": "isCancelled",
|
1477
|
-
"type": "bool"
|
1478
|
-
}
|
1479
|
-
],
|
1480
|
-
"internalType": "struct IOracle.RequestInfo",
|
1481
|
-
"name": "request",
|
1482
|
-
"type": "tuple"
|
1483
|
-
}
|
1484
|
-
],
|
1485
|
-
"name": "createRequest",
|
1486
|
-
"outputs": [
|
1487
|
-
{
|
1488
|
-
"internalType": "RequestId",
|
1489
|
-
"name": "requestId",
|
1490
|
-
"type": "uint64"
|
1491
|
-
}
|
1492
|
-
],
|
1493
|
-
"stateMutability": "nonpayable",
|
1494
|
-
"type": "function"
|
1495
|
-
},
|
1496
|
-
{
|
1497
|
-
"inputs": [
|
1498
|
-
{
|
1499
|
-
"internalType": "RiskId",
|
1500
|
-
"name": "riskId",
|
1501
|
-
"type": "bytes8"
|
1502
|
-
},
|
1503
|
-
{
|
1504
|
-
"components": [
|
1505
|
-
{
|
1506
|
-
"internalType": "NftId",
|
1507
|
-
"name": "productNftId",
|
1508
|
-
"type": "uint96"
|
1509
|
-
},
|
1510
|
-
{
|
1511
|
-
"internalType": "Timestamp",
|
1512
|
-
"name": "createdAt",
|
1513
|
-
"type": "uint40"
|
1514
|
-
},
|
1515
|
-
{
|
1516
|
-
"internalType": "bytes",
|
1517
|
-
"name": "data",
|
1518
|
-
"type": "bytes"
|
1519
|
-
}
|
1520
|
-
],
|
1521
|
-
"internalType": "struct IRisk.RiskInfo",
|
1522
|
-
"name": "risk",
|
1523
|
-
"type": "tuple"
|
1524
|
-
}
|
1525
|
-
],
|
1526
|
-
"name": "createRisk",
|
1527
|
-
"outputs": [],
|
1528
|
-
"stateMutability": "nonpayable",
|
1529
|
-
"type": "function"
|
1530
|
-
},
|
1531
|
-
{
|
1532
|
-
"inputs": [
|
1533
|
-
{
|
1534
|
-
"internalType": "NftId",
|
1535
|
-
"name": "targetNftId",
|
1536
|
-
"type": "uint96"
|
1132
|
+
"internalType": "NftId",
|
1133
|
+
"name": "targetNftId",
|
1134
|
+
"type": "uint96"
|
1537
1135
|
},
|
1538
1136
|
{
|
1539
1137
|
"internalType": "Amount",
|
@@ -1646,12 +1244,12 @@
|
|
1646
1244
|
{
|
1647
1245
|
"internalType": "Blocknumber",
|
1648
1246
|
"name": "updatedIn",
|
1649
|
-
"type": "
|
1247
|
+
"type": "uint40"
|
1650
1248
|
},
|
1651
1249
|
{
|
1652
1250
|
"internalType": "Blocknumber",
|
1653
1251
|
"name": "createdIn",
|
1654
|
-
"type": "
|
1252
|
+
"type": "uint40"
|
1655
1253
|
}
|
1656
1254
|
],
|
1657
1255
|
"internalType": "struct IKeyValueStore.Metadata",
|
@@ -1821,12 +1419,12 @@
|
|
1821
1419
|
{
|
1822
1420
|
"internalType": "Blocknumber",
|
1823
1421
|
"name": "updatedIn",
|
1824
|
-
"type": "
|
1422
|
+
"type": "uint40"
|
1825
1423
|
},
|
1826
1424
|
{
|
1827
1425
|
"internalType": "Blocknumber",
|
1828
1426
|
"name": "createdIn",
|
1829
|
-
"type": "
|
1427
|
+
"type": "uint40"
|
1830
1428
|
}
|
1831
1429
|
],
|
1832
1430
|
"internalType": "struct IKeyValueStore.Metadata",
|
@@ -2037,76 +1635,11 @@
|
|
2037
1635
|
"inputs": [
|
2038
1636
|
{
|
2039
1637
|
"internalType": "NftId",
|
2040
|
-
"name": "
|
1638
|
+
"name": "bundleNftId",
|
2041
1639
|
"type": "uint96"
|
2042
1640
|
},
|
2043
1641
|
{
|
2044
1642
|
"components": [
|
2045
|
-
{
|
2046
|
-
"internalType": "NftId",
|
2047
|
-
"name": "productNftId",
|
2048
|
-
"type": "uint96"
|
2049
|
-
},
|
2050
|
-
{
|
2051
|
-
"internalType": "NftId",
|
2052
|
-
"name": "bundleNftId",
|
2053
|
-
"type": "uint96"
|
2054
|
-
},
|
2055
|
-
{
|
2056
|
-
"internalType": "ReferralId",
|
2057
|
-
"name": "referralId",
|
2058
|
-
"type": "bytes8"
|
2059
|
-
},
|
2060
|
-
{
|
2061
|
-
"internalType": "RiskId",
|
2062
|
-
"name": "riskId",
|
2063
|
-
"type": "bytes8"
|
2064
|
-
},
|
2065
|
-
{
|
2066
|
-
"internalType": "Amount",
|
2067
|
-
"name": "sumInsuredAmount",
|
2068
|
-
"type": "uint96"
|
2069
|
-
},
|
2070
|
-
{
|
2071
|
-
"internalType": "Amount",
|
2072
|
-
"name": "premiumAmount",
|
2073
|
-
"type": "uint96"
|
2074
|
-
},
|
2075
|
-
{
|
2076
|
-
"internalType": "Seconds",
|
2077
|
-
"name": "lifetime",
|
2078
|
-
"type": "uint40"
|
2079
|
-
},
|
2080
|
-
{
|
2081
|
-
"internalType": "bytes",
|
2082
|
-
"name": "applicationData",
|
2083
|
-
"type": "bytes"
|
2084
|
-
},
|
2085
|
-
{
|
2086
|
-
"internalType": "bytes",
|
2087
|
-
"name": "processData",
|
2088
|
-
"type": "bytes"
|
2089
|
-
},
|
2090
|
-
{
|
2091
|
-
"internalType": "uint16",
|
2092
|
-
"name": "claimsCount",
|
2093
|
-
"type": "uint16"
|
2094
|
-
},
|
2095
|
-
{
|
2096
|
-
"internalType": "uint16",
|
2097
|
-
"name": "openClaimsCount",
|
2098
|
-
"type": "uint16"
|
2099
|
-
},
|
2100
|
-
{
|
2101
|
-
"internalType": "Amount",
|
2102
|
-
"name": "claimAmount",
|
2103
|
-
"type": "uint96"
|
2104
|
-
},
|
2105
|
-
{
|
2106
|
-
"internalType": "Amount",
|
2107
|
-
"name": "payoutAmount",
|
2108
|
-
"type": "uint96"
|
2109
|
-
},
|
2110
1643
|
{
|
2111
1644
|
"internalType": "Timestamp",
|
2112
1645
|
"name": "activatedAt",
|
@@ -2121,50 +1654,7 @@
|
|
2121
1654
|
"internalType": "Timestamp",
|
2122
1655
|
"name": "closedAt",
|
2123
1656
|
"type": "uint40"
|
2124
|
-
}
|
2125
|
-
],
|
2126
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
2127
|
-
"name": "policy",
|
2128
|
-
"type": "tuple"
|
2129
|
-
},
|
2130
|
-
{
|
2131
|
-
"internalType": "StateId",
|
2132
|
-
"name": "newState",
|
2133
|
-
"type": "uint8"
|
2134
|
-
}
|
2135
|
-
],
|
2136
|
-
"name": "updateApplication",
|
2137
|
-
"outputs": [],
|
2138
|
-
"stateMutability": "nonpayable",
|
2139
|
-
"type": "function"
|
2140
|
-
},
|
2141
|
-
{
|
2142
|
-
"inputs": [
|
2143
|
-
{
|
2144
|
-
"internalType": "NftId",
|
2145
|
-
"name": "applicationNftId",
|
2146
|
-
"type": "uint96"
|
2147
|
-
},
|
2148
|
-
{
|
2149
|
-
"internalType": "StateId",
|
2150
|
-
"name": "newState",
|
2151
|
-
"type": "uint8"
|
2152
|
-
}
|
2153
|
-
],
|
2154
|
-
"name": "updateApplicationState",
|
2155
|
-
"outputs": [],
|
2156
|
-
"stateMutability": "nonpayable",
|
2157
|
-
"type": "function"
|
2158
|
-
},
|
2159
|
-
{
|
2160
|
-
"inputs": [
|
2161
|
-
{
|
2162
|
-
"internalType": "NftId",
|
2163
|
-
"name": "bundleNftId",
|
2164
|
-
"type": "uint96"
|
2165
|
-
},
|
2166
|
-
{
|
2167
|
-
"components": [
|
1657
|
+
},
|
2168
1658
|
{
|
2169
1659
|
"internalType": "NftId",
|
2170
1660
|
"name": "poolNftId",
|
@@ -2175,12 +1665,12 @@
|
|
2175
1665
|
{
|
2176
1666
|
"internalType": "UFixed",
|
2177
1667
|
"name": "fractionalFee",
|
2178
|
-
"type": "
|
1668
|
+
"type": "uint160"
|
2179
1669
|
},
|
2180
1670
|
{
|
2181
|
-
"internalType": "
|
1671
|
+
"internalType": "Amount",
|
2182
1672
|
"name": "fixedFee",
|
2183
|
-
"type": "
|
1673
|
+
"type": "uint96"
|
2184
1674
|
}
|
2185
1675
|
],
|
2186
1676
|
"internalType": "struct Fee",
|
@@ -2191,21 +1681,6 @@
|
|
2191
1681
|
"internalType": "bytes",
|
2192
1682
|
"name": "filter",
|
2193
1683
|
"type": "bytes"
|
2194
|
-
},
|
2195
|
-
{
|
2196
|
-
"internalType": "Timestamp",
|
2197
|
-
"name": "activatedAt",
|
2198
|
-
"type": "uint40"
|
2199
|
-
},
|
2200
|
-
{
|
2201
|
-
"internalType": "Timestamp",
|
2202
|
-
"name": "expiredAt",
|
2203
|
-
"type": "uint40"
|
2204
|
-
},
|
2205
|
-
{
|
2206
|
-
"internalType": "Timestamp",
|
2207
|
-
"name": "closedAt",
|
2208
|
-
"type": "uint40"
|
2209
1684
|
}
|
2210
1685
|
],
|
2211
1686
|
"internalType": "struct IBundle.BundleInfo",
|
@@ -2249,463 +1724,50 @@
|
|
2249
1724
|
"type": "uint96"
|
2250
1725
|
},
|
2251
1726
|
{
|
2252
|
-
"internalType": "ClaimId",
|
2253
|
-
"name": "claimId",
|
2254
|
-
"type": "uint16"
|
2255
|
-
},
|
2256
|
-
{
|
2257
|
-
"components": [
|
2258
|
-
{
|
2259
|
-
"internalType": "Amount",
|
2260
|
-
"name": "claimAmount",
|
2261
|
-
"type": "uint96"
|
2262
|
-
},
|
2263
|
-
{
|
2264
|
-
"internalType": "Amount",
|
2265
|
-
"name": "paidAmount",
|
2266
|
-
"type": "uint96"
|
2267
|
-
},
|
2268
|
-
{
|
2269
|
-
"internalType": "uint24",
|
2270
|
-
"name": "payoutsCount",
|
2271
|
-
"type": "uint24"
|
2272
|
-
},
|
2273
|
-
{
|
2274
|
-
"internalType": "uint24",
|
2275
|
-
"name": "openPayoutsCount",
|
2276
|
-
"type": "uint24"
|
2277
|
-
},
|
2278
|
-
{
|
2279
|
-
"internalType": "bytes",
|
2280
|
-
"name": "submissionData",
|
2281
|
-
"type": "bytes"
|
2282
|
-
},
|
2283
|
-
{
|
2284
|
-
"internalType": "bytes",
|
2285
|
-
"name": "processData",
|
2286
|
-
"type": "bytes"
|
2287
|
-
},
|
2288
|
-
{
|
2289
|
-
"internalType": "Timestamp",
|
2290
|
-
"name": "closedAt",
|
2291
|
-
"type": "uint40"
|
2292
|
-
}
|
2293
|
-
],
|
2294
|
-
"internalType": "struct IPolicy.ClaimInfo",
|
2295
|
-
"name": "claim",
|
2296
|
-
"type": "tuple"
|
2297
|
-
},
|
2298
|
-
{
|
2299
|
-
"internalType": "StateId",
|
2300
|
-
"name": "newState",
|
2301
|
-
"type": "uint8"
|
2302
|
-
}
|
2303
|
-
],
|
2304
|
-
"name": "updateClaim",
|
2305
|
-
"outputs": [],
|
2306
|
-
"stateMutability": "nonpayable",
|
2307
|
-
"type": "function"
|
2308
|
-
},
|
2309
|
-
{
|
2310
|
-
"inputs": [
|
2311
|
-
{
|
2312
|
-
"internalType": "NftId",
|
2313
|
-
"name": "policyNftId",
|
2314
|
-
"type": "uint96"
|
2315
|
-
},
|
2316
|
-
{
|
2317
|
-
"internalType": "ClaimId",
|
2318
|
-
"name": "claimId",
|
2319
|
-
"type": "uint16"
|
2320
|
-
},
|
2321
|
-
{
|
2322
|
-
"internalType": "StateId",
|
2323
|
-
"name": "newState",
|
2324
|
-
"type": "uint8"
|
2325
|
-
}
|
2326
|
-
],
|
2327
|
-
"name": "updateClaimState",
|
2328
|
-
"outputs": [],
|
2329
|
-
"stateMutability": "nonpayable",
|
2330
|
-
"type": "function"
|
2331
|
-
},
|
2332
|
-
{
|
2333
|
-
"inputs": [
|
2334
|
-
{
|
2335
|
-
"internalType": "NftId",
|
2336
|
-
"name": "componentNftId",
|
2337
|
-
"type": "uint96"
|
2338
|
-
},
|
2339
|
-
{
|
2340
|
-
"components": [
|
2341
|
-
{
|
2342
|
-
"internalType": "string",
|
2343
|
-
"name": "name",
|
2344
|
-
"type": "string"
|
2345
|
-
},
|
2346
|
-
{
|
2347
|
-
"internalType": "contract IERC20Metadata",
|
2348
|
-
"name": "token",
|
2349
|
-
"type": "address"
|
2350
|
-
},
|
2351
|
-
{
|
2352
|
-
"internalType": "contract TokenHandler",
|
2353
|
-
"name": "tokenHandler",
|
2354
|
-
"type": "address"
|
2355
|
-
},
|
2356
|
-
{
|
2357
|
-
"internalType": "bytes",
|
2358
|
-
"name": "data",
|
2359
|
-
"type": "bytes"
|
2360
|
-
}
|
2361
|
-
],
|
2362
|
-
"internalType": "struct IComponents.ComponentInfo",
|
2363
|
-
"name": "componentInfo",
|
2364
|
-
"type": "tuple"
|
2365
|
-
},
|
2366
|
-
{
|
2367
|
-
"internalType": "StateId",
|
2368
|
-
"name": "newState",
|
2369
|
-
"type": "uint8"
|
2370
|
-
}
|
2371
|
-
],
|
2372
|
-
"name": "updateComponent",
|
2373
|
-
"outputs": [],
|
2374
|
-
"stateMutability": "nonpayable",
|
2375
|
-
"type": "function"
|
2376
|
-
},
|
2377
|
-
{
|
2378
|
-
"inputs": [
|
2379
|
-
{
|
2380
|
-
"internalType": "NftId",
|
2381
|
-
"name": "distributorNftId",
|
2382
|
-
"type": "uint96"
|
2383
|
-
},
|
2384
|
-
{
|
2385
|
-
"components": [
|
2386
|
-
{
|
2387
|
-
"internalType": "DistributorType",
|
2388
|
-
"name": "distributorType",
|
2389
|
-
"type": "bytes8"
|
2390
|
-
},
|
2391
|
-
{
|
2392
|
-
"internalType": "bool",
|
2393
|
-
"name": "active",
|
2394
|
-
"type": "bool"
|
2395
|
-
},
|
2396
|
-
{
|
2397
|
-
"internalType": "bytes",
|
2398
|
-
"name": "data",
|
2399
|
-
"type": "bytes"
|
2400
|
-
},
|
2401
|
-
{
|
2402
|
-
"internalType": "uint32",
|
2403
|
-
"name": "numPoliciesSold",
|
2404
|
-
"type": "uint32"
|
2405
|
-
}
|
2406
|
-
],
|
2407
|
-
"internalType": "struct IDistribution.DistributorInfo",
|
2408
|
-
"name": "info",
|
2409
|
-
"type": "tuple"
|
2410
|
-
},
|
2411
|
-
{
|
2412
|
-
"internalType": "StateId",
|
2413
|
-
"name": "newState",
|
2414
|
-
"type": "uint8"
|
2415
|
-
}
|
2416
|
-
],
|
2417
|
-
"name": "updateDistributor",
|
2418
|
-
"outputs": [],
|
2419
|
-
"stateMutability": "nonpayable",
|
2420
|
-
"type": "function"
|
2421
|
-
},
|
2422
|
-
{
|
2423
|
-
"inputs": [
|
2424
|
-
{
|
2425
|
-
"internalType": "NftId",
|
2426
|
-
"name": "distributorNftId",
|
2427
|
-
"type": "uint96"
|
2428
|
-
},
|
2429
|
-
{
|
2430
|
-
"internalType": "StateId",
|
2431
|
-
"name": "newState",
|
2432
|
-
"type": "uint8"
|
2433
|
-
}
|
2434
|
-
],
|
2435
|
-
"name": "updateDistributorState",
|
2436
|
-
"outputs": [],
|
2437
|
-
"stateMutability": "nonpayable",
|
2438
|
-
"type": "function"
|
2439
|
-
},
|
2440
|
-
{
|
2441
|
-
"inputs": [
|
2442
|
-
{
|
2443
|
-
"internalType": "DistributorType",
|
2444
|
-
"name": "distributorType",
|
2445
|
-
"type": "bytes8"
|
2446
|
-
},
|
2447
|
-
{
|
2448
|
-
"components": [
|
2449
|
-
{
|
2450
|
-
"internalType": "string",
|
2451
|
-
"name": "name",
|
2452
|
-
"type": "string"
|
2453
|
-
},
|
2454
|
-
{
|
2455
|
-
"internalType": "UFixed",
|
2456
|
-
"name": "minDiscountPercentage",
|
2457
|
-
"type": "uint256"
|
2458
|
-
},
|
2459
|
-
{
|
2460
|
-
"internalType": "UFixed",
|
2461
|
-
"name": "maxDiscountPercentage",
|
2462
|
-
"type": "uint256"
|
2463
|
-
},
|
2464
|
-
{
|
2465
|
-
"internalType": "UFixed",
|
2466
|
-
"name": "commissionPercentage",
|
2467
|
-
"type": "uint256"
|
2468
|
-
},
|
2469
|
-
{
|
2470
|
-
"internalType": "uint32",
|
2471
|
-
"name": "maxReferralCount",
|
2472
|
-
"type": "uint32"
|
2473
|
-
},
|
2474
|
-
{
|
2475
|
-
"internalType": "uint32",
|
2476
|
-
"name": "maxReferralLifetime",
|
2477
|
-
"type": "uint32"
|
2478
|
-
},
|
2479
|
-
{
|
2480
|
-
"internalType": "bool",
|
2481
|
-
"name": "allowSelfReferrals",
|
2482
|
-
"type": "bool"
|
2483
|
-
},
|
2484
|
-
{
|
2485
|
-
"internalType": "bool",
|
2486
|
-
"name": "allowRenewals",
|
2487
|
-
"type": "bool"
|
2488
|
-
},
|
2489
|
-
{
|
2490
|
-
"internalType": "bytes",
|
2491
|
-
"name": "data",
|
2492
|
-
"type": "bytes"
|
2493
|
-
}
|
2494
|
-
],
|
2495
|
-
"internalType": "struct IDistribution.DistributorTypeInfo",
|
2496
|
-
"name": "info",
|
2497
|
-
"type": "tuple"
|
2498
|
-
},
|
2499
|
-
{
|
2500
|
-
"internalType": "StateId",
|
2501
|
-
"name": "newState",
|
2502
|
-
"type": "uint8"
|
2503
|
-
}
|
2504
|
-
],
|
2505
|
-
"name": "updateDistributorType",
|
2506
|
-
"outputs": [],
|
2507
|
-
"stateMutability": "nonpayable",
|
2508
|
-
"type": "function"
|
2509
|
-
},
|
2510
|
-
{
|
2511
|
-
"inputs": [
|
2512
|
-
{
|
2513
|
-
"internalType": "DistributorType",
|
2514
|
-
"name": "distributorType",
|
2515
|
-
"type": "bytes8"
|
2516
|
-
},
|
2517
|
-
{
|
2518
|
-
"internalType": "StateId",
|
2519
|
-
"name": "newState",
|
2520
|
-
"type": "uint8"
|
2521
|
-
}
|
2522
|
-
],
|
2523
|
-
"name": "updateDistributorTypeState",
|
2524
|
-
"outputs": [],
|
2525
|
-
"stateMutability": "nonpayable",
|
2526
|
-
"type": "function"
|
2527
|
-
},
|
2528
|
-
{
|
2529
|
-
"inputs": [
|
2530
|
-
{
|
2531
|
-
"internalType": "NftId",
|
2532
|
-
"name": "productNftId",
|
2533
|
-
"type": "uint96"
|
2534
|
-
},
|
2535
|
-
{
|
2536
|
-
"components": [
|
2537
|
-
{
|
2538
|
-
"components": [
|
2539
|
-
{
|
2540
|
-
"internalType": "UFixed",
|
2541
|
-
"name": "fractionalFee",
|
2542
|
-
"type": "uint256"
|
2543
|
-
},
|
2544
|
-
{
|
2545
|
-
"internalType": "uint256",
|
2546
|
-
"name": "fixedFee",
|
2547
|
-
"type": "uint256"
|
2548
|
-
}
|
2549
|
-
],
|
2550
|
-
"internalType": "struct Fee",
|
2551
|
-
"name": "productFee",
|
2552
|
-
"type": "tuple"
|
2553
|
-
},
|
2554
|
-
{
|
2555
|
-
"components": [
|
2556
|
-
{
|
2557
|
-
"internalType": "UFixed",
|
2558
|
-
"name": "fractionalFee",
|
2559
|
-
"type": "uint256"
|
2560
|
-
},
|
2561
|
-
{
|
2562
|
-
"internalType": "uint256",
|
2563
|
-
"name": "fixedFee",
|
2564
|
-
"type": "uint256"
|
2565
|
-
}
|
2566
|
-
],
|
2567
|
-
"internalType": "struct Fee",
|
2568
|
-
"name": "processingFee",
|
2569
|
-
"type": "tuple"
|
2570
|
-
},
|
2571
|
-
{
|
2572
|
-
"components": [
|
2573
|
-
{
|
2574
|
-
"internalType": "UFixed",
|
2575
|
-
"name": "fractionalFee",
|
2576
|
-
"type": "uint256"
|
2577
|
-
},
|
2578
|
-
{
|
2579
|
-
"internalType": "uint256",
|
2580
|
-
"name": "fixedFee",
|
2581
|
-
"type": "uint256"
|
2582
|
-
}
|
2583
|
-
],
|
2584
|
-
"internalType": "struct Fee",
|
2585
|
-
"name": "distributionFee",
|
2586
|
-
"type": "tuple"
|
2587
|
-
},
|
2588
|
-
{
|
2589
|
-
"components": [
|
2590
|
-
{
|
2591
|
-
"internalType": "UFixed",
|
2592
|
-
"name": "fractionalFee",
|
2593
|
-
"type": "uint256"
|
2594
|
-
},
|
2595
|
-
{
|
2596
|
-
"internalType": "uint256",
|
2597
|
-
"name": "fixedFee",
|
2598
|
-
"type": "uint256"
|
2599
|
-
}
|
2600
|
-
],
|
2601
|
-
"internalType": "struct Fee",
|
2602
|
-
"name": "minDistributionOwnerFee",
|
2603
|
-
"type": "tuple"
|
2604
|
-
},
|
2605
|
-
{
|
2606
|
-
"components": [
|
2607
|
-
{
|
2608
|
-
"internalType": "UFixed",
|
2609
|
-
"name": "fractionalFee",
|
2610
|
-
"type": "uint256"
|
2611
|
-
},
|
2612
|
-
{
|
2613
|
-
"internalType": "uint256",
|
2614
|
-
"name": "fixedFee",
|
2615
|
-
"type": "uint256"
|
2616
|
-
}
|
2617
|
-
],
|
2618
|
-
"internalType": "struct Fee",
|
2619
|
-
"name": "poolFee",
|
2620
|
-
"type": "tuple"
|
2621
|
-
},
|
2622
|
-
{
|
2623
|
-
"components": [
|
2624
|
-
{
|
2625
|
-
"internalType": "UFixed",
|
2626
|
-
"name": "fractionalFee",
|
2627
|
-
"type": "uint256"
|
2628
|
-
},
|
2629
|
-
{
|
2630
|
-
"internalType": "uint256",
|
2631
|
-
"name": "fixedFee",
|
2632
|
-
"type": "uint256"
|
2633
|
-
}
|
2634
|
-
],
|
2635
|
-
"internalType": "struct Fee",
|
2636
|
-
"name": "stakingFee",
|
2637
|
-
"type": "tuple"
|
2638
|
-
},
|
2639
|
-
{
|
2640
|
-
"components": [
|
2641
|
-
{
|
2642
|
-
"internalType": "UFixed",
|
2643
|
-
"name": "fractionalFee",
|
2644
|
-
"type": "uint256"
|
2645
|
-
},
|
2646
|
-
{
|
2647
|
-
"internalType": "uint256",
|
2648
|
-
"name": "fixedFee",
|
2649
|
-
"type": "uint256"
|
2650
|
-
}
|
2651
|
-
],
|
2652
|
-
"internalType": "struct Fee",
|
2653
|
-
"name": "performanceFee",
|
2654
|
-
"type": "tuple"
|
2655
|
-
}
|
2656
|
-
],
|
2657
|
-
"internalType": "struct IComponents.FeeInfo",
|
2658
|
-
"name": "info",
|
2659
|
-
"type": "tuple"
|
2660
|
-
}
|
2661
|
-
],
|
2662
|
-
"name": "updateFee",
|
2663
|
-
"outputs": [],
|
2664
|
-
"stateMutability": "nonpayable",
|
2665
|
-
"type": "function"
|
2666
|
-
},
|
2667
|
-
{
|
2668
|
-
"inputs": [
|
2669
|
-
{
|
2670
|
-
"internalType": "NftId",
|
2671
|
-
"name": "policyNftId",
|
2672
|
-
"type": "uint96"
|
2673
|
-
},
|
2674
|
-
{
|
2675
|
-
"internalType": "PayoutId",
|
2676
|
-
"name": "payoutId",
|
2677
|
-
"type": "uint40"
|
1727
|
+
"internalType": "ClaimId",
|
1728
|
+
"name": "claimId",
|
1729
|
+
"type": "uint16"
|
2678
1730
|
},
|
2679
1731
|
{
|
2680
1732
|
"components": [
|
2681
1733
|
{
|
2682
|
-
"internalType": "
|
2683
|
-
"name": "
|
2684
|
-
"type": "
|
1734
|
+
"internalType": "Amount",
|
1735
|
+
"name": "claimAmount",
|
1736
|
+
"type": "uint96"
|
2685
1737
|
},
|
2686
1738
|
{
|
2687
1739
|
"internalType": "Amount",
|
2688
|
-
"name": "
|
1740
|
+
"name": "paidAmount",
|
2689
1741
|
"type": "uint96"
|
2690
1742
|
},
|
2691
1743
|
{
|
2692
|
-
"internalType": "
|
2693
|
-
"name": "
|
2694
|
-
"type": "
|
1744
|
+
"internalType": "Timestamp",
|
1745
|
+
"name": "closedAt",
|
1746
|
+
"type": "uint40"
|
1747
|
+
},
|
1748
|
+
{
|
1749
|
+
"internalType": "uint24",
|
1750
|
+
"name": "payoutsCount",
|
1751
|
+
"type": "uint24"
|
1752
|
+
},
|
1753
|
+
{
|
1754
|
+
"internalType": "uint24",
|
1755
|
+
"name": "openPayoutsCount",
|
1756
|
+
"type": "uint24"
|
2695
1757
|
},
|
2696
1758
|
{
|
2697
1759
|
"internalType": "bytes",
|
2698
|
-
"name": "
|
1760
|
+
"name": "submissionData",
|
2699
1761
|
"type": "bytes"
|
2700
1762
|
},
|
2701
1763
|
{
|
2702
|
-
"internalType": "
|
2703
|
-
"name": "
|
2704
|
-
"type": "
|
1764
|
+
"internalType": "bytes",
|
1765
|
+
"name": "processData",
|
1766
|
+
"type": "bytes"
|
2705
1767
|
}
|
2706
1768
|
],
|
2707
|
-
"internalType": "struct IPolicy.
|
2708
|
-
"name": "
|
1769
|
+
"internalType": "struct IPolicy.ClaimInfo",
|
1770
|
+
"name": "claim",
|
2709
1771
|
"type": "tuple"
|
2710
1772
|
},
|
2711
1773
|
{
|
@@ -2714,7 +1776,7 @@
|
|
2714
1776
|
"type": "uint8"
|
2715
1777
|
}
|
2716
1778
|
],
|
2717
|
-
"name": "
|
1779
|
+
"name": "updateClaim",
|
2718
1780
|
"outputs": [],
|
2719
1781
|
"stateMutability": "nonpayable",
|
2720
1782
|
"type": "function"
|
@@ -2727,9 +1789,9 @@
|
|
2727
1789
|
"type": "uint96"
|
2728
1790
|
},
|
2729
1791
|
{
|
2730
|
-
"internalType": "
|
2731
|
-
"name": "
|
2732
|
-
"type": "
|
1792
|
+
"internalType": "ClaimId",
|
1793
|
+
"name": "claimId",
|
1794
|
+
"type": "uint16"
|
2733
1795
|
},
|
2734
1796
|
{
|
2735
1797
|
"internalType": "StateId",
|
@@ -2737,7 +1799,7 @@
|
|
2737
1799
|
"type": "uint8"
|
2738
1800
|
}
|
2739
1801
|
],
|
2740
|
-
"name": "
|
1802
|
+
"name": "updateClaimState",
|
2741
1803
|
"outputs": [],
|
2742
1804
|
"stateMutability": "nonpayable",
|
2743
1805
|
"type": "function"
|
@@ -2746,94 +1808,74 @@
|
|
2746
1808
|
"inputs": [
|
2747
1809
|
{
|
2748
1810
|
"internalType": "NftId",
|
2749
|
-
"name": "
|
1811
|
+
"name": "componentNftId",
|
2750
1812
|
"type": "uint96"
|
2751
1813
|
},
|
2752
1814
|
{
|
2753
1815
|
"components": [
|
2754
1816
|
{
|
2755
|
-
"internalType": "
|
2756
|
-
"name": "
|
2757
|
-
"type": "
|
1817
|
+
"internalType": "string",
|
1818
|
+
"name": "name",
|
1819
|
+
"type": "string"
|
2758
1820
|
},
|
2759
1821
|
{
|
2760
|
-
"internalType": "
|
2761
|
-
"name": "
|
2762
|
-
"type": "
|
1822
|
+
"internalType": "contract TokenHandler",
|
1823
|
+
"name": "tokenHandler",
|
1824
|
+
"type": "address"
|
2763
1825
|
},
|
2764
1826
|
{
|
2765
|
-
"internalType": "
|
2766
|
-
"name": "
|
2767
|
-
"type": "
|
2768
|
-
}
|
1827
|
+
"internalType": "bytes",
|
1828
|
+
"name": "data",
|
1829
|
+
"type": "bytes"
|
1830
|
+
}
|
1831
|
+
],
|
1832
|
+
"internalType": "struct IComponents.ComponentInfo",
|
1833
|
+
"name": "componentInfo",
|
1834
|
+
"type": "tuple"
|
1835
|
+
},
|
1836
|
+
{
|
1837
|
+
"internalType": "StateId",
|
1838
|
+
"name": "newState",
|
1839
|
+
"type": "uint8"
|
1840
|
+
}
|
1841
|
+
],
|
1842
|
+
"name": "updateComponent",
|
1843
|
+
"outputs": [],
|
1844
|
+
"stateMutability": "nonpayable",
|
1845
|
+
"type": "function"
|
1846
|
+
},
|
1847
|
+
{
|
1848
|
+
"inputs": [
|
1849
|
+
{
|
1850
|
+
"internalType": "NftId",
|
1851
|
+
"name": "distributorNftId",
|
1852
|
+
"type": "uint96"
|
1853
|
+
},
|
1854
|
+
{
|
1855
|
+
"components": [
|
2769
1856
|
{
|
2770
|
-
"internalType": "
|
2771
|
-
"name": "
|
1857
|
+
"internalType": "DistributorType",
|
1858
|
+
"name": "distributorType",
|
2772
1859
|
"type": "bytes8"
|
2773
1860
|
},
|
2774
1861
|
{
|
2775
|
-
"internalType": "
|
2776
|
-
"name": "
|
2777
|
-
"type": "
|
2778
|
-
},
|
2779
|
-
{
|
2780
|
-
"internalType": "Amount",
|
2781
|
-
"name": "premiumAmount",
|
2782
|
-
"type": "uint96"
|
2783
|
-
},
|
2784
|
-
{
|
2785
|
-
"internalType": "Seconds",
|
2786
|
-
"name": "lifetime",
|
2787
|
-
"type": "uint40"
|
1862
|
+
"internalType": "bool",
|
1863
|
+
"name": "active",
|
1864
|
+
"type": "bool"
|
2788
1865
|
},
|
2789
1866
|
{
|
2790
|
-
"internalType": "
|
2791
|
-
"name": "
|
2792
|
-
"type": "
|
1867
|
+
"internalType": "uint32",
|
1868
|
+
"name": "numPoliciesSold",
|
1869
|
+
"type": "uint32"
|
2793
1870
|
},
|
2794
1871
|
{
|
2795
1872
|
"internalType": "bytes",
|
2796
|
-
"name": "
|
1873
|
+
"name": "data",
|
2797
1874
|
"type": "bytes"
|
2798
|
-
},
|
2799
|
-
{
|
2800
|
-
"internalType": "uint16",
|
2801
|
-
"name": "claimsCount",
|
2802
|
-
"type": "uint16"
|
2803
|
-
},
|
2804
|
-
{
|
2805
|
-
"internalType": "uint16",
|
2806
|
-
"name": "openClaimsCount",
|
2807
|
-
"type": "uint16"
|
2808
|
-
},
|
2809
|
-
{
|
2810
|
-
"internalType": "Amount",
|
2811
|
-
"name": "claimAmount",
|
2812
|
-
"type": "uint96"
|
2813
|
-
},
|
2814
|
-
{
|
2815
|
-
"internalType": "Amount",
|
2816
|
-
"name": "payoutAmount",
|
2817
|
-
"type": "uint96"
|
2818
|
-
},
|
2819
|
-
{
|
2820
|
-
"internalType": "Timestamp",
|
2821
|
-
"name": "activatedAt",
|
2822
|
-
"type": "uint40"
|
2823
|
-
},
|
2824
|
-
{
|
2825
|
-
"internalType": "Timestamp",
|
2826
|
-
"name": "expiredAt",
|
2827
|
-
"type": "uint40"
|
2828
|
-
},
|
2829
|
-
{
|
2830
|
-
"internalType": "Timestamp",
|
2831
|
-
"name": "closedAt",
|
2832
|
-
"type": "uint40"
|
2833
1875
|
}
|
2834
1876
|
],
|
2835
|
-
"internalType": "struct
|
2836
|
-
"name": "
|
1877
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
1878
|
+
"name": "info",
|
2837
1879
|
"type": "tuple"
|
2838
1880
|
},
|
2839
1881
|
{
|
@@ -2842,7 +1884,7 @@
|
|
2842
1884
|
"type": "uint8"
|
2843
1885
|
}
|
2844
1886
|
],
|
2845
|
-
"name": "
|
1887
|
+
"name": "updateDistributor",
|
2846
1888
|
"outputs": [],
|
2847
1889
|
"stateMutability": "nonpayable",
|
2848
1890
|
"type": "function"
|
@@ -2851,94 +1893,82 @@
|
|
2851
1893
|
"inputs": [
|
2852
1894
|
{
|
2853
1895
|
"internalType": "NftId",
|
2854
|
-
"name": "
|
1896
|
+
"name": "distributorNftId",
|
2855
1897
|
"type": "uint96"
|
2856
1898
|
},
|
1899
|
+
{
|
1900
|
+
"internalType": "StateId",
|
1901
|
+
"name": "newState",
|
1902
|
+
"type": "uint8"
|
1903
|
+
}
|
1904
|
+
],
|
1905
|
+
"name": "updateDistributorState",
|
1906
|
+
"outputs": [],
|
1907
|
+
"stateMutability": "nonpayable",
|
1908
|
+
"type": "function"
|
1909
|
+
},
|
1910
|
+
{
|
1911
|
+
"inputs": [
|
1912
|
+
{
|
1913
|
+
"internalType": "DistributorType",
|
1914
|
+
"name": "distributorType",
|
1915
|
+
"type": "bytes8"
|
1916
|
+
},
|
2857
1917
|
{
|
2858
1918
|
"components": [
|
2859
1919
|
{
|
2860
|
-
"internalType": "
|
2861
|
-
"name": "
|
2862
|
-
"type": "
|
1920
|
+
"internalType": "UFixed",
|
1921
|
+
"name": "minDiscountPercentage",
|
1922
|
+
"type": "uint160"
|
2863
1923
|
},
|
2864
1924
|
{
|
2865
1925
|
"internalType": "NftId",
|
2866
|
-
"name": "
|
1926
|
+
"name": "distributionNftId",
|
2867
1927
|
"type": "uint96"
|
2868
1928
|
},
|
2869
1929
|
{
|
2870
|
-
"internalType": "
|
2871
|
-
"name": "
|
2872
|
-
"type": "
|
2873
|
-
},
|
2874
|
-
{
|
2875
|
-
"internalType": "RiskId",
|
2876
|
-
"name": "riskId",
|
2877
|
-
"type": "bytes8"
|
2878
|
-
},
|
2879
|
-
{
|
2880
|
-
"internalType": "Amount",
|
2881
|
-
"name": "sumInsuredAmount",
|
2882
|
-
"type": "uint96"
|
1930
|
+
"internalType": "UFixed",
|
1931
|
+
"name": "maxDiscountPercentage",
|
1932
|
+
"type": "uint160"
|
2883
1933
|
},
|
2884
1934
|
{
|
2885
|
-
"internalType": "
|
2886
|
-
"name": "
|
2887
|
-
"type": "
|
1935
|
+
"internalType": "uint32",
|
1936
|
+
"name": "maxReferralCount",
|
1937
|
+
"type": "uint32"
|
2888
1938
|
},
|
2889
1939
|
{
|
2890
1940
|
"internalType": "Seconds",
|
2891
|
-
"name": "
|
1941
|
+
"name": "maxReferralLifetime",
|
2892
1942
|
"type": "uint40"
|
2893
1943
|
},
|
2894
1944
|
{
|
2895
|
-
"internalType": "
|
2896
|
-
"name": "
|
2897
|
-
"type": "
|
2898
|
-
},
|
2899
|
-
{
|
2900
|
-
"internalType": "bytes",
|
2901
|
-
"name": "processData",
|
2902
|
-
"type": "bytes"
|
2903
|
-
},
|
2904
|
-
{
|
2905
|
-
"internalType": "uint16",
|
2906
|
-
"name": "claimsCount",
|
2907
|
-
"type": "uint16"
|
2908
|
-
},
|
2909
|
-
{
|
2910
|
-
"internalType": "uint16",
|
2911
|
-
"name": "openClaimsCount",
|
2912
|
-
"type": "uint16"
|
2913
|
-
},
|
2914
|
-
{
|
2915
|
-
"internalType": "Amount",
|
2916
|
-
"name": "claimAmount",
|
2917
|
-
"type": "uint96"
|
1945
|
+
"internalType": "bool",
|
1946
|
+
"name": "allowSelfReferrals",
|
1947
|
+
"type": "bool"
|
2918
1948
|
},
|
2919
1949
|
{
|
2920
|
-
"internalType": "
|
2921
|
-
"name": "
|
2922
|
-
"type": "
|
1950
|
+
"internalType": "bool",
|
1951
|
+
"name": "allowRenewals",
|
1952
|
+
"type": "bool"
|
2923
1953
|
},
|
2924
1954
|
{
|
2925
|
-
"internalType": "
|
2926
|
-
"name": "
|
2927
|
-
"type": "
|
1955
|
+
"internalType": "UFixed",
|
1956
|
+
"name": "commissionPercentage",
|
1957
|
+
"type": "uint160"
|
2928
1958
|
},
|
2929
1959
|
{
|
2930
|
-
"internalType": "
|
2931
|
-
"name": "
|
2932
|
-
"type": "
|
1960
|
+
"internalType": "string",
|
1961
|
+
"name": "name",
|
1962
|
+
"type": "string"
|
2933
1963
|
},
|
2934
1964
|
{
|
2935
|
-
"internalType": "
|
2936
|
-
"name": "
|
2937
|
-
"type": "
|
1965
|
+
"internalType": "bytes",
|
1966
|
+
"name": "data",
|
1967
|
+
"type": "bytes"
|
2938
1968
|
}
|
2939
1969
|
],
|
2940
|
-
"internalType": "struct
|
2941
|
-
"name": "
|
1970
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
1971
|
+
"name": "info",
|
2942
1972
|
"type": "tuple"
|
2943
1973
|
},
|
2944
1974
|
{
|
@@ -2947,7 +1977,7 @@
|
|
2947
1977
|
"type": "uint8"
|
2948
1978
|
}
|
2949
1979
|
],
|
2950
|
-
"name": "
|
1980
|
+
"name": "updateDistributorType",
|
2951
1981
|
"outputs": [],
|
2952
1982
|
"stateMutability": "nonpayable",
|
2953
1983
|
"type": "function"
|
@@ -2955,9 +1985,9 @@
|
|
2955
1985
|
{
|
2956
1986
|
"inputs": [
|
2957
1987
|
{
|
2958
|
-
"internalType": "
|
2959
|
-
"name": "
|
2960
|
-
"type": "
|
1988
|
+
"internalType": "DistributorType",
|
1989
|
+
"name": "distributorType",
|
1990
|
+
"type": "bytes8"
|
2961
1991
|
},
|
2962
1992
|
{
|
2963
1993
|
"internalType": "StateId",
|
@@ -2965,7 +1995,7 @@
|
|
2965
1995
|
"type": "uint8"
|
2966
1996
|
}
|
2967
1997
|
],
|
2968
|
-
"name": "
|
1998
|
+
"name": "updateDistributorTypeState",
|
2969
1999
|
"outputs": [],
|
2970
2000
|
"stateMutability": "nonpayable",
|
2971
2001
|
"type": "function"
|
@@ -2974,49 +2004,44 @@
|
|
2974
2004
|
"inputs": [
|
2975
2005
|
{
|
2976
2006
|
"internalType": "NftId",
|
2977
|
-
"name": "
|
2007
|
+
"name": "policyNftId",
|
2978
2008
|
"type": "uint96"
|
2979
2009
|
},
|
2980
2010
|
{
|
2981
|
-
"
|
2982
|
-
|
2983
|
-
|
2984
|
-
|
2985
|
-
|
2986
|
-
|
2987
|
-
{
|
2988
|
-
"internalType": "bool",
|
2989
|
-
"name": "isInterceptingBundleTransfers",
|
2990
|
-
"type": "bool"
|
2991
|
-
},
|
2011
|
+
"internalType": "PayoutId",
|
2012
|
+
"name": "payoutId",
|
2013
|
+
"type": "uint40"
|
2014
|
+
},
|
2015
|
+
{
|
2016
|
+
"components": [
|
2992
2017
|
{
|
2993
|
-
"internalType": "
|
2994
|
-
"name": "
|
2995
|
-
"type": "
|
2018
|
+
"internalType": "ClaimId",
|
2019
|
+
"name": "claimId",
|
2020
|
+
"type": "uint16"
|
2996
2021
|
},
|
2997
2022
|
{
|
2998
|
-
"internalType": "
|
2999
|
-
"name": "
|
3000
|
-
"type": "
|
2023
|
+
"internalType": "Amount",
|
2024
|
+
"name": "amount",
|
2025
|
+
"type": "uint96"
|
3001
2026
|
},
|
3002
2027
|
{
|
3003
|
-
"internalType": "
|
3004
|
-
"name": "
|
3005
|
-
"type": "
|
2028
|
+
"internalType": "Timestamp",
|
2029
|
+
"name": "paidAt",
|
2030
|
+
"type": "uint40"
|
3006
2031
|
},
|
3007
2032
|
{
|
3008
|
-
"internalType": "
|
3009
|
-
"name": "
|
3010
|
-
"type": "
|
2033
|
+
"internalType": "address",
|
2034
|
+
"name": "beneficiary",
|
2035
|
+
"type": "address"
|
3011
2036
|
},
|
3012
2037
|
{
|
3013
|
-
"internalType": "
|
3014
|
-
"name": "
|
3015
|
-
"type": "
|
2038
|
+
"internalType": "bytes",
|
2039
|
+
"name": "data",
|
2040
|
+
"type": "bytes"
|
3016
2041
|
}
|
3017
2042
|
],
|
3018
|
-
"internalType": "struct
|
3019
|
-
"name": "
|
2043
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
2044
|
+
"name": "payout",
|
3020
2045
|
"type": "tuple"
|
3021
2046
|
},
|
3022
2047
|
{
|
@@ -3025,7 +2050,7 @@
|
|
3025
2050
|
"type": "uint8"
|
3026
2051
|
}
|
3027
2052
|
],
|
3028
|
-
"name": "
|
2053
|
+
"name": "updatePayout",
|
3029
2054
|
"outputs": [],
|
3030
2055
|
"stateMutability": "nonpayable",
|
3031
2056
|
"type": "function"
|
@@ -3037,13 +2062,18 @@
|
|
3037
2062
|
"name": "policyNftId",
|
3038
2063
|
"type": "uint96"
|
3039
2064
|
},
|
2065
|
+
{
|
2066
|
+
"internalType": "PayoutId",
|
2067
|
+
"name": "payoutId",
|
2068
|
+
"type": "uint40"
|
2069
|
+
},
|
3040
2070
|
{
|
3041
2071
|
"internalType": "StateId",
|
3042
2072
|
"name": "newState",
|
3043
2073
|
"type": "uint8"
|
3044
2074
|
}
|
3045
2075
|
],
|
3046
|
-
"name": "
|
2076
|
+
"name": "updatePayoutState",
|
3047
2077
|
"outputs": [],
|
3048
2078
|
"stateMutability": "nonpayable",
|
3049
2079
|
"type": "function"
|
@@ -3052,53 +2082,48 @@
|
|
3052
2082
|
"inputs": [
|
3053
2083
|
{
|
3054
2084
|
"internalType": "NftId",
|
3055
|
-
"name": "
|
2085
|
+
"name": "poolNftId",
|
3056
2086
|
"type": "uint96"
|
3057
2087
|
},
|
3058
2088
|
{
|
3059
2089
|
"components": [
|
3060
2090
|
{
|
3061
|
-
"internalType": "
|
3062
|
-
"name": "
|
3063
|
-
"type": "
|
3064
|
-
},
|
3065
|
-
{
|
3066
|
-
"internalType": "bool",
|
3067
|
-
"name": "isInterceptingPolicyTransfers",
|
3068
|
-
"type": "bool"
|
2091
|
+
"internalType": "Amount",
|
2092
|
+
"name": "maxBalanceAmount",
|
2093
|
+
"type": "uint96"
|
3069
2094
|
},
|
3070
2095
|
{
|
3071
|
-
"internalType": "
|
3072
|
-
"name": "
|
3073
|
-
"type": "
|
2096
|
+
"internalType": "UFixed",
|
2097
|
+
"name": "collateralizationLevel",
|
2098
|
+
"type": "uint160"
|
3074
2099
|
},
|
3075
2100
|
{
|
3076
|
-
"internalType": "
|
3077
|
-
"name": "
|
3078
|
-
"type": "
|
2101
|
+
"internalType": "UFixed",
|
2102
|
+
"name": "retentionLevel",
|
2103
|
+
"type": "uint160"
|
3079
2104
|
},
|
3080
2105
|
{
|
3081
|
-
"internalType": "
|
3082
|
-
"name": "
|
3083
|
-
"type": "
|
2106
|
+
"internalType": "bool",
|
2107
|
+
"name": "isInterceptingBundleTransfers",
|
2108
|
+
"type": "bool"
|
3084
2109
|
},
|
3085
2110
|
{
|
3086
|
-
"internalType": "
|
3087
|
-
"name": "
|
3088
|
-
"type": "
|
2111
|
+
"internalType": "bool",
|
2112
|
+
"name": "isProcessingConfirmedClaims",
|
2113
|
+
"type": "bool"
|
3089
2114
|
},
|
3090
2115
|
{
|
3091
|
-
"internalType": "
|
3092
|
-
"name": "
|
3093
|
-
"type": "
|
2116
|
+
"internalType": "bool",
|
2117
|
+
"name": "isExternallyManaged",
|
2118
|
+
"type": "bool"
|
3094
2119
|
},
|
3095
2120
|
{
|
3096
|
-
"internalType": "
|
3097
|
-
"name": "
|
3098
|
-
"type": "
|
2121
|
+
"internalType": "bool",
|
2122
|
+
"name": "isVerifyingApplications",
|
2123
|
+
"type": "bool"
|
3099
2124
|
}
|
3100
2125
|
],
|
3101
|
-
"internalType": "struct IComponents.
|
2126
|
+
"internalType": "struct IComponents.PoolInfo",
|
3102
2127
|
"name": "info",
|
3103
2128
|
"type": "tuple"
|
3104
2129
|
},
|
@@ -3108,7 +2133,7 @@
|
|
3108
2133
|
"type": "uint8"
|
3109
2134
|
}
|
3110
2135
|
],
|
3111
|
-
"name": "
|
2136
|
+
"name": "updatePool",
|
3112
2137
|
"outputs": [],
|
3113
2138
|
"stateMutability": "nonpayable",
|
3114
2139
|
"type": "function"
|
@@ -3124,18 +2149,13 @@
|
|
3124
2149
|
"components": [
|
3125
2150
|
{
|
3126
2151
|
"internalType": "NftId",
|
3127
|
-
"name": "
|
2152
|
+
"name": "distributionNftId",
|
3128
2153
|
"type": "uint96"
|
3129
2154
|
},
|
3130
2155
|
{
|
3131
|
-
"internalType": "
|
3132
|
-
"name": "
|
3133
|
-
"type": "
|
3134
|
-
},
|
3135
|
-
{
|
3136
|
-
"internalType": "UFixed",
|
3137
|
-
"name": "discountPercentage",
|
3138
|
-
"type": "uint256"
|
2156
|
+
"internalType": "NftId",
|
2157
|
+
"name": "distributorNftId",
|
2158
|
+
"type": "uint96"
|
3139
2159
|
},
|
3140
2160
|
{
|
3141
2161
|
"internalType": "uint32",
|
@@ -3147,11 +2167,21 @@
|
|
3147
2167
|
"name": "usedReferrals",
|
3148
2168
|
"type": "uint32"
|
3149
2169
|
},
|
2170
|
+
{
|
2171
|
+
"internalType": "UFixed",
|
2172
|
+
"name": "discountPercentage",
|
2173
|
+
"type": "uint160"
|
2174
|
+
},
|
3150
2175
|
{
|
3151
2176
|
"internalType": "Timestamp",
|
3152
2177
|
"name": "expiryAt",
|
3153
2178
|
"type": "uint40"
|
3154
2179
|
},
|
2180
|
+
{
|
2181
|
+
"internalType": "string",
|
2182
|
+
"name": "referralCode",
|
2183
|
+
"type": "string"
|
2184
|
+
},
|
3155
2185
|
{
|
3156
2186
|
"internalType": "bytes",
|
3157
2187
|
"name": "data",
|
@@ -3205,25 +2235,15 @@
|
|
3205
2235
|
"name": "requesterNftId",
|
3206
2236
|
"type": "uint96"
|
3207
2237
|
},
|
3208
|
-
{
|
3209
|
-
"internalType": "string",
|
3210
|
-
"name": "callbackMethodName",
|
3211
|
-
"type": "string"
|
3212
|
-
},
|
3213
2238
|
{
|
3214
2239
|
"internalType": "NftId",
|
3215
2240
|
"name": "oracleNftId",
|
3216
2241
|
"type": "uint96"
|
3217
2242
|
},
|
3218
2243
|
{
|
3219
|
-
"internalType": "
|
3220
|
-
"name": "
|
3221
|
-
"type": "
|
3222
|
-
},
|
3223
|
-
{
|
3224
|
-
"internalType": "bytes",
|
3225
|
-
"name": "responseData",
|
3226
|
-
"type": "bytes"
|
2244
|
+
"internalType": "bool",
|
2245
|
+
"name": "isCancelled",
|
2246
|
+
"type": "bool"
|
3227
2247
|
},
|
3228
2248
|
{
|
3229
2249
|
"internalType": "Timestamp",
|
@@ -3236,9 +2256,19 @@
|
|
3236
2256
|
"type": "uint40"
|
3237
2257
|
},
|
3238
2258
|
{
|
3239
|
-
"internalType": "
|
3240
|
-
"name": "
|
3241
|
-
"type": "
|
2259
|
+
"internalType": "string",
|
2260
|
+
"name": "callbackMethodName",
|
2261
|
+
"type": "string"
|
2262
|
+
},
|
2263
|
+
{
|
2264
|
+
"internalType": "bytes",
|
2265
|
+
"name": "requestData",
|
2266
|
+
"type": "bytes"
|
2267
|
+
},
|
2268
|
+
{
|
2269
|
+
"internalType": "bytes",
|
2270
|
+
"name": "responseData",
|
2271
|
+
"type": "bytes"
|
3242
2272
|
}
|
3243
2273
|
],
|
3244
2274
|
"internalType": "struct IOracle.RequestInfo",
|
@@ -3273,78 +2303,20 @@
|
|
3273
2303
|
"outputs": [],
|
3274
2304
|
"stateMutability": "nonpayable",
|
3275
2305
|
"type": "function"
|
3276
|
-
},
|
3277
|
-
{
|
3278
|
-
"inputs": [
|
3279
|
-
{
|
3280
|
-
"internalType": "RiskId",
|
3281
|
-
"name": "riskId",
|
3282
|
-
"type": "bytes8"
|
3283
|
-
},
|
3284
|
-
{
|
3285
|
-
"components": [
|
3286
|
-
{
|
3287
|
-
"internalType": "NftId",
|
3288
|
-
"name": "productNftId",
|
3289
|
-
"type": "uint96"
|
3290
|
-
},
|
3291
|
-
{
|
3292
|
-
"internalType": "Timestamp",
|
3293
|
-
"name": "createdAt",
|
3294
|
-
"type": "uint40"
|
3295
|
-
},
|
3296
|
-
{
|
3297
|
-
"internalType": "bytes",
|
3298
|
-
"name": "data",
|
3299
|
-
"type": "bytes"
|
3300
|
-
}
|
3301
|
-
],
|
3302
|
-
"internalType": "struct IRisk.RiskInfo",
|
3303
|
-
"name": "risk",
|
3304
|
-
"type": "tuple"
|
3305
|
-
},
|
3306
|
-
{
|
3307
|
-
"internalType": "StateId",
|
3308
|
-
"name": "newState",
|
3309
|
-
"type": "uint8"
|
3310
|
-
}
|
3311
|
-
],
|
3312
|
-
"name": "updateRisk",
|
3313
|
-
"outputs": [],
|
3314
|
-
"stateMutability": "nonpayable",
|
3315
|
-
"type": "function"
|
3316
|
-
},
|
3317
|
-
{
|
3318
|
-
"inputs": [
|
3319
|
-
{
|
3320
|
-
"internalType": "RiskId",
|
3321
|
-
"name": "riskId",
|
3322
|
-
"type": "bytes8"
|
3323
|
-
},
|
3324
|
-
{
|
3325
|
-
"internalType": "StateId",
|
3326
|
-
"name": "newState",
|
3327
|
-
"type": "uint8"
|
3328
|
-
}
|
3329
|
-
],
|
3330
|
-
"name": "updateRiskState",
|
3331
|
-
"outputs": [],
|
3332
|
-
"stateMutability": "nonpayable",
|
3333
|
-
"type": "function"
|
3334
2306
|
}
|
3335
2307
|
],
|
3336
|
-
"bytecode": "0x60806040525f6008553480156012575f80fd5b50615951806100205f395ff3fe608060405234801561000f575f80fd5b50600436106103bf575f3560e01c80637a9e5e4b116101f5578063bedaa84611610114578063e80c61ed116100a9578063f71d7ffe11610079578063f71d7ffe14610a00578063fe1f18d614610a13578063fe2ee79214610a26578063fe7fc94114610a39575f80fd5b8063e80c61ed1461097c578063e9e96c701461098f578063ea113322146109cc578063f48016ce146109df575f80fd5b8063cb2e87d2116100e4578063cb2e87d214610943578063d625d758146105b5578063d78c599b14610956578063e145b68b14610969575f80fd5b8063bedaa846146108ea578063bf1db3f9146108fd578063bf7e214f14610910578063ca0e7f0814610930575f80fd5b8063a28422291161018a578063b0628dc31161015a578063b0628dc31461089e578063b4d7efe2146108b1578063b6d7cd62146108c4578063bcd65e21146108d7575f80fd5b8063a2842229146107d9578063a46eb8dc146107ec578063a5961b4c146107ff578063af9025001461088b575f80fd5b80638eaa6ac0116101c55780638eaa6ac01461075a5780638eb9000d1461077a5780638fb36037146107a55780639f8151e5146107c6575f80fd5b80637a9e5e4b1461072c5780637cef48421461073f5780638129fc1c1461075257806381d32d6b146105b5575f80fd5b806340529b0f116102e157806354f1fa81116102765780635d4345cc116102465780635d4345cc146104945780635eede1741461069357806361105e0e146107065780636fac862214610719575f80fd5b806354f1fa811461063a57806354f6127f1461064d578063555e55911461066d5780635a8416b014610680575f80fd5b806351dd844b116102b157806351dd844b146105ee578063533086d41461060157806353ebe1291461061457806354e5618e14610627575f80fd5b806340529b0f146105a2578063425d08e2146105b5578063462d5a84146105c85780634d4a7ae9146105db575f80fd5b8063275c05951161035757806330a130ba1161032757806330a130ba14610546578063353e5b751461055957806338a699a41461056c5780633c3f8d0e1461058f575f80fd5b8063275c0595146104fa578063288026811461050d57806328f72e87146105205780632ae5819d14610533575f80fd5b80630fad0eb1116103925780630fad0eb11461049457806317c8c490146104a9578063228e42ec146104bc578063248a77dd146104e7575f80fd5b80630232ca49146103c35780630632b17d1461040b57806309648a9d146104365780630d3581811461046f575b5f80fd5b6103ee6103d1366004613376565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61041e610419366004613668565b610a4c565b6040516001600160401b039091168152602001610402565b61045d6104443660046136a1565b5f90815260076020526040902054610100900460ff1690565b60405160ff9091168152602001610402565b61045d61047d3660046136d1565b60ff9081165f908152602081905260409020541690565b6104a76104a23660046136ec565b610b0c565b005b6104a76104b73660046137cb565b610b2e565b6103ee6104ca366004613376565b6001600160601b039081165f908152600260205260409020541690565b6103ee6104f536600461382a565b610b6b565b6104a761050836600461386a565b610b88565b6104a761051b36600461393a565b610c20565b6104a761052e366004613978565b610c48565b6104a76105413660046136ec565b610c7d565b6104a7610554366004613ad3565b610c94565b6104a7610567366004613b15565b610d32565b61057f61057a3660046136a1565b610d4e565b6040519015158152602001610402565b6104a761059d366004613c1c565b610dd6565b6104a76105b03660046136ec565b610dfd565b6104a76105c3366004613df9565b610e14565b6104a76105d6366004613e88565b610e3c565b6104a76105e9366004613f4c565b610e80565b6104a76105fc366004614174565b610ea8565b6103ee61060f36600461382a565b610ed0565b6103ee61062236600461382a565b610ee4565b6104a7610635366004614234565b610ef8565b6104a7610648366004614277565b610f20565b61066061065b3660046136a1565b611078565b60405161040291906142f3565b6104a761067b36600461438e565b61111a565b6104a761068e3660046143d1565b6111b8565b6106dc6106a1366004613376565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b0394851681529284166020840152921691810191909152606001610402565b6104a76107143660046144d0565b611256565b6104a7610727366004614513565b6112f4565b6104a761073a366004614555565b611325565b6104a761074d366004614570565b6113a7565b6104a7611434565b61076d6107683660046136a1565b6115b0565b604051610402919061458c565b6103ee610788366004613376565b6001600160601b039081165f908152600360205260409020541690565b6107ad6116d1565b6040516001600160e01b03199091168152602001610402565b6103ee6107d436600461382a565b611707565b6104a76107e7366004614570565b61171b565b6104a76107fa3660046145ea565b611769565b61087e61080d3660046136a1565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b604051610402919061462c565b6104a7610899366004614570565b61179a565b6103ee6108ac36600461382a565b6117e8565b6104a76108bf36600461466d565b6117fc565b6104a76108d2366004614689565b611849565b6104a76108e53660046146b6565b61185f565b6104a76108f8366004613e88565b611886565b61057f61090b3660046136d1565b6118ae565b6109186118fa565b6040516001600160a01b039091168152602001610402565b6104a761093e366004614713565b611915565b6104a7610951366004614899565b6119b3565b6104a76109643660046149b1565b6119db565b6104a7610977366004614a05565b611a02565b6103ee61098a36600461382a565b611a29565b61057f61099d366004614a58565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6104a76109da366004614a85565b611a3d565b6109f26109ed366004614ad6565b611adb565b604051908152602001610402565b6104a7610a0e366004614b02565b611b5c565b6104a7610a213660046136ec565b611b8d565b6104a7610a34366004614b44565b611ba4565b6104a7610a47366004614b86565b611bcc565b5f610a59335b5f36611bf4565b610a61611cf2565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610b079073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610abe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae29190614bbb565b83604051602001610af39190614bd2565b604051602081830303815290604052611d82565b919050565b610b1533610a52565b610b29610b23836015612146565b82612191565b505050565b610b3733610a52565b610b29610b4584600b612146565b83604051602001610b569190614ca4565b6040516020818303038152906040528361248e565b5f610b7533610a52565b610b7f8383612604565b90505b92915050565b610b9133610a52565b604051630f37f38f60e41b81526001600160401b0384166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0f9190614bbb565b83604051602001610b569190614bd2565b610c2933610a52565b610b29610c3784600f612146565b83604051602001610b569190614d0a565b610c5133610a52565b610c5a826126fd565b610c79610c6883600b612146565b82604051602001610af39190614ca4565b5050565b610c8633610a52565b610b29610b2383602b612146565b610c9d33610a52565b6040516355ee627560e01b8152610c799073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610ce2906001600160c01b0319871690600401614d68565b602060405180830381865af4158015610cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d219190614bbb565b82604051602001610af39190614d7d565b610d3b33610a52565b610d48610b2384846127ab565b50505050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610db2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b829190614e1e565b610ddf33610a52565b610d48610dec85856127ab565b83604051602001610b569190614e39565b610e0633610a52565b610b29610b23836017612146565b610e1d33610a52565b610b29610e2b846015612146565b83604051602001610b569190614ea4565b610e4533610a52565b610c79610e53836029612146565b82604051602001610e64919061501c565b604051602081830303815290604052610e7b60ff90565b61248e565b610e8933610a52565b610c79610e9783602b612146565b82604051602001610af391906150c5565b610eb133610a52565b610b29610ebf846016612146565b83604051602001610b5691906152b5565b5f610eda33610a52565b610b7f83836127fa565b5f610eee33610a52565b610b7f83836128db565b610f0133610a52565b610b29610f0f846017612146565b83604051602001610b569190615340565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015610f82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa69190614e1e565b15610fd45760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146110155760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401610fcb565b60ff8084165f90815260016020908152604080832088851684528252808320858516845290915290205416610d485760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401610fcb565b5f81815260076020526040902060010180546060919061109790615399565b80601f01602080910402602001604051908101604052809291908181526020018280546110c390615399565b801561110e5780601f106110e55761010080835404028352916020019161110e565b820191905f5260205f20905b8154815290600101906020018083116110f157829003601f168201915b50505050509050919050565b61112333610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611168906001600160c01b0319881690600401614d68565b602060405180830381865af4158015611183573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a79190614bbb565b83604051602001610b5691906153d1565b6111c133610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611206906001600160c01b0319881690600401614d68565b602060405180830381865af4158015611221573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112459190614bbb565b83604051602001610b569190614d7d565b61125f33610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906112a4906001600160c01b0319881690600401614d68565b602060405180830381865af41580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e39190614bbb565b83604051602001610b56919061540f565b6112fd33610a52565b611306826126fd565b610c79611314836015612146565b82604051602001610af39190614ea4565b3361132e6118fa565b6001600160a01b0316816001600160a01b0316146113695760405162d1953b60e31b81526001600160a01b0382166004820152602401610fcb565b816001600160a01b03163b5f0361139e576040516361798f2f60e11b81526001600160a01b0383166004820152602401610fcb565b610c79826129bc565b6113b033610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906113f5906001600160c01b0319871690600401614d68565b602060405180830381865af4158015611410573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b239190614bbb565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156114785750825b90505f826001600160401b031660011480156114935750303b155b9050811580156114a1575080155b156114bf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114e957845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154e91906154a0565b905061155981612a1c565b611561612a30565b505083156115a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161164a90615399565b80601f016020809104026020016040519081016040528092919081815260200182805461167690615399565b80156116c15780601f10611698576101008083540402835291602001916116c1565b820191905f5260205f20905b8154815290600101906020018083116116a457829003601f168201915b5050505050815250509050919050565b5f805160206158fc83398151915280545f9190600160a01b900460ff166116f8575f611701565b638fb3603760e01b5b91505090565b5f61171133610a52565b610b7f8383612a42565b61172433610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906113f5906001600160c01b0319871690600401614d68565b61177233610a52565b61177b826126fd565b610c79611789836016612146565b82604051602001610af391906152b5565b6117a333610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906113f5906001600160c01b0319871690600401614d68565b5f6117f233610a52565b610b7f8383612b23565b61180533610a52565b604051630f37f38f60e41b81526001600160401b0383166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f0906024016113f5565b61185233610a52565b610d48610b238484612c04565b61186833610a52565b610b2961187584846127ab565b82604051602001610af39190614e39565b61188f33610a52565b610c7961189d836029612146565b82604051602001610af3919061501c565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610d97565b5f805160206158fc833981519152546001600160a01b031690565b61191e33610a52565b6040516355ee627560e01b8152610c799073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611963906001600160c01b0319871690600401614d68565b602060405180830381865af415801561197e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119a29190614bbb565b82604051602001610af3919061540f565b6119bc33610a52565b610b296119ca84600c612146565b83604051602001610b5691906154fe565b6119e433610a52565b610d486119f18585612c04565b83604051602001610b56919061558e565b611a0b33610a52565b610b29611a188484612c04565b82604051602001610af3919061558e565b5f611a3333610a52565b610b7f8383612c50565b611a4633610a52565b6040516355ee627560e01b8152610c799073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611a8b906001600160c01b0319871690600401614d68565b602060405180830381865af4158015611aa6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aca9190614bbb565b82604051602001610af391906153d1565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f9190614bbb565b611b6533610a52565b611b6e826126fd565b610c79611b7c836017612146565b82604051602001610af39190615340565b611b9633610a52565b610b29610b23836016612146565b611bad33610a52565b610c79611bbb83600c612146565b82604051602001610af391906154fe565b611bd533610a52565b610c79611be383600f612146565b82604051602001610af39190614d0a565b5f805160206158fc8339815191525f80611c2c611c0f6118fa565b8730611c1e60045f8a8c615630565b611c2791615657565b612d31565b9150915081611cea5763ffffffff811615611cc757825460ff60a01b1916600160a01b178355611c5a6118fa565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c899392919061568d565b5f604051808303815f87803b158015611ca0575f80fd5b505af1158015611cb2573d5f803e3d5ffd5b5050845460ff60a01b1916855550611cea9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610fcb565b505050505050565b600880545f9182611d02836156cc565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906156f0565b905090565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611dd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611df6919061570b565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d9190614e1e565b15611e90576040516307014a8d60e51b815260ff82166004820152602401610fcb565b5f83815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611ef6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1a9190614e1e565b15611f4457604051633f92eac960e21b81526004810185905260ff83166024820152604401610fcb565b611f4d826118ae565b611f6f57604051636cb0978b60e11b815260ff83166004820152602401610fcb565b5f611f78612e39565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784555f878152600760205260409020909150600101612002868261576a565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612097919061570b565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156120e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121099190615824565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611b1d565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122079190614e1e565b156122285760405163093b89e160e11b815260048101849052602401610fcb565b505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561229e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c29190614e1e565b156122e35760405163566ebf7960e01b815260048101869052602401610fcb565b60ff808516146124605781546122ff90829060ff168187610f20565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a5919061570b565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156123f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124179190615824565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b612468612e39565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b5f6124998483612191565b5f8581526007602052604090209091506001016124b6848261576a565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061254b919061570b565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125bd9190615824565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b6001600160601b0382165f90815260056020526040812054839060ff1661264957604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f9081526003602052604090205461266d911684612ea5565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916126e59187918791879163ffffffff9091169061583f565b60405180910390a16126f684612f2a565b5092915050565b6001600160601b0381165f9081526005602052604090205460ff1615612741576040516314d5804160e01b81526001600160601b0382166004820152602401610fcb565b6001600160601b0381165f908152600560205260409020805460ff1916600117905561276c81612f2a565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff1661283f57604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260046020526040902054612863911684612fc7565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916126e59187918791879163ffffffff9091169061583f565b6001600160601b0382165f90815260056020526040812054839060ff1661292057604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260036020526040902054612944911684612fc7565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916126e59187918791879163ffffffff9091169061583f565b5f805160206158fc83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612a24613011565b612a2d8161305a565b50565b612a38613011565b612a4061306b565b565b6001600160601b0382165f90815260056020526040812054839060ff16612a8757604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260026020526040902054612aab911684612ea5565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916126e59187918791879163ffffffff9091169061583f565b6001600160601b0382165f90815260056020526040812054839060ff16612b6857604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260026020526040902054612b8c911684612fc7565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916126e59187918791879163ffffffff9091169061583f565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff16612c9557604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260046020526040902054612cb9911684612ea5565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916126e59187918791879163ffffffff9091169061583f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612d9f919061586e565b5f60405180830381855afa9150503d805f8114612dd7576040519150601f19603f3d011682016040523d82523d5f602084013e612ddc565b606091505b50915091508115612e2e576040815110612e0e5780806020019051810190612e049190615884565b9094509250612e2e565b6020815110612e2e5780806020019051810190612e2b9190614e1e565b93505b505094509492505050565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906158b1565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612f06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f91906158cc565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f9591906158b1565b6001600160601b03919091165f908152600660205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612eeb565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16612a4057604051631afcd79f60e31b815260040160405180910390fd5b613062613011565b612a2d816129bc565b6130736130c3565b61307b613109565b613083613136565b61308b61317a565b613093613196565b61309b6131d4565b6130a36131f7565b6130ab61321f565b6130b361325e565b6130bb613268565b612a4061327c565b6130d060165b60056132a4565b6130df60165b6005606e6132e6565b6130ee601660055b60c86132e6565b6130fd60165b606e60056132e6565b612a406016606e6130e7565b613113600b6130c9565b61311d600b6130d6565b613127600b6130f4565b612a40600b5b606e60d26132e6565b6131426015600a6132a4565b6131516015600a5b60146132e6565b6131606015600a5b601e6132e6565b61316e6015600a60286132e6565b612a40601560286130e7565b613187602b5b603c6132a4565b612a40602b5b603c60dc6132e6565b6131a2602d60326132a4565b6131ae602d603261314a565b6131bc602d603260336132e6565b6131c8602d6032613159565b612a40602d60336130e7565b6131de602e613180565b6131e8602e61318d565b612a40602e603c5b60486132e6565b613201602c6130c9565b61320b602c6130d6565b613215602c6130f4565b612a40602c61312d565b613229602f6130c9565b613238602f60055b60466132e6565b613246602f600560076132e6565b613252602f6007613231565b612a40602f60056131f0565b612a40600f6130c9565b613272600c6130c9565b612a4060296130c9565b613286600e6130c9565b61329060176130c9565b61329a60306130c9565b612a4060316130c9565b60ff8281165f9081526020819052604090205416156132c5576132c56158e7565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561331e5761331e6158e7565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b0381168114612a2d575f80fd5b8035610b0781613357565b5f60208284031215613386575f80fd5b813561339181613357565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b03811182821017156133cf576133cf613398565b60405290565b604051608081016001600160401b03811182821017156133cf576133cf613398565b60405160e081016001600160401b03811182821017156133cf576133cf613398565b60405161012081016001600160401b03811182821017156133cf576133cf613398565b60405161020081016001600160401b03811182821017156133cf576133cf613398565b60405161024081016001600160401b03811182821017156133cf576133cf613398565b60405160c081016001600160401b03811182821017156133cf576133cf613398565b604051601f8201601f191681016001600160401b03811182821017156134cc576134cc613398565b604052919050565b5f82601f8301126134e3575f80fd5b8135602083015f806001600160401b0384111561350257613502613398565b50601f8301601f1916602001613517816134a4565b91505082815285838301111561352b575f80fd5b828260208301375f92810160200192909252509392505050565b64ffffffffff81168114612a2d575f80fd5b8035610b0781613545565b8015158114612a2d575f80fd5b8035610b0781613562565b5f610100828403121561358b575f80fd5b6135936133ac565b905061359e8261336b565b815260208201356001600160401b038111156135b8575f80fd5b6135c4848285016134d4565b6020830152506135d66040830161336b565b604082015260608201356001600160401b038111156135f3575f80fd5b6135ff848285016134d4565b60608301525060808201356001600160401b0381111561361d575f80fd5b613629848285016134d4565b60808301525061363b60a08301613557565b60a082015261364c60c08301613557565b60c082015261365d60e0830161356f565b60e082015292915050565b5f60208284031215613678575f80fd5b81356001600160401b0381111561368d575f80fd5b6136998482850161357a565b949350505050565b5f602082840312156136b1575f80fd5b5035919050565b60ff81168114612a2d575f80fd5b8035610b07816136b8565b5f602082840312156136e1575f80fd5b8135613391816136b8565b5f80604083850312156136fd575f80fd5b823561370881613357565b91506020830135613718816136b8565b809150509250929050565b6001600160a01b0381168114612a2d575f80fd5b5f60808284031215613747575f80fd5b61374f6133d5565b905081356001600160401b03811115613766575f80fd5b613772848285016134d4565b825250602082013561378381613723565b6020820152604082013561379681613723565b604082015260608201356001600160401b038111156137b3575f80fd5b6137bf848285016134d4565b60608301525092915050565b5f805f606084860312156137dd575f80fd5b83356137e881613357565b925060208401356001600160401b03811115613802575f80fd5b61380e86828701613737565b925050604084013561381f816136b8565b809150509250925092565b5f806040838503121561383b575f80fd5b823561384681613357565b9150602083013561371881613357565b6001600160401b0381168114612a2d575f80fd5b5f805f6060848603121561387c575f80fd5b833561388781613856565b925060208401356001600160401b038111156138a1575f80fd5b61380e8682870161357a565b5f60e082840312156138bd575f80fd5b6138c56133f7565b905081356138d281613357565b815260208201356138e281613562565b602082015260408201356138f581613562565b6040820152606082013561390881613562565b60608201526139196080830161356f565b608082015260a0828101359082015260c09182013591810191909152919050565b5f805f610120848603121561394d575f80fd5b833561395881613357565b925061396785602086016138ad565b915061010084013561381f816136b8565b5f8060408385031215613989575f80fd5b823561399481613357565b915060208301356001600160401b038111156139ae575f80fd5b6139ba85828601613737565b9150509250929050565b6001600160c01b031981168114612a2d575f80fd5b8035610b07816139c4565b63ffffffff81168114612a2d575f80fd5b8035610b07816139e4565b5f6101208284031215613a11575f80fd5b613a19613419565b905081356001600160401b03811115613a30575f80fd5b613a3c848285016134d4565b825250602082810135908201526040808301359082015260608083013590820152613a69608083016139f5565b6080820152613a7a60a083016139f5565b60a0820152613a8b60c0830161356f565b60c0820152613a9c60e0830161356f565b60e08201526101008201356001600160401b03811115613aba575f80fd5b613ac6848285016134d4565b6101008301525092915050565b5f8060408385031215613ae4575f80fd5b8235613aef816139c4565b915060208301356001600160401b03811115613b09575f80fd5b6139ba85828601613a00565b5f805f60608486031215613b27575f80fd5b8335613b3281613357565b92506020840135613b4281613545565b9150604084013561381f816136b8565b61ffff81168114612a2d575f80fd5b8035610b0781613b52565b5f60a08284031215613b7c575f80fd5b60405160a081016001600160401b0381118282101715613b9e57613b9e613398565b6040529050808235613baf81613b52565b81526020830135613bbf81613357565b60208201526040830135613bd281613723565b604082015260608301356001600160401b03811115613bef575f80fd5b613bfb858286016134d4565b6060830152506080830135613c0f81613545565b6080919091015292915050565b5f805f8060808587031215613c2f575f80fd5b8435613c3a81613357565b93506020850135613c4a81613545565b925060408501356001600160401b03811115613c64575f80fd5b613c7087828801613b6c565b9250506060850135613c81816136b8565b939692955090935050565b5f6102008284031215613c9d575f80fd5b613ca561343c565b9050613cb08261336b565b8152613cbe6020830161336b565b6020820152613ccf604083016139d9565b6040820152613ce0606083016139d9565b6060820152613cf16080830161336b565b6080820152613d0260a0830161336b565b60a0820152613d1360c08301613557565b60c082015260e08201356001600160401b03811115613d30575f80fd5b613d3c848285016134d4565b60e0830152506101008201356001600160401b03811115613d5b575f80fd5b613d67848285016134d4565b61010083015250613d7b6101208301613b61565b610120820152613d8e6101408301613b61565b610140820152613da1610160830161336b565b610160820152613db4610180830161336b565b610180820152613dc76101a08301613557565b6101a0820152613dda6101c08301613557565b6101c0820152613ded6101e08301613557565b6101e082015292915050565b5f805f60608486031215613e0b575f80fd5b8335613e1681613357565b925060208401356001600160401b03811115613e30575f80fd5b61380e86828701613c8c565b5f60408284031215613e4c575f80fd5b604080519081016001600160401b0381118282101715613e6e57613e6e613398565b604052823581526020928301359281019290925250919050565b5f808284036101e0811215613e9b575f80fd5b8335613ea681613357565b92506101c0601f1982011215613eba575f80fd5b50613ec36133f7565b613ed08560208601613e3c565b8152613edf8560608601613e3c565b6020820152613ef18560a08601613e3c565b6040820152613f038560e08601613e3c565b6060820152613f16856101208601613e3c565b6080820152613f29856101608601613e3c565b60a0820152613f3c856101a08601613e3c565b60c0820152809150509250929050565b5f80828403610260811215613f5f575f80fd5b8335613f6a81613357565b9250610240601f1982011215613f7e575f80fd5b50613f8761345f565b613f936020850161336b565b8152613fa16040850161336b565b6020820152613fb26060850161336b565b6040820152613fc36080850161336b565b6060820152613fd460a0850161336b565b6080820152613fe560c0850161336b565b60a0820152613ff660e0850161336b565b60c0820152614008610100850161336b565b60e082015261401a610120850161336b565b61010082015261402d610140850161336b565b610120820152614040610160850161336b565b610140820152614053610180850161336b565b6101608201526140666101a0850161336b565b6101808201526140796101c0850161336b565b6101a082015261408c6101e0850161336b565b6101c082015261409f610200850161336b565b6101e08201526140b2610220850161336b565b6102008201526140c5610240850161336b565b610220820152809150509250929050565b5f60e082840312156140e6575f80fd5b6140ee613482565b905081356140fb81613357565b815261410a8360208401613e3c565b602082015260608201356001600160401b03811115614127575f80fd5b614133848285016134d4565b604083015250608082013561414781613545565b606082015261415860a08301613557565b608082015261416960c08301613557565b60a082015292915050565b5f805f60608486031215614186575f80fd5b833561419181613357565b925060208401356001600160401b038111156141ab575f80fd5b61380e868287016140d6565b5f608082840312156141c7575f80fd5b6141cf6133d5565b905081356141dc816139c4565b815260208201356141ec81613562565b602082015260408201356001600160401b03811115614209575f80fd5b614215848285016134d4565b6040830152506060820135614229816139e4565b606082015292915050565b5f805f60608486031215614246575f80fd5b833561425181613357565b925060208401356001600160401b0381111561426b575f80fd5b61380e868287016141b7565b5f805f806080858703121561428a575f80fd5b8435614295816136b8565b935060208501356142a5816136b8565b925060408501356142b5816136b8565b91506060850135613c81816136b8565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b7f60208301846142c5565b5f60608284031215614315575f80fd5b604051606081016001600160401b038111828210171561433757614337613398565b604052905080823561434881613357565b8152602083013561435881613545565b602082015260408301356001600160401b03811115614375575f80fd5b614381858286016134d4565b6040830152505092915050565b5f805f606084860312156143a0575f80fd5b83356143ab816139c4565b925060208401356001600160401b038111156143c5575f80fd5b61380e86828701614305565b5f805f606084860312156143e3575f80fd5b83356143ee816139c4565b925060208401356001600160401b03811115614408575f80fd5b61380e86828701613a00565b5f60e08284031215614424575f80fd5b61442c6133f7565b90506144378261336b565b815260208201356001600160401b03811115614451575f80fd5b61445d848285016134d4565b60208301525060408281013590820152614479606083016139f5565b606082015261448a608083016139f5565b608082015261449b60a08301613557565b60a082015260c08201356001600160401b038111156144b8575f80fd5b6144c4848285016134d4565b60c08301525092915050565b5f805f606084860312156144e2575f80fd5b83356144ed816139c4565b925060208401356001600160401b03811115614507575f80fd5b61380e86828701614414565b5f8060408385031215614524575f80fd5b823561452f81613357565b915060208301356001600160401b03811115614549575f80fd5b6139ba85828601613c8c565b5f60208284031215614565575f80fd5b813561339181613723565b5f8060408385031215614581575f80fd5b8235613708816139c4565b602081526145d160208201835160ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f602083015160a08084015261369960c08401826142c5565b5f80604083850312156145fb575f80fd5b823561460681613357565b915060208301356001600160401b03811115614620575f80fd5b6139ba858286016140d6565b60808101610b82828460ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f806040838503121561467e575f80fd5b823561370881613856565b5f805f6060848603121561469b575f80fd5b83356146a681613357565b92506020840135613b4281613b52565b5f805f606084860312156146c8575f80fd5b83356146d381613357565b925060208401356146e381613545565b915060408401356001600160401b038111156146fd575f80fd5b61470986828701613b6c565b9150509250925092565b5f8060408385031215614724575f80fd5b823561472f816139c4565b915060208301356001600160401b03811115614749575f80fd5b6139ba85828601614414565b5f82601f830112614764575f80fd5b81356001600160401b0381111561477d5761477d613398565b8060051b61478d602082016134a4565b918252602081850181019290810190868411156147a8575f80fd5b6020860192505b838310156147d35782356147c281613357565b8252602092830192909101906147af565b9695505050505050565b5f61010082840312156147ee575f80fd5b6147f66133ac565b90506148018261356f565b815261480f6020830161356f565b60208201526148206040830161356f565b6040820152614831606083016136c6565b6060820152614842608083016136c6565b608082015261485360a0830161336b565b60a082015261486460c0830161336b565b60c082015260e08201356001600160401b03811115614881575f80fd5b61488d84828501614755565b60e08301525092915050565b5f805f606084860312156148ab575f80fd5b83356148b681613357565b925060208401356001600160401b038111156148d0575f80fd5b61380e868287016147dd565b803562ffffff81168114610b07575f80fd5b5f60e082840312156148fe575f80fd5b6149066133f7565b90506149118261336b565b815261491f6020830161336b565b6020820152614930604083016148dc565b6040820152614941606083016148dc565b606082015260808201356001600160401b0381111561495e575f80fd5b61496a848285016134d4565b60808301525060a08201356001600160401b03811115614988575f80fd5b614994848285016134d4565b60a0830152506149a660c08301613557565b60c082015292915050565b5f805f80608085870312156149c4575f80fd5b84356149cf81613357565b935060208501356149df81613b52565b925060408501356001600160401b038111156149f9575f80fd5b613c70878288016148ee565b5f805f60608486031215614a17575f80fd5b8335614a2281613357565b92506020840135614a3281613b52565b915060408401356001600160401b03811115614a4c575f80fd5b614709868287016148ee565b5f805f60608486031215614a6a575f80fd5b8335614a75816136b8565b92506020840135613b42816136b8565b5f8060408385031215614a96575f80fd5b8235614aa1816139c4565b915060208301356001600160401b03811115614abb575f80fd5b6139ba85828601614305565b60ff1981168114612a2d575f80fd5b5f8060408385031215614ae7575f80fd5b8235614af2816136b8565b9150602083013561371881614ac7565b5f8060408385031215614b13575f80fd5b8235614b1e81613357565b915060208301356001600160401b03811115614b38575f80fd5b6139ba858286016141b7565b5f8060408385031215614b55575f80fd5b8235614b6081613357565b915060208301356001600160401b03811115614b7a575f80fd5b6139ba858286016147dd565b5f806101008385031215614b98575f80fd5b8235614ba381613357565b9150614bb284602085016138ad565b90509250929050565b5f60208284031215614bcb575f80fd5b5051919050565b60208152614bec6020820183516001600160601b03169052565b5f60208301516101006040840152614c086101208401826142c5565b90506040840151614c2460608501826001600160601b03169052565b506060840151838203601f19016080850152614c4082826142c5565b9150506080840151601f198483030160a0850152614c5e82826142c5565b91505060a0840151614c7960c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525b509392505050565b602081525f825160806020840152614cbf60a08401826142c5565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f19016080860152909150614d0182826142c5565b95945050505050565b5f60e0820190506001600160601b03835116825260208301511515602083015260408301511515604083015260608301511515606083015260808301511515608083015260a083015160a083015260c083015160c083015292915050565b6001600160c01b031991909116815260200190565b602081525f82516101206020840152614d9a6101408401826142c5565b90506020840151604084015260408401516060840152606084015160808401526080840151614dd160a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015180151560e08501525060e084015180151561010085015250610100840151838203601f1901610120850152614d0182826142c5565b5f60208284031215614e2e575f80fd5b815161339181613562565b6020815261ffff82511660208201526001600160601b03602083015116604082015260018060a01b0360408301511660608201525f606083015160a06080840152614e8760c08401826142c5565b905064ffffffffff60808501511660a08401528091505092915050565b60208152614ebe6020820183516001600160601b03169052565b5f6020830151614ed960408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c083015164ffffffffff811660e08401525060e0830151610200610100840152614f5f6102208401826142c5565b9050610100840151601f1984830301610120850152614f7e82826142c5565b915050610120840151614f9861014085018261ffff169052565b5061014084015161ffff8116610160850152506101608401516001600160601b038116610180850152506101808401516001600160601b0381166101a0850152506101a084015164ffffffffff81166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff8116610200850152614c9c565b815180518252602090810151908201526101c081016020838101518051604085015290810151606084015250604083015180516080840152602081015160a0840152506060830151805160c0840152602081015160e0840152506080830151805161010084015260208101516101208401525060a0830151805161014084015260208101516101608401525060c0830151805161018084015260208101516101a08401526126f6565b81516001600160601b03168152610240810160208301516150f160208401826001600160601b03169052565b50604083015161510c60408401826001600160601b03169052565b50606083015161512760608401826001600160601b03169052565b50608083015161514260808401826001600160601b03169052565b5060a083015161515d60a08401826001600160601b03169052565b5060c083015161517860c08401826001600160601b03169052565b5060e083015161519360e08401826001600160601b03169052565b506101008301516151b06101008401826001600160601b03169052565b506101208301516151cd6101208401826001600160601b03169052565b506101408301516151ea6101408401826001600160601b03169052565b506101608301516152076101608401826001600160601b03169052565b506101808301516152246101808401826001600160601b03169052565b506101a08301516152416101a08401826001600160601b03169052565b506101c083015161525e6101c08401826001600160601b03169052565b506101e083015161527b6101e08401826001600160601b03169052565b506102008301516152986102008401826001600160601b03169052565b506102208301516126f66102208401826001600160601b03169052565b602081526001600160601b0382511660208201525f60208301516152e6604084018280518252602090810151910152565b50604083015160e060808401526153016101008401826142c5565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f60408301516080606084015261537d60a08401826142c5565b905063ffffffff60608501511660808401528091505092915050565b600181811c908216806153ad57607f821691505b6020821081036153cb57634e487b7160e01b5f52602260045260245ffd5b50919050565b602081526001600160601b03825116602082015264ffffffffff60208301511660408201525f604083015160608084015261369960808401826142c5565b602081526001600160601b0382511660208201525f602083015160e0604084015261543e6101008401826142c5565b90506040840151606084015263ffffffff6060850151166080840152608084015161547160a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e0850152614d0182826142c5565b5f602082840312156154b0575f80fd5b815161339181613723565b5f8151808452602084019350602083015f5b828110156154f45781516001600160601b03168652602095860195909101906001016154cd565b5093949350505050565b602081528151151560208201526020820151151560408201525f604083015161552b606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e0830151610100808401526136996101208401826154bb565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f60408301516155cc606084018262ffffff169052565b50606083015162ffffff8116608084015250608083015160e060a08401526155f86101008401826142c5565b905060a0840151601f198483030160c085015261561582826142c5565b91505060c0840151614c9c60e085018264ffffffffff169052565b5f808585111561563e575f80fd5b8386111561564a575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156126f6576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f600182016156e957634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f60208284031215615700575f80fd5b815161339181613856565b5f6020828403121561571b575f80fd5b8151613391816136b8565b601f821115610b2957805f5260205f20601f840160051c8101602085101561574b5750805b601f840160051c820191505b818110156115a9575f8155600101615757565b81516001600160401b0381111561578357615783613398565b615797816157918454615399565b84615726565b6020601f8211600181146157c9575f83156157b25750848201515b5f19600385901b1c1916600184901b1784556115a9565b5f84815260208120601f198516915b828110156157f857878501518255602094850194600190920191016157d8565b508482101561581557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215615834575f80fd5b815161339181614ac7565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615895575f80fd5b82516158a081613562565b6020840151909250613718816139e4565b5f602082840312156158c1575f80fd5b8151613391816139e4565b5f602082840312156158dc575f80fd5b815161339181613357565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220c968f95e254ac26d1ae4ce1eeeda1c9dc6de7615b6c94ab59c66df24e79f3b0b64736f6c634300081a0033",
|
3337
|
-
"deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106103bf575f3560e01c80637a9e5e4b116101f5578063bedaa84611610114578063e80c61ed116100a9578063f71d7ffe11610079578063f71d7ffe14610a00578063fe1f18d614610a13578063fe2ee79214610a26578063fe7fc94114610a39575f80fd5b8063e80c61ed1461097c578063e9e96c701461098f578063ea113322146109cc578063f48016ce146109df575f80fd5b8063cb2e87d2116100e4578063cb2e87d214610943578063d625d758146105b5578063d78c599b14610956578063e145b68b14610969575f80fd5b8063bedaa846146108ea578063bf1db3f9146108fd578063bf7e214f14610910578063ca0e7f0814610930575f80fd5b8063a28422291161018a578063b0628dc31161015a578063b0628dc31461089e578063b4d7efe2146108b1578063b6d7cd62146108c4578063bcd65e21146108d7575f80fd5b8063a2842229146107d9578063a46eb8dc146107ec578063a5961b4c146107ff578063af9025001461088b575f80fd5b80638eaa6ac0116101c55780638eaa6ac01461075a5780638eb9000d1461077a5780638fb36037146107a55780639f8151e5146107c6575f80fd5b80637a9e5e4b1461072c5780637cef48421461073f5780638129fc1c1461075257806381d32d6b146105b5575f80fd5b806340529b0f116102e157806354f1fa81116102765780635d4345cc116102465780635d4345cc146104945780635eede1741461069357806361105e0e146107065780636fac862214610719575f80fd5b806354f1fa811461063a57806354f6127f1461064d578063555e55911461066d5780635a8416b014610680575f80fd5b806351dd844b116102b157806351dd844b146105ee578063533086d41461060157806353ebe1291461061457806354e5618e14610627575f80fd5b806340529b0f146105a2578063425d08e2146105b5578063462d5a84146105c85780634d4a7ae9146105db575f80fd5b8063275c05951161035757806330a130ba1161032757806330a130ba14610546578063353e5b751461055957806338a699a41461056c5780633c3f8d0e1461058f575f80fd5b8063275c0595146104fa578063288026811461050d57806328f72e87146105205780632ae5819d14610533575f80fd5b80630fad0eb1116103925780630fad0eb11461049457806317c8c490146104a9578063228e42ec146104bc578063248a77dd146104e7575f80fd5b80630232ca49146103c35780630632b17d1461040b57806309648a9d146104365780630d3581811461046f575b5f80fd5b6103ee6103d1366004613376565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61041e610419366004613668565b610a4c565b6040516001600160401b039091168152602001610402565b61045d6104443660046136a1565b5f90815260076020526040902054610100900460ff1690565b60405160ff9091168152602001610402565b61045d61047d3660046136d1565b60ff9081165f908152602081905260409020541690565b6104a76104a23660046136ec565b610b0c565b005b6104a76104b73660046137cb565b610b2e565b6103ee6104ca366004613376565b6001600160601b039081165f908152600260205260409020541690565b6103ee6104f536600461382a565b610b6b565b6104a761050836600461386a565b610b88565b6104a761051b36600461393a565b610c20565b6104a761052e366004613978565b610c48565b6104a76105413660046136ec565b610c7d565b6104a7610554366004613ad3565b610c94565b6104a7610567366004613b15565b610d32565b61057f61057a3660046136a1565b610d4e565b6040519015158152602001610402565b6104a761059d366004613c1c565b610dd6565b6104a76105b03660046136ec565b610dfd565b6104a76105c3366004613df9565b610e14565b6104a76105d6366004613e88565b610e3c565b6104a76105e9366004613f4c565b610e80565b6104a76105fc366004614174565b610ea8565b6103ee61060f36600461382a565b610ed0565b6103ee61062236600461382a565b610ee4565b6104a7610635366004614234565b610ef8565b6104a7610648366004614277565b610f20565b61066061065b3660046136a1565b611078565b60405161040291906142f3565b6104a761067b36600461438e565b61111a565b6104a761068e3660046143d1565b6111b8565b6106dc6106a1366004613376565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b0394851681529284166020840152921691810191909152606001610402565b6104a76107143660046144d0565b611256565b6104a7610727366004614513565b6112f4565b6104a761073a366004614555565b611325565b6104a761074d366004614570565b6113a7565b6104a7611434565b61076d6107683660046136a1565b6115b0565b604051610402919061458c565b6103ee610788366004613376565b6001600160601b039081165f908152600360205260409020541690565b6107ad6116d1565b6040516001600160e01b03199091168152602001610402565b6103ee6107d436600461382a565b611707565b6104a76107e7366004614570565b61171b565b6104a76107fa3660046145ea565b611769565b61087e61080d3660046136a1565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b604051610402919061462c565b6104a7610899366004614570565b61179a565b6103ee6108ac36600461382a565b6117e8565b6104a76108bf36600461466d565b6117fc565b6104a76108d2366004614689565b611849565b6104a76108e53660046146b6565b61185f565b6104a76108f8366004613e88565b611886565b61057f61090b3660046136d1565b6118ae565b6109186118fa565b6040516001600160a01b039091168152602001610402565b6104a761093e366004614713565b611915565b6104a7610951366004614899565b6119b3565b6104a76109643660046149b1565b6119db565b6104a7610977366004614a05565b611a02565b6103ee61098a36600461382a565b611a29565b61057f61099d366004614a58565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6104a76109da366004614a85565b611a3d565b6109f26109ed366004614ad6565b611adb565b604051908152602001610402565b6104a7610a0e366004614b02565b611b5c565b6104a7610a213660046136ec565b611b8d565b6104a7610a34366004614b44565b611ba4565b6104a7610a47366004614b86565b611bcc565b5f610a59335b5f36611bf4565b610a61611cf2565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610b079073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610abe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae29190614bbb565b83604051602001610af39190614bd2565b604051602081830303815290604052611d82565b919050565b610b1533610a52565b610b29610b23836015612146565b82612191565b505050565b610b3733610a52565b610b29610b4584600b612146565b83604051602001610b569190614ca4565b6040516020818303038152906040528361248e565b5f610b7533610a52565b610b7f8383612604565b90505b92915050565b610b9133610a52565b604051630f37f38f60e41b81526001600160401b0384166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0f9190614bbb565b83604051602001610b569190614bd2565b610c2933610a52565b610b29610c3784600f612146565b83604051602001610b569190614d0a565b610c5133610a52565b610c5a826126fd565b610c79610c6883600b612146565b82604051602001610af39190614ca4565b5050565b610c8633610a52565b610b29610b2383602b612146565b610c9d33610a52565b6040516355ee627560e01b8152610c799073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610ce2906001600160c01b0319871690600401614d68565b602060405180830381865af4158015610cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d219190614bbb565b82604051602001610af39190614d7d565b610d3b33610a52565b610d48610b2384846127ab565b50505050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610db2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b829190614e1e565b610ddf33610a52565b610d48610dec85856127ab565b83604051602001610b569190614e39565b610e0633610a52565b610b29610b23836017612146565b610e1d33610a52565b610b29610e2b846015612146565b83604051602001610b569190614ea4565b610e4533610a52565b610c79610e53836029612146565b82604051602001610e64919061501c565b604051602081830303815290604052610e7b60ff90565b61248e565b610e8933610a52565b610c79610e9783602b612146565b82604051602001610af391906150c5565b610eb133610a52565b610b29610ebf846016612146565b83604051602001610b5691906152b5565b5f610eda33610a52565b610b7f83836127fa565b5f610eee33610a52565b610b7f83836128db565b610f0133610a52565b610b29610f0f846017612146565b83604051602001610b569190615340565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015610f82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa69190614e1e565b15610fd45760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146110155760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401610fcb565b60ff8084165f90815260016020908152604080832088851684528252808320858516845290915290205416610d485760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401610fcb565b5f81815260076020526040902060010180546060919061109790615399565b80601f01602080910402602001604051908101604052809291908181526020018280546110c390615399565b801561110e5780601f106110e55761010080835404028352916020019161110e565b820191905f5260205f20905b8154815290600101906020018083116110f157829003601f168201915b50505050509050919050565b61112333610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611168906001600160c01b0319881690600401614d68565b602060405180830381865af4158015611183573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a79190614bbb565b83604051602001610b5691906153d1565b6111c133610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611206906001600160c01b0319881690600401614d68565b602060405180830381865af4158015611221573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112459190614bbb565b83604051602001610b569190614d7d565b61125f33610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906112a4906001600160c01b0319881690600401614d68565b602060405180830381865af41580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e39190614bbb565b83604051602001610b56919061540f565b6112fd33610a52565b611306826126fd565b610c79611314836015612146565b82604051602001610af39190614ea4565b3361132e6118fa565b6001600160a01b0316816001600160a01b0316146113695760405162d1953b60e31b81526001600160a01b0382166004820152602401610fcb565b816001600160a01b03163b5f0361139e576040516361798f2f60e11b81526001600160a01b0383166004820152602401610fcb565b610c79826129bc565b6113b033610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906113f5906001600160c01b0319871690600401614d68565b602060405180830381865af4158015611410573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b239190614bbb565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156114785750825b90505f826001600160401b031660011480156114935750303b155b9050811580156114a1575080155b156114bf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114e957845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154e91906154a0565b905061155981612a1c565b611561612a30565b505083156115a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161164a90615399565b80601f016020809104026020016040519081016040528092919081815260200182805461167690615399565b80156116c15780601f10611698576101008083540402835291602001916116c1565b820191905f5260205f20905b8154815290600101906020018083116116a457829003601f168201915b5050505050815250509050919050565b5f805160206158fc83398151915280545f9190600160a01b900460ff166116f8575f611701565b638fb3603760e01b5b91505090565b5f61171133610a52565b610b7f8383612a42565b61172433610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906113f5906001600160c01b0319871690600401614d68565b61177233610a52565b61177b826126fd565b610c79611789836016612146565b82604051602001610af391906152b5565b6117a333610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906113f5906001600160c01b0319871690600401614d68565b5f6117f233610a52565b610b7f8383612b23565b61180533610a52565b604051630f37f38f60e41b81526001600160401b0383166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f0906024016113f5565b61185233610a52565b610d48610b238484612c04565b61186833610a52565b610b2961187584846127ab565b82604051602001610af39190614e39565b61188f33610a52565b610c7961189d836029612146565b82604051602001610af3919061501c565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610d97565b5f805160206158fc833981519152546001600160a01b031690565b61191e33610a52565b6040516355ee627560e01b8152610c799073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611963906001600160c01b0319871690600401614d68565b602060405180830381865af415801561197e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119a29190614bbb565b82604051602001610af3919061540f565b6119bc33610a52565b610b296119ca84600c612146565b83604051602001610b5691906154fe565b6119e433610a52565b610d486119f18585612c04565b83604051602001610b56919061558e565b611a0b33610a52565b610b29611a188484612c04565b82604051602001610af3919061558e565b5f611a3333610a52565b610b7f8383612c50565b611a4633610a52565b6040516355ee627560e01b8152610c799073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590611a8b906001600160c01b0319871690600401614d68565b602060405180830381865af4158015611aa6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aca9190614bbb565b82604051602001610af391906153d1565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f9190614bbb565b611b6533610a52565b611b6e826126fd565b610c79611b7c836017612146565b82604051602001610af39190615340565b611b9633610a52565b610b29610b23836016612146565b611bad33610a52565b610c79611bbb83600c612146565b82604051602001610af391906154fe565b611bd533610a52565b610c79611be383600f612146565b82604051602001610af39190614d0a565b5f805160206158fc8339815191525f80611c2c611c0f6118fa565b8730611c1e60045f8a8c615630565b611c2791615657565b612d31565b9150915081611cea5763ffffffff811615611cc757825460ff60a01b1916600160a01b178355611c5a6118fa565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c899392919061568d565b5f604051808303815f87803b158015611ca0575f80fd5b505af1158015611cb2573d5f803e3d5ffd5b5050845460ff60a01b1916855550611cea9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610fcb565b505050505050565b600880545f9182611d02836156cc565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906156f0565b905090565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611dd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611df6919061570b565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d9190614e1e565b15611e90576040516307014a8d60e51b815260ff82166004820152602401610fcb565b5f83815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611ef6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1a9190614e1e565b15611f4457604051633f92eac960e21b81526004810185905260ff83166024820152604401610fcb565b611f4d826118ae565b611f6f57604051636cb0978b60e11b815260ff83166004820152602401610fcb565b5f611f78612e39565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784555f878152600760205260409020909150600101612002868261576a565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612097919061570b565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156120e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121099190615824565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611b1d565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122079190614e1e565b156122285760405163093b89e160e11b815260048101849052602401610fcb565b505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561229e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c29190614e1e565b156122e35760405163566ebf7960e01b815260048101869052602401610fcb565b60ff808516146124605781546122ff90829060ff168187610f20565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a5919061570b565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156123f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124179190615824565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b612468612e39565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b5f6124998483612191565b5f8581526007602052604090209091506001016124b6848261576a565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061254b919061570b565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125bd9190615824565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b6001600160601b0382165f90815260056020526040812054839060ff1661264957604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f9081526003602052604090205461266d911684612ea5565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916126e59187918791879163ffffffff9091169061583f565b60405180910390a16126f684612f2a565b5092915050565b6001600160601b0381165f9081526005602052604090205460ff1615612741576040516314d5804160e01b81526001600160601b0382166004820152602401610fcb565b6001600160601b0381165f908152600560205260409020805460ff1916600117905561276c81612f2a565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff1661283f57604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260046020526040902054612863911684612fc7565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916126e59187918791879163ffffffff9091169061583f565b6001600160601b0382165f90815260056020526040812054839060ff1661292057604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260036020526040902054612944911684612fc7565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916126e59187918791879163ffffffff9091169061583f565b5f805160206158fc83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612a24613011565b612a2d8161305a565b50565b612a38613011565b612a4061306b565b565b6001600160601b0382165f90815260056020526040812054839060ff16612a8757604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260026020526040902054612aab911684612ea5565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916126e59187918791879163ffffffff9091169061583f565b6001600160601b0382165f90815260056020526040812054839060ff16612b6857604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260026020526040902054612b8c911684612fc7565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916126e59187918791879163ffffffff9091169061583f565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff16612c9557604051631e94ffd760e11b81526001600160601b0382166004820152602401610fcb565b6001600160601b038085165f90815260046020526040902054612cb9911684612ea5565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916126e59187918791879163ffffffff9091169061583f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612d9f919061586e565b5f60405180830381855afa9150503d805f8114612dd7576040519150601f19603f3d011682016040523d82523d5f602084013e612ddc565b606091505b50915091508115612e2e576040815110612e0e5780806020019051810190612e049190615884565b9094509250612e2e565b6020815110612e2e5780806020019051810190612e2b9190614e1e565b93505b505094509492505050565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906158b1565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612f06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f91906158cc565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f9591906158b1565b6001600160601b03919091165f908152600660205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612eeb565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16612a4057604051631afcd79f60e31b815260040160405180910390fd5b613062613011565b612a2d816129bc565b6130736130c3565b61307b613109565b613083613136565b61308b61317a565b613093613196565b61309b6131d4565b6130a36131f7565b6130ab61321f565b6130b361325e565b6130bb613268565b612a4061327c565b6130d060165b60056132a4565b6130df60165b6005606e6132e6565b6130ee601660055b60c86132e6565b6130fd60165b606e60056132e6565b612a406016606e6130e7565b613113600b6130c9565b61311d600b6130d6565b613127600b6130f4565b612a40600b5b606e60d26132e6565b6131426015600a6132a4565b6131516015600a5b60146132e6565b6131606015600a5b601e6132e6565b61316e6015600a60286132e6565b612a40601560286130e7565b613187602b5b603c6132a4565b612a40602b5b603c60dc6132e6565b6131a2602d60326132a4565b6131ae602d603261314a565b6131bc602d603260336132e6565b6131c8602d6032613159565b612a40602d60336130e7565b6131de602e613180565b6131e8602e61318d565b612a40602e603c5b60486132e6565b613201602c6130c9565b61320b602c6130d6565b613215602c6130f4565b612a40602c61312d565b613229602f6130c9565b613238602f60055b60466132e6565b613246602f600560076132e6565b613252602f6007613231565b612a40602f60056131f0565b612a40600f6130c9565b613272600c6130c9565b612a4060296130c9565b613286600e6130c9565b61329060176130c9565b61329a60306130c9565b612a4060316130c9565b60ff8281165f9081526020819052604090205416156132c5576132c56158e7565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561331e5761331e6158e7565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b0381168114612a2d575f80fd5b8035610b0781613357565b5f60208284031215613386575f80fd5b813561339181613357565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b03811182821017156133cf576133cf613398565b60405290565b604051608081016001600160401b03811182821017156133cf576133cf613398565b60405160e081016001600160401b03811182821017156133cf576133cf613398565b60405161012081016001600160401b03811182821017156133cf576133cf613398565b60405161020081016001600160401b03811182821017156133cf576133cf613398565b60405161024081016001600160401b03811182821017156133cf576133cf613398565b60405160c081016001600160401b03811182821017156133cf576133cf613398565b604051601f8201601f191681016001600160401b03811182821017156134cc576134cc613398565b604052919050565b5f82601f8301126134e3575f80fd5b8135602083015f806001600160401b0384111561350257613502613398565b50601f8301601f1916602001613517816134a4565b91505082815285838301111561352b575f80fd5b828260208301375f92810160200192909252509392505050565b64ffffffffff81168114612a2d575f80fd5b8035610b0781613545565b8015158114612a2d575f80fd5b8035610b0781613562565b5f610100828403121561358b575f80fd5b6135936133ac565b905061359e8261336b565b815260208201356001600160401b038111156135b8575f80fd5b6135c4848285016134d4565b6020830152506135d66040830161336b565b604082015260608201356001600160401b038111156135f3575f80fd5b6135ff848285016134d4565b60608301525060808201356001600160401b0381111561361d575f80fd5b613629848285016134d4565b60808301525061363b60a08301613557565b60a082015261364c60c08301613557565b60c082015261365d60e0830161356f565b60e082015292915050565b5f60208284031215613678575f80fd5b81356001600160401b0381111561368d575f80fd5b6136998482850161357a565b949350505050565b5f602082840312156136b1575f80fd5b5035919050565b60ff81168114612a2d575f80fd5b8035610b07816136b8565b5f602082840312156136e1575f80fd5b8135613391816136b8565b5f80604083850312156136fd575f80fd5b823561370881613357565b91506020830135613718816136b8565b809150509250929050565b6001600160a01b0381168114612a2d575f80fd5b5f60808284031215613747575f80fd5b61374f6133d5565b905081356001600160401b03811115613766575f80fd5b613772848285016134d4565b825250602082013561378381613723565b6020820152604082013561379681613723565b604082015260608201356001600160401b038111156137b3575f80fd5b6137bf848285016134d4565b60608301525092915050565b5f805f606084860312156137dd575f80fd5b83356137e881613357565b925060208401356001600160401b03811115613802575f80fd5b61380e86828701613737565b925050604084013561381f816136b8565b809150509250925092565b5f806040838503121561383b575f80fd5b823561384681613357565b9150602083013561371881613357565b6001600160401b0381168114612a2d575f80fd5b5f805f6060848603121561387c575f80fd5b833561388781613856565b925060208401356001600160401b038111156138a1575f80fd5b61380e8682870161357a565b5f60e082840312156138bd575f80fd5b6138c56133f7565b905081356138d281613357565b815260208201356138e281613562565b602082015260408201356138f581613562565b6040820152606082013561390881613562565b60608201526139196080830161356f565b608082015260a0828101359082015260c09182013591810191909152919050565b5f805f610120848603121561394d575f80fd5b833561395881613357565b925061396785602086016138ad565b915061010084013561381f816136b8565b5f8060408385031215613989575f80fd5b823561399481613357565b915060208301356001600160401b038111156139ae575f80fd5b6139ba85828601613737565b9150509250929050565b6001600160c01b031981168114612a2d575f80fd5b8035610b07816139c4565b63ffffffff81168114612a2d575f80fd5b8035610b07816139e4565b5f6101208284031215613a11575f80fd5b613a19613419565b905081356001600160401b03811115613a30575f80fd5b613a3c848285016134d4565b825250602082810135908201526040808301359082015260608083013590820152613a69608083016139f5565b6080820152613a7a60a083016139f5565b60a0820152613a8b60c0830161356f565b60c0820152613a9c60e0830161356f565b60e08201526101008201356001600160401b03811115613aba575f80fd5b613ac6848285016134d4565b6101008301525092915050565b5f8060408385031215613ae4575f80fd5b8235613aef816139c4565b915060208301356001600160401b03811115613b09575f80fd5b6139ba85828601613a00565b5f805f60608486031215613b27575f80fd5b8335613b3281613357565b92506020840135613b4281613545565b9150604084013561381f816136b8565b61ffff81168114612a2d575f80fd5b8035610b0781613b52565b5f60a08284031215613b7c575f80fd5b60405160a081016001600160401b0381118282101715613b9e57613b9e613398565b6040529050808235613baf81613b52565b81526020830135613bbf81613357565b60208201526040830135613bd281613723565b604082015260608301356001600160401b03811115613bef575f80fd5b613bfb858286016134d4565b6060830152506080830135613c0f81613545565b6080919091015292915050565b5f805f8060808587031215613c2f575f80fd5b8435613c3a81613357565b93506020850135613c4a81613545565b925060408501356001600160401b03811115613c64575f80fd5b613c7087828801613b6c565b9250506060850135613c81816136b8565b939692955090935050565b5f6102008284031215613c9d575f80fd5b613ca561343c565b9050613cb08261336b565b8152613cbe6020830161336b565b6020820152613ccf604083016139d9565b6040820152613ce0606083016139d9565b6060820152613cf16080830161336b565b6080820152613d0260a0830161336b565b60a0820152613d1360c08301613557565b60c082015260e08201356001600160401b03811115613d30575f80fd5b613d3c848285016134d4565b60e0830152506101008201356001600160401b03811115613d5b575f80fd5b613d67848285016134d4565b61010083015250613d7b6101208301613b61565b610120820152613d8e6101408301613b61565b610140820152613da1610160830161336b565b610160820152613db4610180830161336b565b610180820152613dc76101a08301613557565b6101a0820152613dda6101c08301613557565b6101c0820152613ded6101e08301613557565b6101e082015292915050565b5f805f60608486031215613e0b575f80fd5b8335613e1681613357565b925060208401356001600160401b03811115613e30575f80fd5b61380e86828701613c8c565b5f60408284031215613e4c575f80fd5b604080519081016001600160401b0381118282101715613e6e57613e6e613398565b604052823581526020928301359281019290925250919050565b5f808284036101e0811215613e9b575f80fd5b8335613ea681613357565b92506101c0601f1982011215613eba575f80fd5b50613ec36133f7565b613ed08560208601613e3c565b8152613edf8560608601613e3c565b6020820152613ef18560a08601613e3c565b6040820152613f038560e08601613e3c565b6060820152613f16856101208601613e3c565b6080820152613f29856101608601613e3c565b60a0820152613f3c856101a08601613e3c565b60c0820152809150509250929050565b5f80828403610260811215613f5f575f80fd5b8335613f6a81613357565b9250610240601f1982011215613f7e575f80fd5b50613f8761345f565b613f936020850161336b565b8152613fa16040850161336b565b6020820152613fb26060850161336b565b6040820152613fc36080850161336b565b6060820152613fd460a0850161336b565b6080820152613fe560c0850161336b565b60a0820152613ff660e0850161336b565b60c0820152614008610100850161336b565b60e082015261401a610120850161336b565b61010082015261402d610140850161336b565b610120820152614040610160850161336b565b610140820152614053610180850161336b565b6101608201526140666101a0850161336b565b6101808201526140796101c0850161336b565b6101a082015261408c6101e0850161336b565b6101c082015261409f610200850161336b565b6101e08201526140b2610220850161336b565b6102008201526140c5610240850161336b565b610220820152809150509250929050565b5f60e082840312156140e6575f80fd5b6140ee613482565b905081356140fb81613357565b815261410a8360208401613e3c565b602082015260608201356001600160401b03811115614127575f80fd5b614133848285016134d4565b604083015250608082013561414781613545565b606082015261415860a08301613557565b608082015261416960c08301613557565b60a082015292915050565b5f805f60608486031215614186575f80fd5b833561419181613357565b925060208401356001600160401b038111156141ab575f80fd5b61380e868287016140d6565b5f608082840312156141c7575f80fd5b6141cf6133d5565b905081356141dc816139c4565b815260208201356141ec81613562565b602082015260408201356001600160401b03811115614209575f80fd5b614215848285016134d4565b6040830152506060820135614229816139e4565b606082015292915050565b5f805f60608486031215614246575f80fd5b833561425181613357565b925060208401356001600160401b0381111561426b575f80fd5b61380e868287016141b7565b5f805f806080858703121561428a575f80fd5b8435614295816136b8565b935060208501356142a5816136b8565b925060408501356142b5816136b8565b91506060850135613c81816136b8565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b7f60208301846142c5565b5f60608284031215614315575f80fd5b604051606081016001600160401b038111828210171561433757614337613398565b604052905080823561434881613357565b8152602083013561435881613545565b602082015260408301356001600160401b03811115614375575f80fd5b614381858286016134d4565b6040830152505092915050565b5f805f606084860312156143a0575f80fd5b83356143ab816139c4565b925060208401356001600160401b038111156143c5575f80fd5b61380e86828701614305565b5f805f606084860312156143e3575f80fd5b83356143ee816139c4565b925060208401356001600160401b03811115614408575f80fd5b61380e86828701613a00565b5f60e08284031215614424575f80fd5b61442c6133f7565b90506144378261336b565b815260208201356001600160401b03811115614451575f80fd5b61445d848285016134d4565b60208301525060408281013590820152614479606083016139f5565b606082015261448a608083016139f5565b608082015261449b60a08301613557565b60a082015260c08201356001600160401b038111156144b8575f80fd5b6144c4848285016134d4565b60c08301525092915050565b5f805f606084860312156144e2575f80fd5b83356144ed816139c4565b925060208401356001600160401b03811115614507575f80fd5b61380e86828701614414565b5f8060408385031215614524575f80fd5b823561452f81613357565b915060208301356001600160401b03811115614549575f80fd5b6139ba85828601613c8c565b5f60208284031215614565575f80fd5b813561339181613723565b5f8060408385031215614581575f80fd5b8235613708816139c4565b602081526145d160208201835160ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f602083015160a08084015261369960c08401826142c5565b5f80604083850312156145fb575f80fd5b823561460681613357565b915060208301356001600160401b03811115614620575f80fd5b6139ba858286016140d6565b60808101610b82828460ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f806040838503121561467e575f80fd5b823561370881613856565b5f805f6060848603121561469b575f80fd5b83356146a681613357565b92506020840135613b4281613b52565b5f805f606084860312156146c8575f80fd5b83356146d381613357565b925060208401356146e381613545565b915060408401356001600160401b038111156146fd575f80fd5b61470986828701613b6c565b9150509250925092565b5f8060408385031215614724575f80fd5b823561472f816139c4565b915060208301356001600160401b03811115614749575f80fd5b6139ba85828601614414565b5f82601f830112614764575f80fd5b81356001600160401b0381111561477d5761477d613398565b8060051b61478d602082016134a4565b918252602081850181019290810190868411156147a8575f80fd5b6020860192505b838310156147d35782356147c281613357565b8252602092830192909101906147af565b9695505050505050565b5f61010082840312156147ee575f80fd5b6147f66133ac565b90506148018261356f565b815261480f6020830161356f565b60208201526148206040830161356f565b6040820152614831606083016136c6565b6060820152614842608083016136c6565b608082015261485360a0830161336b565b60a082015261486460c0830161336b565b60c082015260e08201356001600160401b03811115614881575f80fd5b61488d84828501614755565b60e08301525092915050565b5f805f606084860312156148ab575f80fd5b83356148b681613357565b925060208401356001600160401b038111156148d0575f80fd5b61380e868287016147dd565b803562ffffff81168114610b07575f80fd5b5f60e082840312156148fe575f80fd5b6149066133f7565b90506149118261336b565b815261491f6020830161336b565b6020820152614930604083016148dc565b6040820152614941606083016148dc565b606082015260808201356001600160401b0381111561495e575f80fd5b61496a848285016134d4565b60808301525060a08201356001600160401b03811115614988575f80fd5b614994848285016134d4565b60a0830152506149a660c08301613557565b60c082015292915050565b5f805f80608085870312156149c4575f80fd5b84356149cf81613357565b935060208501356149df81613b52565b925060408501356001600160401b038111156149f9575f80fd5b613c70878288016148ee565b5f805f60608486031215614a17575f80fd5b8335614a2281613357565b92506020840135614a3281613b52565b915060408401356001600160401b03811115614a4c575f80fd5b614709868287016148ee565b5f805f60608486031215614a6a575f80fd5b8335614a75816136b8565b92506020840135613b42816136b8565b5f8060408385031215614a96575f80fd5b8235614aa1816139c4565b915060208301356001600160401b03811115614abb575f80fd5b6139ba85828601614305565b60ff1981168114612a2d575f80fd5b5f8060408385031215614ae7575f80fd5b8235614af2816136b8565b9150602083013561371881614ac7565b5f8060408385031215614b13575f80fd5b8235614b1e81613357565b915060208301356001600160401b03811115614b38575f80fd5b6139ba858286016141b7565b5f8060408385031215614b55575f80fd5b8235614b6081613357565b915060208301356001600160401b03811115614b7a575f80fd5b6139ba858286016147dd565b5f806101008385031215614b98575f80fd5b8235614ba381613357565b9150614bb284602085016138ad565b90509250929050565b5f60208284031215614bcb575f80fd5b5051919050565b60208152614bec6020820183516001600160601b03169052565b5f60208301516101006040840152614c086101208401826142c5565b90506040840151614c2460608501826001600160601b03169052565b506060840151838203601f19016080850152614c4082826142c5565b9150506080840151601f198483030160a0850152614c5e82826142c5565b91505060a0840151614c7960c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525b509392505050565b602081525f825160806020840152614cbf60a08401826142c5565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f19016080860152909150614d0182826142c5565b95945050505050565b5f60e0820190506001600160601b03835116825260208301511515602083015260408301511515604083015260608301511515606083015260808301511515608083015260a083015160a083015260c083015160c083015292915050565b6001600160c01b031991909116815260200190565b602081525f82516101206020840152614d9a6101408401826142c5565b90506020840151604084015260408401516060840152606084015160808401526080840151614dd160a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015180151560e08501525060e084015180151561010085015250610100840151838203601f1901610120850152614d0182826142c5565b5f60208284031215614e2e575f80fd5b815161339181613562565b6020815261ffff82511660208201526001600160601b03602083015116604082015260018060a01b0360408301511660608201525f606083015160a06080840152614e8760c08401826142c5565b905064ffffffffff60808501511660a08401528091505092915050565b60208152614ebe6020820183516001600160601b03169052565b5f6020830151614ed960408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c083015164ffffffffff811660e08401525060e0830151610200610100840152614f5f6102208401826142c5565b9050610100840151601f1984830301610120850152614f7e82826142c5565b915050610120840151614f9861014085018261ffff169052565b5061014084015161ffff8116610160850152506101608401516001600160601b038116610180850152506101808401516001600160601b0381166101a0850152506101a084015164ffffffffff81166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff8116610200850152614c9c565b815180518252602090810151908201526101c081016020838101518051604085015290810151606084015250604083015180516080840152602081015160a0840152506060830151805160c0840152602081015160e0840152506080830151805161010084015260208101516101208401525060a0830151805161014084015260208101516101608401525060c0830151805161018084015260208101516101a08401526126f6565b81516001600160601b03168152610240810160208301516150f160208401826001600160601b03169052565b50604083015161510c60408401826001600160601b03169052565b50606083015161512760608401826001600160601b03169052565b50608083015161514260808401826001600160601b03169052565b5060a083015161515d60a08401826001600160601b03169052565b5060c083015161517860c08401826001600160601b03169052565b5060e083015161519360e08401826001600160601b03169052565b506101008301516151b06101008401826001600160601b03169052565b506101208301516151cd6101208401826001600160601b03169052565b506101408301516151ea6101408401826001600160601b03169052565b506101608301516152076101608401826001600160601b03169052565b506101808301516152246101808401826001600160601b03169052565b506101a08301516152416101a08401826001600160601b03169052565b506101c083015161525e6101c08401826001600160601b03169052565b506101e083015161527b6101e08401826001600160601b03169052565b506102008301516152986102008401826001600160601b03169052565b506102208301516126f66102208401826001600160601b03169052565b602081526001600160601b0382511660208201525f60208301516152e6604084018280518252602090810151910152565b50604083015160e060808401526153016101008401826142c5565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f60408301516080606084015261537d60a08401826142c5565b905063ffffffff60608501511660808401528091505092915050565b600181811c908216806153ad57607f821691505b6020821081036153cb57634e487b7160e01b5f52602260045260245ffd5b50919050565b602081526001600160601b03825116602082015264ffffffffff60208301511660408201525f604083015160608084015261369960808401826142c5565b602081526001600160601b0382511660208201525f602083015160e0604084015261543e6101008401826142c5565b90506040840151606084015263ffffffff6060850151166080840152608084015161547160a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e0850152614d0182826142c5565b5f602082840312156154b0575f80fd5b815161339181613723565b5f8151808452602084019350602083015f5b828110156154f45781516001600160601b03168652602095860195909101906001016154cd565b5093949350505050565b602081528151151560208201526020820151151560408201525f604083015161552b606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e0830151610100808401526136996101208401826154bb565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f60408301516155cc606084018262ffffff169052565b50606083015162ffffff8116608084015250608083015160e060a08401526155f86101008401826142c5565b905060a0840151601f198483030160c085015261561582826142c5565b91505060c0840151614c9c60e085018264ffffffffff169052565b5f808585111561563e575f80fd5b8386111561564a575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156126f6576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f600182016156e957634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f60208284031215615700575f80fd5b815161339181613856565b5f6020828403121561571b575f80fd5b8151613391816136b8565b601f821115610b2957805f5260205f20601f840160051c8101602085101561574b5750805b601f840160051c820191505b818110156115a9575f8155600101615757565b81516001600160401b0381111561578357615783613398565b615797816157918454615399565b84615726565b6020601f8211600181146157c9575f83156157b25750848201515b5f19600385901b1c1916600184901b1784556115a9565b5f84815260208120601f198516915b828110156157f857878501518255602094850194600190920191016157d8565b508482101561581557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215615834575f80fd5b815161339181614ac7565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615895575f80fd5b82516158a081613562565b6020840151909250613718816139e4565b5f602082840312156158c1575f80fd5b8151613391816139e4565b5f602082840312156158dc575f80fd5b815161339181613357565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220c968f95e254ac26d1ae4ce1eeeda1c9dc6de7615b6c94ab59c66df24e79f3b0b64736f6c634300081a0033",
|
2308
|
+
"bytecode": "0x60806040525f6007553480156012575f80fd5b50614b8b806100205f395ff3fe608060405234801561000f575f80fd5b50600436106102b1575f3560e01c80637d417f0d1161017b578063b0628dc3116100e4578063d7719f461161009e578063e9e96c7011610079578063e9e96c70146107d7578063f48016ce14610814578063f9b3fe3c14610835578063fe1f18d614610848575f80fd5b8063d7719f461461079e578063e2586c58146107b1578063e80c61ed146107c4575f80fd5b8063b0628dc31461071f578063b33ef41a14610732578063b4d7efe214610745578063b6d7cd6214610758578063bf1db3f91461076b578063bf7e214f1461077e575f80fd5b806396f4df2f1161013557806396f4df2f146106335780639f8151e514610646578063a284222914610659578063a5961b4c1461066c578063abef1bb2146106f9578063af9025001461070c575f80fd5b80637d417f0d146105995780638129fc1c146105ac5780638eaa6ac0146105b45780638eb9000d146105d45780638fb36037146105ff5780639626055914610620575f80fd5b806340529b0f1161021d57806354f1fa81116101d757806354f1fa81146104ba57806354f6127f146104cd5780635eede174146104ed578063623e7a0f14610560578063733044ca146105735780637a9e5e4b14610586575f80fd5b806340529b0f14610448578063490840b41461045b5780634a8243921461046e5780634bb2d19714610481578063533086d41461049457806353ebe129146104a7575f80fd5b8063228e42ec1161026e578063228e42ec14610396578063248a77dd146103c15780632bce2d7c146103d457806334777712146103e7578063353e5b751461041257806338a699a414610425575f80fd5b80630232ca49146102b557806308077cd9146102fd57806309648a9d146103125780630ccd44d71461034b5780630d3581811461035e5780631c7c815514610383575b5f80fd5b6102e06102c33660046131ec565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61031061030b366004613489565b61085b565b005b6103396103203660046134e8565b5f90815260066020526040902054610100900460ff1690565b60405160ff90911681526020016102f4565b6103106103593660046135bd565b6108a0565b61033961036c36600461362d565b60ff9081165f908152602081905260409020541690565b61031061039136600461371d565b6108cd565b6102e06103a43660046131ec565b6001600160601b039081165f908152600260205260409020541690565b6102e06103cf366004613778565b610908565b6103106103e2366004613894565b610925565b6103fa6103f53660046139c5565b61094d565b6040516001600160401b0390911681526020016102f4565b6103106104203660046139fe565b6109f6565b6104386104333660046134e8565b610a12565b60405190151581526020016102f4565b610310610456366004613a3b565b610a9a565b610310610469366004613b00565b610ab1565b61031061047c366004613bc8565b610add565b61031061048f366004613d0f565b610b7b565b6102e06104a2366004613778565b610c19565b6102e06104b5366004613778565b610c2d565b6103106104c8366004613d51565b610c41565b6104e06104db3660046134e8565b610d99565b6040516102f49190613dcd565b6105366104fb3660046131ec565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016102f4565b61031061056e366004613e7f565b610e3b565b610310610581366004613ed6565b610e63565b610310610594366004613f19565b610efb565b6103106105a7366004613f34565b610f7d565b61031061101b565b6105c76105c23660046134e8565b611197565b6040516102f49190613f77565b6102e06105e23660046131ec565b6001600160601b039081165f908152600360205260409020541690565b6106076112b9565b6040516001600160e01b031990911681526020016102f4565b61031061062e366004613fd7565b6112ef565b61031061064136600461401a565b61138d565b6102e0610654366004613778565b6113b5565b610310610667366004614058565b6113c9565b6106ec61067a3660046134e8565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260068552839020835191820184525460ff80821683526101008204169482019490945264ffffffffff620100008504811693820193909352600160381b9093049091169082015290565b6040516102f49190614074565b6103106107073660046140b7565b611456565b61031061071a366004614058565b61147d565b6102e061072d366004613778565b6114cb565b610310610740366004614109565b6114df565b61031061075336600461415c565b611506565b610310610766366004614178565b611553565b61043861077936600461362d565b611569565b6107866115b5565b6040516001600160a01b0390911681526020016102f4565b6103106107ac3660046141a3565b6115d0565b6103106107bf3660046141e5565b611601565b6102e06107d2366004613778565b611632565b6104386107e5366004614227565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b610827610822366004614263565b611646565b6040519081526020016102f4565b61031061084336600461428f565b6116c7565b610310610856366004613a3b565b6116f8565b610867335b5f3661170f565b61089b61087584601661180d565b8360405160200161088691906142d1565b60405160208183030381529060405283611858565b505050565b6108a933610860565b6108c76108b685856119cf565b836040516020016108869190614361565b50505050565b6108d633610860565b61089b6108e38484611a1e565b826040516020016108f491906143bf565b604051602081830303815290604052611a6a565b5f61091233610860565b61091c8383611e96565b90505b92915050565b61092e33610860565b61089b61093c84601761180d565b836040516020016108869190614462565b5f61095733610860565b61095f612006565b604051630f37f38f60e41b81526001600160401b03821660048201529091506109f19073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af41580156109bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e091906144ae565b836040516020016108f491906144c5565b919050565b6109ff33610860565b6108c7610a0c84846119cf565b82612096565b5f8181526006602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610a76573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091f9190614586565b610aa333610860565b61089b610a0c83601761180d565b610aba33610860565b610ad9610ac883600f61180d565b826040516020016108f491906145a1565b5050565b610ae633610860565b6040516355ee627560e01b8152610ad99073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590610b2b906001600160c01b0319871690600401614620565b602060405180830381865af4158015610b46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6a91906144ae565b826040516020016108f49190614635565b610b8433610860565b6040516355ee627560e01b8152610ad99073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610bc9906001600160c01b0319871690600401614620565b602060405180830381865af4158015610be4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0891906144ae565b826040516020016108f491906146ea565b5f610c2333610860565b61091c83836123fa565b5f610c3733610860565b61091c8383612552565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015610ca3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc79190614586565b15610cf55760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff80851690831614610d365760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401610cec565b60ff8084165f908152600160209081526040808320888516845282528083208585168452909152902054166108c75760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401610cec565b5f818152600660205260409020600101805460609190610db8906147c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610de4906147c8565b8015610e2f5780601f10610e0657610100808354040283529160200191610e2f565b820191905f5260205f20905b815481529060010190602001808311610e1257829003601f168201915b50505050509050919050565b610e4433610860565b61089b610e5284600b61180d565b836040516020016108869190614800565b610e6c33610860565b604051630f37f38f60e41b81526001600160401b038416600482015261089b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610ec6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eea91906144ae565b8360405160200161088691906144c5565b33610f046115b5565b6001600160a01b0316816001600160a01b031614610f3f5760405162d1953b60e31b81526001600160a01b0382166004820152602401610cec565b816001600160a01b03163b5f03610f74576040516361798f2f60e11b81526001600160a01b0383166004820152602401610cec565b610ad9826126aa565b610f8633610860565b6040516355ee627560e01b815261089b9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610fcb906001600160c01b0319881690600401614620565b602060405180830381865af4158015610fe6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061100a91906144ae565b8360405160200161088691906146ea565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561105f5750825b90505f826001600160401b0316600114801561107a5750303b155b905081158015611088575080155b156110a65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156110d057845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611111573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611135919061484e565b90506111408161270a565b61114861271e565b5050831561119057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260066020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015264ffffffffff62010000820481166080840152600160381b9091041660a08201529283526001810180549192840191611232906147c8565b80601f016020809104026020016040519081016040528092919081815260200182805461125e906147c8565b80156112a95780601f10611280576101008083540402835291602001916112a9565b820191905f5260205f20905b81548152906001019060200180831161128c57829003601f168201915b5050505050815250509050919050565b5f80516020614b3683398151915280545f9190600160a01b900460ff166112e0575f6112e9565b638fb3603760e01b5b91505090565b6112f833610860565b6040516355ee627560e01b815261089b9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee62759061133d906001600160c01b0319881690600401614620565b602060405180830381865af4158015611358573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137c91906144ae565b836040516020016108869190614635565b61139633610860565b61089b6113a484600f61180d565b8360405160200161088691906145a1565b5f6113bf33610860565b61091c8383612730565b6113d233610860565b6040516355ee627560e01b815261089b9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611417906001600160c01b0319871690600401614620565b602060405180830381865af4158015611432573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0c91906144ae565b61145f33610860565b6108c761146c8585611a1e565b8360405160200161088691906143bf565b61148633610860565b6040516355ee627560e01b815261089b9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611417906001600160c01b0319871690600401614620565b5f6114d533610860565b61091c8383612888565b6114e833610860565b61089b6114f584846119cf565b826040516020016108f49190614361565b61150f33610860565b604051630f37f38f60e41b81526001600160401b038316600482015261089b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401611417565b61155c33610860565b6108c7610a0c8484611a1e565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610a5b565b5f80516020614b36833981519152546001600160a01b031690565b6115d933610860565b6115e2826129e0565b610ad96115f083601661180d565b826040516020016108f491906142d1565b61160a33610860565b611613826129e0565b610ad961162183600b61180d565b826040516020016108f49190614800565b5f61163c33610860565b61091c8383612ae3565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af41580156116a3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091c91906144ae565b6116d033610860565b6116d9826129e0565b610ad96116e783601761180d565b826040516020016108f49190614462565b61170133610860565b61089b610a0c83601661180d565b5f80516020614b368339815191525f8061174761172a6115b5565b873061173960045f8a8c614869565b61174291614890565b612c3b565b91509150816118055763ffffffff8116156117e257825460ff60a01b1916600160a01b1783556117756115b5565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016117a4939291906148c6565b5f604051808303815f87803b1580156117bb575f80fd5b505af11580156117cd573d5f803e3d5ffd5b5050845460ff60a01b19168555506118059050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610cec565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611688565b5f6118638483612096565b5f8581526006602052604090209091506001016118808482614949565b50604051634b00e98f60e11b8152600481018590527fdbbb264bf3560def22c1457cb693395546e7a0a2053566eb78e6f5eebf9831979073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156118f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119159190614a03565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015611963573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119879190614a1e565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015264ffffffffff841660a082015290519081900360c00190a150505050565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611688565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611688565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611aba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ade9190614a03565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611b31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b559190614586565b15611b78576040516307014a8d60e51b815260ff82166004820152602401610cec565b5f83815260066020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611bde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c029190614586565b15611c2c57604051633f92eac960e21b81526004810185905260ff83166024820152604401610cec565b611c3582611569565b611c5757604051636cb0978b60e11b815260ff83166004820152602401610cec565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cc39190614a39565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff199092169190911761010091831691909102176bffffffffffffffffffff000019166201000064ffffffffff85169081026bffffffffff00000000000000191691909117600160381b919091021784555f878152600660205260409020909150600101611d528682614949565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611dc3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de79190614a03565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015611e35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e599190614a1e565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015611f05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f299190614586565b611f5157604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f90815260036020526040902054611f75911684612d43565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fc813323abc29b7cc59ddd274e5941cad2a987aa85c181fbde230bfb449b0009691611fee9187918791879164ffffffffff90911690614a54565b60405180910390a1611fff84612dc8565b5092915050565b600780545f918261201683614a84565b9091555050600754604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af415801561206d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120919190614aa8565b905090565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156120e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061210c9190614586565b1561212d5760405163093b89e160e11b815260048101849052602401610cec565b505f82815260066020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930464ffffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121c89190614586565b156121e95760405163566ebf7960e01b815260048101869052602401610cec565b60ff8085161461236757815461220590829060ff168187610c41565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527f8f1ee60b80a6d161c3408fa78af057311e20d28c1a7a12a336a549e26d7104b69073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612287573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ab9190614a03565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156122f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061231d9190614a1e565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015264ffffffffff851660c082015260e00160405180910390a15b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156123ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123d29190614a39565b825464ffffffffff91909116620100000266ffffffffff000019909116179091555092915050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015612469573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061248d9190614586565b6124b557604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f908152600460205260409020546124d9911684612e67565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f5d0252a8f87c13449ff1a0e89d6a9d8dff6a3860c4cbbae6bd98d16f0924115b91611fee9187918791879164ffffffffff90911690614a54565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156125c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e59190614586565b61260d57604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f90815260036020526040902054612631911684612e67565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fcc72dbc9604f941e2273f4dfa0b71700384aa0f5da7c3fef80ecb075ac0010f891611fee9187918791879164ffffffffff90911690614a54565b5f80516020614b3683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612712612eb1565b61271b81612efa565b50565b612726612eb1565b61272e612f0b565b565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af415801561279f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127c39190614586565b6127eb57604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f9081526002602052604090205461280f911684612d43565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fa9c12735dda7f4e5a00ab4e6a4cfdc194c4f03f3885a5f18abfa66b77b8cdae391611fee9187918791879164ffffffffff90911690614a54565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156128f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061291b9190614586565b61294357604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f90815260026020526040902054612967911684612e67565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f561cfda68ea43752c3141f3761d148409c741e20d766a95c64721f2c6ace5ba291611fee9187918791879164ffffffffff90911690614a54565b6001600160601b0381165f9081526005602052604090819020549051638d38cd4b60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015612a4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a729190614586565b15612a9b576040516314d5804160e01b81526001600160601b0382166004820152602401610cec565b612aa481612dc8565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015612b52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b769190614586565b612b9e57604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f90815260046020526040902054612bc2911684612d43565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f52a6c3cc342afb5a41442a5b4757dbdd11e508f0f75a902a75a29d0409905a9991611fee9187918791879164ffffffffff90911690614a54565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612ca99190614ac3565b5f60405180830381855afa9150503d805f8114612ce1576040519150601f19603f3d011682016040523d82523d5f602084013e612ce6565b606091505b50915091508115612d38576040815110612d185780806020019051810190612d0e9190614ad9565b9094509250612d38565b6020815110612d385780806020019051810190612d359190614586565b93505b505094509492505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612da4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091c9190614b06565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e0f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e339190614a39565b6001600160601b03919091165f908152600560205260409020805464ffffffffff191664ffffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612d89565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661272e57604051631afcd79f60e31b815260040160405180910390fd5b612f02612eb1565b61271b816126aa565b612f13612f63565b612f1b612f80565b612f23612fb4565b612f2b612ff8565b612f33613014565b612f3b613061565b612f43613081565b612f4b613095565b612f536130d4565b612f5b6130de565b61272e6130f2565b612f7060165b600561311a565b61272e60165b60055b60c861315c565b612f8a600b612f69565b612f98600b6005606e61315c565b612fa6600b606e600561315c565b61272e600b606e60d261315c565b612fc06015600a61311a565b612fcf6015600a5b601461315c565b612fde6015600a5b601e61315c565b612fec6015600a602861315c565b61272e60156028612f79565b613005602b5b603c61311a565b61272e602b5b603c60dc61315c565b613020602d603261311a565b61302c602d6032612fc8565b61303a602d6032603361315c565b613046602d6032612fd7565b613052602d6033612f79565b61272e602d60335b604861315c565b61306b602e612ffe565b613075602e61300b565b61272e602e603c61305a565b61308b602c612f69565b61272e602c612f76565b61309f602f612f69565b6130ae602f60055b604661315c565b6130bc602f6005600761315c565b6130c8602f60076130a7565b61272e602f600561305a565b61272e600f612f69565b6130e8600c612f69565b61272e6029612f69565b6130fc600e612f69565b6131066017612f69565b6131106030612f69565b61272e6031612f69565b60ff8281165f90815260208190526040902054161561313b5761313b614b21565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561319457613194614b21565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b038116811461271b575f80fd5b80356109f1816131cd565b5f602082840312156131fc575f80fd5b8135613207816131cd565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405160c081016001600160401b03811182821017156132445761324461320e565b60405290565b60405160e081016001600160401b03811182821017156132445761324461320e565b60405161010081016001600160401b03811182821017156132445761324461320e565b60405161014081016001600160401b03811182821017156132445761324461320e565b64ffffffffff8116811461271b575f80fd5b80356109f1816132b2565b6001600160a01b038116811461271b575f80fd5b80356109f1816132cf565b5f604082840312156132fe575f80fd5b604080519081016001600160401b03811182821017156133205761332061320e565b6040529050808235613331816132cf565b81526020830135613341816131cd565b6020919091015292915050565b5f82601f83011261335d575f80fd5b8135602083015f806001600160401b0384111561337c5761337c61320e565b50604051601f19601f85018116603f011681018181106001600160401b03821117156133aa576133aa61320e565b6040528381529050808284018710156133c1575f80fd5b838360208301375f602085830101528094505050505092915050565b5f60e082840312156133ed575f80fd5b6133f5613222565b90508135613402816132b2565b81526020820135613412816132b2565b6020820152613423604083016132c4565b6040820152613434606083016131e1565b606082015261344683608084016132ee565b608082015260c08201356001600160401b03811115613463575f80fd5b61346f8482850161334e565b60a08301525092915050565b60ff8116811461271b575f80fd5b5f805f6060848603121561349b575f80fd5b83356134a6816131cd565b925060208401356001600160401b038111156134c0575f80fd5b6134cc868287016133dd565b92505060408401356134dd8161347b565b809150509250925092565b5f602082840312156134f8575f80fd5b5035919050565b803561ffff811681146109f1575f80fd5b5f60a08284031215613520575f80fd5b60405160a081016001600160401b03811182821017156135425761354261320e565b604052905080613551836134ff565b81526020830135613561816131cd565b60208201526040830135613574816132b2565b60408201526060830135613587816132cf565b606082015260808301356001600160401b038111156135a4575f80fd5b6135b08582860161334e565b6080830152505092915050565b5f805f80608085870312156135d0575f80fd5b84356135db816131cd565b935060208501356135eb816132b2565b925060408501356001600160401b03811115613605575f80fd5b61361187828801613510565b92505060608501356136228161347b565b939692955090935050565b5f6020828403121561363d575f80fd5b81356132078161347b565b803562ffffff811681146109f1575f80fd5b5f60e0828403121561366a575f80fd5b61367261324a565b905061367d826131e1565b815261368b602083016131e1565b602082015261369c604083016132c4565b60408201526136ad60608301613648565b60608201526136be60808301613648565b608082015260a08201356001600160401b038111156136db575f80fd5b6136e78482850161334e565b60a08301525060c08201356001600160401b03811115613705575f80fd5b6137118482850161334e565b60c08301525092915050565b5f805f6060848603121561372f575f80fd5b833561373a816131cd565b9250613748602085016134ff565b915060408401356001600160401b03811115613762575f80fd5b61376e8682870161365a565b9150509250925092565b5f8060408385031215613789575f80fd5b8235613794816131cd565b915060208301356137a4816131cd565b809150509250929050565b6001600160c01b03198116811461271b575f80fd5b801515811461271b575f80fd5b80356109f1816137c4565b63ffffffff8116811461271b575f80fd5b80356109f1816137dc565b5f60808284031215613808575f80fd5b604051608081016001600160401b038111828210171561382a5761382a61320e565b604052905080823561383b816137af565b8152602083013561384b816137c4565b6020820152604083013561385e816137dc565b604082015260608301356001600160401b0381111561387b575f80fd5b6138878582860161334e565b6060830152505092915050565b5f805f606084860312156138a6575f80fd5b83356138b1816131cd565b925060208401356001600160401b038111156138cb575f80fd5b6134cc868287016137f8565b5f61010082840312156138e8575f80fd5b6138f061326c565b90506138fb826131e1565b8152613909602083016131e1565b602082015261391a604083016137d1565b604082015261392b606083016132c4565b606082015261393c608083016132c4565b608082015260a08201356001600160401b03811115613959575f80fd5b6139658482850161334e565b60a08301525060c08201356001600160401b03811115613983575f80fd5b61398f8482850161334e565b60c08301525060e08201356001600160401b038111156139ad575f80fd5b6139b98482850161334e565b60e08301525092915050565b5f602082840312156139d5575f80fd5b81356001600160401b038111156139ea575f80fd5b6139f6848285016138d7565b949350505050565b5f805f60608486031215613a10575f80fd5b8335613a1b816131cd565b92506020840135613a2b816132b2565b915060408401356134dd8161347b565b5f8060408385031215613a4c575f80fd5b8235613a57816131cd565b915060208301356137a48161347b565b5f60e08284031215613a77575f80fd5b613a7f61324a565b90508135613a8c816131cd565b81526020820135613a9c816132cf565b60208201526040820135613aaf816132cf565b60408201526060820135613ac2816137c4565b6060820152613ad3608083016137d1565b6080820152613ae460a083016137d1565b60a0820152613af560c083016137d1565b60c082015292915050565b5f806101008385031215613b12575f80fd5b8235613b1d816131cd565b9150613b2c8460208501613a67565b90509250929050565b5f6101008284031215613b46575f80fd5b613b4e61326c565b9050613b59826131e1565b8152613b67602083016131e1565b6020820152613b78604083016137ed565b6040820152613b89606083016137ed565b6060820152613b9a608083016132e3565b6080820152613bab60a083016132c4565b60a082015260c08201356001600160401b03811115613983575f80fd5b5f8060408385031215613bd9575f80fd5b8235613be4816137af565b915060208301356001600160401b03811115613bfe575f80fd5b613c0a85828601613b35565b9150509250929050565b5f6101408284031215613c25575f80fd5b613c2d61328f565b9050613c38826132e3565b8152613c46602083016131e1565b6020820152613c57604083016132e3565b6040820152613c68606083016137ed565b6060820152613c79608083016132c4565b6080820152613c8a60a083016137d1565b60a0820152613c9b60c083016137d1565b60c0820152613cac60e083016132e3565b60e08201526101008201356001600160401b03811115613cca575f80fd5b613cd68482850161334e565b610100830152506101208201356001600160401b03811115613cf6575f80fd5b613d028482850161334e565b6101208301525092915050565b5f8060408385031215613d20575f80fd5b8235613d2b816137af565b915060208301356001600160401b03811115613d45575f80fd5b613c0a85828601613c14565b5f805f8060808587031215613d64575f80fd5b8435613d6f8161347b565b93506020850135613d7f8161347b565b92506040850135613d8f8161347b565b915060608501356136228161347b565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61091c6020830184613d9f565b5f60608284031215613def575f80fd5b604051606081016001600160401b0381118282101715613e1157613e1161320e565b60405290508082356001600160401b03811115613e2c575f80fd5b613e388582860161334e565b8252506020830135613e49816132cf565b602082015260408301356001600160401b03811115613e66575f80fd5b613e728582860161334e565b6040830152505092915050565b5f805f60608486031215613e91575f80fd5b8335613e9c816131cd565b925060208401356001600160401b03811115613eb6575f80fd5b6134cc86828701613ddf565b6001600160401b038116811461271b575f80fd5b5f805f60608486031215613ee8575f80fd5b8335613ef381613ec2565b925060208401356001600160401b03811115613f0d575f80fd5b6134cc868287016138d7565b5f60208284031215613f29575f80fd5b8135613207816132cf565b5f805f60608486031215613f46575f80fd5b8335613f51816137af565b925060208401356001600160401b03811115613f6b575f80fd5b6134cc86828701613c14565b60208152613fbe60208201835160ff815116825260ff602082015116602083015264ffffffffff604082015116604083015264ffffffffff60608201511660608301525050565b5f602083015160a0808401526139f660c0840182613d9f565b5f805f60608486031215613fe9575f80fd5b8335613ff4816137af565b925060208401356001600160401b0381111561400e575f80fd5b6134cc86828701613b35565b5f805f610120848603121561402d575f80fd5b8335614038816131cd565b92506140478560208601613a67565b91506101008401356134dd8161347b565b5f8060408385031215614069575f80fd5b8235613a57816137af565b6080810161091f828460ff815116825260ff602082015116602083015264ffffffffff604082015116604083015264ffffffffff60608201511660608301525050565b5f805f80608085870312156140ca575f80fd5b84356140d5816131cd565b93506140e3602086016134ff565b925060408501356001600160401b038111156140fd575f80fd5b6136118782880161365a565b5f805f6060848603121561411b575f80fd5b8335614126816131cd565b92506020840135614136816132b2565b915060408401356001600160401b03811115614150575f80fd5b61376e86828701613510565b5f806040838503121561416d575f80fd5b8235613a5781613ec2565b5f805f6060848603121561418a575f80fd5b8335614195816131cd565b9250613a2b602085016134ff565b5f80604083850312156141b4575f80fd5b82356141bf816131cd565b915060208301356001600160401b038111156141d9575f80fd5b613c0a858286016133dd565b5f80604083850312156141f6575f80fd5b8235614201816131cd565b915060208301356001600160401b0381111561421b575f80fd5b613c0a85828601613ddf565b5f805f60608486031215614239575f80fd5b83356142448161347b565b92506020840135613a2b8161347b565b60ff198116811461271b575f80fd5b5f8060408385031215614274575f80fd5b823561427f8161347b565b915060208301356137a481614254565b5f80604083850312156142a0575f80fd5b82356142ab816131cd565b915060208301356001600160401b038111156142c5575f80fd5b613c0a858286016137f8565b6020815264ffffffffff825116602082015264ffffffffff602083015116604082015264ffffffffff60408301511660608201526001600160601b0360608301511660808201525f608083015161434760a084018280516001600160a01b031682526020908101516001600160601b0316910152565b5060a083015160e0808401526139f6610100840182613d9f565b6020815261ffff82511660208201526001600160601b03602083015116604082015264ffffffffff604083015116606082015260018060a01b0360608301511660808201525f608083015160a0808401526139f660c0840182613d9f565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f60408301516143ff606084018264ffffffffff169052565b50606083015162ffffff8116608084015250608083015162ffffff811660a08401525060a083015160e060c084015261443c610100840182613d9f565b905060c0840151601f198483030160e08501526144598282613d9f565b95945050505050565b602081526001600160401b0360c01b825116602082015260208201511515604082015263ffffffff60408301511660608201525f60608301516080808401526139f660a0840182613d9f565b5f602082840312156144be575f80fd5b5051919050565b602081526144df6020820183516001600160601b03169052565b5f60208301516144fa60408401826001600160601b03169052565b506040830151801515606084015250606083015164ffffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015161010060c084015261454a610120840182613d9f565b905060c0840151601f198483030160e08501526145678282613d9f565b91505060e0840151601f19848303016101008501526144598282613d9f565b5f60208284031215614596575f80fd5b8151613207816137c4565b5f60e0820190506001600160601b03835116825260018060a01b03602084015116602083015260018060a01b03604084015116604083015260608301511515606083015260808301516145f8608084018215159052565b5060a083015161460c60a084018215159052565b5060c0830151611fff60c084018215159052565b6001600160c01b031991909116815260200190565b602081526001600160601b0382511660208201525f602083015161466460408401826001600160601b03169052565b50604083015163ffffffff8116606084015250606083015163ffffffff811660808401525060808301516001600160a01b03811660a08401525060a083015164ffffffffff811660c08401525060c083015161010060e08401526146cc610120840182613d9f565b905060e0840151601f19848303016101008501526144598282613d9f565b602081526147046020820183516001600160a01b03169052565b5f602083015161471f60408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015163ffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015180151560c08401525060c083015180151560e08401525060e08301516001600160a01b038116610100840152506101008301516101406101208401526147a9610160840182613d9f565b9050610120840151601f19848303016101408501526144598282613d9f565b600181811c908216806147dc57607f821691505b6020821081036147fa57634e487b7160e01b5f52602260045260245ffd5b50919050565b602081525f82516060602084015261481b6080840182613d9f565b60208501516001600160a01b0316604085810191909152850151848203601f190160608601529091506144598282613d9f565b5f6020828403121561485e575f80fd5b8151613207816132cf565b5f8085851115614877575f80fd5b83861115614883575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015611fff576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b601f82111561089b57805f5260205f20601f840160051c8101602085101561492a5750805b601f840160051c820191505b81811015611190575f8155600101614936565b81516001600160401b038111156149625761496261320e565b6149768161497084546147c8565b84614905565b6020601f8211600181146149a8575f83156149915750848201515b5f19600385901b1c1916600184901b178455611190565b5f84815260208120601f198516915b828110156149d757878501518255602094850194600190920191016149b7565b50848210156149f457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215614a13575f80fd5b81516132078161347b565b5f60208284031215614a2e575f80fd5b815161320781614254565b5f60208284031215614a49575f80fd5b8151613207816132b2565b6001600160601b03948516815292841660208401529216604082015264ffffffffff909116606082015260800190565b5f60018201614aa157634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f60208284031215614ab8575f80fd5b815161320781613ec2565b5f82518060208501845e5f920191825250919050565b5f8060408385031215614aea575f80fd5b8251614af5816137c4565b60208401519092506137a4816137dc565b5f60208284031215614b16575f80fd5b8151613207816131cd565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220965590583281fb76ddfbd125f9a24f12cf751bec31a87a40c33177173fda234564736f6c634300081a0033",
|
2309
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106102b1575f3560e01c80637d417f0d1161017b578063b0628dc3116100e4578063d7719f461161009e578063e9e96c7011610079578063e9e96c70146107d7578063f48016ce14610814578063f9b3fe3c14610835578063fe1f18d614610848575f80fd5b8063d7719f461461079e578063e2586c58146107b1578063e80c61ed146107c4575f80fd5b8063b0628dc31461071f578063b33ef41a14610732578063b4d7efe214610745578063b6d7cd6214610758578063bf1db3f91461076b578063bf7e214f1461077e575f80fd5b806396f4df2f1161013557806396f4df2f146106335780639f8151e514610646578063a284222914610659578063a5961b4c1461066c578063abef1bb2146106f9578063af9025001461070c575f80fd5b80637d417f0d146105995780638129fc1c146105ac5780638eaa6ac0146105b45780638eb9000d146105d45780638fb36037146105ff5780639626055914610620575f80fd5b806340529b0f1161021d57806354f1fa81116101d757806354f1fa81146104ba57806354f6127f146104cd5780635eede174146104ed578063623e7a0f14610560578063733044ca146105735780637a9e5e4b14610586575f80fd5b806340529b0f14610448578063490840b41461045b5780634a8243921461046e5780634bb2d19714610481578063533086d41461049457806353ebe129146104a7575f80fd5b8063228e42ec1161026e578063228e42ec14610396578063248a77dd146103c15780632bce2d7c146103d457806334777712146103e7578063353e5b751461041257806338a699a414610425575f80fd5b80630232ca49146102b557806308077cd9146102fd57806309648a9d146103125780630ccd44d71461034b5780630d3581811461035e5780631c7c815514610383575b5f80fd5b6102e06102c33660046131ec565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61031061030b366004613489565b61085b565b005b6103396103203660046134e8565b5f90815260066020526040902054610100900460ff1690565b60405160ff90911681526020016102f4565b6103106103593660046135bd565b6108a0565b61033961036c36600461362d565b60ff9081165f908152602081905260409020541690565b61031061039136600461371d565b6108cd565b6102e06103a43660046131ec565b6001600160601b039081165f908152600260205260409020541690565b6102e06103cf366004613778565b610908565b6103106103e2366004613894565b610925565b6103fa6103f53660046139c5565b61094d565b6040516001600160401b0390911681526020016102f4565b6103106104203660046139fe565b6109f6565b6104386104333660046134e8565b610a12565b60405190151581526020016102f4565b610310610456366004613a3b565b610a9a565b610310610469366004613b00565b610ab1565b61031061047c366004613bc8565b610add565b61031061048f366004613d0f565b610b7b565b6102e06104a2366004613778565b610c19565b6102e06104b5366004613778565b610c2d565b6103106104c8366004613d51565b610c41565b6104e06104db3660046134e8565b610d99565b6040516102f49190613dcd565b6105366104fb3660046131ec565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b03948516815292841660208401529216918101919091526060016102f4565b61031061056e366004613e7f565b610e3b565b610310610581366004613ed6565b610e63565b610310610594366004613f19565b610efb565b6103106105a7366004613f34565b610f7d565b61031061101b565b6105c76105c23660046134e8565b611197565b6040516102f49190613f77565b6102e06105e23660046131ec565b6001600160601b039081165f908152600360205260409020541690565b6106076112b9565b6040516001600160e01b031990911681526020016102f4565b61031061062e366004613fd7565b6112ef565b61031061064136600461401a565b61138d565b6102e0610654366004613778565b6113b5565b610310610667366004614058565b6113c9565b6106ec61067a3660046134e8565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260068552839020835191820184525460ff80821683526101008204169482019490945264ffffffffff620100008504811693820193909352600160381b9093049091169082015290565b6040516102f49190614074565b6103106107073660046140b7565b611456565b61031061071a366004614058565b61147d565b6102e061072d366004613778565b6114cb565b610310610740366004614109565b6114df565b61031061075336600461415c565b611506565b610310610766366004614178565b611553565b61043861077936600461362d565b611569565b6107866115b5565b6040516001600160a01b0390911681526020016102f4565b6103106107ac3660046141a3565b6115d0565b6103106107bf3660046141e5565b611601565b6102e06107d2366004613778565b611632565b6104386107e5366004614227565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b610827610822366004614263565b611646565b6040519081526020016102f4565b61031061084336600461428f565b6116c7565b610310610856366004613a3b565b6116f8565b610867335b5f3661170f565b61089b61087584601661180d565b8360405160200161088691906142d1565b60405160208183030381529060405283611858565b505050565b6108a933610860565b6108c76108b685856119cf565b836040516020016108869190614361565b50505050565b6108d633610860565b61089b6108e38484611a1e565b826040516020016108f491906143bf565b604051602081830303815290604052611a6a565b5f61091233610860565b61091c8383611e96565b90505b92915050565b61092e33610860565b61089b61093c84601761180d565b836040516020016108869190614462565b5f61095733610860565b61095f612006565b604051630f37f38f60e41b81526001600160401b03821660048201529091506109f19073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af41580156109bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109e091906144ae565b836040516020016108f491906144c5565b919050565b6109ff33610860565b6108c7610a0c84846119cf565b82612096565b5f8181526006602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610a76573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091f9190614586565b610aa333610860565b61089b610a0c83601761180d565b610aba33610860565b610ad9610ac883600f61180d565b826040516020016108f491906145a1565b5050565b610ae633610860565b6040516355ee627560e01b8152610ad99073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590610b2b906001600160c01b0319871690600401614620565b602060405180830381865af4158015610b46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6a91906144ae565b826040516020016108f49190614635565b610b8433610860565b6040516355ee627560e01b8152610ad99073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610bc9906001600160c01b0319871690600401614620565b602060405180830381865af4158015610be4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0891906144ae565b826040516020016108f491906146ea565b5f610c2333610860565b61091c83836123fa565b5f610c3733610860565b61091c8383612552565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015610ca3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc79190614586565b15610cf55760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff80851690831614610d365760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401610cec565b60ff8084165f908152600160209081526040808320888516845282528083208585168452909152902054166108c75760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401610cec565b5f818152600660205260409020600101805460609190610db8906147c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610de4906147c8565b8015610e2f5780601f10610e0657610100808354040283529160200191610e2f565b820191905f5260205f20905b815481529060010190602001808311610e1257829003601f168201915b50505050509050919050565b610e4433610860565b61089b610e5284600b61180d565b836040516020016108869190614800565b610e6c33610860565b604051630f37f38f60e41b81526001600160401b038416600482015261089b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610ec6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eea91906144ae565b8360405160200161088691906144c5565b33610f046115b5565b6001600160a01b0316816001600160a01b031614610f3f5760405162d1953b60e31b81526001600160a01b0382166004820152602401610cec565b816001600160a01b03163b5f03610f74576040516361798f2f60e11b81526001600160a01b0383166004820152602401610cec565b610ad9826126aa565b610f8633610860565b6040516355ee627560e01b815261089b9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610fcb906001600160c01b0319881690600401614620565b602060405180830381865af4158015610fe6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061100a91906144ae565b8360405160200161088691906146ea565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561105f5750825b90505f826001600160401b0316600114801561107a5750303b155b905081158015611088575080155b156110a65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156110d057845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611111573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611135919061484e565b90506111408161270a565b61114861271e565b5050831561119057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260066020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015264ffffffffff62010000820481166080840152600160381b9091041660a08201529283526001810180549192840191611232906147c8565b80601f016020809104026020016040519081016040528092919081815260200182805461125e906147c8565b80156112a95780601f10611280576101008083540402835291602001916112a9565b820191905f5260205f20905b81548152906001019060200180831161128c57829003601f168201915b5050505050815250509050919050565b5f80516020614b3683398151915280545f9190600160a01b900460ff166112e0575f6112e9565b638fb3603760e01b5b91505090565b6112f833610860565b6040516355ee627560e01b815261089b9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee62759061133d906001600160c01b0319881690600401614620565b602060405180830381865af4158015611358573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137c91906144ae565b836040516020016108869190614635565b61139633610860565b61089b6113a484600f61180d565b8360405160200161088691906145a1565b5f6113bf33610860565b61091c8383612730565b6113d233610860565b6040516355ee627560e01b815261089b9073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611417906001600160c01b0319871690600401614620565b602060405180830381865af4158015611432573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0c91906144ae565b61145f33610860565b6108c761146c8585611a1e565b8360405160200161088691906143bf565b61148633610860565b6040516355ee627560e01b815261089b9073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611417906001600160c01b0319871690600401614620565b5f6114d533610860565b61091c8383612888565b6114e833610860565b61089b6114f584846119cf565b826040516020016108f49190614361565b61150f33610860565b604051630f37f38f60e41b81526001600160401b038316600482015261089b9073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401611417565b61155c33610860565b6108c7610a0c8484611a1e565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610a5b565b5f80516020614b36833981519152546001600160a01b031690565b6115d933610860565b6115e2826129e0565b610ad96115f083601661180d565b826040516020016108f491906142d1565b61160a33610860565b611613826129e0565b610ad961162183600b61180d565b826040516020016108f49190614800565b5f61163c33610860565b61091c8383612ae3565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af41580156116a3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091c91906144ae565b6116d033610860565b6116d9826129e0565b610ad96116e783601761180d565b826040516020016108f49190614462565b61170133610860565b61089b610a0c83601661180d565b5f80516020614b368339815191525f8061174761172a6115b5565b873061173960045f8a8c614869565b61174291614890565b612c3b565b91509150816118055763ffffffff8116156117e257825460ff60a01b1916600160a01b1783556117756115b5565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016117a4939291906148c6565b5f604051808303815f87803b1580156117bb575f80fd5b505af11580156117cd573d5f803e3d5ffd5b5050845460ff60a01b19168555506118059050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610cec565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611688565b5f6118638483612096565b5f8581526006602052604090209091506001016118808482614949565b50604051634b00e98f60e11b8152600481018590527fdbbb264bf3560def22c1457cb693395546e7a0a2053566eb78e6f5eebf9831979073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af41580156118f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119159190614a03565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015611963573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119879190614a1e565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015264ffffffffff841660a082015290519081900360c00190a150505050565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611688565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611688565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611aba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ade9190614a03565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611b31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b559190614586565b15611b78576040516307014a8d60e51b815260ff82166004820152602401610cec565b5f83815260066020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611bde573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c029190614586565b15611c2c57604051633f92eac960e21b81526004810185905260ff83166024820152604401610cec565b611c3582611569565b611c5757604051636cb0978b60e11b815260ff83166004820152602401610cec565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611c9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cc39190614a39565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff199092169190911761010091831691909102176bffffffffffffffffffff000019166201000064ffffffffff85169081026bffffffffff00000000000000191691909117600160381b919091021784555f878152600660205260409020909150600101611d528682614949565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611dc3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de79190614a03565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015611e35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e599190614a1e565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015611f05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f299190614586565b611f5157604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f90815260036020526040902054611f75911684612d43565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fc813323abc29b7cc59ddd274e5941cad2a987aa85c181fbde230bfb449b0009691611fee9187918791879164ffffffffff90911690614a54565b60405180910390a1611fff84612dc8565b5092915050565b600780545f918261201683614a84565b9091555050600754604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af415801561206d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120919190614aa8565b905090565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156120e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061210c9190614586565b1561212d5760405163093b89e160e11b815260048101849052602401610cec565b505f82815260066020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930464ffffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121c89190614586565b156121e95760405163566ebf7960e01b815260048101869052602401610cec565b60ff8085161461236757815461220590829060ff168187610c41565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527f8f1ee60b80a6d161c3408fa78af057311e20d28c1a7a12a336a549e26d7104b69073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612287573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ab9190614a03565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156122f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061231d9190614a1e565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015264ffffffffff851660c082015260e00160405180910390a15b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156123ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123d29190614a39565b825464ffffffffff91909116620100000266ffffffffff000019909116179091555092915050565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015612469573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061248d9190614586565b6124b557604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f908152600460205260409020546124d9911684612e67565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f5d0252a8f87c13449ff1a0e89d6a9d8dff6a3860c4cbbae6bd98d16f0924115b91611fee9187918791879164ffffffffff90911690614a54565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156125c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e59190614586565b61260d57604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f90815260036020526040902054612631911684612e67565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fcc72dbc9604f941e2273f4dfa0b71700384aa0f5da7c3fef80ecb075ac0010f891611fee9187918791879164ffffffffff90911690614a54565b5f80516020614b3683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612712612eb1565b61271b81612efa565b50565b612726612eb1565b61272e612f0b565b565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af415801561279f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127c39190614586565b6127eb57604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f9081526002602052604090205461280f911684612d43565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507fa9c12735dda7f4e5a00ab4e6a4cfdc194c4f03f3885a5f18abfa66b77b8cdae391611fee9187918791879164ffffffffff90911690614a54565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af41580156128f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061291b9190614586565b61294357604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f90815260026020526040902054612967911684612e67565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f561cfda68ea43752c3141f3761d148409c741e20d766a95c64721f2c6ace5ba291611fee9187918791879164ffffffffff90911690614a54565b6001600160601b0381165f9081526005602052604090819020549051638d38cd4b60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015612a4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a729190614586565b15612a9b576040516314d5804160e01b81526001600160601b0382166004820152602401610cec565b612aa481612dc8565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b6001600160601b0382165f90815260056020526040808220549051638d38cd4b60e01b815264ffffffffff9091166004820152839073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__90638d38cd4b90602401602060405180830381865af4158015612b52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b769190614586565b612b9e57604051631e94ffd760e11b81526001600160601b0382166004820152602401610cec565b6001600160601b038085165f90815260046020526040902054612bc2911684612d43565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600590528190205490519193507f52a6c3cc342afb5a41442a5b4757dbdd11e508f0f75a902a75a29d0409905a9991611fee9187918791879164ffffffffff90911690614a54565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612ca99190614ac3565b5f60405180830381855afa9150503d805f8114612ce1576040519150601f19603f3d011682016040523d82523d5f602084013e612ce6565b606091505b50915091508115612d38576040815110612d185780806020019051810190612d0e9190614ad9565b9094509250612d38565b6020815110612d385780806020019051810190612d359190614586565b93505b505094509492505050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612da4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091c9190614b06565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e0f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e339190614a39565b6001600160601b03919091165f908152600560205260409020805464ffffffffff191664ffffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612d89565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661272e57604051631afcd79f60e31b815260040160405180910390fd5b612f02612eb1565b61271b816126aa565b612f13612f63565b612f1b612f80565b612f23612fb4565b612f2b612ff8565b612f33613014565b612f3b613061565b612f43613081565b612f4b613095565b612f536130d4565b612f5b6130de565b61272e6130f2565b612f7060165b600561311a565b61272e60165b60055b60c861315c565b612f8a600b612f69565b612f98600b6005606e61315c565b612fa6600b606e600561315c565b61272e600b606e60d261315c565b612fc06015600a61311a565b612fcf6015600a5b601461315c565b612fde6015600a5b601e61315c565b612fec6015600a602861315c565b61272e60156028612f79565b613005602b5b603c61311a565b61272e602b5b603c60dc61315c565b613020602d603261311a565b61302c602d6032612fc8565b61303a602d6032603361315c565b613046602d6032612fd7565b613052602d6033612f79565b61272e602d60335b604861315c565b61306b602e612ffe565b613075602e61300b565b61272e602e603c61305a565b61308b602c612f69565b61272e602c612f76565b61309f602f612f69565b6130ae602f60055b604661315c565b6130bc602f6005600761315c565b6130c8602f60076130a7565b61272e602f600561305a565b61272e600f612f69565b6130e8600c612f69565b61272e6029612f69565b6130fc600e612f69565b6131066017612f69565b6131106030612f69565b61272e6031612f69565b60ff8281165f90815260208190526040902054161561313b5761313b614b21565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561319457613194614b21565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b038116811461271b575f80fd5b80356109f1816131cd565b5f602082840312156131fc575f80fd5b8135613207816131cd565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405160c081016001600160401b03811182821017156132445761324461320e565b60405290565b60405160e081016001600160401b03811182821017156132445761324461320e565b60405161010081016001600160401b03811182821017156132445761324461320e565b60405161014081016001600160401b03811182821017156132445761324461320e565b64ffffffffff8116811461271b575f80fd5b80356109f1816132b2565b6001600160a01b038116811461271b575f80fd5b80356109f1816132cf565b5f604082840312156132fe575f80fd5b604080519081016001600160401b03811182821017156133205761332061320e565b6040529050808235613331816132cf565b81526020830135613341816131cd565b6020919091015292915050565b5f82601f83011261335d575f80fd5b8135602083015f806001600160401b0384111561337c5761337c61320e565b50604051601f19601f85018116603f011681018181106001600160401b03821117156133aa576133aa61320e565b6040528381529050808284018710156133c1575f80fd5b838360208301375f602085830101528094505050505092915050565b5f60e082840312156133ed575f80fd5b6133f5613222565b90508135613402816132b2565b81526020820135613412816132b2565b6020820152613423604083016132c4565b6040820152613434606083016131e1565b606082015261344683608084016132ee565b608082015260c08201356001600160401b03811115613463575f80fd5b61346f8482850161334e565b60a08301525092915050565b60ff8116811461271b575f80fd5b5f805f6060848603121561349b575f80fd5b83356134a6816131cd565b925060208401356001600160401b038111156134c0575f80fd5b6134cc868287016133dd565b92505060408401356134dd8161347b565b809150509250925092565b5f602082840312156134f8575f80fd5b5035919050565b803561ffff811681146109f1575f80fd5b5f60a08284031215613520575f80fd5b60405160a081016001600160401b03811182821017156135425761354261320e565b604052905080613551836134ff565b81526020830135613561816131cd565b60208201526040830135613574816132b2565b60408201526060830135613587816132cf565b606082015260808301356001600160401b038111156135a4575f80fd5b6135b08582860161334e565b6080830152505092915050565b5f805f80608085870312156135d0575f80fd5b84356135db816131cd565b935060208501356135eb816132b2565b925060408501356001600160401b03811115613605575f80fd5b61361187828801613510565b92505060608501356136228161347b565b939692955090935050565b5f6020828403121561363d575f80fd5b81356132078161347b565b803562ffffff811681146109f1575f80fd5b5f60e0828403121561366a575f80fd5b61367261324a565b905061367d826131e1565b815261368b602083016131e1565b602082015261369c604083016132c4565b60408201526136ad60608301613648565b60608201526136be60808301613648565b608082015260a08201356001600160401b038111156136db575f80fd5b6136e78482850161334e565b60a08301525060c08201356001600160401b03811115613705575f80fd5b6137118482850161334e565b60c08301525092915050565b5f805f6060848603121561372f575f80fd5b833561373a816131cd565b9250613748602085016134ff565b915060408401356001600160401b03811115613762575f80fd5b61376e8682870161365a565b9150509250925092565b5f8060408385031215613789575f80fd5b8235613794816131cd565b915060208301356137a4816131cd565b809150509250929050565b6001600160c01b03198116811461271b575f80fd5b801515811461271b575f80fd5b80356109f1816137c4565b63ffffffff8116811461271b575f80fd5b80356109f1816137dc565b5f60808284031215613808575f80fd5b604051608081016001600160401b038111828210171561382a5761382a61320e565b604052905080823561383b816137af565b8152602083013561384b816137c4565b6020820152604083013561385e816137dc565b604082015260608301356001600160401b0381111561387b575f80fd5b6138878582860161334e565b6060830152505092915050565b5f805f606084860312156138a6575f80fd5b83356138b1816131cd565b925060208401356001600160401b038111156138cb575f80fd5b6134cc868287016137f8565b5f61010082840312156138e8575f80fd5b6138f061326c565b90506138fb826131e1565b8152613909602083016131e1565b602082015261391a604083016137d1565b604082015261392b606083016132c4565b606082015261393c608083016132c4565b608082015260a08201356001600160401b03811115613959575f80fd5b6139658482850161334e565b60a08301525060c08201356001600160401b03811115613983575f80fd5b61398f8482850161334e565b60c08301525060e08201356001600160401b038111156139ad575f80fd5b6139b98482850161334e565b60e08301525092915050565b5f602082840312156139d5575f80fd5b81356001600160401b038111156139ea575f80fd5b6139f6848285016138d7565b949350505050565b5f805f60608486031215613a10575f80fd5b8335613a1b816131cd565b92506020840135613a2b816132b2565b915060408401356134dd8161347b565b5f8060408385031215613a4c575f80fd5b8235613a57816131cd565b915060208301356137a48161347b565b5f60e08284031215613a77575f80fd5b613a7f61324a565b90508135613a8c816131cd565b81526020820135613a9c816132cf565b60208201526040820135613aaf816132cf565b60408201526060820135613ac2816137c4565b6060820152613ad3608083016137d1565b6080820152613ae460a083016137d1565b60a0820152613af560c083016137d1565b60c082015292915050565b5f806101008385031215613b12575f80fd5b8235613b1d816131cd565b9150613b2c8460208501613a67565b90509250929050565b5f6101008284031215613b46575f80fd5b613b4e61326c565b9050613b59826131e1565b8152613b67602083016131e1565b6020820152613b78604083016137ed565b6040820152613b89606083016137ed565b6060820152613b9a608083016132e3565b6080820152613bab60a083016132c4565b60a082015260c08201356001600160401b03811115613983575f80fd5b5f8060408385031215613bd9575f80fd5b8235613be4816137af565b915060208301356001600160401b03811115613bfe575f80fd5b613c0a85828601613b35565b9150509250929050565b5f6101408284031215613c25575f80fd5b613c2d61328f565b9050613c38826132e3565b8152613c46602083016131e1565b6020820152613c57604083016132e3565b6040820152613c68606083016137ed565b6060820152613c79608083016132c4565b6080820152613c8a60a083016137d1565b60a0820152613c9b60c083016137d1565b60c0820152613cac60e083016132e3565b60e08201526101008201356001600160401b03811115613cca575f80fd5b613cd68482850161334e565b610100830152506101208201356001600160401b03811115613cf6575f80fd5b613d028482850161334e565b6101208301525092915050565b5f8060408385031215613d20575f80fd5b8235613d2b816137af565b915060208301356001600160401b03811115613d45575f80fd5b613c0a85828601613c14565b5f805f8060808587031215613d64575f80fd5b8435613d6f8161347b565b93506020850135613d7f8161347b565b92506040850135613d8f8161347b565b915060608501356136228161347b565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61091c6020830184613d9f565b5f60608284031215613def575f80fd5b604051606081016001600160401b0381118282101715613e1157613e1161320e565b60405290508082356001600160401b03811115613e2c575f80fd5b613e388582860161334e565b8252506020830135613e49816132cf565b602082015260408301356001600160401b03811115613e66575f80fd5b613e728582860161334e565b6040830152505092915050565b5f805f60608486031215613e91575f80fd5b8335613e9c816131cd565b925060208401356001600160401b03811115613eb6575f80fd5b6134cc86828701613ddf565b6001600160401b038116811461271b575f80fd5b5f805f60608486031215613ee8575f80fd5b8335613ef381613ec2565b925060208401356001600160401b03811115613f0d575f80fd5b6134cc868287016138d7565b5f60208284031215613f29575f80fd5b8135613207816132cf565b5f805f60608486031215613f46575f80fd5b8335613f51816137af565b925060208401356001600160401b03811115613f6b575f80fd5b6134cc86828701613c14565b60208152613fbe60208201835160ff815116825260ff602082015116602083015264ffffffffff604082015116604083015264ffffffffff60608201511660608301525050565b5f602083015160a0808401526139f660c0840182613d9f565b5f805f60608486031215613fe9575f80fd5b8335613ff4816137af565b925060208401356001600160401b0381111561400e575f80fd5b6134cc86828701613b35565b5f805f610120848603121561402d575f80fd5b8335614038816131cd565b92506140478560208601613a67565b91506101008401356134dd8161347b565b5f8060408385031215614069575f80fd5b8235613a57816137af565b6080810161091f828460ff815116825260ff602082015116602083015264ffffffffff604082015116604083015264ffffffffff60608201511660608301525050565b5f805f80608085870312156140ca575f80fd5b84356140d5816131cd565b93506140e3602086016134ff565b925060408501356001600160401b038111156140fd575f80fd5b6136118782880161365a565b5f805f6060848603121561411b575f80fd5b8335614126816131cd565b92506020840135614136816132b2565b915060408401356001600160401b03811115614150575f80fd5b61376e86828701613510565b5f806040838503121561416d575f80fd5b8235613a5781613ec2565b5f805f6060848603121561418a575f80fd5b8335614195816131cd565b9250613a2b602085016134ff565b5f80604083850312156141b4575f80fd5b82356141bf816131cd565b915060208301356001600160401b038111156141d9575f80fd5b613c0a858286016133dd565b5f80604083850312156141f6575f80fd5b8235614201816131cd565b915060208301356001600160401b0381111561421b575f80fd5b613c0a85828601613ddf565b5f805f60608486031215614239575f80fd5b83356142448161347b565b92506020840135613a2b8161347b565b60ff198116811461271b575f80fd5b5f8060408385031215614274575f80fd5b823561427f8161347b565b915060208301356137a481614254565b5f80604083850312156142a0575f80fd5b82356142ab816131cd565b915060208301356001600160401b038111156142c5575f80fd5b613c0a858286016137f8565b6020815264ffffffffff825116602082015264ffffffffff602083015116604082015264ffffffffff60408301511660608201526001600160601b0360608301511660808201525f608083015161434760a084018280516001600160a01b031682526020908101516001600160601b0316910152565b5060a083015160e0808401526139f6610100840182613d9f565b6020815261ffff82511660208201526001600160601b03602083015116604082015264ffffffffff604083015116606082015260018060a01b0360608301511660808201525f608083015160a0808401526139f660c0840182613d9f565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f60408301516143ff606084018264ffffffffff169052565b50606083015162ffffff8116608084015250608083015162ffffff811660a08401525060a083015160e060c084015261443c610100840182613d9f565b905060c0840151601f198483030160e08501526144598282613d9f565b95945050505050565b602081526001600160401b0360c01b825116602082015260208201511515604082015263ffffffff60408301511660608201525f60608301516080808401526139f660a0840182613d9f565b5f602082840312156144be575f80fd5b5051919050565b602081526144df6020820183516001600160601b03169052565b5f60208301516144fa60408401826001600160601b03169052565b506040830151801515606084015250606083015164ffffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015161010060c084015261454a610120840182613d9f565b905060c0840151601f198483030160e08501526145678282613d9f565b91505060e0840151601f19848303016101008501526144598282613d9f565b5f60208284031215614596575f80fd5b8151613207816137c4565b5f60e0820190506001600160601b03835116825260018060a01b03602084015116602083015260018060a01b03604084015116604083015260608301511515606083015260808301516145f8608084018215159052565b5060a083015161460c60a084018215159052565b5060c0830151611fff60c084018215159052565b6001600160c01b031991909116815260200190565b602081526001600160601b0382511660208201525f602083015161466460408401826001600160601b03169052565b50604083015163ffffffff8116606084015250606083015163ffffffff811660808401525060808301516001600160a01b03811660a08401525060a083015164ffffffffff811660c08401525060c083015161010060e08401526146cc610120840182613d9f565b905060e0840151601f19848303016101008501526144598282613d9f565b602081526147046020820183516001600160a01b03169052565b5f602083015161471f60408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015163ffffffff8116608084015250608083015164ffffffffff811660a08401525060a083015180151560c08401525060c083015180151560e08401525060e08301516001600160a01b038116610100840152506101008301516101406101208401526147a9610160840182613d9f565b9050610120840151601f19848303016101408501526144598282613d9f565b600181811c908216806147dc57607f821691505b6020821081036147fa57634e487b7160e01b5f52602260045260245ffd5b50919050565b602081525f82516060602084015261481b6080840182613d9f565b60208501516001600160a01b0316604085810191909152850151848203601f190160608601529091506144598282613d9f565b5f6020828403121561485e575f80fd5b8151613207816132cf565b5f8085851115614877575f80fd5b83861115614883575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015611fff576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b601f82111561089b57805f5260205f20601f840160051c8101602085101561492a5750805b601f840160051c820191505b81811015611190575f8155600101614936565b81516001600160401b038111156149625761496261320e565b6149768161497084546147c8565b84614905565b6020601f8211600181146149a8575f83156149915750848201515b5f19600385901b1c1916600184901b178455611190565b5f84815260208120601f198516915b828110156149d757878501518255602094850194600190920191016149b7565b50848210156149f457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215614a13575f80fd5b81516132078161347b565b5f60208284031215614a2e575f80fd5b815161320781614254565b5f60208284031215614a49575f80fd5b8151613207816132b2565b6001600160601b03948516815292841660208401529216604082015264ffffffffff909116606082015260800190565b5f60018201614aa157634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f60208284031215614ab8575f80fd5b815161320781613ec2565b5f82518060208501845e5f920191825250919050565b5f8060408385031215614aea575f80fd5b8251614af5816137c4565b60208401519092506137a4816137dc565b5f60208284031215614b16575f80fd5b8151613207816131cd565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220965590583281fb76ddfbd125f9a24f12cf751bec31a87a40c33177173fda234564736f6c634300081a0033",
|
3338
2310
|
"linkReferences": {
|
3339
2311
|
"contracts/type/Amount.sol": {
|
3340
2312
|
"AmountLib": [
|
3341
2313
|
{
|
3342
2314
|
"length": 20,
|
3343
|
-
"start":
|
2315
|
+
"start": 11659
|
3344
2316
|
},
|
3345
2317
|
{
|
3346
2318
|
"length": 20,
|
3347
|
-
"start":
|
2319
|
+
"start": 11951
|
3348
2320
|
}
|
3349
2321
|
]
|
3350
2322
|
},
|
@@ -3352,11 +2324,43 @@
|
|
3352
2324
|
"BlocknumberLib": [
|
3353
2325
|
{
|
3354
2326
|
"length": 20,
|
3355
|
-
"start":
|
2327
|
+
"start": 7290
|
2328
|
+
},
|
2329
|
+
{
|
2330
|
+
"length": 20,
|
2331
|
+
"start": 7917
|
2332
|
+
},
|
2333
|
+
{
|
2334
|
+
"length": 20,
|
2335
|
+
"start": 9097
|
2336
|
+
},
|
2337
|
+
{
|
2338
|
+
"length": 20,
|
2339
|
+
"start": 9297
|
2340
|
+
},
|
2341
|
+
{
|
2342
|
+
"length": 20,
|
2343
|
+
"start": 9641
|
2344
|
+
},
|
2345
|
+
{
|
2346
|
+
"length": 20,
|
2347
|
+
"start": 10119
|
2348
|
+
},
|
2349
|
+
{
|
2350
|
+
"length": 20,
|
2351
|
+
"start": 10463
|
2352
|
+
},
|
2353
|
+
{
|
2354
|
+
"length": 20,
|
2355
|
+
"start": 10806
|
2356
|
+
},
|
2357
|
+
{
|
2358
|
+
"length": 20,
|
2359
|
+
"start": 11066
|
3356
2360
|
},
|
3357
2361
|
{
|
3358
2362
|
"length": 20,
|
3359
|
-
"start":
|
2363
|
+
"start": 11754
|
3360
2364
|
}
|
3361
2365
|
]
|
3362
2366
|
},
|
@@ -3364,7 +2368,7 @@
|
|
3364
2368
|
"ClaimIdLib": [
|
3365
2369
|
{
|
3366
2370
|
"length": 20,
|
3367
|
-
"start":
|
2371
|
+
"start": 6760
|
3368
2372
|
}
|
3369
2373
|
]
|
3370
2374
|
},
|
@@ -3372,15 +2376,15 @@
|
|
3372
2376
|
"DistributorTypeLib": [
|
3373
2377
|
{
|
3374
2378
|
"length": 20,
|
3375
|
-
"start":
|
2379
|
+
"start": 2999
|
3376
2380
|
},
|
3377
2381
|
{
|
3378
2382
|
"length": 20,
|
3379
|
-
"start":
|
2383
|
+
"start": 4025
|
3380
2384
|
},
|
3381
2385
|
{
|
3382
2386
|
"length": 20,
|
3383
|
-
"start":
|
2387
|
+
"start": 5125
|
3384
2388
|
}
|
3385
2389
|
]
|
3386
2390
|
},
|
@@ -3388,35 +2392,35 @@
|
|
3388
2392
|
"Key32Lib": [
|
3389
2393
|
{
|
3390
2394
|
"length": 20,
|
3391
|
-
"start":
|
2395
|
+
"start": 5770
|
3392
2396
|
},
|
3393
2397
|
{
|
3394
2398
|
"length": 20,
|
3395
|
-
"start":
|
2399
|
+
"start": 6361
|
3396
2400
|
},
|
3397
2401
|
{
|
3398
2402
|
"length": 20,
|
3399
|
-
"start":
|
2403
|
+
"start": 6475
|
3400
2404
|
},
|
3401
2405
|
{
|
3402
2406
|
"length": 20,
|
3403
|
-
"start":
|
2407
|
+
"start": 6818
|
3404
2408
|
},
|
3405
2409
|
{
|
3406
2410
|
"length": 20,
|
3407
|
-
"start":
|
2411
|
+
"start": 7595
|
3408
2412
|
},
|
3409
2413
|
{
|
3410
2414
|
"length": 20,
|
3411
|
-
"start":
|
2415
|
+
"start": 7709
|
3412
2416
|
},
|
3413
2417
|
{
|
3414
2418
|
"length": 20,
|
3415
|
-
"start":
|
2419
|
+
"start": 8815
|
3416
2420
|
},
|
3417
2421
|
{
|
3418
2422
|
"length": 20,
|
3419
|
-
"start":
|
2423
|
+
"start": 8929
|
3420
2424
|
}
|
3421
2425
|
]
|
3422
2426
|
},
|
@@ -3424,7 +2428,7 @@
|
|
3424
2428
|
"NftIdLib": [
|
3425
2429
|
{
|
3426
2430
|
"length": 20,
|
3427
|
-
"start":
|
2431
|
+
"start": 6230
|
3428
2432
|
}
|
3429
2433
|
]
|
3430
2434
|
},
|
@@ -3432,7 +2436,7 @@
|
|
3432
2436
|
"ObjectTypeLib": [
|
3433
2437
|
{
|
3434
2438
|
"length": 20,
|
3435
|
-
"start":
|
2439
|
+
"start": 6937
|
3436
2440
|
}
|
3437
2441
|
]
|
3438
2442
|
},
|
@@ -3440,7 +2444,7 @@
|
|
3440
2444
|
"PayoutIdLib": [
|
3441
2445
|
{
|
3442
2446
|
"length": 20,
|
3443
|
-
"start":
|
2447
|
+
"start": 6684
|
3444
2448
|
}
|
3445
2449
|
]
|
3446
2450
|
},
|
@@ -3448,15 +2452,15 @@
|
|
3448
2452
|
"ReferralLib": [
|
3449
2453
|
{
|
3450
2454
|
"length": 20,
|
3451
|
-
"start":
|
2455
|
+
"start": 2841
|
3452
2456
|
},
|
3453
2457
|
{
|
3454
2458
|
"length": 20,
|
3455
|
-
"start":
|
2459
|
+
"start": 4907
|
3456
2460
|
},
|
3457
2461
|
{
|
3458
2462
|
"length": 20,
|
3459
|
-
"start":
|
2463
|
+
"start": 5305
|
3460
2464
|
}
|
3461
2465
|
]
|
3462
2466
|
},
|
@@ -3464,35 +2468,19 @@
|
|
3464
2468
|
"RequestIdLib": [
|
3465
2469
|
{
|
3466
2470
|
"length": 20,
|
3467
|
-
"start":
|
3468
|
-
},
|
3469
|
-
{
|
3470
|
-
"length": 20,
|
3471
|
-
"start": 3027
|
2471
|
+
"start": 2468
|
3472
2472
|
},
|
3473
2473
|
{
|
3474
2474
|
"length": 20,
|
3475
|
-
"start":
|
3476
|
-
},
|
3477
|
-
{
|
3478
|
-
"length": 20,
|
3479
|
-
"start": 7489
|
3480
|
-
}
|
3481
|
-
]
|
3482
|
-
},
|
3483
|
-
"contracts/type/RiskId.sol": {
|
3484
|
-
"RiskIdLib": [
|
3485
|
-
{
|
3486
|
-
"length": 20,
|
3487
|
-
"start": 4438
|
2475
|
+
"start": 3758
|
3488
2476
|
},
|
3489
2477
|
{
|
3490
2478
|
"length": 20,
|
3491
|
-
"start":
|
2479
|
+
"start": 5457
|
3492
2480
|
},
|
3493
2481
|
{
|
3494
2482
|
"length": 20,
|
3495
|
-
"start":
|
2483
|
+
"start": 8277
|
3496
2484
|
}
|
3497
2485
|
]
|
3498
2486
|
},
|
@@ -3500,27 +2488,27 @@
|
|
3500
2488
|
"StateIdLib": [
|
3501
2489
|
{
|
3502
2490
|
"length": 20,
|
3503
|
-
"start":
|
2491
|
+
"start": 2653
|
3504
2492
|
},
|
3505
2493
|
{
|
3506
2494
|
"length": 20,
|
3507
|
-
"start":
|
2495
|
+
"start": 3211
|
3508
2496
|
},
|
3509
2497
|
{
|
3510
2498
|
"length": 20,
|
3511
|
-
"start":
|
2499
|
+
"start": 5555
|
3512
2500
|
},
|
3513
2501
|
{
|
3514
2502
|
"length": 20,
|
3515
|
-
"start":
|
2503
|
+
"start": 7110
|
3516
2504
|
},
|
3517
2505
|
{
|
3518
2506
|
"length": 20,
|
3519
|
-
"start":
|
2507
|
+
"start": 8400
|
3520
2508
|
},
|
3521
2509
|
{
|
3522
2510
|
"length": 20,
|
3523
|
-
"start":
|
2511
|
+
"start": 8588
|
3524
2512
|
}
|
3525
2513
|
]
|
3526
2514
|
}
|
@@ -3530,11 +2518,11 @@
|
|
3530
2518
|
"AmountLib": [
|
3531
2519
|
{
|
3532
2520
|
"length": 20,
|
3533
|
-
"start":
|
2521
|
+
"start": 11627
|
3534
2522
|
},
|
3535
2523
|
{
|
3536
2524
|
"length": 20,
|
3537
|
-
"start":
|
2525
|
+
"start": 11919
|
3538
2526
|
}
|
3539
2527
|
]
|
3540
2528
|
},
|
@@ -3542,11 +2530,43 @@
|
|
3542
2530
|
"BlocknumberLib": [
|
3543
2531
|
{
|
3544
2532
|
"length": 20,
|
3545
|
-
"start":
|
2533
|
+
"start": 7258
|
2534
|
+
},
|
2535
|
+
{
|
2536
|
+
"length": 20,
|
2537
|
+
"start": 7885
|
2538
|
+
},
|
2539
|
+
{
|
2540
|
+
"length": 20,
|
2541
|
+
"start": 9065
|
2542
|
+
},
|
2543
|
+
{
|
2544
|
+
"length": 20,
|
2545
|
+
"start": 9265
|
2546
|
+
},
|
2547
|
+
{
|
2548
|
+
"length": 20,
|
2549
|
+
"start": 9609
|
2550
|
+
},
|
2551
|
+
{
|
2552
|
+
"length": 20,
|
2553
|
+
"start": 10087
|
2554
|
+
},
|
2555
|
+
{
|
2556
|
+
"length": 20,
|
2557
|
+
"start": 10431
|
2558
|
+
},
|
2559
|
+
{
|
2560
|
+
"length": 20,
|
2561
|
+
"start": 10774
|
2562
|
+
},
|
2563
|
+
{
|
2564
|
+
"length": 20,
|
2565
|
+
"start": 11034
|
3546
2566
|
},
|
3547
2567
|
{
|
3548
2568
|
"length": 20,
|
3549
|
-
"start":
|
2569
|
+
"start": 11722
|
3550
2570
|
}
|
3551
2571
|
]
|
3552
2572
|
},
|
@@ -3554,7 +2574,7 @@
|
|
3554
2574
|
"ClaimIdLib": [
|
3555
2575
|
{
|
3556
2576
|
"length": 20,
|
3557
|
-
"start":
|
2577
|
+
"start": 6728
|
3558
2578
|
}
|
3559
2579
|
]
|
3560
2580
|
},
|
@@ -3562,15 +2582,15 @@
|
|
3562
2582
|
"DistributorTypeLib": [
|
3563
2583
|
{
|
3564
2584
|
"length": 20,
|
3565
|
-
"start":
|
2585
|
+
"start": 2967
|
3566
2586
|
},
|
3567
2587
|
{
|
3568
2588
|
"length": 20,
|
3569
|
-
"start":
|
2589
|
+
"start": 3993
|
3570
2590
|
},
|
3571
2591
|
{
|
3572
2592
|
"length": 20,
|
3573
|
-
"start":
|
2593
|
+
"start": 5093
|
3574
2594
|
}
|
3575
2595
|
]
|
3576
2596
|
},
|
@@ -3578,35 +2598,35 @@
|
|
3578
2598
|
"Key32Lib": [
|
3579
2599
|
{
|
3580
2600
|
"length": 20,
|
3581
|
-
"start":
|
2601
|
+
"start": 5738
|
3582
2602
|
},
|
3583
2603
|
{
|
3584
2604
|
"length": 20,
|
3585
|
-
"start":
|
2605
|
+
"start": 6329
|
3586
2606
|
},
|
3587
2607
|
{
|
3588
2608
|
"length": 20,
|
3589
|
-
"start":
|
2609
|
+
"start": 6443
|
3590
2610
|
},
|
3591
2611
|
{
|
3592
2612
|
"length": 20,
|
3593
|
-
"start":
|
2613
|
+
"start": 6786
|
3594
2614
|
},
|
3595
2615
|
{
|
3596
2616
|
"length": 20,
|
3597
|
-
"start":
|
2617
|
+
"start": 7563
|
3598
2618
|
},
|
3599
2619
|
{
|
3600
2620
|
"length": 20,
|
3601
|
-
"start":
|
2621
|
+
"start": 7677
|
3602
2622
|
},
|
3603
2623
|
{
|
3604
2624
|
"length": 20,
|
3605
|
-
"start":
|
2625
|
+
"start": 8783
|
3606
2626
|
},
|
3607
2627
|
{
|
3608
2628
|
"length": 20,
|
3609
|
-
"start":
|
2629
|
+
"start": 8897
|
3610
2630
|
}
|
3611
2631
|
]
|
3612
2632
|
},
|
@@ -3614,7 +2634,7 @@
|
|
3614
2634
|
"NftIdLib": [
|
3615
2635
|
{
|
3616
2636
|
"length": 20,
|
3617
|
-
"start":
|
2637
|
+
"start": 6198
|
3618
2638
|
}
|
3619
2639
|
]
|
3620
2640
|
},
|
@@ -3622,7 +2642,7 @@
|
|
3622
2642
|
"ObjectTypeLib": [
|
3623
2643
|
{
|
3624
2644
|
"length": 20,
|
3625
|
-
"start":
|
2645
|
+
"start": 6905
|
3626
2646
|
}
|
3627
2647
|
]
|
3628
2648
|
},
|
@@ -3630,7 +2650,7 @@
|
|
3630
2650
|
"PayoutIdLib": [
|
3631
2651
|
{
|
3632
2652
|
"length": 20,
|
3633
|
-
"start":
|
2653
|
+
"start": 6652
|
3634
2654
|
}
|
3635
2655
|
]
|
3636
2656
|
},
|
@@ -3638,15 +2658,15 @@
|
|
3638
2658
|
"ReferralLib": [
|
3639
2659
|
{
|
3640
2660
|
"length": 20,
|
3641
|
-
"start":
|
2661
|
+
"start": 2809
|
3642
2662
|
},
|
3643
2663
|
{
|
3644
2664
|
"length": 20,
|
3645
|
-
"start":
|
2665
|
+
"start": 4875
|
3646
2666
|
},
|
3647
2667
|
{
|
3648
2668
|
"length": 20,
|
3649
|
-
"start":
|
2669
|
+
"start": 5273
|
3650
2670
|
}
|
3651
2671
|
]
|
3652
2672
|
},
|
@@ -3654,35 +2674,19 @@
|
|
3654
2674
|
"RequestIdLib": [
|
3655
2675
|
{
|
3656
2676
|
"length": 20,
|
3657
|
-
"start":
|
3658
|
-
},
|
3659
|
-
{
|
3660
|
-
"length": 20,
|
3661
|
-
"start": 2995
|
2677
|
+
"start": 2436
|
3662
2678
|
},
|
3663
2679
|
{
|
3664
2680
|
"length": 20,
|
3665
|
-
"start":
|
3666
|
-
},
|
3667
|
-
{
|
3668
|
-
"length": 20,
|
3669
|
-
"start": 7457
|
3670
|
-
}
|
3671
|
-
]
|
3672
|
-
},
|
3673
|
-
"contracts/type/RiskId.sol": {
|
3674
|
-
"RiskIdLib": [
|
3675
|
-
{
|
3676
|
-
"length": 20,
|
3677
|
-
"start": 4406
|
2681
|
+
"start": 3726
|
3678
2682
|
},
|
3679
2683
|
{
|
3680
2684
|
"length": 20,
|
3681
|
-
"start":
|
2685
|
+
"start": 5425
|
3682
2686
|
},
|
3683
2687
|
{
|
3684
2688
|
"length": 20,
|
3685
|
-
"start":
|
2689
|
+
"start": 8245
|
3686
2690
|
}
|
3687
2691
|
]
|
3688
2692
|
},
|
@@ -3690,27 +2694,27 @@
|
|
3690
2694
|
"StateIdLib": [
|
3691
2695
|
{
|
3692
2696
|
"length": 20,
|
3693
|
-
"start":
|
2697
|
+
"start": 2621
|
3694
2698
|
},
|
3695
2699
|
{
|
3696
2700
|
"length": 20,
|
3697
|
-
"start":
|
2701
|
+
"start": 3179
|
3698
2702
|
},
|
3699
2703
|
{
|
3700
2704
|
"length": 20,
|
3701
|
-
"start":
|
2705
|
+
"start": 5523
|
3702
2706
|
},
|
3703
2707
|
{
|
3704
2708
|
"length": 20,
|
3705
|
-
"start":
|
2709
|
+
"start": 7078
|
3706
2710
|
},
|
3707
2711
|
{
|
3708
2712
|
"length": 20,
|
3709
|
-
"start":
|
2713
|
+
"start": 8368
|
3710
2714
|
},
|
3711
2715
|
{
|
3712
2716
|
"length": 20,
|
3713
|
-
"start":
|
2717
|
+
"start": 8556
|
3714
2718
|
}
|
3715
2719
|
]
|
3716
2720
|
}
|