@etherisc/gif-next 0.0.2-94dc606-675 → 0.0.2-95b223b-528

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.
Files changed (724) hide show
  1. package/README.md +146 -22
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1000 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +746 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → accounting/IAccountingService.sol/IAccountingService.json} +368 -352
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1293 -0
  10. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +414 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1060 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +295 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  24. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +4 -0
  25. package/artifacts/contracts/{instance/IAccessManagerSimple.sol/IAccessManagerSimple.json → authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json} +125 -11
  26. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  27. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  28. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1292 -0
  30. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +470 -0
  32. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +986 -0
  34. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1494 -0
  36. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +862 -0
  38. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +885 -0
  40. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  41. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +984 -0
  42. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  44. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1441 -0
  46. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +502 -0
  48. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2006 -0
  50. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +470 -0
  52. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  53. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1429 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +470 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1145 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1605 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +502 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2358 -0
  66. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  67. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +470 -0
  68. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  69. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +808 -0
  70. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +585 -309
  72. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  73. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +400 -171
  74. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  75. package/artifacts/contracts/instance/Instance.sol/Instance.json +399 -3011
  76. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1684 -0
  78. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +574 -0
  80. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1625 -574
  82. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +488 -321
  84. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +368 -94
  86. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  87. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3708 -0
  88. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  89. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +810 -0
  90. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  92. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → base/Cloneable.sol/Cloneable.json} +38 -2
  94. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  96. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  98. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  100. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +30 -112
  102. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  103. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  104. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  105. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  106. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  107. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  108. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  109. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  110. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  111. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +929 -0
  112. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +478 -0
  114. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  116. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +744 -0
  118. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +709 -0
  120. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +845 -0
  122. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +990 -0
  124. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  125. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +766 -0
  126. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  127. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1222 -0
  128. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +502 -0
  130. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1360 -0
  132. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  133. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +822 -0
  134. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  135. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +922 -0
  136. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +877 -0
  138. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  139. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1285 -0
  140. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  141. package/artifacts/contracts/pool/Pool.sol/Pool.json +997 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  143. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1619 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +794 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  147. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +806 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
  150. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  151. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1131 -0
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +470 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  155. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1555 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +858 -0
  158. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  159. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IApplicationService.sol/IApplicationService.json} +268 -256
  160. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  161. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1058 -0
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +944 -0
  164. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  165. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +578 -0
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  167. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +988 -0
  168. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  169. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IRiskService.sol/IRiskService.json} +150 -187
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  171. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1313 -0
  172. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  173. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +810 -0
  174. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  175. package/artifacts/contracts/product/PricingService.sol/PricingService.json +923 -0
  176. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  177. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  178. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  179. package/artifacts/contracts/product/Product.sol/Product.json +1089 -0
  180. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  181. package/artifacts/contracts/product/RiskService.sol/RiskService.json +638 -0
  182. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +718 -0
  184. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  185. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  186. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  187. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +606 -173
  188. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  189. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +371 -205
  190. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  191. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
  192. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  193. package/artifacts/contracts/registry/Registry.sol/Registry.json +938 -206
  194. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  195. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1899 -0
  196. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  197. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +347 -322
  198. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  199. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +340 -128
  200. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  201. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  202. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  203. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1067 -0
  204. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  205. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  206. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  207. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +351 -100
  208. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  209. package/artifacts/contracts/shared/Component.sol/Component.json +677 -0
  210. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  211. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1574 -0
  212. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  213. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +818 -0
  214. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  215. package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +179 -191
  216. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  217. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +488 -0
  218. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  219. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  220. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  221. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  222. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  223. package/artifacts/contracts/{instance/service/IDistributionService.sol/IDistributionService.json → shared/IComponent.sol/IComponent.json} +328 -172
  224. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  225. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1197 -0
  226. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  227. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +679 -0
  228. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  229. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  230. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  231. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  232. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  233. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +46 -26
  234. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  235. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  236. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  237. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +40 -31
  238. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  239. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  240. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  241. package/artifacts/contracts/shared/IService.sol/IService.json +119 -165
  242. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  243. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  244. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  245. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +767 -0
  246. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  247. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  248. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  249. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  250. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  251. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  252. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  253. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +81 -30
  254. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  255. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  256. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  257. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +96 -48
  258. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  259. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  260. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  261. package/artifacts/contracts/shared/Service.sol/Service.json +150 -176
  262. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  263. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +734 -8
  264. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  265. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +395 -0
  266. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  267. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  268. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  269. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1417 -0
  270. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  271. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1043 -0
  272. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  273. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  274. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  275. package/artifacts/contracts/staking/Staking.sol/Staking.json +1816 -0
  276. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  277. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  278. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  279. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +780 -0
  280. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  281. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
  282. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  283. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1265 -0
  284. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  285. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +734 -0
  286. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  287. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  288. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  289. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  290. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  291. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  292. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  294. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  296. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  297. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  298. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  299. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  300. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  302. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  303. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  304. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  305. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  306. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  308. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  309. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  310. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  312. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  314. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  316. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  317. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  318. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +180 -0
  320. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  322. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  324. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  326. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  328. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  330. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  332. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  334. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  336. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  338. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  340. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  341. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  342. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  343. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  344. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  345. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  346. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  347. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  348. package/contracts/accounting/AccountingService.sol +263 -0
  349. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  350. package/contracts/accounting/IAccountingService.sol +45 -0
  351. package/contracts/authorization/AccessAdmin.sol +615 -0
  352. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  353. package/contracts/authorization/Authorization.sol +289 -0
  354. package/contracts/authorization/IAccess.sol +49 -0
  355. package/contracts/authorization/IAccessAdmin.sol +137 -0
  356. package/contracts/authorization/IAuthorization.sol +60 -0
  357. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  358. package/contracts/authorization/ReleaseAccessManager.sol +38 -0
  359. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  360. package/contracts/distribution/BasicDistribution.sol +139 -0
  361. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  362. package/contracts/distribution/Distribution.sol +287 -0
  363. package/contracts/distribution/DistributionService.sol +357 -0
  364. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  365. package/contracts/distribution/IDistributionComponent.sol +52 -0
  366. package/contracts/distribution/IDistributionService.sol +100 -0
  367. package/contracts/examples/fire/DamageLevel.sol +59 -0
  368. package/contracts/examples/fire/FirePool.sol +90 -0
  369. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  370. package/contracts/examples/fire/FireProduct.sol +438 -0
  371. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  372. package/contracts/examples/fire/FireUSD.sol +26 -0
  373. package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
  374. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  375. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  376. package/contracts/examples/unpermissioned/SimplePool.sol +107 -0
  377. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  378. package/contracts/examples/unpermissioned/SimpleProduct.sol +370 -0
  379. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  380. package/contracts/instance/BundleSet.sol +130 -0
  381. package/contracts/instance/IInstance.sol +57 -18
  382. package/contracts/instance/IInstanceService.sol +57 -17
  383. package/contracts/instance/Instance.sol +169 -373
  384. package/contracts/instance/InstanceAdmin.sol +288 -0
  385. package/contracts/instance/InstanceAuthorizationV3.sol +225 -0
  386. package/contracts/instance/InstanceReader.sol +379 -73
  387. package/contracts/instance/InstanceService.sol +338 -116
  388. package/contracts/instance/InstanceServiceManager.sol +14 -31
  389. package/contracts/instance/InstanceStore.sol +298 -0
  390. package/contracts/instance/RiskSet.sol +119 -0
  391. package/contracts/instance/base/BalanceStore.sol +123 -0
  392. package/contracts/instance/base/Cloneable.sol +28 -0
  393. package/contracts/instance/base/ObjectCounter.sol +20 -0
  394. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  395. package/contracts/instance/base/ObjectSet.sol +78 -0
  396. package/contracts/instance/module/IAccess.sol +29 -21
  397. package/contracts/instance/module/IBundle.sol +8 -7
  398. package/contracts/instance/module/IComponents.sol +51 -0
  399. package/contracts/instance/module/IDistribution.sol +6 -4
  400. package/contracts/instance/module/IPolicy.sol +59 -19
  401. package/contracts/instance/module/IRisk.sol +2 -1
  402. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  403. package/contracts/oracle/BasicOracle.sol +47 -0
  404. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  405. package/contracts/oracle/IOracle.sol +36 -0
  406. package/contracts/oracle/IOracleComponent.sol +33 -0
  407. package/contracts/oracle/IOracleService.sol +66 -0
  408. package/contracts/oracle/Oracle.sol +156 -0
  409. package/contracts/oracle/OracleService.sol +309 -0
  410. package/contracts/oracle/OracleServiceManager.sol +39 -0
  411. package/contracts/pool/BasicPool.sol +175 -0
  412. package/contracts/pool/BasicPoolAuthorization.sol +68 -0
  413. package/contracts/pool/BundleService.sol +425 -0
  414. package/contracts/pool/BundleServiceManager.sol +39 -0
  415. package/contracts/pool/IBundleService.sol +121 -0
  416. package/contracts/pool/IPoolComponent.sol +62 -0
  417. package/contracts/pool/IPoolService.sol +153 -0
  418. package/contracts/pool/Pool.sol +345 -0
  419. package/contracts/pool/PoolService.sol +615 -0
  420. package/contracts/pool/PoolServiceManager.sol +39 -0
  421. package/contracts/product/ApplicationService.sol +259 -0
  422. package/contracts/product/ApplicationServiceManager.sol +38 -0
  423. package/contracts/product/BasicProduct.sol +51 -0
  424. package/contracts/product/BasicProductAuthorization.sol +41 -0
  425. package/contracts/product/ClaimService.sol +683 -0
  426. package/contracts/product/ClaimServiceManager.sol +38 -0
  427. package/contracts/product/IApplicationService.sol +66 -0
  428. package/contracts/product/IClaimService.sol +136 -0
  429. package/contracts/product/IPolicyService.sol +90 -0
  430. package/contracts/product/IPricingService.sol +39 -0
  431. package/contracts/product/IProductComponent.sol +62 -0
  432. package/contracts/product/IRiskService.sol +33 -0
  433. package/contracts/product/PolicyService.sol +736 -0
  434. package/contracts/product/PolicyServiceManager.sol +39 -0
  435. package/contracts/product/PricingService.sol +303 -0
  436. package/contracts/product/PricingServiceManager.sol +39 -0
  437. package/contracts/product/Product.sol +463 -0
  438. package/contracts/product/RiskService.sol +107 -0
  439. package/contracts/product/RiskServiceManager.sol +39 -0
  440. package/contracts/registry/ChainNft.sol +82 -35
  441. package/contracts/registry/IRegistry.sol +127 -48
  442. package/contracts/registry/IRegistryService.sol +45 -16
  443. package/contracts/registry/ITransferInterceptor.sol +1 -1
  444. package/contracts/registry/Registry.sol +540 -304
  445. package/contracts/registry/RegistryAdmin.sol +457 -0
  446. package/contracts/registry/RegistryService.sol +126 -284
  447. package/contracts/registry/RegistryServiceManager.sol +26 -53
  448. package/contracts/registry/ReleaseLifecycle.sol +30 -0
  449. package/contracts/registry/ReleaseRegistry.sol +486 -0
  450. package/contracts/registry/ServiceAuthorizationV3.sol +207 -0
  451. package/contracts/registry/TokenRegistry.sol +261 -57
  452. package/contracts/shared/Component.sol +219 -0
  453. package/contracts/shared/ComponentService.sol +699 -0
  454. package/contracts/shared/ComponentServiceManager.sol +38 -0
  455. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  456. package/contracts/shared/ContractLib.sol +224 -0
  457. package/contracts/shared/IComponent.sol +62 -0
  458. package/contracts/shared/IComponentService.sol +116 -0
  459. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  460. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  461. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  462. package/contracts/shared/INftOwnable.sol +15 -12
  463. package/contracts/shared/IPolicyHolder.sol +35 -0
  464. package/contracts/shared/IRegisterable.sol +15 -6
  465. package/contracts/shared/IRegistryLinked.sol +11 -0
  466. package/contracts/shared/IService.sol +16 -6
  467. package/contracts/shared/InitializableERC165.sol +27 -0
  468. package/contracts/shared/InstanceLinkedComponent.sol +197 -0
  469. package/contracts/shared/KeyValueStore.sol +131 -0
  470. package/contracts/shared/Lifecycle.sol +88 -0
  471. package/contracts/shared/NftIdSet.sol +65 -0
  472. package/contracts/shared/NftOwnable.sol +75 -84
  473. package/contracts/shared/PolicyHolder.sol +62 -0
  474. package/contracts/shared/Registerable.sol +34 -41
  475. package/contracts/shared/RegistryLinked.sol +38 -0
  476. package/contracts/shared/Service.sol +61 -31
  477. package/contracts/shared/TokenHandler.sol +374 -12
  478. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  479. package/contracts/staking/IStaking.sol +173 -0
  480. package/contracts/staking/IStakingService.sol +157 -0
  481. package/contracts/staking/StakeManagerLib.sol +224 -0
  482. package/contracts/staking/Staking.sol +515 -0
  483. package/contracts/staking/StakingLifecycle.sol +23 -0
  484. package/contracts/staking/StakingManager.sol +52 -0
  485. package/contracts/staking/StakingReader.sol +190 -0
  486. package/contracts/staking/StakingService.sol +440 -0
  487. package/contracts/staking/StakingServiceManager.sol +44 -0
  488. package/contracts/staking/StakingStore.sol +605 -0
  489. package/contracts/staking/TargetManagerLib.sol +211 -0
  490. package/contracts/{types → type}/AddressSet.sol +1 -1
  491. package/contracts/type/Amount.sol +150 -0
  492. package/contracts/{types → type}/Blocknumber.sol +27 -3
  493. package/contracts/type/ClaimId.sol +80 -0
  494. package/contracts/{types → type}/DistributorType.sol +2 -2
  495. package/contracts/{types → type}/Fee.sol +33 -23
  496. package/contracts/{types → type}/Key32.sol +2 -2
  497. package/contracts/type/Key32Set.sol +62 -0
  498. package/contracts/{types → type}/NftId.sol +28 -15
  499. package/contracts/type/NftIdSet.sol +62 -0
  500. package/contracts/type/ObjectType.sol +290 -0
  501. package/contracts/type/PayoutId.sol +82 -0
  502. package/contracts/{types → type}/Referral.sol +6 -1
  503. package/contracts/type/RequestId.sol +75 -0
  504. package/contracts/{types → type}/RiskId.sol +31 -5
  505. package/contracts/type/RoleId.sol +162 -0
  506. package/contracts/type/Seconds.sol +101 -0
  507. package/contracts/type/Selector.sol +102 -0
  508. package/contracts/{types → type}/StateId.sol +48 -4
  509. package/contracts/type/String.sol +53 -0
  510. package/contracts/{types → type}/Timestamp.sol +34 -15
  511. package/contracts/{types → type}/UFixed.sol +41 -121
  512. package/contracts/{types → type}/Version.sol +5 -2
  513. package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
  514. package/contracts/upgradeability/ProxyManager.sol +232 -0
  515. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  516. package/contracts/upgradeability/Versionable.sol +59 -0
  517. package/package.json +11 -7
  518. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  519. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
  520. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  521. package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -670
  522. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  523. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
  524. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  525. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -204
  526. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  527. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -249
  528. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  529. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  530. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  531. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -790
  532. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  533. package/artifacts/contracts/components/Product.sol/Product.json +0 -775
  534. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  535. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  536. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  537. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  538. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  539. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  540. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  541. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  542. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  543. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  544. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  545. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  546. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  547. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  548. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  549. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  550. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  551. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  552. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  553. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  554. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  555. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  556. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  557. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  558. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  559. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  560. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  561. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  562. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  563. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  564. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  565. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  566. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  567. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  568. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  569. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  570. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  571. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  572. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  573. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
  574. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
  575. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
  576. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
  577. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  578. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -917
  579. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  580. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  581. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
  582. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  583. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  584. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  585. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  586. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  587. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  588. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  589. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  590. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  591. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
  592. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  593. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -657
  594. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  595. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -436
  596. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  597. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  598. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  599. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  600. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  601. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  602. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  603. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  604. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  605. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  606. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  607. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
  608. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
  609. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
  610. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  611. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  612. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  613. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  614. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  615. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  616. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  617. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  618. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  619. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  620. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  621. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  622. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  623. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  624. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  625. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  626. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  627. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  628. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  629. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  630. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  631. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  632. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  633. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  634. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  635. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  636. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  637. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  638. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  639. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  640. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  641. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  642. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  643. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  644. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  645. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  646. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  647. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  648. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  649. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  650. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  651. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  652. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  653. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  654. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  655. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  656. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  657. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  658. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  659. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  660. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  661. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  662. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  663. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  664. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  665. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  666. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  667. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  668. package/contracts/components/BaseComponent.sol +0 -91
  669. package/contracts/components/Distribution.sol +0 -166
  670. package/contracts/components/IBaseComponent.sol +0 -25
  671. package/contracts/components/IDistributionComponent.sol +0 -46
  672. package/contracts/components/IPoolComponent.sol +0 -62
  673. package/contracts/components/IProductComponent.sol +0 -35
  674. package/contracts/components/Pool.sol +0 -258
  675. package/contracts/components/Product.sol +0 -297
  676. package/contracts/experiment/cloning/Cloner.sol +0 -47
  677. package/contracts/experiment/errors/Require.sol +0 -38
  678. package/contracts/experiment/errors/Revert.sol +0 -44
  679. package/contracts/experiment/inheritance/A.sol +0 -53
  680. package/contracts/experiment/inheritance/B.sol +0 -28
  681. package/contracts/experiment/inheritance/C.sol +0 -34
  682. package/contracts/experiment/inheritance/IA.sol +0 -13
  683. package/contracts/experiment/inheritance/IB.sol +0 -10
  684. package/contracts/experiment/inheritance/IC.sol +0 -12
  685. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  686. package/contracts/experiment/statemachine/ISM.sol +0 -25
  687. package/contracts/experiment/statemachine/SM.sol +0 -57
  688. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  689. package/contracts/experiment/types/TypeA.sol +0 -47
  690. package/contracts/experiment/types/TypeB.sol +0 -29
  691. package/contracts/instance/AccessManagedSimple.sol +0 -115
  692. package/contracts/instance/AccessManagerSimple.sol +0 -692
  693. package/contracts/instance/IAccessManagerSimple.sol +0 -391
  694. package/contracts/instance/InstanceAccessManager.sol +0 -288
  695. package/contracts/instance/base/ComponentServiceBase.sol +0 -41
  696. package/contracts/instance/base/IInstanceBase.sol +0 -23
  697. package/contracts/instance/base/KeyValueStore.sol +0 -172
  698. package/contracts/instance/base/Lifecycle.sol +0 -100
  699. package/contracts/instance/module/ISetup.sol +0 -43
  700. package/contracts/instance/module/ITreasury.sol +0 -23
  701. package/contracts/instance/service/ComponentOwnerService.sol +0 -317
  702. package/contracts/instance/service/DistributionService.sol +0 -105
  703. package/contracts/instance/service/DistributionServiceManager.sol +0 -53
  704. package/contracts/instance/service/IComponentOwnerService.sol +0 -20
  705. package/contracts/instance/service/IDistributionService.sol +0 -12
  706. package/contracts/instance/service/IPoolService.sol +0 -37
  707. package/contracts/instance/service/IProductService.sol +0 -107
  708. package/contracts/shared/ContractDeployerLib.sol +0 -72
  709. package/contracts/shared/ERC165.sol +0 -25
  710. package/contracts/shared/ProxyManager.sol +0 -94
  711. package/contracts/shared/RegisterableUpgradable.sol +0 -16
  712. package/contracts/shared/Versionable.sol +0 -147
  713. package/contracts/test/TestFee.sol +0 -25
  714. package/contracts/test/TestRegisterable.sol +0 -18
  715. package/contracts/test/TestRoleId.sol +0 -14
  716. package/contracts/test/TestService.sol +0 -24
  717. package/contracts/test/TestToken.sol +0 -26
  718. package/contracts/test/TestVersion.sol +0 -44
  719. package/contracts/test/TestVersionable.sol +0 -17
  720. package/contracts/types/ChainId.sol +0 -38
  721. package/contracts/types/NftIdSet.sol +0 -60
  722. package/contracts/types/NumberId.sol +0 -52
  723. package/contracts/types/ObjectType.sol +0 -152
  724. package/contracts/types/RoleId.sol +0 -88
@@ -0,0 +1,3708 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "InstanceStore",
4
+ "sourceName": "contracts/instance/InstanceStore.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "NftId",
48
+ "name": "targetNftId",
49
+ "type": "uint96"
50
+ }
51
+ ],
52
+ "name": "ErrorBalanceStoreTargetAlreadyRegistered",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "targetNftId",
60
+ "type": "uint96"
61
+ }
62
+ ],
63
+ "name": "ErrorBalanceStoreTargetNotRegistered",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "contractAddress",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "ObjectType",
75
+ "name": "objectType",
76
+ "type": "uint8"
77
+ },
78
+ {
79
+ "internalType": "StateId",
80
+ "name": "actual",
81
+ "type": "uint8"
82
+ },
83
+ {
84
+ "internalType": "StateId",
85
+ "name": "required",
86
+ "type": "uint8"
87
+ }
88
+ ],
89
+ "name": "ErrorFromStateMissmatch",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [
94
+ {
95
+ "internalType": "address",
96
+ "name": "contractAddress",
97
+ "type": "address"
98
+ },
99
+ {
100
+ "internalType": "ObjectType",
101
+ "name": "objectType",
102
+ "type": "uint8"
103
+ },
104
+ {
105
+ "internalType": "StateId",
106
+ "name": "fromStateId",
107
+ "type": "uint8"
108
+ },
109
+ {
110
+ "internalType": "StateId",
111
+ "name": "toStateId",
112
+ "type": "uint8"
113
+ }
114
+ ],
115
+ "name": "ErrorInvalidStateTransition",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [
120
+ {
121
+ "internalType": "Key32",
122
+ "name": "key",
123
+ "type": "bytes32"
124
+ },
125
+ {
126
+ "internalType": "ObjectType",
127
+ "name": "objectType",
128
+ "type": "uint8"
129
+ }
130
+ ],
131
+ "name": "ErrorKeyValueStoreAlreadyCreated",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "ObjectType",
138
+ "name": "objectType",
139
+ "type": "uint8"
140
+ }
141
+ ],
142
+ "name": "ErrorKeyValueStoreNoLifecycle",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "Key32",
149
+ "name": "key",
150
+ "type": "bytes32"
151
+ }
152
+ ],
153
+ "name": "ErrorKeyValueStoreNotExisting",
154
+ "type": "error"
155
+ },
156
+ {
157
+ "inputs": [
158
+ {
159
+ "internalType": "Key32",
160
+ "name": "key",
161
+ "type": "bytes32"
162
+ }
163
+ ],
164
+ "name": "ErrorKeyValueStoreStateZero",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [
169
+ {
170
+ "internalType": "ObjectType",
171
+ "name": "objectType",
172
+ "type": "uint8"
173
+ }
174
+ ],
175
+ "name": "ErrorKeyValueStoreTypeUndefined",
176
+ "type": "error"
177
+ },
178
+ {
179
+ "inputs": [
180
+ {
181
+ "internalType": "address",
182
+ "name": "contractAddress",
183
+ "type": "address"
184
+ },
185
+ {
186
+ "internalType": "ObjectType",
187
+ "name": "objectType",
188
+ "type": "uint8"
189
+ }
190
+ ],
191
+ "name": "ErrorNoLifecycle",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [],
196
+ "name": "InvalidInitialization",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [],
201
+ "name": "NotInitializing",
202
+ "type": "error"
203
+ },
204
+ {
205
+ "anonymous": false,
206
+ "inputs": [
207
+ {
208
+ "indexed": false,
209
+ "internalType": "address",
210
+ "name": "authority",
211
+ "type": "address"
212
+ }
213
+ ],
214
+ "name": "AuthorityUpdated",
215
+ "type": "event"
216
+ },
217
+ {
218
+ "anonymous": false,
219
+ "inputs": [
220
+ {
221
+ "indexed": false,
222
+ "internalType": "uint64",
223
+ "name": "version",
224
+ "type": "uint64"
225
+ }
226
+ ],
227
+ "name": "Initialized",
228
+ "type": "event"
229
+ },
230
+ {
231
+ "anonymous": false,
232
+ "inputs": [
233
+ {
234
+ "indexed": false,
235
+ "internalType": "NftId",
236
+ "name": "targetNftId",
237
+ "type": "uint96"
238
+ },
239
+ {
240
+ "indexed": false,
241
+ "internalType": "Amount",
242
+ "name": "addedAmount",
243
+ "type": "uint96"
244
+ },
245
+ {
246
+ "indexed": false,
247
+ "internalType": "Amount",
248
+ "name": "newBalance",
249
+ "type": "uint96"
250
+ },
251
+ {
252
+ "indexed": false,
253
+ "internalType": "Blocknumber",
254
+ "name": "lastUpdatedIn",
255
+ "type": "uint32"
256
+ }
257
+ ],
258
+ "name": "LogBalanceStoreBalanceDecreased",
259
+ "type": "event"
260
+ },
261
+ {
262
+ "anonymous": false,
263
+ "inputs": [
264
+ {
265
+ "indexed": false,
266
+ "internalType": "NftId",
267
+ "name": "targetNftId",
268
+ "type": "uint96"
269
+ },
270
+ {
271
+ "indexed": false,
272
+ "internalType": "Amount",
273
+ "name": "addedAmount",
274
+ "type": "uint96"
275
+ },
276
+ {
277
+ "indexed": false,
278
+ "internalType": "Amount",
279
+ "name": "newBalance",
280
+ "type": "uint96"
281
+ },
282
+ {
283
+ "indexed": false,
284
+ "internalType": "Blocknumber",
285
+ "name": "lastUpdatedIn",
286
+ "type": "uint32"
287
+ }
288
+ ],
289
+ "name": "LogBalanceStoreBalanceIncreased",
290
+ "type": "event"
291
+ },
292
+ {
293
+ "anonymous": false,
294
+ "inputs": [
295
+ {
296
+ "indexed": false,
297
+ "internalType": "NftId",
298
+ "name": "targetNftId",
299
+ "type": "uint96"
300
+ },
301
+ {
302
+ "indexed": false,
303
+ "internalType": "Amount",
304
+ "name": "addedAmount",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "indexed": false,
309
+ "internalType": "Amount",
310
+ "name": "newBalance",
311
+ "type": "uint96"
312
+ },
313
+ {
314
+ "indexed": false,
315
+ "internalType": "Blocknumber",
316
+ "name": "lastUpdatedIn",
317
+ "type": "uint32"
318
+ }
319
+ ],
320
+ "name": "LogBalanceStoreFeesDecreased",
321
+ "type": "event"
322
+ },
323
+ {
324
+ "anonymous": false,
325
+ "inputs": [
326
+ {
327
+ "indexed": false,
328
+ "internalType": "NftId",
329
+ "name": "targetNftId",
330
+ "type": "uint96"
331
+ },
332
+ {
333
+ "indexed": false,
334
+ "internalType": "Amount",
335
+ "name": "addedAmount",
336
+ "type": "uint96"
337
+ },
338
+ {
339
+ "indexed": false,
340
+ "internalType": "Amount",
341
+ "name": "newBalance",
342
+ "type": "uint96"
343
+ },
344
+ {
345
+ "indexed": false,
346
+ "internalType": "Blocknumber",
347
+ "name": "lastUpdatedIn",
348
+ "type": "uint32"
349
+ }
350
+ ],
351
+ "name": "LogBalanceStoreFeesIncreased",
352
+ "type": "event"
353
+ },
354
+ {
355
+ "anonymous": false,
356
+ "inputs": [
357
+ {
358
+ "indexed": false,
359
+ "internalType": "NftId",
360
+ "name": "targetNftId",
361
+ "type": "uint96"
362
+ },
363
+ {
364
+ "indexed": false,
365
+ "internalType": "Amount",
366
+ "name": "addedAmount",
367
+ "type": "uint96"
368
+ },
369
+ {
370
+ "indexed": false,
371
+ "internalType": "Amount",
372
+ "name": "newBalance",
373
+ "type": "uint96"
374
+ },
375
+ {
376
+ "indexed": false,
377
+ "internalType": "Blocknumber",
378
+ "name": "lastUpdatedIn",
379
+ "type": "uint32"
380
+ }
381
+ ],
382
+ "name": "LogBalanceStoreLockedDecreased",
383
+ "type": "event"
384
+ },
385
+ {
386
+ "anonymous": false,
387
+ "inputs": [
388
+ {
389
+ "indexed": false,
390
+ "internalType": "NftId",
391
+ "name": "targetNftId",
392
+ "type": "uint96"
393
+ },
394
+ {
395
+ "indexed": false,
396
+ "internalType": "Amount",
397
+ "name": "addedAmount",
398
+ "type": "uint96"
399
+ },
400
+ {
401
+ "indexed": false,
402
+ "internalType": "Amount",
403
+ "name": "newBalance",
404
+ "type": "uint96"
405
+ },
406
+ {
407
+ "indexed": false,
408
+ "internalType": "Blocknumber",
409
+ "name": "lastUpdatedIn",
410
+ "type": "uint32"
411
+ }
412
+ ],
413
+ "name": "LogBalanceStoreLockedIncreased",
414
+ "type": "event"
415
+ },
416
+ {
417
+ "anonymous": false,
418
+ "inputs": [
419
+ {
420
+ "indexed": false,
421
+ "internalType": "NftId",
422
+ "name": "targetNftId",
423
+ "type": "uint96"
424
+ }
425
+ ],
426
+ "name": "LogBalanceStoreTargetRegistered",
427
+ "type": "event"
428
+ },
429
+ {
430
+ "anonymous": false,
431
+ "inputs": [
432
+ {
433
+ "indexed": false,
434
+ "internalType": "ObjectType",
435
+ "name": "objectType",
436
+ "type": "uint8"
437
+ },
438
+ {
439
+ "indexed": false,
440
+ "internalType": "KeyId",
441
+ "name": "keyId",
442
+ "type": "bytes31"
443
+ },
444
+ {
445
+ "indexed": false,
446
+ "internalType": "StateId",
447
+ "name": "state",
448
+ "type": "uint8"
449
+ },
450
+ {
451
+ "indexed": false,
452
+ "internalType": "address",
453
+ "name": "createdBy",
454
+ "type": "address"
455
+ },
456
+ {
457
+ "indexed": false,
458
+ "internalType": "address",
459
+ "name": "txOrigin",
460
+ "type": "address"
461
+ }
462
+ ],
463
+ "name": "LogInfoCreated",
464
+ "type": "event"
465
+ },
466
+ {
467
+ "anonymous": false,
468
+ "inputs": [
469
+ {
470
+ "indexed": false,
471
+ "internalType": "ObjectType",
472
+ "name": "objectType",
473
+ "type": "uint8"
474
+ },
475
+ {
476
+ "indexed": false,
477
+ "internalType": "KeyId",
478
+ "name": "keyId",
479
+ "type": "bytes31"
480
+ },
481
+ {
482
+ "indexed": false,
483
+ "internalType": "StateId",
484
+ "name": "state",
485
+ "type": "uint8"
486
+ },
487
+ {
488
+ "indexed": false,
489
+ "internalType": "address",
490
+ "name": "updatedBy",
491
+ "type": "address"
492
+ },
493
+ {
494
+ "indexed": false,
495
+ "internalType": "address",
496
+ "name": "txOrigin",
497
+ "type": "address"
498
+ },
499
+ {
500
+ "indexed": false,
501
+ "internalType": "Blocknumber",
502
+ "name": "lastUpdatedIn",
503
+ "type": "uint32"
504
+ }
505
+ ],
506
+ "name": "LogInfoUpdated",
507
+ "type": "event"
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": "stateOld",
528
+ "type": "uint8"
529
+ },
530
+ {
531
+ "indexed": false,
532
+ "internalType": "StateId",
533
+ "name": "stateNew",
534
+ "type": "uint8"
535
+ },
536
+ {
537
+ "indexed": false,
538
+ "internalType": "address",
539
+ "name": "updatedBy",
540
+ "type": "address"
541
+ },
542
+ {
543
+ "indexed": false,
544
+ "internalType": "address",
545
+ "name": "txOrigin",
546
+ "type": "address"
547
+ },
548
+ {
549
+ "indexed": false,
550
+ "internalType": "Blocknumber",
551
+ "name": "lastUpdatedIn",
552
+ "type": "uint32"
553
+ }
554
+ ],
555
+ "name": "LogStateUpdated",
556
+ "type": "event"
557
+ },
558
+ {
559
+ "inputs": [],
560
+ "name": "authority",
561
+ "outputs": [
562
+ {
563
+ "internalType": "address",
564
+ "name": "",
565
+ "type": "address"
566
+ }
567
+ ],
568
+ "stateMutability": "view",
569
+ "type": "function"
570
+ },
571
+ {
572
+ "inputs": [
573
+ {
574
+ "internalType": "StateId",
575
+ "name": "stateId",
576
+ "type": "uint8"
577
+ },
578
+ {
579
+ "internalType": "ObjectType",
580
+ "name": "objectType",
581
+ "type": "uint8"
582
+ },
583
+ {
584
+ "internalType": "StateId",
585
+ "name": "expectedFromId",
586
+ "type": "uint8"
587
+ },
588
+ {
589
+ "internalType": "StateId",
590
+ "name": "toId",
591
+ "type": "uint8"
592
+ }
593
+ ],
594
+ "name": "checkTransition",
595
+ "outputs": [],
596
+ "stateMutability": "view",
597
+ "type": "function"
598
+ },
599
+ {
600
+ "inputs": [
601
+ {
602
+ "internalType": "NftId",
603
+ "name": "applicationNftId",
604
+ "type": "uint96"
605
+ },
606
+ {
607
+ "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
+ {
674
+ "internalType": "Timestamp",
675
+ "name": "activatedAt",
676
+ "type": "uint40"
677
+ },
678
+ {
679
+ "internalType": "Timestamp",
680
+ "name": "expiredAt",
681
+ "type": "uint40"
682
+ },
683
+ {
684
+ "internalType": "Timestamp",
685
+ "name": "closedAt",
686
+ "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": [
708
+ {
709
+ "internalType": "NftId",
710
+ "name": "poolNftId",
711
+ "type": "uint96"
712
+ },
713
+ {
714
+ "components": [
715
+ {
716
+ "internalType": "UFixed",
717
+ "name": "fractionalFee",
718
+ "type": "uint256"
719
+ },
720
+ {
721
+ "internalType": "uint256",
722
+ "name": "fixedFee",
723
+ "type": "uint256"
724
+ }
725
+ ],
726
+ "internalType": "struct Fee",
727
+ "name": "fee",
728
+ "type": "tuple"
729
+ },
730
+ {
731
+ "internalType": "bytes",
732
+ "name": "filter",
733
+ "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
+ }
750
+ ],
751
+ "internalType": "struct IBundle.BundleInfo",
752
+ "name": "bundle",
753
+ "type": "tuple"
754
+ }
755
+ ],
756
+ "name": "createBundle",
757
+ "outputs": [],
758
+ "stateMutability": "nonpayable",
759
+ "type": "function"
760
+ },
761
+ {
762
+ "inputs": [
763
+ {
764
+ "internalType": "NftId",
765
+ "name": "policyNftId",
766
+ "type": "uint96"
767
+ },
768
+ {
769
+ "internalType": "ClaimId",
770
+ "name": "claimId",
771
+ "type": "uint16"
772
+ },
773
+ {
774
+ "components": [
775
+ {
776
+ "internalType": "Amount",
777
+ "name": "claimAmount",
778
+ "type": "uint96"
779
+ },
780
+ {
781
+ "internalType": "Amount",
782
+ "name": "paidAmount",
783
+ "type": "uint96"
784
+ },
785
+ {
786
+ "internalType": "uint24",
787
+ "name": "payoutsCount",
788
+ "type": "uint24"
789
+ },
790
+ {
791
+ "internalType": "uint24",
792
+ "name": "openPayoutsCount",
793
+ "type": "uint24"
794
+ },
795
+ {
796
+ "internalType": "bytes",
797
+ "name": "submissionData",
798
+ "type": "bytes"
799
+ },
800
+ {
801
+ "internalType": "bytes",
802
+ "name": "processData",
803
+ "type": "bytes"
804
+ },
805
+ {
806
+ "internalType": "Timestamp",
807
+ "name": "closedAt",
808
+ "type": "uint40"
809
+ }
810
+ ],
811
+ "internalType": "struct IPolicy.ClaimInfo",
812
+ "name": "claim",
813
+ "type": "tuple"
814
+ }
815
+ ],
816
+ "name": "createClaim",
817
+ "outputs": [],
818
+ "stateMutability": "nonpayable",
819
+ "type": "function"
820
+ },
821
+ {
822
+ "inputs": [
823
+ {
824
+ "internalType": "NftId",
825
+ "name": "componentNftId",
826
+ "type": "uint96"
827
+ },
828
+ {
829
+ "components": [
830
+ {
831
+ "internalType": "string",
832
+ "name": "name",
833
+ "type": "string"
834
+ },
835
+ {
836
+ "internalType": "contract IERC20Metadata",
837
+ "name": "token",
838
+ "type": "address"
839
+ },
840
+ {
841
+ "internalType": "contract TokenHandler",
842
+ "name": "tokenHandler",
843
+ "type": "address"
844
+ },
845
+ {
846
+ "internalType": "bytes",
847
+ "name": "data",
848
+ "type": "bytes"
849
+ }
850
+ ],
851
+ "internalType": "struct IComponents.ComponentInfo",
852
+ "name": "componentInfo",
853
+ "type": "tuple"
854
+ }
855
+ ],
856
+ "name": "createComponent",
857
+ "outputs": [],
858
+ "stateMutability": "nonpayable",
859
+ "type": "function"
860
+ },
861
+ {
862
+ "inputs": [
863
+ {
864
+ "internalType": "NftId",
865
+ "name": "distributorNftId",
866
+ "type": "uint96"
867
+ },
868
+ {
869
+ "components": [
870
+ {
871
+ "internalType": "DistributorType",
872
+ "name": "distributorType",
873
+ "type": "bytes8"
874
+ },
875
+ {
876
+ "internalType": "bool",
877
+ "name": "active",
878
+ "type": "bool"
879
+ },
880
+ {
881
+ "internalType": "bytes",
882
+ "name": "data",
883
+ "type": "bytes"
884
+ },
885
+ {
886
+ "internalType": "uint32",
887
+ "name": "numPoliciesSold",
888
+ "type": "uint32"
889
+ }
890
+ ],
891
+ "internalType": "struct IDistribution.DistributorInfo",
892
+ "name": "info",
893
+ "type": "tuple"
894
+ }
895
+ ],
896
+ "name": "createDistributor",
897
+ "outputs": [],
898
+ "stateMutability": "nonpayable",
899
+ "type": "function"
900
+ },
901
+ {
902
+ "inputs": [
903
+ {
904
+ "internalType": "DistributorType",
905
+ "name": "distributorType",
906
+ "type": "bytes8"
907
+ },
908
+ {
909
+ "components": [
910
+ {
911
+ "internalType": "string",
912
+ "name": "name",
913
+ "type": "string"
914
+ },
915
+ {
916
+ "internalType": "UFixed",
917
+ "name": "minDiscountPercentage",
918
+ "type": "uint256"
919
+ },
920
+ {
921
+ "internalType": "UFixed",
922
+ "name": "maxDiscountPercentage",
923
+ "type": "uint256"
924
+ },
925
+ {
926
+ "internalType": "UFixed",
927
+ "name": "commissionPercentage",
928
+ "type": "uint256"
929
+ },
930
+ {
931
+ "internalType": "uint32",
932
+ "name": "maxReferralCount",
933
+ "type": "uint32"
934
+ },
935
+ {
936
+ "internalType": "uint32",
937
+ "name": "maxReferralLifetime",
938
+ "type": "uint32"
939
+ },
940
+ {
941
+ "internalType": "bool",
942
+ "name": "allowSelfReferrals",
943
+ "type": "bool"
944
+ },
945
+ {
946
+ "internalType": "bool",
947
+ "name": "allowRenewals",
948
+ "type": "bool"
949
+ },
950
+ {
951
+ "internalType": "bytes",
952
+ "name": "data",
953
+ "type": "bytes"
954
+ }
955
+ ],
956
+ "internalType": "struct IDistribution.DistributorTypeInfo",
957
+ "name": "info",
958
+ "type": "tuple"
959
+ }
960
+ ],
961
+ "name": "createDistributorType",
962
+ "outputs": [],
963
+ "stateMutability": "nonpayable",
964
+ "type": "function"
965
+ },
966
+ {
967
+ "inputs": [
968
+ {
969
+ "internalType": "NftId",
970
+ "name": "productNftId",
971
+ "type": "uint96"
972
+ },
973
+ {
974
+ "components": [
975
+ {
976
+ "components": [
977
+ {
978
+ "internalType": "UFixed",
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"
991
+ },
992
+ {
993
+ "components": [
994
+ {
995
+ "internalType": "UFixed",
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"
1008
+ },
1009
+ {
1010
+ "components": [
1011
+ {
1012
+ "internalType": "UFixed",
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"
1025
+ },
1026
+ {
1027
+ "components": [
1028
+ {
1029
+ "internalType": "UFixed",
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"
1133
+ },
1134
+ {
1135
+ "internalType": "bytes",
1136
+ "name": "data",
1137
+ "type": "bytes"
1138
+ },
1139
+ {
1140
+ "internalType": "Timestamp",
1141
+ "name": "paidAt",
1142
+ "type": "uint40"
1143
+ }
1144
+ ],
1145
+ "internalType": "struct IPolicy.PayoutInfo",
1146
+ "name": "payout",
1147
+ "type": "tuple"
1148
+ }
1149
+ ],
1150
+ "name": "createPayout",
1151
+ "outputs": [],
1152
+ "stateMutability": "nonpayable",
1153
+ "type": "function"
1154
+ },
1155
+ {
1156
+ "inputs": [
1157
+ {
1158
+ "internalType": "NftId",
1159
+ "name": "poolNftId",
1160
+ "type": "uint96"
1161
+ },
1162
+ {
1163
+ "components": [
1164
+ {
1165
+ "internalType": "Amount",
1166
+ "name": "maxBalanceAmount",
1167
+ "type": "uint96"
1168
+ },
1169
+ {
1170
+ "internalType": "bool",
1171
+ "name": "isInterceptingBundleTransfers",
1172
+ "type": "bool"
1173
+ },
1174
+ {
1175
+ "internalType": "bool",
1176
+ "name": "isProcessingConfirmedClaims",
1177
+ "type": "bool"
1178
+ },
1179
+ {
1180
+ "internalType": "bool",
1181
+ "name": "isExternallyManaged",
1182
+ "type": "bool"
1183
+ },
1184
+ {
1185
+ "internalType": "bool",
1186
+ "name": "isVerifyingApplications",
1187
+ "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
+ }
1199
+ ],
1200
+ "internalType": "struct IComponents.PoolInfo",
1201
+ "name": "info",
1202
+ "type": "tuple"
1203
+ }
1204
+ ],
1205
+ "name": "createPool",
1206
+ "outputs": [],
1207
+ "stateMutability": "nonpayable",
1208
+ "type": "function"
1209
+ },
1210
+ {
1211
+ "inputs": [
1212
+ {
1213
+ "internalType": "NftId",
1214
+ "name": "policyNftId",
1215
+ "type": "uint96"
1216
+ },
1217
+ {
1218
+ "components": [
1219
+ {
1220
+ "internalType": "Amount",
1221
+ "name": "productFeeAmount",
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",
1272
+ "type": "uint96"
1273
+ },
1274
+ {
1275
+ "internalType": "Amount",
1276
+ "name": "poolFeeVarAmount",
1277
+ "type": "uint96"
1278
+ },
1279
+ {
1280
+ "internalType": "Amount",
1281
+ "name": "bundleFeeVarAmount",
1282
+ "type": "uint96"
1283
+ },
1284
+ {
1285
+ "internalType": "Amount",
1286
+ "name": "distributionFeeVarAmount",
1287
+ "type": "uint96"
1288
+ },
1289
+ {
1290
+ "internalType": "Amount",
1291
+ "name": "distributionOwnerFeeFixAmount",
1292
+ "type": "uint96"
1293
+ },
1294
+ {
1295
+ "internalType": "Amount",
1296
+ "name": "distributionOwnerFeeVarAmount",
1297
+ "type": "uint96"
1298
+ },
1299
+ {
1300
+ "internalType": "Amount",
1301
+ "name": "commissionAmount",
1302
+ "type": "uint96"
1303
+ },
1304
+ {
1305
+ "internalType": "Amount",
1306
+ "name": "discountAmount",
1307
+ "type": "uint96"
1308
+ }
1309
+ ],
1310
+ "internalType": "struct IPolicy.PremiumInfo",
1311
+ "name": "premium",
1312
+ "type": "tuple"
1313
+ }
1314
+ ],
1315
+ "name": "createPremium",
1316
+ "outputs": [],
1317
+ "stateMutability": "nonpayable",
1318
+ "type": "function"
1319
+ },
1320
+ {
1321
+ "inputs": [
1322
+ {
1323
+ "internalType": "NftId",
1324
+ "name": "productNftId",
1325
+ "type": "uint96"
1326
+ },
1327
+ {
1328
+ "components": [
1329
+ {
1330
+ "internalType": "bool",
1331
+ "name": "isProcessingFundedClaims",
1332
+ "type": "bool"
1333
+ },
1334
+ {
1335
+ "internalType": "bool",
1336
+ "name": "isInterceptingPolicyTransfers",
1337
+ "type": "bool"
1338
+ },
1339
+ {
1340
+ "internalType": "bool",
1341
+ "name": "hasDistribution",
1342
+ "type": "bool"
1343
+ },
1344
+ {
1345
+ "internalType": "uint8",
1346
+ "name": "expectedNumberOfOracles",
1347
+ "type": "uint8"
1348
+ },
1349
+ {
1350
+ "internalType": "uint8",
1351
+ "name": "numberOfOracles",
1352
+ "type": "uint8"
1353
+ },
1354
+ {
1355
+ "internalType": "NftId",
1356
+ "name": "poolNftId",
1357
+ "type": "uint96"
1358
+ },
1359
+ {
1360
+ "internalType": "NftId",
1361
+ "name": "distributionNftId",
1362
+ "type": "uint96"
1363
+ },
1364
+ {
1365
+ "internalType": "NftId[]",
1366
+ "name": "oracleNftId",
1367
+ "type": "uint96[]"
1368
+ }
1369
+ ],
1370
+ "internalType": "struct IComponents.ProductInfo",
1371
+ "name": "info",
1372
+ "type": "tuple"
1373
+ }
1374
+ ],
1375
+ "name": "createProduct",
1376
+ "outputs": [],
1377
+ "stateMutability": "nonpayable",
1378
+ "type": "function"
1379
+ },
1380
+ {
1381
+ "inputs": [
1382
+ {
1383
+ "internalType": "ReferralId",
1384
+ "name": "referralId",
1385
+ "type": "bytes8"
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": "bytes",
1512
+ "name": "data",
1513
+ "type": "bytes"
1514
+ }
1515
+ ],
1516
+ "internalType": "struct IRisk.RiskInfo",
1517
+ "name": "risk",
1518
+ "type": "tuple"
1519
+ }
1520
+ ],
1521
+ "name": "createRisk",
1522
+ "outputs": [],
1523
+ "stateMutability": "nonpayable",
1524
+ "type": "function"
1525
+ },
1526
+ {
1527
+ "inputs": [
1528
+ {
1529
+ "internalType": "NftId",
1530
+ "name": "targetNftId",
1531
+ "type": "uint96"
1532
+ },
1533
+ {
1534
+ "internalType": "Amount",
1535
+ "name": "amount",
1536
+ "type": "uint96"
1537
+ }
1538
+ ],
1539
+ "name": "decreaseBalance",
1540
+ "outputs": [
1541
+ {
1542
+ "internalType": "Amount",
1543
+ "name": "newBalance",
1544
+ "type": "uint96"
1545
+ }
1546
+ ],
1547
+ "stateMutability": "nonpayable",
1548
+ "type": "function"
1549
+ },
1550
+ {
1551
+ "inputs": [
1552
+ {
1553
+ "internalType": "NftId",
1554
+ "name": "targetNftId",
1555
+ "type": "uint96"
1556
+ },
1557
+ {
1558
+ "internalType": "Amount",
1559
+ "name": "amount",
1560
+ "type": "uint96"
1561
+ }
1562
+ ],
1563
+ "name": "decreaseFees",
1564
+ "outputs": [
1565
+ {
1566
+ "internalType": "Amount",
1567
+ "name": "newFeeBalance",
1568
+ "type": "uint96"
1569
+ }
1570
+ ],
1571
+ "stateMutability": "nonpayable",
1572
+ "type": "function"
1573
+ },
1574
+ {
1575
+ "inputs": [
1576
+ {
1577
+ "internalType": "NftId",
1578
+ "name": "targetNftId",
1579
+ "type": "uint96"
1580
+ },
1581
+ {
1582
+ "internalType": "Amount",
1583
+ "name": "amount",
1584
+ "type": "uint96"
1585
+ }
1586
+ ],
1587
+ "name": "decreaseLocked",
1588
+ "outputs": [
1589
+ {
1590
+ "internalType": "Amount",
1591
+ "name": "newBalance",
1592
+ "type": "uint96"
1593
+ }
1594
+ ],
1595
+ "stateMutability": "nonpayable",
1596
+ "type": "function"
1597
+ },
1598
+ {
1599
+ "inputs": [
1600
+ {
1601
+ "internalType": "Key32",
1602
+ "name": "key32",
1603
+ "type": "bytes32"
1604
+ }
1605
+ ],
1606
+ "name": "exists",
1607
+ "outputs": [
1608
+ {
1609
+ "internalType": "bool",
1610
+ "name": "",
1611
+ "type": "bool"
1612
+ }
1613
+ ],
1614
+ "stateMutability": "view",
1615
+ "type": "function"
1616
+ },
1617
+ {
1618
+ "inputs": [
1619
+ {
1620
+ "internalType": "Key32",
1621
+ "name": "key32",
1622
+ "type": "bytes32"
1623
+ }
1624
+ ],
1625
+ "name": "get",
1626
+ "outputs": [
1627
+ {
1628
+ "components": [
1629
+ {
1630
+ "components": [
1631
+ {
1632
+ "internalType": "ObjectType",
1633
+ "name": "objectType",
1634
+ "type": "uint8"
1635
+ },
1636
+ {
1637
+ "internalType": "StateId",
1638
+ "name": "state",
1639
+ "type": "uint8"
1640
+ },
1641
+ {
1642
+ "internalType": "Blocknumber",
1643
+ "name": "updatedIn",
1644
+ "type": "uint32"
1645
+ },
1646
+ {
1647
+ "internalType": "Blocknumber",
1648
+ "name": "createdIn",
1649
+ "type": "uint32"
1650
+ }
1651
+ ],
1652
+ "internalType": "struct IKeyValueStore.Metadata",
1653
+ "name": "metadata",
1654
+ "type": "tuple"
1655
+ },
1656
+ {
1657
+ "internalType": "bytes",
1658
+ "name": "data",
1659
+ "type": "bytes"
1660
+ }
1661
+ ],
1662
+ "internalType": "struct IKeyValueStore.Value",
1663
+ "name": "value",
1664
+ "type": "tuple"
1665
+ }
1666
+ ],
1667
+ "stateMutability": "view",
1668
+ "type": "function"
1669
+ },
1670
+ {
1671
+ "inputs": [
1672
+ {
1673
+ "internalType": "NftId",
1674
+ "name": "targetNftId",
1675
+ "type": "uint96"
1676
+ }
1677
+ ],
1678
+ "name": "getAmounts",
1679
+ "outputs": [
1680
+ {
1681
+ "internalType": "Amount",
1682
+ "name": "balanceAmount",
1683
+ "type": "uint96"
1684
+ },
1685
+ {
1686
+ "internalType": "Amount",
1687
+ "name": "lockedAmount",
1688
+ "type": "uint96"
1689
+ },
1690
+ {
1691
+ "internalType": "Amount",
1692
+ "name": "feeAmount",
1693
+ "type": "uint96"
1694
+ }
1695
+ ],
1696
+ "stateMutability": "view",
1697
+ "type": "function"
1698
+ },
1699
+ {
1700
+ "inputs": [
1701
+ {
1702
+ "internalType": "NftId",
1703
+ "name": "targetNftId",
1704
+ "type": "uint96"
1705
+ }
1706
+ ],
1707
+ "name": "getBalanceAmount",
1708
+ "outputs": [
1709
+ {
1710
+ "internalType": "Amount",
1711
+ "name": "balanceAmount",
1712
+ "type": "uint96"
1713
+ }
1714
+ ],
1715
+ "stateMutability": "view",
1716
+ "type": "function"
1717
+ },
1718
+ {
1719
+ "inputs": [
1720
+ {
1721
+ "internalType": "Key32",
1722
+ "name": "key32",
1723
+ "type": "bytes32"
1724
+ }
1725
+ ],
1726
+ "name": "getData",
1727
+ "outputs": [
1728
+ {
1729
+ "internalType": "bytes",
1730
+ "name": "data",
1731
+ "type": "bytes"
1732
+ }
1733
+ ],
1734
+ "stateMutability": "view",
1735
+ "type": "function"
1736
+ },
1737
+ {
1738
+ "inputs": [
1739
+ {
1740
+ "internalType": "NftId",
1741
+ "name": "targetNftId",
1742
+ "type": "uint96"
1743
+ }
1744
+ ],
1745
+ "name": "getFeeAmount",
1746
+ "outputs": [
1747
+ {
1748
+ "internalType": "Amount",
1749
+ "name": "feeAmount",
1750
+ "type": "uint96"
1751
+ }
1752
+ ],
1753
+ "stateMutability": "view",
1754
+ "type": "function"
1755
+ },
1756
+ {
1757
+ "inputs": [
1758
+ {
1759
+ "internalType": "ObjectType",
1760
+ "name": "objectType",
1761
+ "type": "uint8"
1762
+ }
1763
+ ],
1764
+ "name": "getInitialState",
1765
+ "outputs": [
1766
+ {
1767
+ "internalType": "StateId",
1768
+ "name": "",
1769
+ "type": "uint8"
1770
+ }
1771
+ ],
1772
+ "stateMutability": "view",
1773
+ "type": "function"
1774
+ },
1775
+ {
1776
+ "inputs": [
1777
+ {
1778
+ "internalType": "NftId",
1779
+ "name": "targetNftId",
1780
+ "type": "uint96"
1781
+ }
1782
+ ],
1783
+ "name": "getLockedAmount",
1784
+ "outputs": [
1785
+ {
1786
+ "internalType": "Amount",
1787
+ "name": "lockedAmount",
1788
+ "type": "uint96"
1789
+ }
1790
+ ],
1791
+ "stateMutability": "view",
1792
+ "type": "function"
1793
+ },
1794
+ {
1795
+ "inputs": [
1796
+ {
1797
+ "internalType": "Key32",
1798
+ "name": "key32",
1799
+ "type": "bytes32"
1800
+ }
1801
+ ],
1802
+ "name": "getMetadata",
1803
+ "outputs": [
1804
+ {
1805
+ "components": [
1806
+ {
1807
+ "internalType": "ObjectType",
1808
+ "name": "objectType",
1809
+ "type": "uint8"
1810
+ },
1811
+ {
1812
+ "internalType": "StateId",
1813
+ "name": "state",
1814
+ "type": "uint8"
1815
+ },
1816
+ {
1817
+ "internalType": "Blocknumber",
1818
+ "name": "updatedIn",
1819
+ "type": "uint32"
1820
+ },
1821
+ {
1822
+ "internalType": "Blocknumber",
1823
+ "name": "createdIn",
1824
+ "type": "uint32"
1825
+ }
1826
+ ],
1827
+ "internalType": "struct IKeyValueStore.Metadata",
1828
+ "name": "metadata",
1829
+ "type": "tuple"
1830
+ }
1831
+ ],
1832
+ "stateMutability": "view",
1833
+ "type": "function"
1834
+ },
1835
+ {
1836
+ "inputs": [
1837
+ {
1838
+ "internalType": "Key32",
1839
+ "name": "key32",
1840
+ "type": "bytes32"
1841
+ }
1842
+ ],
1843
+ "name": "getState",
1844
+ "outputs": [
1845
+ {
1846
+ "internalType": "StateId",
1847
+ "name": "state",
1848
+ "type": "uint8"
1849
+ }
1850
+ ],
1851
+ "stateMutability": "view",
1852
+ "type": "function"
1853
+ },
1854
+ {
1855
+ "inputs": [
1856
+ {
1857
+ "internalType": "ObjectType",
1858
+ "name": "objectType",
1859
+ "type": "uint8"
1860
+ }
1861
+ ],
1862
+ "name": "hasLifecycle",
1863
+ "outputs": [
1864
+ {
1865
+ "internalType": "bool",
1866
+ "name": "",
1867
+ "type": "bool"
1868
+ }
1869
+ ],
1870
+ "stateMutability": "view",
1871
+ "type": "function"
1872
+ },
1873
+ {
1874
+ "inputs": [
1875
+ {
1876
+ "internalType": "NftId",
1877
+ "name": "targetNftId",
1878
+ "type": "uint96"
1879
+ },
1880
+ {
1881
+ "internalType": "Amount",
1882
+ "name": "amount",
1883
+ "type": "uint96"
1884
+ }
1885
+ ],
1886
+ "name": "increaseBalance",
1887
+ "outputs": [
1888
+ {
1889
+ "internalType": "Amount",
1890
+ "name": "newBalance",
1891
+ "type": "uint96"
1892
+ }
1893
+ ],
1894
+ "stateMutability": "nonpayable",
1895
+ "type": "function"
1896
+ },
1897
+ {
1898
+ "inputs": [
1899
+ {
1900
+ "internalType": "NftId",
1901
+ "name": "targetNftId",
1902
+ "type": "uint96"
1903
+ },
1904
+ {
1905
+ "internalType": "Amount",
1906
+ "name": "amount",
1907
+ "type": "uint96"
1908
+ }
1909
+ ],
1910
+ "name": "increaseFees",
1911
+ "outputs": [
1912
+ {
1913
+ "internalType": "Amount",
1914
+ "name": "newFeeBalance",
1915
+ "type": "uint96"
1916
+ }
1917
+ ],
1918
+ "stateMutability": "nonpayable",
1919
+ "type": "function"
1920
+ },
1921
+ {
1922
+ "inputs": [
1923
+ {
1924
+ "internalType": "NftId",
1925
+ "name": "targetNftId",
1926
+ "type": "uint96"
1927
+ },
1928
+ {
1929
+ "internalType": "Amount",
1930
+ "name": "amount",
1931
+ "type": "uint96"
1932
+ }
1933
+ ],
1934
+ "name": "increaseLocked",
1935
+ "outputs": [
1936
+ {
1937
+ "internalType": "Amount",
1938
+ "name": "newBalance",
1939
+ "type": "uint96"
1940
+ }
1941
+ ],
1942
+ "stateMutability": "nonpayable",
1943
+ "type": "function"
1944
+ },
1945
+ {
1946
+ "inputs": [],
1947
+ "name": "initialize",
1948
+ "outputs": [],
1949
+ "stateMutability": "nonpayable",
1950
+ "type": "function"
1951
+ },
1952
+ {
1953
+ "inputs": [],
1954
+ "name": "isConsumingScheduledOp",
1955
+ "outputs": [
1956
+ {
1957
+ "internalType": "bytes4",
1958
+ "name": "",
1959
+ "type": "bytes4"
1960
+ }
1961
+ ],
1962
+ "stateMutability": "view",
1963
+ "type": "function"
1964
+ },
1965
+ {
1966
+ "inputs": [
1967
+ {
1968
+ "internalType": "ObjectType",
1969
+ "name": "objectType",
1970
+ "type": "uint8"
1971
+ },
1972
+ {
1973
+ "internalType": "StateId",
1974
+ "name": "fromId",
1975
+ "type": "uint8"
1976
+ },
1977
+ {
1978
+ "internalType": "StateId",
1979
+ "name": "toId",
1980
+ "type": "uint8"
1981
+ }
1982
+ ],
1983
+ "name": "isValidTransition",
1984
+ "outputs": [
1985
+ {
1986
+ "internalType": "bool",
1987
+ "name": "",
1988
+ "type": "bool"
1989
+ }
1990
+ ],
1991
+ "stateMutability": "view",
1992
+ "type": "function"
1993
+ },
1994
+ {
1995
+ "inputs": [
1996
+ {
1997
+ "internalType": "address",
1998
+ "name": "newAuthority",
1999
+ "type": "address"
2000
+ }
2001
+ ],
2002
+ "name": "setAuthority",
2003
+ "outputs": [],
2004
+ "stateMutability": "nonpayable",
2005
+ "type": "function"
2006
+ },
2007
+ {
2008
+ "inputs": [
2009
+ {
2010
+ "internalType": "ObjectType",
2011
+ "name": "objectType",
2012
+ "type": "uint8"
2013
+ },
2014
+ {
2015
+ "internalType": "KeyId",
2016
+ "name": "id",
2017
+ "type": "bytes31"
2018
+ }
2019
+ ],
2020
+ "name": "toKey32",
2021
+ "outputs": [
2022
+ {
2023
+ "internalType": "Key32",
2024
+ "name": "",
2025
+ "type": "bytes32"
2026
+ }
2027
+ ],
2028
+ "stateMutability": "pure",
2029
+ "type": "function"
2030
+ },
2031
+ {
2032
+ "inputs": [
2033
+ {
2034
+ "internalType": "NftId",
2035
+ "name": "applicationNftId",
2036
+ "type": "uint96"
2037
+ },
2038
+ {
2039
+ "components": [
2040
+ {
2041
+ "internalType": "NftId",
2042
+ "name": "productNftId",
2043
+ "type": "uint96"
2044
+ },
2045
+ {
2046
+ "internalType": "NftId",
2047
+ "name": "bundleNftId",
2048
+ "type": "uint96"
2049
+ },
2050
+ {
2051
+ "internalType": "ReferralId",
2052
+ "name": "referralId",
2053
+ "type": "bytes8"
2054
+ },
2055
+ {
2056
+ "internalType": "RiskId",
2057
+ "name": "riskId",
2058
+ "type": "bytes8"
2059
+ },
2060
+ {
2061
+ "internalType": "Amount",
2062
+ "name": "sumInsuredAmount",
2063
+ "type": "uint96"
2064
+ },
2065
+ {
2066
+ "internalType": "Amount",
2067
+ "name": "premiumAmount",
2068
+ "type": "uint96"
2069
+ },
2070
+ {
2071
+ "internalType": "Seconds",
2072
+ "name": "lifetime",
2073
+ "type": "uint40"
2074
+ },
2075
+ {
2076
+ "internalType": "bytes",
2077
+ "name": "applicationData",
2078
+ "type": "bytes"
2079
+ },
2080
+ {
2081
+ "internalType": "bytes",
2082
+ "name": "processData",
2083
+ "type": "bytes"
2084
+ },
2085
+ {
2086
+ "internalType": "uint16",
2087
+ "name": "claimsCount",
2088
+ "type": "uint16"
2089
+ },
2090
+ {
2091
+ "internalType": "uint16",
2092
+ "name": "openClaimsCount",
2093
+ "type": "uint16"
2094
+ },
2095
+ {
2096
+ "internalType": "Amount",
2097
+ "name": "claimAmount",
2098
+ "type": "uint96"
2099
+ },
2100
+ {
2101
+ "internalType": "Amount",
2102
+ "name": "payoutAmount",
2103
+ "type": "uint96"
2104
+ },
2105
+ {
2106
+ "internalType": "Timestamp",
2107
+ "name": "activatedAt",
2108
+ "type": "uint40"
2109
+ },
2110
+ {
2111
+ "internalType": "Timestamp",
2112
+ "name": "expiredAt",
2113
+ "type": "uint40"
2114
+ },
2115
+ {
2116
+ "internalType": "Timestamp",
2117
+ "name": "closedAt",
2118
+ "type": "uint40"
2119
+ }
2120
+ ],
2121
+ "internalType": "struct IPolicy.PolicyInfo",
2122
+ "name": "policy",
2123
+ "type": "tuple"
2124
+ },
2125
+ {
2126
+ "internalType": "StateId",
2127
+ "name": "newState",
2128
+ "type": "uint8"
2129
+ }
2130
+ ],
2131
+ "name": "updateApplication",
2132
+ "outputs": [],
2133
+ "stateMutability": "nonpayable",
2134
+ "type": "function"
2135
+ },
2136
+ {
2137
+ "inputs": [
2138
+ {
2139
+ "internalType": "NftId",
2140
+ "name": "applicationNftId",
2141
+ "type": "uint96"
2142
+ },
2143
+ {
2144
+ "internalType": "StateId",
2145
+ "name": "newState",
2146
+ "type": "uint8"
2147
+ }
2148
+ ],
2149
+ "name": "updateApplicationState",
2150
+ "outputs": [],
2151
+ "stateMutability": "nonpayable",
2152
+ "type": "function"
2153
+ },
2154
+ {
2155
+ "inputs": [
2156
+ {
2157
+ "internalType": "NftId",
2158
+ "name": "bundleNftId",
2159
+ "type": "uint96"
2160
+ },
2161
+ {
2162
+ "components": [
2163
+ {
2164
+ "internalType": "NftId",
2165
+ "name": "poolNftId",
2166
+ "type": "uint96"
2167
+ },
2168
+ {
2169
+ "components": [
2170
+ {
2171
+ "internalType": "UFixed",
2172
+ "name": "fractionalFee",
2173
+ "type": "uint256"
2174
+ },
2175
+ {
2176
+ "internalType": "uint256",
2177
+ "name": "fixedFee",
2178
+ "type": "uint256"
2179
+ }
2180
+ ],
2181
+ "internalType": "struct Fee",
2182
+ "name": "fee",
2183
+ "type": "tuple"
2184
+ },
2185
+ {
2186
+ "internalType": "bytes",
2187
+ "name": "filter",
2188
+ "type": "bytes"
2189
+ },
2190
+ {
2191
+ "internalType": "Timestamp",
2192
+ "name": "activatedAt",
2193
+ "type": "uint40"
2194
+ },
2195
+ {
2196
+ "internalType": "Timestamp",
2197
+ "name": "expiredAt",
2198
+ "type": "uint40"
2199
+ },
2200
+ {
2201
+ "internalType": "Timestamp",
2202
+ "name": "closedAt",
2203
+ "type": "uint40"
2204
+ }
2205
+ ],
2206
+ "internalType": "struct IBundle.BundleInfo",
2207
+ "name": "bundle",
2208
+ "type": "tuple"
2209
+ },
2210
+ {
2211
+ "internalType": "StateId",
2212
+ "name": "newState",
2213
+ "type": "uint8"
2214
+ }
2215
+ ],
2216
+ "name": "updateBundle",
2217
+ "outputs": [],
2218
+ "stateMutability": "nonpayable",
2219
+ "type": "function"
2220
+ },
2221
+ {
2222
+ "inputs": [
2223
+ {
2224
+ "internalType": "NftId",
2225
+ "name": "bundleNftId",
2226
+ "type": "uint96"
2227
+ },
2228
+ {
2229
+ "internalType": "StateId",
2230
+ "name": "newState",
2231
+ "type": "uint8"
2232
+ }
2233
+ ],
2234
+ "name": "updateBundleState",
2235
+ "outputs": [],
2236
+ "stateMutability": "nonpayable",
2237
+ "type": "function"
2238
+ },
2239
+ {
2240
+ "inputs": [
2241
+ {
2242
+ "internalType": "NftId",
2243
+ "name": "policyNftId",
2244
+ "type": "uint96"
2245
+ },
2246
+ {
2247
+ "internalType": "ClaimId",
2248
+ "name": "claimId",
2249
+ "type": "uint16"
2250
+ },
2251
+ {
2252
+ "components": [
2253
+ {
2254
+ "internalType": "Amount",
2255
+ "name": "claimAmount",
2256
+ "type": "uint96"
2257
+ },
2258
+ {
2259
+ "internalType": "Amount",
2260
+ "name": "paidAmount",
2261
+ "type": "uint96"
2262
+ },
2263
+ {
2264
+ "internalType": "uint24",
2265
+ "name": "payoutsCount",
2266
+ "type": "uint24"
2267
+ },
2268
+ {
2269
+ "internalType": "uint24",
2270
+ "name": "openPayoutsCount",
2271
+ "type": "uint24"
2272
+ },
2273
+ {
2274
+ "internalType": "bytes",
2275
+ "name": "submissionData",
2276
+ "type": "bytes"
2277
+ },
2278
+ {
2279
+ "internalType": "bytes",
2280
+ "name": "processData",
2281
+ "type": "bytes"
2282
+ },
2283
+ {
2284
+ "internalType": "Timestamp",
2285
+ "name": "closedAt",
2286
+ "type": "uint40"
2287
+ }
2288
+ ],
2289
+ "internalType": "struct IPolicy.ClaimInfo",
2290
+ "name": "claim",
2291
+ "type": "tuple"
2292
+ },
2293
+ {
2294
+ "internalType": "StateId",
2295
+ "name": "newState",
2296
+ "type": "uint8"
2297
+ }
2298
+ ],
2299
+ "name": "updateClaim",
2300
+ "outputs": [],
2301
+ "stateMutability": "nonpayable",
2302
+ "type": "function"
2303
+ },
2304
+ {
2305
+ "inputs": [
2306
+ {
2307
+ "internalType": "NftId",
2308
+ "name": "policyNftId",
2309
+ "type": "uint96"
2310
+ },
2311
+ {
2312
+ "internalType": "ClaimId",
2313
+ "name": "claimId",
2314
+ "type": "uint16"
2315
+ },
2316
+ {
2317
+ "internalType": "StateId",
2318
+ "name": "newState",
2319
+ "type": "uint8"
2320
+ }
2321
+ ],
2322
+ "name": "updateClaimState",
2323
+ "outputs": [],
2324
+ "stateMutability": "nonpayable",
2325
+ "type": "function"
2326
+ },
2327
+ {
2328
+ "inputs": [
2329
+ {
2330
+ "internalType": "NftId",
2331
+ "name": "componentNftId",
2332
+ "type": "uint96"
2333
+ },
2334
+ {
2335
+ "components": [
2336
+ {
2337
+ "internalType": "string",
2338
+ "name": "name",
2339
+ "type": "string"
2340
+ },
2341
+ {
2342
+ "internalType": "contract IERC20Metadata",
2343
+ "name": "token",
2344
+ "type": "address"
2345
+ },
2346
+ {
2347
+ "internalType": "contract TokenHandler",
2348
+ "name": "tokenHandler",
2349
+ "type": "address"
2350
+ },
2351
+ {
2352
+ "internalType": "bytes",
2353
+ "name": "data",
2354
+ "type": "bytes"
2355
+ }
2356
+ ],
2357
+ "internalType": "struct IComponents.ComponentInfo",
2358
+ "name": "componentInfo",
2359
+ "type": "tuple"
2360
+ },
2361
+ {
2362
+ "internalType": "StateId",
2363
+ "name": "newState",
2364
+ "type": "uint8"
2365
+ }
2366
+ ],
2367
+ "name": "updateComponent",
2368
+ "outputs": [],
2369
+ "stateMutability": "nonpayable",
2370
+ "type": "function"
2371
+ },
2372
+ {
2373
+ "inputs": [
2374
+ {
2375
+ "internalType": "NftId",
2376
+ "name": "distributorNftId",
2377
+ "type": "uint96"
2378
+ },
2379
+ {
2380
+ "components": [
2381
+ {
2382
+ "internalType": "DistributorType",
2383
+ "name": "distributorType",
2384
+ "type": "bytes8"
2385
+ },
2386
+ {
2387
+ "internalType": "bool",
2388
+ "name": "active",
2389
+ "type": "bool"
2390
+ },
2391
+ {
2392
+ "internalType": "bytes",
2393
+ "name": "data",
2394
+ "type": "bytes"
2395
+ },
2396
+ {
2397
+ "internalType": "uint32",
2398
+ "name": "numPoliciesSold",
2399
+ "type": "uint32"
2400
+ }
2401
+ ],
2402
+ "internalType": "struct IDistribution.DistributorInfo",
2403
+ "name": "info",
2404
+ "type": "tuple"
2405
+ },
2406
+ {
2407
+ "internalType": "StateId",
2408
+ "name": "newState",
2409
+ "type": "uint8"
2410
+ }
2411
+ ],
2412
+ "name": "updateDistributor",
2413
+ "outputs": [],
2414
+ "stateMutability": "nonpayable",
2415
+ "type": "function"
2416
+ },
2417
+ {
2418
+ "inputs": [
2419
+ {
2420
+ "internalType": "NftId",
2421
+ "name": "distributorNftId",
2422
+ "type": "uint96"
2423
+ },
2424
+ {
2425
+ "internalType": "StateId",
2426
+ "name": "newState",
2427
+ "type": "uint8"
2428
+ }
2429
+ ],
2430
+ "name": "updateDistributorState",
2431
+ "outputs": [],
2432
+ "stateMutability": "nonpayable",
2433
+ "type": "function"
2434
+ },
2435
+ {
2436
+ "inputs": [
2437
+ {
2438
+ "internalType": "DistributorType",
2439
+ "name": "distributorType",
2440
+ "type": "bytes8"
2441
+ },
2442
+ {
2443
+ "components": [
2444
+ {
2445
+ "internalType": "string",
2446
+ "name": "name",
2447
+ "type": "string"
2448
+ },
2449
+ {
2450
+ "internalType": "UFixed",
2451
+ "name": "minDiscountPercentage",
2452
+ "type": "uint256"
2453
+ },
2454
+ {
2455
+ "internalType": "UFixed",
2456
+ "name": "maxDiscountPercentage",
2457
+ "type": "uint256"
2458
+ },
2459
+ {
2460
+ "internalType": "UFixed",
2461
+ "name": "commissionPercentage",
2462
+ "type": "uint256"
2463
+ },
2464
+ {
2465
+ "internalType": "uint32",
2466
+ "name": "maxReferralCount",
2467
+ "type": "uint32"
2468
+ },
2469
+ {
2470
+ "internalType": "uint32",
2471
+ "name": "maxReferralLifetime",
2472
+ "type": "uint32"
2473
+ },
2474
+ {
2475
+ "internalType": "bool",
2476
+ "name": "allowSelfReferrals",
2477
+ "type": "bool"
2478
+ },
2479
+ {
2480
+ "internalType": "bool",
2481
+ "name": "allowRenewals",
2482
+ "type": "bool"
2483
+ },
2484
+ {
2485
+ "internalType": "bytes",
2486
+ "name": "data",
2487
+ "type": "bytes"
2488
+ }
2489
+ ],
2490
+ "internalType": "struct IDistribution.DistributorTypeInfo",
2491
+ "name": "info",
2492
+ "type": "tuple"
2493
+ },
2494
+ {
2495
+ "internalType": "StateId",
2496
+ "name": "newState",
2497
+ "type": "uint8"
2498
+ }
2499
+ ],
2500
+ "name": "updateDistributorType",
2501
+ "outputs": [],
2502
+ "stateMutability": "nonpayable",
2503
+ "type": "function"
2504
+ },
2505
+ {
2506
+ "inputs": [
2507
+ {
2508
+ "internalType": "DistributorType",
2509
+ "name": "distributorType",
2510
+ "type": "bytes8"
2511
+ },
2512
+ {
2513
+ "internalType": "StateId",
2514
+ "name": "newState",
2515
+ "type": "uint8"
2516
+ }
2517
+ ],
2518
+ "name": "updateDistributorTypeState",
2519
+ "outputs": [],
2520
+ "stateMutability": "nonpayable",
2521
+ "type": "function"
2522
+ },
2523
+ {
2524
+ "inputs": [
2525
+ {
2526
+ "internalType": "NftId",
2527
+ "name": "productNftId",
2528
+ "type": "uint96"
2529
+ },
2530
+ {
2531
+ "components": [
2532
+ {
2533
+ "components": [
2534
+ {
2535
+ "internalType": "UFixed",
2536
+ "name": "fractionalFee",
2537
+ "type": "uint256"
2538
+ },
2539
+ {
2540
+ "internalType": "uint256",
2541
+ "name": "fixedFee",
2542
+ "type": "uint256"
2543
+ }
2544
+ ],
2545
+ "internalType": "struct Fee",
2546
+ "name": "productFee",
2547
+ "type": "tuple"
2548
+ },
2549
+ {
2550
+ "components": [
2551
+ {
2552
+ "internalType": "UFixed",
2553
+ "name": "fractionalFee",
2554
+ "type": "uint256"
2555
+ },
2556
+ {
2557
+ "internalType": "uint256",
2558
+ "name": "fixedFee",
2559
+ "type": "uint256"
2560
+ }
2561
+ ],
2562
+ "internalType": "struct Fee",
2563
+ "name": "processingFee",
2564
+ "type": "tuple"
2565
+ },
2566
+ {
2567
+ "components": [
2568
+ {
2569
+ "internalType": "UFixed",
2570
+ "name": "fractionalFee",
2571
+ "type": "uint256"
2572
+ },
2573
+ {
2574
+ "internalType": "uint256",
2575
+ "name": "fixedFee",
2576
+ "type": "uint256"
2577
+ }
2578
+ ],
2579
+ "internalType": "struct Fee",
2580
+ "name": "distributionFee",
2581
+ "type": "tuple"
2582
+ },
2583
+ {
2584
+ "components": [
2585
+ {
2586
+ "internalType": "UFixed",
2587
+ "name": "fractionalFee",
2588
+ "type": "uint256"
2589
+ },
2590
+ {
2591
+ "internalType": "uint256",
2592
+ "name": "fixedFee",
2593
+ "type": "uint256"
2594
+ }
2595
+ ],
2596
+ "internalType": "struct Fee",
2597
+ "name": "minDistributionOwnerFee",
2598
+ "type": "tuple"
2599
+ },
2600
+ {
2601
+ "components": [
2602
+ {
2603
+ "internalType": "UFixed",
2604
+ "name": "fractionalFee",
2605
+ "type": "uint256"
2606
+ },
2607
+ {
2608
+ "internalType": "uint256",
2609
+ "name": "fixedFee",
2610
+ "type": "uint256"
2611
+ }
2612
+ ],
2613
+ "internalType": "struct Fee",
2614
+ "name": "poolFee",
2615
+ "type": "tuple"
2616
+ },
2617
+ {
2618
+ "components": [
2619
+ {
2620
+ "internalType": "UFixed",
2621
+ "name": "fractionalFee",
2622
+ "type": "uint256"
2623
+ },
2624
+ {
2625
+ "internalType": "uint256",
2626
+ "name": "fixedFee",
2627
+ "type": "uint256"
2628
+ }
2629
+ ],
2630
+ "internalType": "struct Fee",
2631
+ "name": "stakingFee",
2632
+ "type": "tuple"
2633
+ },
2634
+ {
2635
+ "components": [
2636
+ {
2637
+ "internalType": "UFixed",
2638
+ "name": "fractionalFee",
2639
+ "type": "uint256"
2640
+ },
2641
+ {
2642
+ "internalType": "uint256",
2643
+ "name": "fixedFee",
2644
+ "type": "uint256"
2645
+ }
2646
+ ],
2647
+ "internalType": "struct Fee",
2648
+ "name": "performanceFee",
2649
+ "type": "tuple"
2650
+ }
2651
+ ],
2652
+ "internalType": "struct IComponents.FeeInfo",
2653
+ "name": "info",
2654
+ "type": "tuple"
2655
+ }
2656
+ ],
2657
+ "name": "updateFee",
2658
+ "outputs": [],
2659
+ "stateMutability": "nonpayable",
2660
+ "type": "function"
2661
+ },
2662
+ {
2663
+ "inputs": [
2664
+ {
2665
+ "internalType": "NftId",
2666
+ "name": "policyNftId",
2667
+ "type": "uint96"
2668
+ },
2669
+ {
2670
+ "internalType": "PayoutId",
2671
+ "name": "payoutId",
2672
+ "type": "uint40"
2673
+ },
2674
+ {
2675
+ "components": [
2676
+ {
2677
+ "internalType": "ClaimId",
2678
+ "name": "claimId",
2679
+ "type": "uint16"
2680
+ },
2681
+ {
2682
+ "internalType": "Amount",
2683
+ "name": "amount",
2684
+ "type": "uint96"
2685
+ },
2686
+ {
2687
+ "internalType": "address",
2688
+ "name": "beneficiary",
2689
+ "type": "address"
2690
+ },
2691
+ {
2692
+ "internalType": "bytes",
2693
+ "name": "data",
2694
+ "type": "bytes"
2695
+ },
2696
+ {
2697
+ "internalType": "Timestamp",
2698
+ "name": "paidAt",
2699
+ "type": "uint40"
2700
+ }
2701
+ ],
2702
+ "internalType": "struct IPolicy.PayoutInfo",
2703
+ "name": "payout",
2704
+ "type": "tuple"
2705
+ },
2706
+ {
2707
+ "internalType": "StateId",
2708
+ "name": "newState",
2709
+ "type": "uint8"
2710
+ }
2711
+ ],
2712
+ "name": "updatePayout",
2713
+ "outputs": [],
2714
+ "stateMutability": "nonpayable",
2715
+ "type": "function"
2716
+ },
2717
+ {
2718
+ "inputs": [
2719
+ {
2720
+ "internalType": "NftId",
2721
+ "name": "policyNftId",
2722
+ "type": "uint96"
2723
+ },
2724
+ {
2725
+ "internalType": "PayoutId",
2726
+ "name": "payoutId",
2727
+ "type": "uint40"
2728
+ },
2729
+ {
2730
+ "internalType": "StateId",
2731
+ "name": "newState",
2732
+ "type": "uint8"
2733
+ }
2734
+ ],
2735
+ "name": "updatePayoutState",
2736
+ "outputs": [],
2737
+ "stateMutability": "nonpayable",
2738
+ "type": "function"
2739
+ },
2740
+ {
2741
+ "inputs": [
2742
+ {
2743
+ "internalType": "NftId",
2744
+ "name": "policyNftId",
2745
+ "type": "uint96"
2746
+ },
2747
+ {
2748
+ "components": [
2749
+ {
2750
+ "internalType": "NftId",
2751
+ "name": "productNftId",
2752
+ "type": "uint96"
2753
+ },
2754
+ {
2755
+ "internalType": "NftId",
2756
+ "name": "bundleNftId",
2757
+ "type": "uint96"
2758
+ },
2759
+ {
2760
+ "internalType": "ReferralId",
2761
+ "name": "referralId",
2762
+ "type": "bytes8"
2763
+ },
2764
+ {
2765
+ "internalType": "RiskId",
2766
+ "name": "riskId",
2767
+ "type": "bytes8"
2768
+ },
2769
+ {
2770
+ "internalType": "Amount",
2771
+ "name": "sumInsuredAmount",
2772
+ "type": "uint96"
2773
+ },
2774
+ {
2775
+ "internalType": "Amount",
2776
+ "name": "premiumAmount",
2777
+ "type": "uint96"
2778
+ },
2779
+ {
2780
+ "internalType": "Seconds",
2781
+ "name": "lifetime",
2782
+ "type": "uint40"
2783
+ },
2784
+ {
2785
+ "internalType": "bytes",
2786
+ "name": "applicationData",
2787
+ "type": "bytes"
2788
+ },
2789
+ {
2790
+ "internalType": "bytes",
2791
+ "name": "processData",
2792
+ "type": "bytes"
2793
+ },
2794
+ {
2795
+ "internalType": "uint16",
2796
+ "name": "claimsCount",
2797
+ "type": "uint16"
2798
+ },
2799
+ {
2800
+ "internalType": "uint16",
2801
+ "name": "openClaimsCount",
2802
+ "type": "uint16"
2803
+ },
2804
+ {
2805
+ "internalType": "Amount",
2806
+ "name": "claimAmount",
2807
+ "type": "uint96"
2808
+ },
2809
+ {
2810
+ "internalType": "Amount",
2811
+ "name": "payoutAmount",
2812
+ "type": "uint96"
2813
+ },
2814
+ {
2815
+ "internalType": "Timestamp",
2816
+ "name": "activatedAt",
2817
+ "type": "uint40"
2818
+ },
2819
+ {
2820
+ "internalType": "Timestamp",
2821
+ "name": "expiredAt",
2822
+ "type": "uint40"
2823
+ },
2824
+ {
2825
+ "internalType": "Timestamp",
2826
+ "name": "closedAt",
2827
+ "type": "uint40"
2828
+ }
2829
+ ],
2830
+ "internalType": "struct IPolicy.PolicyInfo",
2831
+ "name": "policy",
2832
+ "type": "tuple"
2833
+ },
2834
+ {
2835
+ "internalType": "StateId",
2836
+ "name": "newState",
2837
+ "type": "uint8"
2838
+ }
2839
+ ],
2840
+ "name": "updatePolicy",
2841
+ "outputs": [],
2842
+ "stateMutability": "nonpayable",
2843
+ "type": "function"
2844
+ },
2845
+ {
2846
+ "inputs": [
2847
+ {
2848
+ "internalType": "NftId",
2849
+ "name": "policyNftId",
2850
+ "type": "uint96"
2851
+ },
2852
+ {
2853
+ "components": [
2854
+ {
2855
+ "internalType": "NftId",
2856
+ "name": "productNftId",
2857
+ "type": "uint96"
2858
+ },
2859
+ {
2860
+ "internalType": "NftId",
2861
+ "name": "bundleNftId",
2862
+ "type": "uint96"
2863
+ },
2864
+ {
2865
+ "internalType": "ReferralId",
2866
+ "name": "referralId",
2867
+ "type": "bytes8"
2868
+ },
2869
+ {
2870
+ "internalType": "RiskId",
2871
+ "name": "riskId",
2872
+ "type": "bytes8"
2873
+ },
2874
+ {
2875
+ "internalType": "Amount",
2876
+ "name": "sumInsuredAmount",
2877
+ "type": "uint96"
2878
+ },
2879
+ {
2880
+ "internalType": "Amount",
2881
+ "name": "premiumAmount",
2882
+ "type": "uint96"
2883
+ },
2884
+ {
2885
+ "internalType": "Seconds",
2886
+ "name": "lifetime",
2887
+ "type": "uint40"
2888
+ },
2889
+ {
2890
+ "internalType": "bytes",
2891
+ "name": "applicationData",
2892
+ "type": "bytes"
2893
+ },
2894
+ {
2895
+ "internalType": "bytes",
2896
+ "name": "processData",
2897
+ "type": "bytes"
2898
+ },
2899
+ {
2900
+ "internalType": "uint16",
2901
+ "name": "claimsCount",
2902
+ "type": "uint16"
2903
+ },
2904
+ {
2905
+ "internalType": "uint16",
2906
+ "name": "openClaimsCount",
2907
+ "type": "uint16"
2908
+ },
2909
+ {
2910
+ "internalType": "Amount",
2911
+ "name": "claimAmount",
2912
+ "type": "uint96"
2913
+ },
2914
+ {
2915
+ "internalType": "Amount",
2916
+ "name": "payoutAmount",
2917
+ "type": "uint96"
2918
+ },
2919
+ {
2920
+ "internalType": "Timestamp",
2921
+ "name": "activatedAt",
2922
+ "type": "uint40"
2923
+ },
2924
+ {
2925
+ "internalType": "Timestamp",
2926
+ "name": "expiredAt",
2927
+ "type": "uint40"
2928
+ },
2929
+ {
2930
+ "internalType": "Timestamp",
2931
+ "name": "closedAt",
2932
+ "type": "uint40"
2933
+ }
2934
+ ],
2935
+ "internalType": "struct IPolicy.PolicyInfo",
2936
+ "name": "policy",
2937
+ "type": "tuple"
2938
+ },
2939
+ {
2940
+ "internalType": "StateId",
2941
+ "name": "newState",
2942
+ "type": "uint8"
2943
+ }
2944
+ ],
2945
+ "name": "updatePolicyClaims",
2946
+ "outputs": [],
2947
+ "stateMutability": "nonpayable",
2948
+ "type": "function"
2949
+ },
2950
+ {
2951
+ "inputs": [
2952
+ {
2953
+ "internalType": "NftId",
2954
+ "name": "policyNftId",
2955
+ "type": "uint96"
2956
+ },
2957
+ {
2958
+ "internalType": "StateId",
2959
+ "name": "newState",
2960
+ "type": "uint8"
2961
+ }
2962
+ ],
2963
+ "name": "updatePolicyState",
2964
+ "outputs": [],
2965
+ "stateMutability": "nonpayable",
2966
+ "type": "function"
2967
+ },
2968
+ {
2969
+ "inputs": [
2970
+ {
2971
+ "internalType": "NftId",
2972
+ "name": "poolNftId",
2973
+ "type": "uint96"
2974
+ },
2975
+ {
2976
+ "components": [
2977
+ {
2978
+ "internalType": "Amount",
2979
+ "name": "maxBalanceAmount",
2980
+ "type": "uint96"
2981
+ },
2982
+ {
2983
+ "internalType": "bool",
2984
+ "name": "isInterceptingBundleTransfers",
2985
+ "type": "bool"
2986
+ },
2987
+ {
2988
+ "internalType": "bool",
2989
+ "name": "isProcessingConfirmedClaims",
2990
+ "type": "bool"
2991
+ },
2992
+ {
2993
+ "internalType": "bool",
2994
+ "name": "isExternallyManaged",
2995
+ "type": "bool"
2996
+ },
2997
+ {
2998
+ "internalType": "bool",
2999
+ "name": "isVerifyingApplications",
3000
+ "type": "bool"
3001
+ },
3002
+ {
3003
+ "internalType": "UFixed",
3004
+ "name": "collateralizationLevel",
3005
+ "type": "uint256"
3006
+ },
3007
+ {
3008
+ "internalType": "UFixed",
3009
+ "name": "retentionLevel",
3010
+ "type": "uint256"
3011
+ }
3012
+ ],
3013
+ "internalType": "struct IComponents.PoolInfo",
3014
+ "name": "info",
3015
+ "type": "tuple"
3016
+ },
3017
+ {
3018
+ "internalType": "StateId",
3019
+ "name": "newState",
3020
+ "type": "uint8"
3021
+ }
3022
+ ],
3023
+ "name": "updatePool",
3024
+ "outputs": [],
3025
+ "stateMutability": "nonpayable",
3026
+ "type": "function"
3027
+ },
3028
+ {
3029
+ "inputs": [
3030
+ {
3031
+ "internalType": "NftId",
3032
+ "name": "policyNftId",
3033
+ "type": "uint96"
3034
+ },
3035
+ {
3036
+ "internalType": "StateId",
3037
+ "name": "newState",
3038
+ "type": "uint8"
3039
+ }
3040
+ ],
3041
+ "name": "updatePremiumState",
3042
+ "outputs": [],
3043
+ "stateMutability": "nonpayable",
3044
+ "type": "function"
3045
+ },
3046
+ {
3047
+ "inputs": [
3048
+ {
3049
+ "internalType": "NftId",
3050
+ "name": "productNftId",
3051
+ "type": "uint96"
3052
+ },
3053
+ {
3054
+ "components": [
3055
+ {
3056
+ "internalType": "bool",
3057
+ "name": "isProcessingFundedClaims",
3058
+ "type": "bool"
3059
+ },
3060
+ {
3061
+ "internalType": "bool",
3062
+ "name": "isInterceptingPolicyTransfers",
3063
+ "type": "bool"
3064
+ },
3065
+ {
3066
+ "internalType": "bool",
3067
+ "name": "hasDistribution",
3068
+ "type": "bool"
3069
+ },
3070
+ {
3071
+ "internalType": "uint8",
3072
+ "name": "expectedNumberOfOracles",
3073
+ "type": "uint8"
3074
+ },
3075
+ {
3076
+ "internalType": "uint8",
3077
+ "name": "numberOfOracles",
3078
+ "type": "uint8"
3079
+ },
3080
+ {
3081
+ "internalType": "NftId",
3082
+ "name": "poolNftId",
3083
+ "type": "uint96"
3084
+ },
3085
+ {
3086
+ "internalType": "NftId",
3087
+ "name": "distributionNftId",
3088
+ "type": "uint96"
3089
+ },
3090
+ {
3091
+ "internalType": "NftId[]",
3092
+ "name": "oracleNftId",
3093
+ "type": "uint96[]"
3094
+ }
3095
+ ],
3096
+ "internalType": "struct IComponents.ProductInfo",
3097
+ "name": "info",
3098
+ "type": "tuple"
3099
+ },
3100
+ {
3101
+ "internalType": "StateId",
3102
+ "name": "newState",
3103
+ "type": "uint8"
3104
+ }
3105
+ ],
3106
+ "name": "updateProduct",
3107
+ "outputs": [],
3108
+ "stateMutability": "nonpayable",
3109
+ "type": "function"
3110
+ },
3111
+ {
3112
+ "inputs": [
3113
+ {
3114
+ "internalType": "ReferralId",
3115
+ "name": "referralId",
3116
+ "type": "bytes8"
3117
+ },
3118
+ {
3119
+ "components": [
3120
+ {
3121
+ "internalType": "NftId",
3122
+ "name": "distributorNftId",
3123
+ "type": "uint96"
3124
+ },
3125
+ {
3126
+ "internalType": "string",
3127
+ "name": "referralCode",
3128
+ "type": "string"
3129
+ },
3130
+ {
3131
+ "internalType": "UFixed",
3132
+ "name": "discountPercentage",
3133
+ "type": "uint256"
3134
+ },
3135
+ {
3136
+ "internalType": "uint32",
3137
+ "name": "maxReferrals",
3138
+ "type": "uint32"
3139
+ },
3140
+ {
3141
+ "internalType": "uint32",
3142
+ "name": "usedReferrals",
3143
+ "type": "uint32"
3144
+ },
3145
+ {
3146
+ "internalType": "Timestamp",
3147
+ "name": "expiryAt",
3148
+ "type": "uint40"
3149
+ },
3150
+ {
3151
+ "internalType": "bytes",
3152
+ "name": "data",
3153
+ "type": "bytes"
3154
+ }
3155
+ ],
3156
+ "internalType": "struct IDistribution.ReferralInfo",
3157
+ "name": "referralInfo",
3158
+ "type": "tuple"
3159
+ },
3160
+ {
3161
+ "internalType": "StateId",
3162
+ "name": "newState",
3163
+ "type": "uint8"
3164
+ }
3165
+ ],
3166
+ "name": "updateReferral",
3167
+ "outputs": [],
3168
+ "stateMutability": "nonpayable",
3169
+ "type": "function"
3170
+ },
3171
+ {
3172
+ "inputs": [
3173
+ {
3174
+ "internalType": "ReferralId",
3175
+ "name": "referralId",
3176
+ "type": "bytes8"
3177
+ },
3178
+ {
3179
+ "internalType": "StateId",
3180
+ "name": "newState",
3181
+ "type": "uint8"
3182
+ }
3183
+ ],
3184
+ "name": "updateReferralState",
3185
+ "outputs": [],
3186
+ "stateMutability": "nonpayable",
3187
+ "type": "function"
3188
+ },
3189
+ {
3190
+ "inputs": [
3191
+ {
3192
+ "internalType": "RequestId",
3193
+ "name": "requestId",
3194
+ "type": "uint64"
3195
+ },
3196
+ {
3197
+ "components": [
3198
+ {
3199
+ "internalType": "NftId",
3200
+ "name": "requesterNftId",
3201
+ "type": "uint96"
3202
+ },
3203
+ {
3204
+ "internalType": "string",
3205
+ "name": "callbackMethodName",
3206
+ "type": "string"
3207
+ },
3208
+ {
3209
+ "internalType": "NftId",
3210
+ "name": "oracleNftId",
3211
+ "type": "uint96"
3212
+ },
3213
+ {
3214
+ "internalType": "bytes",
3215
+ "name": "requestData",
3216
+ "type": "bytes"
3217
+ },
3218
+ {
3219
+ "internalType": "bytes",
3220
+ "name": "responseData",
3221
+ "type": "bytes"
3222
+ },
3223
+ {
3224
+ "internalType": "Timestamp",
3225
+ "name": "respondedAt",
3226
+ "type": "uint40"
3227
+ },
3228
+ {
3229
+ "internalType": "Timestamp",
3230
+ "name": "expiredAt",
3231
+ "type": "uint40"
3232
+ },
3233
+ {
3234
+ "internalType": "bool",
3235
+ "name": "isCancelled",
3236
+ "type": "bool"
3237
+ }
3238
+ ],
3239
+ "internalType": "struct IOracle.RequestInfo",
3240
+ "name": "request",
3241
+ "type": "tuple"
3242
+ },
3243
+ {
3244
+ "internalType": "StateId",
3245
+ "name": "newState",
3246
+ "type": "uint8"
3247
+ }
3248
+ ],
3249
+ "name": "updateRequest",
3250
+ "outputs": [],
3251
+ "stateMutability": "nonpayable",
3252
+ "type": "function"
3253
+ },
3254
+ {
3255
+ "inputs": [
3256
+ {
3257
+ "internalType": "RequestId",
3258
+ "name": "requestId",
3259
+ "type": "uint64"
3260
+ },
3261
+ {
3262
+ "internalType": "StateId",
3263
+ "name": "newState",
3264
+ "type": "uint8"
3265
+ }
3266
+ ],
3267
+ "name": "updateRequestState",
3268
+ "outputs": [],
3269
+ "stateMutability": "nonpayable",
3270
+ "type": "function"
3271
+ },
3272
+ {
3273
+ "inputs": [
3274
+ {
3275
+ "internalType": "RiskId",
3276
+ "name": "riskId",
3277
+ "type": "bytes8"
3278
+ },
3279
+ {
3280
+ "components": [
3281
+ {
3282
+ "internalType": "NftId",
3283
+ "name": "productNftId",
3284
+ "type": "uint96"
3285
+ },
3286
+ {
3287
+ "internalType": "bytes",
3288
+ "name": "data",
3289
+ "type": "bytes"
3290
+ }
3291
+ ],
3292
+ "internalType": "struct IRisk.RiskInfo",
3293
+ "name": "risk",
3294
+ "type": "tuple"
3295
+ },
3296
+ {
3297
+ "internalType": "StateId",
3298
+ "name": "newState",
3299
+ "type": "uint8"
3300
+ }
3301
+ ],
3302
+ "name": "updateRisk",
3303
+ "outputs": [],
3304
+ "stateMutability": "nonpayable",
3305
+ "type": "function"
3306
+ },
3307
+ {
3308
+ "inputs": [
3309
+ {
3310
+ "internalType": "RiskId",
3311
+ "name": "riskId",
3312
+ "type": "bytes8"
3313
+ },
3314
+ {
3315
+ "internalType": "StateId",
3316
+ "name": "newState",
3317
+ "type": "uint8"
3318
+ }
3319
+ ],
3320
+ "name": "updateRiskState",
3321
+ "outputs": [],
3322
+ "stateMutability": "nonpayable",
3323
+ "type": "function"
3324
+ }
3325
+ ],
3326
+ "bytecode": "0x60806040525f6008553480156012575f80fd5b50615913806100205f395ff3fe608060405234801561000f575f80fd5b50600436106103bf575f3560e01c80637a9e5e4b116101f5578063bcd65e2111610114578063e145b68b116100a9578063f71d7ffe11610079578063f71d7ffe14610a00578063fe1f18d614610a13578063fe2ee79214610a26578063fe7fc94114610a39575f80fd5b8063e145b68b1461097c578063e80c61ed1461098f578063e9e96c70146109a2578063f48016ce146109df575f80fd5b8063ca0e7f08116100e4578063ca0e7f0814610943578063cb2e87d214610956578063d625d758146105c8578063d78c599b14610969575f80fd5b8063bcd65e21146108ea578063bedaa846146108fd578063bf1db3f914610910578063bf7e214f14610923575f80fd5b8063a28422291161018a578063af9025001161015a578063af9025001461089e578063b0628dc3146108b1578063b4d7efe2146108c4578063b6d7cd62146108d7575f80fd5b8063a2842229146107d9578063a46eb8dc146107ec578063a5961b4c146107ff578063a76ee0181461088b575f80fd5b80638eaa6ac0116101c55780638eaa6ac01461075a5780638eb9000d1461077a5780638fb36037146107a55780639f8151e5146107c6575f80fd5b80637a9e5e4b1461072c5780637cef48421461073f5780638129fc1c1461075257806381d32d6b146105c8575f80fd5b80633c3f8d0e116102e157806354e5618e116102765780635d4345cc116102465780635d4345cc146104945780635eede1741461069357806361105e0e146107065780636fac862214610719575f80fd5b806354e5618e1461063a57806354f1fa811461064d57806354f6127f146106605780635a8416b014610680575f80fd5b80634d4a7ae9116102b15780634d4a7ae9146105ee57806351dd844b14610601578063533086d41461061457806353ebe12914610627575f80fd5b80633c3f8d0e146105a257806340529b0f146105b5578063425d08e2146105c8578063462d5a84146105db575f80fd5b8063275c0595116103575780632f61088a116103275780632f61088a1461054657806330a130ba14610559578063353e5b751461056c57806338a699a41461057f575f80fd5b8063275c0595146104fa578063288026811461050d57806328f72e87146105205780632ae5819d14610533575f80fd5b80630fad0eb1116103925780630fad0eb11461049457806317c8c490146104a9578063228e42ec146104bc578063248a77dd146104e7575f80fd5b80630232ca49146103c35780630632b17d1461040b57806309648a9d146104365780630d3581811461046f575b5f80fd5b6103ee6103d1366004613376565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61041e61041936600461368a565b610a4c565b6040516001600160401b039091168152602001610402565b61045d6104443660046136c3565b5f90815260076020526040902054610100900460ff1690565b60405160ff9091168152602001610402565b61045d61047d3660046136f3565b60ff9081165f908152602081905260409020541690565b6104a76104a236600461370e565b610b0c565b005b6104a76104b73660046137ed565b610b2e565b6103ee6104ca366004613376565b6001600160601b039081165f908152600260205260409020541690565b6103ee6104f536600461384c565b610b6b565b6104a761050836600461388c565b610b88565b6104a761051b36600461395c565b610c20565b6104a761052e36600461399a565b610c48565b6104a761054136600461370e565b610c7d565b6104a7610554366004613a5d565b610c94565b6104a7610567366004613b8e565b610d32565b6104a761057a366004613bd0565b610dd0565b61059261058d3660046136c3565b610dec565b6040519015158152602001610402565b6104a76105b0366004613cd7565b610e74565b6104a76105c336600461370e565b610e9b565b6104a76105d6366004613eb4565b610eb2565b6104a76105e9366004613f26565b610eda565b6104a76105fc366004613fea565b610f1e565b6104a761060f366004614212565b610f46565b6103ee61062236600461384c565b610f6e565b6103ee61063536600461384c565b610f82565b6104a76106483660046142d2565b610f96565b6104a761065b366004614315565b610fbe565b61067361066e3660046136c3565b611116565b6040516104029190614391565b6104a761068e3660046143a3565b6111b8565b6106dc6106a1366004613376565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b0394851681529284166020840152921691810191909152606001610402565b6104a76107143660046144a2565b611256565b6104a76107273660046144e5565b6112f4565b6104a761073a366004614527565b611325565b6104a761074d366004614542565b6113a7565b6104a7611434565b61076d6107683660046136c3565b6115b0565b604051610402919061455e565b6103ee610788366004613376565b6001600160601b039081165f908152600360205260409020541690565b6107ad6116d1565b6040516001600160e01b03199091168152602001610402565b6103ee6107d436600461384c565b611707565b6104a76107e7366004614542565b61171b565b6104a76107fa3660046145bc565b611769565b61087e61080d3660046136c3565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b60405161040291906145fe565b6104a761089936600461463f565b61179a565b6104a76108ac366004614542565b611838565b6103ee6108bf36600461384c565b611886565b6104a76108d2366004614682565b61189a565b6104a76108e536600461469e565b6118e7565b6104a76108f83660046146cb565b6118fd565b6104a761090b366004613f26565b611924565b61059261091e3660046136f3565b61194c565b61092b611998565b6040516001600160a01b039091168152602001610402565b6104a7610951366004614728565b6119b3565b6104a76109643660046148ae565b611a51565b6104a76109773660046149c6565b611a79565b6104a761098a366004614a1a565b611aa0565b6103ee61099d36600461384c565b611ac7565b6105926109b0366004614a6d565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6109f26109ed366004614aa9565b611adb565b604051908152602001610402565b6104a7610a0e366004614ad5565b611b5c565b6104a7610a2136600461370e565b611b8d565b6104a7610a34366004614b17565b611ba4565b6104a7610a47366004614b59565b611bcc565b5f610a59335b5f36611bf4565b610a61611cf2565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610b079073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610abe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae29190614b8e565b83604051602001610af39190614ba5565b604051602081830303815290604052611d82565b919050565b610b1533610a52565b610b29610b23836013612146565b82612191565b505050565b610b3733610a52565b610b29610b4584600b612146565b83604051602001610b569190614c77565b6040516020818303038152906040528361248e565b5f610b7533610a52565b610b7f8383612604565b90505b92915050565b610b9133610a52565b604051630f37f38f60e41b81526001600160401b0384166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0f9190614b8e565b83604051602001610b569190614ba5565b610c2933610a52565b610b29610c37846011612146565b83604051602001610b569190614cdd565b610c5133610a52565b610c5a826126fd565b610c79610c6883600b612146565b82604051602001610af39190614c77565b5050565b610c8633610a52565b610b29610b23836014612146565b610c9d33610a52565b6040516355ee627560e01b8152610c799073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590610ce2906001600160c01b0319871690600401614d3b565b602060405180830381865af4158015610cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d219190614b8e565b82604051602001610af39190614d50565b610d3b33610a52565b6040516355ee627560e01b8152610c799073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610d80906001600160c01b0319871690600401614d3b565b602060405180830381865af4158015610d9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dbf9190614b8e565b82604051602001610af39190614d7d565b610dd933610a52565b610de6610b2384846127ab565b50505050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610e50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b829190614e1e565b610e7d33610a52565b610de6610e8a85856127ab565b83604051602001610b569190614e39565b610ea433610a52565b610b29610b2383601b612146565b610ebb33610a52565b610b29610ec9846013612146565b83604051602001610b569190614ea4565b610ee333610a52565b610c79610ef183600e612146565b82604051602001610f02919061501c565b604051602081830303815290604052610f1960ff90565b61248e565b610f2733610a52565b610c79610f35836014612146565b82604051602001610af391906150c5565b610f4f33610a52565b610b29610f5d84601d612146565b83604051602001610b5691906152b5565b5f610f7833610a52565b610b7f83836127fa565b5f610f8c33610a52565b610b7f83836128db565b610f9f33610a52565b610b29610fad84601b612146565b83604051602001610b569190615340565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015611020573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110449190614e1e565b156110725760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146110b35760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401611069565b60ff8084165f90815260016020908152604080832088851684528252808320858516845290915290205416610de65760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401611069565b5f81815260076020526040902060010180546060919061113590615399565b80601f016020809104026020016040519081016040528092919081815260200182805461116190615399565b80156111ac5780601f10611183576101008083540402835291602001916111ac565b820191905f5260205f20905b81548152906001019060200180831161118f57829003601f168201915b50505050509050919050565b6111c133610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611206906001600160c01b0319881690600401614d3b565b602060405180830381865af4158015611221573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112459190614b8e565b83604051602001610b569190614d7d565b61125f33610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906112a4906001600160c01b0319881690600401614d3b565b602060405180830381865af41580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e39190614b8e565b83604051602001610b5691906153d1565b6112fd33610a52565b611306826126fd565b610c79611314836013612146565b82604051602001610af39190614ea4565b3361132e611998565b6001600160a01b0316816001600160a01b0316146113695760405162d1953b60e31b81526001600160a01b0382166004820152602401611069565b816001600160a01b03163b5f0361139e576040516361798f2f60e11b81526001600160a01b0383166004820152602401611069565b610c79826129bc565b6113b033610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906113f5906001600160c01b0319871690600401614d3b565b602060405180830381865af4158015611410573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b239190614b8e565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156114785750825b90505f826001600160401b031660011480156114935750303b155b9050811580156114a1575080155b156114bf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114e957845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154e9190615462565b905061155981612a1c565b611561612a30565b505083156115a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161164a90615399565b80601f016020809104026020016040519081016040528092919081815260200182805461167690615399565b80156116c15780601f10611698576101008083540402835291602001916116c1565b820191905f5260205f20905b8154815290600101906020018083116116a457829003601f168201915b5050505050815250509050919050565b5f805160206158be83398151915280545f9190600160a01b900460ff166116f8575f611701565b638fb3603760e01b5b91505090565b5f61171133610a52565b610b7f8383612a42565b61172433610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906113f5906001600160c01b0319871690600401614d3b565b61177233610a52565b61177b826126fd565b610c7961178983601d612146565b82604051602001610af391906152b5565b6117a333610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906117e8906001600160c01b0319881690600401614d3b565b602060405180830381865af4158015611803573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118279190614b8e565b83604051602001610b569190614d50565b61184133610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906113f5906001600160c01b0319871690600401614d3b565b5f61189033610a52565b610b7f8383612b23565b6118a333610a52565b604051630f37f38f60e41b81526001600160401b0383166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f0906024016113f5565b6118f033610a52565b610de6610b238484612c04565b61190633610a52565b610b2961191384846127ab565b82604051602001610af39190614e39565b61192d33610a52565b610c7961193b83600e612146565b82604051602001610af3919061501c565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610e35565b5f805160206158be833981519152546001600160a01b031690565b6119bc33610a52565b6040516355ee627560e01b8152610c799073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611a01906001600160c01b0319871690600401614d3b565b602060405180830381865af4158015611a1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a409190614b8e565b82604051602001610af391906153d1565b611a5a33610a52565b610b29611a6884600d612146565b83604051602001610b5691906154c0565b611a8233610a52565b610de6611a8f8585612c04565b83604051602001610b569190615550565b611aa933610a52565b610b29611ab68484612c04565b82604051602001610af39190615550565b5f611ad133610a52565b610b7f8383612c50565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f9190614b8e565b611b6533610a52565b611b6e826126fd565b610c79611b7c83601b612146565b82604051602001610af39190615340565b611b9633610a52565b610b29610b2383601d612146565b611bad33610a52565b610c79611bbb83600d612146565b82604051602001610af391906154c0565b611bd533610a52565b610c79611be3836011612146565b82604051602001610af39190614cdd565b5f805160206158be8339815191525f80611c2c611c0f611998565b8730611c1e60045f8a8c6155f2565b611c2791615619565b612d31565b9150915081611cea5763ffffffff811615611cc757825460ff60a01b1916600160a01b178355611c5a611998565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c899392919061564f565b5f604051808303815f87803b158015611ca0575f80fd5b505af1158015611cb2573d5f803e3d5ffd5b5050845460ff60a01b1916855550611cea9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611069565b505050505050565b600880545f9182611d028361568e565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906156b2565b905090565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611dd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611df691906156cd565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d9190614e1e565b15611e90576040516307014a8d60e51b815260ff82166004820152602401611069565b5f83815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611ef6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1a9190614e1e565b15611f4457604051633f92eac960e21b81526004810185905260ff83166024820152604401611069565b611f4d8261194c565b611f6f57604051636cb0978b60e11b815260ff83166004820152602401611069565b5f611f78612e39565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784555f878152600760205260409020909150600101612002868261572c565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209791906156cd565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156120e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061210991906157e6565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611b1d565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122079190614e1e565b156122285760405163093b89e160e11b815260048101849052602401611069565b505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561229e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c29190614e1e565b156122e35760405163566ebf7960e01b815260048101869052602401611069565b60ff808516146124605781546122ff90829060ff168187610fbe565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a591906156cd565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156123f3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061241791906157e6565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b612468612e39565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b5f6124998483612191565b5f8581526007602052604090209091506001016124b6848261572c565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061254b91906156cd565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125bd91906157e6565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b6001600160601b0382165f90815260056020526040812054839060ff1661264957604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f9081526003602052604090205461266d911684612ea5565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916126e59187918791879163ffffffff90911690615801565b60405180910390a16126f684612f2a565b5092915050565b6001600160601b0381165f9081526005602052604090205460ff1615612741576040516314d5804160e01b81526001600160601b0382166004820152602401611069565b6001600160601b0381165f908152600560205260409020805460ff1916600117905561276c81612f2a565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff1661283f57604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260046020526040902054612863911684612fc7565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916126e59187918791879163ffffffff90911690615801565b6001600160601b0382165f90815260056020526040812054839060ff1661292057604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260036020526040902054612944911684612fc7565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916126e59187918791879163ffffffff90911690615801565b5f805160206158be83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612a24613011565b612a2d8161305a565b50565b612a38613011565b612a4061306b565b565b6001600160601b0382165f90815260056020526040812054839060ff16612a8757604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260026020526040902054612aab911684612ea5565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916126e59187918791879163ffffffff90911690615801565b6001600160601b0382165f90815260056020526040812054839060ff16612b6857604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260026020526040902054612b8c911684612fc7565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916126e59187918791879163ffffffff90911690615801565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff16612c9557604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260046020526040902054612cb9911684612ea5565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916126e59187918791879163ffffffff90911690615801565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612d9f9190615830565b5f60405180830381855afa9150503d805f8114612dd7576040519150601f19603f3d011682016040523d82523d5f602084013e612ddc565b606091505b50915091508115612e2e576040815110612e0e5780806020019051810190612e049190615846565b9094509250612e2e565b6020815110612e2e5780806020019051810190612e2b9190614e1e565b93505b505094509492505050565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d9190615873565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612f06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f919061588e565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f959190615873565b6001600160601b03919091165f908152600660205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612eeb565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16612a4057604051631afcd79f60e31b815260040160405180910390fd5b613062613011565b612a2d816129bc565b6130736130c3565b61307b613109565b613083613136565b61308b61317a565b613093613196565b61309b6131d4565b6130a36131f7565b6130ab61321f565b6130b361325e565b6130bb613268565b612a4061327c565b6130d0601d5b60056132a4565b6130df601d5b6005606e6132e6565b6130ee601d60055b60c86132e6565b6130fd601d5b606e60056132e6565b612a40601d606e6130e7565b613113600b6130c9565b61311d600b6130d6565b613127600b6130f4565b612a40600b5b606e60d26132e6565b6131426013600a6132a4565b6131516013600a5b60146132e6565b6131606013600a5b601e6132e6565b61316e6013600a60286132e6565b612a40601360286130e7565b61318760145b603c6132a4565b612a4060145b603c60dc6132e6565b6131a2601560326132a4565b6131ae6015603261314a565b6131bc6015603260336132e6565b6131c860156032613159565b612a40601560336130e7565b6131de6016613180565b6131e8601661318d565b612a406016603c5b60486132e6565b61320160176130c9565b61320b60176130d6565b61321560176130f4565b612a40601761312d565b61322960196130c9565b613238601960055b60466132e6565b6132466019600560076132e6565b61325260196007613231565b612a40601960056131f0565b612a4060116130c9565b613272600d6130c9565b612a40600e6130c9565b61328660106130c9565b613290601b6130c9565b61329a601a6130c9565b612a40601c6130c9565b60ff8281165f9081526020819052604090205416156132c5576132c56158a9565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561331e5761331e6158a9565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b0381168114612a2d575f80fd5b8035610b0781613357565b5f60208284031215613386575f80fd5b813561339181613357565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b03811182821017156133cf576133cf613398565b60405290565b604051608081016001600160401b03811182821017156133cf576133cf613398565b60405160e081016001600160401b03811182821017156133cf576133cf613398565b604080519081016001600160401b03811182821017156133cf576133cf613398565b60405161012081016001600160401b03811182821017156133cf576133cf613398565b60405161020081016001600160401b03811182821017156133cf576133cf613398565b60405161024081016001600160401b03811182821017156133cf576133cf613398565b60405160c081016001600160401b03811182821017156133cf576133cf613398565b604051601f8201601f191681016001600160401b03811182821017156134ee576134ee613398565b604052919050565b5f82601f830112613505575f80fd5b8135602083015f806001600160401b0384111561352457613524613398565b50601f8301601f1916602001613539816134c6565b91505082815285838301111561354d575f80fd5b828260208301375f92810160200192909252509392505050565b64ffffffffff81168114612a2d575f80fd5b8035610b0781613567565b8015158114612a2d575f80fd5b8035610b0781613584565b5f61010082840312156135ad575f80fd5b6135b56133ac565b90506135c08261336b565b815260208201356001600160401b038111156135da575f80fd5b6135e6848285016134f6565b6020830152506135f86040830161336b565b604082015260608201356001600160401b03811115613615575f80fd5b613621848285016134f6565b60608301525060808201356001600160401b0381111561363f575f80fd5b61364b848285016134f6565b60808301525061365d60a08301613579565b60a082015261366e60c08301613579565b60c082015261367f60e08301613591565b60e082015292915050565b5f6020828403121561369a575f80fd5b81356001600160401b038111156136af575f80fd5b6136bb8482850161359c565b949350505050565b5f602082840312156136d3575f80fd5b5035919050565b60ff81168114612a2d575f80fd5b8035610b07816136da565b5f60208284031215613703575f80fd5b8135613391816136da565b5f806040838503121561371f575f80fd5b823561372a81613357565b9150602083013561373a816136da565b809150509250929050565b6001600160a01b0381168114612a2d575f80fd5b5f60808284031215613769575f80fd5b6137716133d5565b905081356001600160401b03811115613788575f80fd5b613794848285016134f6565b82525060208201356137a581613745565b602082015260408201356137b881613745565b604082015260608201356001600160401b038111156137d5575f80fd5b6137e1848285016134f6565b60608301525092915050565b5f805f606084860312156137ff575f80fd5b833561380a81613357565b925060208401356001600160401b03811115613824575f80fd5b61383086828701613759565b9250506040840135613841816136da565b809150509250925092565b5f806040838503121561385d575f80fd5b823561386881613357565b9150602083013561373a81613357565b6001600160401b0381168114612a2d575f80fd5b5f805f6060848603121561389e575f80fd5b83356138a981613878565b925060208401356001600160401b038111156138c3575f80fd5b6138308682870161359c565b5f60e082840312156138df575f80fd5b6138e76133f7565b905081356138f481613357565b8152602082013561390481613584565b6020820152604082013561391781613584565b6040820152606082013561392a81613584565b606082015261393b60808301613591565b608082015260a0828101359082015260c09182013591810191909152919050565b5f805f610120848603121561396f575f80fd5b833561397a81613357565b925061398985602086016138cf565b9150610100840135613841816136da565b5f80604083850312156139ab575f80fd5b82356139b681613357565b915060208301356001600160401b038111156139d0575f80fd5b6139dc85828601613759565b9150509250929050565b6001600160c01b031981168114612a2d575f80fd5b8035610b07816139e6565b5f60408284031215613a16575f80fd5b613a1e613419565b90508135613a2b81613357565b815260208201356001600160401b03811115613a45575f80fd5b613a51848285016134f6565b60208301525092915050565b5f8060408385031215613a6e575f80fd5b8235613a79816139e6565b915060208301356001600160401b03811115613a93575f80fd5b6139dc85828601613a06565b63ffffffff81168114612a2d575f80fd5b8035610b0781613a9f565b5f6101208284031215613acc575f80fd5b613ad461343b565b905081356001600160401b03811115613aeb575f80fd5b613af7848285016134f6565b825250602082810135908201526040808301359082015260608083013590820152613b2460808301613ab0565b6080820152613b3560a08301613ab0565b60a0820152613b4660c08301613591565b60c0820152613b5760e08301613591565b60e08201526101008201356001600160401b03811115613b75575f80fd5b613b81848285016134f6565b6101008301525092915050565b5f8060408385031215613b9f575f80fd5b8235613baa816139e6565b915060208301356001600160401b03811115613bc4575f80fd5b6139dc85828601613abb565b5f805f60608486031215613be2575f80fd5b8335613bed81613357565b92506020840135613bfd81613567565b91506040840135613841816136da565b61ffff81168114612a2d575f80fd5b8035610b0781613c0d565b5f60a08284031215613c37575f80fd5b60405160a081016001600160401b0381118282101715613c5957613c59613398565b6040529050808235613c6a81613c0d565b81526020830135613c7a81613357565b60208201526040830135613c8d81613745565b604082015260608301356001600160401b03811115613caa575f80fd5b613cb6858286016134f6565b6060830152506080830135613cca81613567565b6080919091015292915050565b5f805f8060808587031215613cea575f80fd5b8435613cf581613357565b93506020850135613d0581613567565b925060408501356001600160401b03811115613d1f575f80fd5b613d2b87828801613c27565b9250506060850135613d3c816136da565b939692955090935050565b5f6102008284031215613d58575f80fd5b613d6061345e565b9050613d6b8261336b565b8152613d796020830161336b565b6020820152613d8a604083016139fb565b6040820152613d9b606083016139fb565b6060820152613dac6080830161336b565b6080820152613dbd60a0830161336b565b60a0820152613dce60c08301613579565b60c082015260e08201356001600160401b03811115613deb575f80fd5b613df7848285016134f6565b60e0830152506101008201356001600160401b03811115613e16575f80fd5b613e22848285016134f6565b61010083015250613e366101208301613c1c565b610120820152613e496101408301613c1c565b610140820152613e5c610160830161336b565b610160820152613e6f610180830161336b565b610180820152613e826101a08301613579565b6101a0820152613e956101c08301613579565b6101c0820152613ea86101e08301613579565b6101e082015292915050565b5f805f60608486031215613ec6575f80fd5b8335613ed181613357565b925060208401356001600160401b03811115613eeb575f80fd5b61383086828701613d47565b5f60408284031215613f07575f80fd5b613f0f613419565b823581526020928301359281019290925250919050565b5f808284036101e0811215613f39575f80fd5b8335613f4481613357565b92506101c0601f1982011215613f58575f80fd5b50613f616133f7565b613f6e8560208601613ef7565b8152613f7d8560608601613ef7565b6020820152613f8f8560a08601613ef7565b6040820152613fa18560e08601613ef7565b6060820152613fb4856101208601613ef7565b6080820152613fc7856101608601613ef7565b60a0820152613fda856101a08601613ef7565b60c0820152809150509250929050565b5f80828403610260811215613ffd575f80fd5b833561400881613357565b9250610240601f198201121561401c575f80fd5b50614025613481565b6140316020850161336b565b815261403f6040850161336b565b60208201526140506060850161336b565b60408201526140616080850161336b565b606082015261407260a0850161336b565b608082015261408360c0850161336b565b60a082015261409460e0850161336b565b60c08201526140a6610100850161336b565b60e08201526140b8610120850161336b565b6101008201526140cb610140850161336b565b6101208201526140de610160850161336b565b6101408201526140f1610180850161336b565b6101608201526141046101a0850161336b565b6101808201526141176101c0850161336b565b6101a082015261412a6101e0850161336b565b6101c082015261413d610200850161336b565b6101e0820152614150610220850161336b565b610200820152614163610240850161336b565b610220820152809150509250929050565b5f60e08284031215614184575f80fd5b61418c6134a4565b9050813561419981613357565b81526141a88360208401613ef7565b602082015260608201356001600160401b038111156141c5575f80fd5b6141d1848285016134f6565b60408301525060808201356141e581613567565b60608201526141f660a08301613579565b608082015261420760c08301613579565b60a082015292915050565b5f805f60608486031215614224575f80fd5b833561422f81613357565b925060208401356001600160401b03811115614249575f80fd5b61383086828701614174565b5f60808284031215614265575f80fd5b61426d6133d5565b9050813561427a816139e6565b8152602082013561428a81613584565b602082015260408201356001600160401b038111156142a7575f80fd5b6142b3848285016134f6565b60408301525060608201356142c781613a9f565b606082015292915050565b5f805f606084860312156142e4575f80fd5b83356142ef81613357565b925060208401356001600160401b03811115614309575f80fd5b61383086828701614255565b5f805f8060808587031215614328575f80fd5b8435614333816136da565b93506020850135614343816136da565b92506040850135614353816136da565b91506060850135613d3c816136da565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b7f6020830184614363565b5f805f606084860312156143b5575f80fd5b83356143c0816139e6565b925060208401356001600160401b038111156143da575f80fd5b61383086828701613abb565b5f60e082840312156143f6575f80fd5b6143fe6133f7565b90506144098261336b565b815260208201356001600160401b03811115614423575f80fd5b61442f848285016134f6565b6020830152506040828101359082015261444b60608301613ab0565b606082015261445c60808301613ab0565b608082015261446d60a08301613579565b60a082015260c08201356001600160401b0381111561448a575f80fd5b614496848285016134f6565b60c08301525092915050565b5f805f606084860312156144b4575f80fd5b83356144bf816139e6565b925060208401356001600160401b038111156144d9575f80fd5b613830868287016143e6565b5f80604083850312156144f6575f80fd5b823561450181613357565b915060208301356001600160401b0381111561451b575f80fd5b6139dc85828601613d47565b5f60208284031215614537575f80fd5b813561339181613745565b5f8060408385031215614553575f80fd5b823561372a816139e6565b602081526145a360208201835160ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f602083015160a0808401526136bb60c0840182614363565b5f80604083850312156145cd575f80fd5b82356145d881613357565b915060208301356001600160401b038111156145f2575f80fd5b6139dc85828601614174565b60808101610b82828460ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f805f60608486031215614651575f80fd5b833561465c816139e6565b925060208401356001600160401b03811115614676575f80fd5b61383086828701613a06565b5f8060408385031215614693575f80fd5b823561372a81613878565b5f805f606084860312156146b0575f80fd5b83356146bb81613357565b92506020840135613bfd81613c0d565b5f805f606084860312156146dd575f80fd5b83356146e881613357565b925060208401356146f881613567565b915060408401356001600160401b03811115614712575f80fd5b61471e86828701613c27565b9150509250925092565b5f8060408385031215614739575f80fd5b8235614744816139e6565b915060208301356001600160401b0381111561475e575f80fd5b6139dc858286016143e6565b5f82601f830112614779575f80fd5b81356001600160401b0381111561479257614792613398565b8060051b6147a2602082016134c6565b918252602081850181019290810190868411156147bd575f80fd5b6020860192505b838310156147e85782356147d781613357565b8252602092830192909101906147c4565b9695505050505050565b5f6101008284031215614803575f80fd5b61480b6133ac565b905061481682613591565b815261482460208301613591565b602082015261483560408301613591565b6040820152614846606083016136e8565b6060820152614857608083016136e8565b608082015261486860a0830161336b565b60a082015261487960c0830161336b565b60c082015260e08201356001600160401b03811115614896575f80fd5b6148a28482850161476a565b60e08301525092915050565b5f805f606084860312156148c0575f80fd5b83356148cb81613357565b925060208401356001600160401b038111156148e5575f80fd5b613830868287016147f2565b803562ffffff81168114610b07575f80fd5b5f60e08284031215614913575f80fd5b61491b6133f7565b90506149268261336b565b81526149346020830161336b565b6020820152614945604083016148f1565b6040820152614956606083016148f1565b606082015260808201356001600160401b03811115614973575f80fd5b61497f848285016134f6565b60808301525060a08201356001600160401b0381111561499d575f80fd5b6149a9848285016134f6565b60a0830152506149bb60c08301613579565b60c082015292915050565b5f805f80608085870312156149d9575f80fd5b84356149e481613357565b935060208501356149f481613c0d565b925060408501356001600160401b03811115614a0e575f80fd5b613d2b87828801614903565b5f805f60608486031215614a2c575f80fd5b8335614a3781613357565b92506020840135614a4781613c0d565b915060408401356001600160401b03811115614a61575f80fd5b61471e86828701614903565b5f805f60608486031215614a7f575f80fd5b8335614a8a816136da565b92506020840135613bfd816136da565b60ff1981168114612a2d575f80fd5b5f8060408385031215614aba575f80fd5b8235614ac5816136da565b9150602083013561373a81614a9a565b5f8060408385031215614ae6575f80fd5b8235614af181613357565b915060208301356001600160401b03811115614b0b575f80fd5b6139dc85828601614255565b5f8060408385031215614b28575f80fd5b8235614b3381613357565b915060208301356001600160401b03811115614b4d575f80fd5b6139dc858286016147f2565b5f806101008385031215614b6b575f80fd5b8235614b7681613357565b9150614b8584602085016138cf565b90509250929050565b5f60208284031215614b9e575f80fd5b5051919050565b60208152614bbf6020820183516001600160601b03169052565b5f60208301516101006040840152614bdb610120840182614363565b90506040840151614bf760608501826001600160601b03169052565b506060840151838203601f19016080850152614c138282614363565b9150506080840151601f198483030160a0850152614c318282614363565b91505060a0840151614c4c60c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525b509392505050565b602081525f825160806020840152614c9260a0840182614363565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f19016080860152909150614cd48282614363565b95945050505050565b5f60e0820190506001600160601b03835116825260208301511515602083015260408301511515604083015260608301511515606083015260808301511515608083015260a083015160a083015260c083015160c083015292915050565b6001600160c01b031991909116815260200190565b602081526001600160601b0382511660208201525f60208301516040808401526136bb6060840182614363565b602081525f82516101206020840152614d9a610140840182614363565b90506020840151604084015260408401516060840152606084015160808401526080840151614dd160a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015180151560e08501525060e084015180151561010085015250610100840151838203601f1901610120850152614cd48282614363565b5f60208284031215614e2e575f80fd5b815161339181613584565b6020815261ffff82511660208201526001600160601b03602083015116604082015260018060a01b0360408301511660608201525f606083015160a06080840152614e8760c0840182614363565b905064ffffffffff60808501511660a08401528091505092915050565b60208152614ebe6020820183516001600160601b03169052565b5f6020830151614ed960408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c083015164ffffffffff811660e08401525060e0830151610200610100840152614f5f610220840182614363565b9050610100840151601f1984830301610120850152614f7e8282614363565b915050610120840151614f9861014085018261ffff169052565b5061014084015161ffff8116610160850152506101608401516001600160601b038116610180850152506101808401516001600160601b0381166101a0850152506101a084015164ffffffffff81166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff8116610200850152614c6f565b815180518252602090810151908201526101c081016020838101518051604085015290810151606084015250604083015180516080840152602081015160a0840152506060830151805160c0840152602081015160e0840152506080830151805161010084015260208101516101208401525060a0830151805161014084015260208101516101608401525060c0830151805161018084015260208101516101a08401526126f6565b81516001600160601b03168152610240810160208301516150f160208401826001600160601b03169052565b50604083015161510c60408401826001600160601b03169052565b50606083015161512760608401826001600160601b03169052565b50608083015161514260808401826001600160601b03169052565b5060a083015161515d60a08401826001600160601b03169052565b5060c083015161517860c08401826001600160601b03169052565b5060e083015161519360e08401826001600160601b03169052565b506101008301516151b06101008401826001600160601b03169052565b506101208301516151cd6101208401826001600160601b03169052565b506101408301516151ea6101408401826001600160601b03169052565b506101608301516152076101608401826001600160601b03169052565b506101808301516152246101808401826001600160601b03169052565b506101a08301516152416101a08401826001600160601b03169052565b506101c083015161525e6101c08401826001600160601b03169052565b506101e083015161527b6101e08401826001600160601b03169052565b506102008301516152986102008401826001600160601b03169052565b506102208301516126f66102208401826001600160601b03169052565b602081526001600160601b0382511660208201525f60208301516152e6604084018280518252602090810151910152565b50604083015160e06080840152615301610100840182614363565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f60408301516080606084015261537d60a0840182614363565b905063ffffffff60608501511660808401528091505092915050565b600181811c908216806153ad57607f821691505b6020821081036153cb57634e487b7160e01b5f52602260045260245ffd5b50919050565b602081526001600160601b0382511660208201525f602083015160e06040840152615400610100840182614363565b90506040840151606084015263ffffffff6060850151166080840152608084015161543360a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e0850152614cd48282614363565b5f60208284031215615472575f80fd5b815161339181613745565b5f8151808452602084019350602083015f5b828110156154b65781516001600160601b031686526020958601959091019060010161548f565b5093949350505050565b602081528151151560208201526020820151151560408201525f60408301516154ed606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e0830151610100808401526136bb61012084018261547d565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f604083015161558e606084018262ffffff169052565b50606083015162ffffff8116608084015250608083015160e060a08401526155ba610100840182614363565b905060a0840151601f198483030160c08501526155d78282614363565b91505060c0840151614c6f60e085018264ffffffffff169052565b5f8085851115615600575f80fd5b8386111561560c575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156126f6576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f600182016156ab57634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f602082840312156156c2575f80fd5b815161339181613878565b5f602082840312156156dd575f80fd5b8151613391816136da565b601f821115610b2957805f5260205f20601f840160051c8101602085101561570d5750805b601f840160051c820191505b818110156115a9575f8155600101615719565b81516001600160401b0381111561574557615745613398565b615759816157538454615399565b846156e8565b6020601f82116001811461578b575f83156157745750848201515b5f19600385901b1c1916600184901b1784556115a9565b5f84815260208120601f198516915b828110156157ba578785015182556020948501946001909201910161579a565b50848210156157d757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f602082840312156157f6575f80fd5b815161339181614a9a565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615857575f80fd5b825161586281613584565b602084015190925061373a81613a9f565b5f60208284031215615883575f80fd5b815161339181613a9f565b5f6020828403121561589e575f80fd5b815161339181613357565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212203b05471b71306e90c83905b27942d379721d7fc0abb2fe076302e68802c9c00464736f6c634300081a0033",
3327
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106103bf575f3560e01c80637a9e5e4b116101f5578063bcd65e2111610114578063e145b68b116100a9578063f71d7ffe11610079578063f71d7ffe14610a00578063fe1f18d614610a13578063fe2ee79214610a26578063fe7fc94114610a39575f80fd5b8063e145b68b1461097c578063e80c61ed1461098f578063e9e96c70146109a2578063f48016ce146109df575f80fd5b8063ca0e7f08116100e4578063ca0e7f0814610943578063cb2e87d214610956578063d625d758146105c8578063d78c599b14610969575f80fd5b8063bcd65e21146108ea578063bedaa846146108fd578063bf1db3f914610910578063bf7e214f14610923575f80fd5b8063a28422291161018a578063af9025001161015a578063af9025001461089e578063b0628dc3146108b1578063b4d7efe2146108c4578063b6d7cd62146108d7575f80fd5b8063a2842229146107d9578063a46eb8dc146107ec578063a5961b4c146107ff578063a76ee0181461088b575f80fd5b80638eaa6ac0116101c55780638eaa6ac01461075a5780638eb9000d1461077a5780638fb36037146107a55780639f8151e5146107c6575f80fd5b80637a9e5e4b1461072c5780637cef48421461073f5780638129fc1c1461075257806381d32d6b146105c8575f80fd5b80633c3f8d0e116102e157806354e5618e116102765780635d4345cc116102465780635d4345cc146104945780635eede1741461069357806361105e0e146107065780636fac862214610719575f80fd5b806354e5618e1461063a57806354f1fa811461064d57806354f6127f146106605780635a8416b014610680575f80fd5b80634d4a7ae9116102b15780634d4a7ae9146105ee57806351dd844b14610601578063533086d41461061457806353ebe12914610627575f80fd5b80633c3f8d0e146105a257806340529b0f146105b5578063425d08e2146105c8578063462d5a84146105db575f80fd5b8063275c0595116103575780632f61088a116103275780632f61088a1461054657806330a130ba14610559578063353e5b751461056c57806338a699a41461057f575f80fd5b8063275c0595146104fa578063288026811461050d57806328f72e87146105205780632ae5819d14610533575f80fd5b80630fad0eb1116103925780630fad0eb11461049457806317c8c490146104a9578063228e42ec146104bc578063248a77dd146104e7575f80fd5b80630232ca49146103c35780630632b17d1461040b57806309648a9d146104365780630d3581811461046f575b5f80fd5b6103ee6103d1366004613376565b6001600160601b039081165f908152600460205260409020541690565b6040516001600160601b0390911681526020015b60405180910390f35b61041e61041936600461368a565b610a4c565b6040516001600160401b039091168152602001610402565b61045d6104443660046136c3565b5f90815260076020526040902054610100900460ff1690565b60405160ff9091168152602001610402565b61045d61047d3660046136f3565b60ff9081165f908152602081905260409020541690565b6104a76104a236600461370e565b610b0c565b005b6104a76104b73660046137ed565b610b2e565b6103ee6104ca366004613376565b6001600160601b039081165f908152600260205260409020541690565b6103ee6104f536600461384c565b610b6b565b6104a761050836600461388c565b610b88565b6104a761051b36600461395c565b610c20565b6104a761052e36600461399a565b610c48565b6104a761054136600461370e565b610c7d565b6104a7610554366004613a5d565b610c94565b6104a7610567366004613b8e565b610d32565b6104a761057a366004613bd0565b610dd0565b61059261058d3660046136c3565b610dec565b6040519015158152602001610402565b6104a76105b0366004613cd7565b610e74565b6104a76105c336600461370e565b610e9b565b6104a76105d6366004613eb4565b610eb2565b6104a76105e9366004613f26565b610eda565b6104a76105fc366004613fea565b610f1e565b6104a761060f366004614212565b610f46565b6103ee61062236600461384c565b610f6e565b6103ee61063536600461384c565b610f82565b6104a76106483660046142d2565b610f96565b6104a761065b366004614315565b610fbe565b61067361066e3660046136c3565b611116565b6040516104029190614391565b6104a761068e3660046143a3565b6111b8565b6106dc6106a1366004613376565b6001600160601b039081165f908152600260209081526040808320546003835281842054600490935292205491831693908316929190911690565b604080516001600160601b0394851681529284166020840152921691810191909152606001610402565b6104a76107143660046144a2565b611256565b6104a76107273660046144e5565b6112f4565b6104a761073a366004614527565b611325565b6104a761074d366004614542565b6113a7565b6104a7611434565b61076d6107683660046136c3565b6115b0565b604051610402919061455e565b6103ee610788366004613376565b6001600160601b039081165f908152600360205260409020541690565b6107ad6116d1565b6040516001600160e01b03199091168152602001610402565b6103ee6107d436600461384c565b611707565b6104a76107e7366004614542565b61171b565b6104a76107fa3660046145bc565b611769565b61087e61080d3660046136c3565b60408051608080820183525f8083526020808401829052838501829052606093840182905294815260078552839020835191820184525460ff80821683526101008204169482019490945263ffffffff620100008504811693820193909352600160301b9093049091169082015290565b60405161040291906145fe565b6104a761089936600461463f565b61179a565b6104a76108ac366004614542565b611838565b6103ee6108bf36600461384c565b611886565b6104a76108d2366004614682565b61189a565b6104a76108e536600461469e565b6118e7565b6104a76108f83660046146cb565b6118fd565b6104a761090b366004613f26565b611924565b61059261091e3660046136f3565b61194c565b61092b611998565b6040516001600160a01b039091168152602001610402565b6104a7610951366004614728565b6119b3565b6104a76109643660046148ae565b611a51565b6104a76109773660046149c6565b611a79565b6104a761098a366004614a1a565b611aa0565b6103ee61099d36600461384c565b611ac7565b6105926109b0366004614a6d565b60ff9283165f908152600160209081526040808320948616835293815283822092851682529190915220541690565b6109f26109ed366004614aa9565b611adb565b604051908152602001610402565b6104a7610a0e366004614ad5565b611b5c565b6104a7610a2136600461370e565b611b8d565b6104a7610a34366004614b17565b611ba4565b6104a7610a47366004614b59565b611bcc565b5f610a59335b5f36611bf4565b610a61611cf2565b604051630f37f38f60e41b81526001600160401b0382166004820152909150610b079073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610abe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae29190614b8e565b83604051602001610af39190614ba5565b604051602081830303815290604052611d82565b919050565b610b1533610a52565b610b29610b23836013612146565b82612191565b505050565b610b3733610a52565b610b29610b4584600b612146565b83604051602001610b569190614c77565b6040516020818303038152906040528361248e565b5f610b7533610a52565b610b7f8383612604565b90505b92915050565b610b9133610a52565b604051630f37f38f60e41b81526001600160401b0384166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f090602401602060405180830381865af4158015610beb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0f9190614b8e565b83604051602001610b569190614ba5565b610c2933610a52565b610b29610c37846011612146565b83604051602001610b569190614cdd565b610c5133610a52565b610c5a826126fd565b610c79610c6883600b612146565b82604051602001610af39190614c77565b5050565b610c8633610a52565b610b29610b23836014612146565b610c9d33610a52565b6040516355ee627560e01b8152610c799073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee627590610ce2906001600160c01b0319871690600401614d3b565b602060405180830381865af4158015610cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d219190614b8e565b82604051602001610af39190614d50565b610d3b33610a52565b6040516355ee627560e01b8152610c799073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590610d80906001600160c01b0319871690600401614d3b565b602060405180830381865af4158015610d9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dbf9190614b8e565b82604051602001610af39190614d7d565b610dd933610a52565b610de6610b2384846127ab565b50505050565b5f8181526007602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf906024015b602060405180830381865af4158015610e50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b829190614e1e565b610e7d33610a52565b610de6610e8a85856127ab565b83604051602001610b569190614e39565b610ea433610a52565b610b29610b2383601b612146565b610ebb33610a52565b610b29610ec9846013612146565b83604051602001610b569190614ea4565b610ee333610a52565b610c79610ef183600e612146565b82604051602001610f02919061501c565b604051602081830303815290604052610f1960ff90565b61248e565b610f2733610a52565b610c79610f35836014612146565b82604051602001610af391906150c5565b610f4f33610a52565b610b29610f5d84601d612146565b83604051602001610b5691906152b5565b5f610f7833610a52565b610b7f83836127fa565b5f610f8c33610a52565b610b7f83836128db565b610f9f33610a52565b610b29610fad84601b612146565b83604051602001610b569190615340565b60ff8381165f908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015611020573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110449190614e1e565b156110725760405163ea01ac1f60e01b815230600482015260ff841660248201526044015b60405180910390fd5b60ff808516908316146110b35760405163bae587e160e01b815230600482015260ff8085166024830152808616604483015283166064820152608401611069565b60ff8084165f90815260016020908152604080832088851684528252808320858516845290915290205416610de65760405163f33b49a360e01b815230600482015260ff8085166024830152808616604483015282166064820152608401611069565b5f81815260076020526040902060010180546060919061113590615399565b80601f016020809104026020016040519081016040528092919081815260200182805461116190615399565b80156111ac5780601f10611183576101008083540402835291602001916111ac565b820191905f5260205f20905b81548152906001019060200180831161118f57829003601f168201915b50505050509050919050565b6111c133610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee627590611206906001600160c01b0319881690600401614d3b565b602060405180830381865af4158015611221573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112459190614b8e565b83604051602001610b569190614d7d565b61125f33610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906112a4906001600160c01b0319881690600401614d3b565b602060405180830381865af41580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e39190614b8e565b83604051602001610b5691906153d1565b6112fd33610a52565b611306826126fd565b610c79611314836013612146565b82604051602001610af39190614ea4565b3361132e611998565b6001600160a01b0316816001600160a01b0316146113695760405162d1953b60e31b81526001600160a01b0382166004820152602401611069565b816001600160a01b03163b5f0361139e576040516361798f2f60e11b81526001600160a01b0383166004820152602401611069565b610c79826129bc565b6113b033610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906113f5906001600160c01b0319871690600401614d3b565b602060405180830381865af4158015611410573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b239190614b8e565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f811580156114785750825b90505f826001600160401b031660011480156114935750303b155b9050811580156114a1575080155b156114bf5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114e957845460ff60401b1916600160401b1785555b5f3390505f816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061154e9190615462565b905061155981612a1c565b611561612a30565b505083156115a957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6040805160c0810182525f91810182815260608083018490526080830184905260a0830193909352815260208101919091525f82815260076020908152604091829020825160c081018452815460ff808216958301958652610100820416606083015263ffffffff62010000820481166080840152600160301b9091041660a0820152928352600181018054919284019161164a90615399565b80601f016020809104026020016040519081016040528092919081815260200182805461167690615399565b80156116c15780601f10611698576101008083540402835291602001916116c1565b820191905f5260205f20905b8154815290600101906020018083116116a457829003601f168201915b5050505050815250509050919050565b5f805160206158be83398151915280545f9190600160a01b900460ff166116f8575f611701565b638fb3603760e01b5b91505090565b5f61171133610a52565b610b7f8383612a42565b61172433610a52565b6040516355ee627560e01b8152610b299073__$1919c6d2c69d787ccb2653a371d7e5737d$__906355ee6275906113f5906001600160c01b0319871690600401614d3b565b61177233610a52565b61177b826126fd565b610c7961178983601d612146565b82604051602001610af391906152b5565b6117a333610a52565b6040516355ee627560e01b8152610b299073__$32e9ecefef68cb354d118e0496fdd3f4bc$__906355ee6275906117e8906001600160c01b0319881690600401614d3b565b602060405180830381865af4158015611803573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118279190614b8e565b83604051602001610b569190614d50565b61184133610a52565b6040516355ee627560e01b8152610b299073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee6275906113f5906001600160c01b0319871690600401614d3b565b5f61189033610a52565b610b7f8383612b23565b6118a333610a52565b604051630f37f38f60e41b81526001600160401b0383166004820152610b299073__$b4c16f233b92c2c4124fb22a521f86c95b$__9063f37f38f0906024016113f5565b6118f033610a52565b610de6610b238484612c04565b61190633610a52565b610b2961191384846127ab565b82604051602001610af39190614e39565b61192d33610a52565b610c7961193b83600e612146565b82604051602001610af3919061501c565b60ff8181165f9081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401610e35565b5f805160206158be833981519152546001600160a01b031690565b6119bc33610a52565b6040516355ee627560e01b8152610c799073__$05887d5853069c88bcd4c0a2107db45f29$__906355ee627590611a01906001600160c01b0319871690600401614d3b565b602060405180830381865af4158015611a1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a409190614b8e565b82604051602001610af391906153d1565b611a5a33610a52565b610b29611a6884600d612146565b83604051602001610b5691906154c0565b611a8233610a52565b610de6611a8f8585612c04565b83604051602001610b569190615550565b611aa933610a52565b610b29611ab68484612c04565b82604051602001610af39190615550565b5f611ad133610a52565b610b7f8383612c50565b604051637a400b6760e11b815260ff8316600482015260ff19821660248201525f9073__$4b9aaffa8d044614668dad578b824b8eee$__9063f48016ce906044015b602060405180830381865af4158015611b38573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f9190614b8e565b611b6533610a52565b611b6e826126fd565b610c79611b7c83601b612146565b82604051602001610af39190615340565b611b9633610a52565b610b29610b2383601d612146565b611bad33610a52565b610c79611bbb83600d612146565b82604051602001610af391906154c0565b611bd533610a52565b610c79611be3836011612146565b82604051602001610af39190614cdd565b5f805160206158be8339815191525f80611c2c611c0f611998565b8730611c1e60045f8a8c6155f2565b611c2791615619565b612d31565b9150915081611cea5763ffffffff811615611cc757825460ff60a01b1916600160a01b178355611c5a611998565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c899392919061564f565b5f604051808303815f87803b158015611ca0575f80fd5b505af1158015611cb2573d5f803e3d5ffd5b5050845460ff60a01b1916855550611cea9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401611069565b505050505050565b600880545f9182611d028361568e565b9091555050600854604051633aac82ef60e11b8152600481019190915273__$b4c16f233b92c2c4124fb22a521f86c95b$__9063755905de90602401602060405180830381865af4158015611d59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906156b2565b905090565b604051634b00e98f60e11b8152600481018390525f9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015611dd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611df691906156cd565b60405163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d9190614e1e565b15611e90576040516307014a8d60e51b815260ff82166004820152602401611069565b5f83815260076020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611ef6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1a9190614e1e565b15611f4457604051633f92eac960e21b81526004810185905260ff83166024820152604401611069565b611f4d8261194c565b611f6f57604051636cb0978b60e11b815260ff83166004820152602401611069565b5f611f78612e39565b60ff8085165f908152602081905260408120549293509116835460ff86811661ffff1990921691909117610100918316919091021769ffffffffffffffff000019166201000063ffffffff851690810269ffffffff000000000000191691909117600160301b919091021784555f878152600760205260409020909150600101612002868261572c565b50604051634b00e98f60e11b8152600481018790527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612073573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061209791906156cd565b604051630713cfad60e31b81526004810189905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156120e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061210991906157e6565b6040805160ff938416815260ff199290921660208301529184168183015233606082015232608082015290519081900360a00190a1505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__90633889a4c890604401611b1d565b60405163037c8cb160e51b815260ff821660048201525f9073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af41580156121e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122079190614e1e565b156122285760405163093b89e160e11b815260048101849052602401611069565b505f82815260076020526040908190208054915163037c8cb160e51b8152610100830460ff16600482018190526201000090930463ffffffff16929073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af415801561229e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122c29190614e1e565b156122e35760405163566ebf7960e01b815260048101869052602401611069565b60ff808516146124605781546122ff90829060ff168187610fbe565b815461ff00191661010060ff861602178255604051634b00e98f60e11b8152600481018690527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123a591906156cd565b604051630713cfad60e31b81526004810188905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af41580156123f3573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061241791906157e6565b6040805160ff938416815260ff1990921660208301528285169082015290861660608201523360808201523260a082015263ffffffff851660c082015260e00160405180910390a15b612468612e39565b825463ffffffff91909116620100000265ffffffff000019909116179091555092915050565b5f6124998483612191565b5f8581526007602052604090209091506001016124b6848261572c565b50604051634b00e98f60e11b8152600481018590527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$4b9aaffa8d044614668dad578b824b8eee$__90639601d31e90602401602060405180830381865af4158015612527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061254b91906156cd565b604051630713cfad60e31b81526004810187905273__$4b9aaffa8d044614668dad578b824b8eee$__9063389e7d6890602401602060405180830381865af4158015612599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125bd91906157e6565b6040805160ff938416815260ff199290921660208301529185168183015233606082015232608082015263ffffffff841660a082015290519081900360c00190a150505050565b6001600160601b0382165f90815260056020526040812054839060ff1661264957604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f9081526003602052604090205461266d911684612ea5565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb08c267f0a5e1593171021f433a0805c3818d5b57ea45f0609ddb7163dc228a7916126e59187918791879163ffffffff90911690615801565b60405180910390a16126f684612f2a565b5092915050565b6001600160601b0381165f9081526005602052604090205460ff1615612741576040516314d5804160e01b81526001600160601b0382166004820152602401611069565b6001600160601b0381165f908152600560205260409020805460ff1916600117905561276c81612f2a565b6040516001600160601b03821681527f1c26f28e2d8f145150c4243339c6b20813ea2bbc4e6f19ea2c9905060c0411a99060200160405180910390a150565b604051632867b75960e21b815264ffffffffff821660048201526001600160601b03831660248201525f9073__$0f9396e6447a4be57af83e53f51d234633$__9063a19edd6490604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff1661283f57604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260046020526040902054612863911684612fc7565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f72d83b31d9d848984842915e1bf55e0b10f5c5c208ea2e893df958de0472fc62916126e59187918791879163ffffffff90911690615801565b6001600160601b0382165f90815260056020526040812054839060ff1661292057604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260036020526040902054612944911684612fc7565b6001600160601b038581165f90815260036020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fb254741d2e56b5fc092dabf9d2224554522d8bc0c08a1ffdce59fe0acae2bfc9916126e59187918791879163ffffffff90911690615801565b5f805160206158be83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612a24613011565b612a2d8161305a565b50565b612a38613011565b612a4061306b565b565b6001600160601b0382165f90815260056020526040812054839060ff16612a8757604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260026020526040902054612aab911684612ea5565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f5b04742c456b2820460f06a699b464350ad00ad419b30c9bb74699e0d1e64b66916126e59187918791879163ffffffff90911690615801565b6001600160601b0382165f90815260056020526040812054839060ff16612b6857604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260026020526040902054612b8c911684612fc7565b6001600160601b038581165f90815260026020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507f4068631e6ddfc25f1831c04cd7b41e313620779732e776b6e8e62273fccd6e6d916126e59187918791879163ffffffff90911690615801565b604051637d56159160e11b815261ffff821660048201526001600160601b03831660248201525f9073__$9e81531fe4994e01e99541f86b55500b4b$__9063faac2b2290604401611b1d565b6001600160601b0382165f90815260056020526040812054839060ff16612c9557604051631e94ffd760e11b81526001600160601b0382166004820152602401611069565b6001600160601b038085165f90815260046020526040902054612cb9911684612ea5565b6001600160601b038581165f90815260046020908152604080832080546001600160601b03191694861694909417909355600690528190205490519193507fee2ce932811dedb09eb973e9da29180e86fe3bab034360124e0fd962f795daad916126e59187918791879163ffffffff90911690615801565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612d9f9190615830565b5f60405180830381855afa9150503d805f8114612dd7576040519150601f19603f3d011682016040523d82523d5f602084013e612ddc565b606091505b50915091508115612e2e576040815110612e0e5780806020019051810190612e049190615846565b9094509250612e2e565b6020815110612e2e5780806020019051810190612e2b9190614e1e565b93505b505094509492505050565b5f73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d9190615873565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612f06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7f919061588e565b73__$f55ca14f1ddce1b88fe30d23ae45f595f4$__63e8b7afe36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f959190615873565b6001600160601b03919091165f908152600660205260409020805463ffffffff191663ffffffff909216919091179055565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612eeb565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16612a4057604051631afcd79f60e31b815260040160405180910390fd5b613062613011565b612a2d816129bc565b6130736130c3565b61307b613109565b613083613136565b61308b61317a565b613093613196565b61309b6131d4565b6130a36131f7565b6130ab61321f565b6130b361325e565b6130bb613268565b612a4061327c565b6130d0601d5b60056132a4565b6130df601d5b6005606e6132e6565b6130ee601d60055b60c86132e6565b6130fd601d5b606e60056132e6565b612a40601d606e6130e7565b613113600b6130c9565b61311d600b6130d6565b613127600b6130f4565b612a40600b5b606e60d26132e6565b6131426013600a6132a4565b6131516013600a5b60146132e6565b6131606013600a5b601e6132e6565b61316e6013600a60286132e6565b612a40601360286130e7565b61318760145b603c6132a4565b612a4060145b603c60dc6132e6565b6131a2601560326132a4565b6131ae6015603261314a565b6131bc6015603260336132e6565b6131c860156032613159565b612a40601560336130e7565b6131de6016613180565b6131e8601661318d565b612a406016603c5b60486132e6565b61320160176130c9565b61320b60176130d6565b61321560176130f4565b612a40601761312d565b61322960196130c9565b613238601960055b60466132e6565b6132466019600560076132e6565b61325260196007613231565b612a40601960056131f0565b612a4060116130c9565b613272600d6130c9565b612a40600e6130c9565b61328660106130c9565b613290601b6130c9565b61329a601a6130c9565b612a40601c6130c9565b60ff8281165f9081526020819052604090205416156132c5576132c56158a9565b60ff9182165f908152602081905260409020805460ff191691909216179055565b60ff8084165f908152600160209081526040808320868516845282528083208585168452909152902054161561331e5761331e6158a9565b60ff9283165f9081526001602081815260408084209587168452948152848320939095168252919093529120805460ff19169091179055565b6001600160601b0381168114612a2d575f80fd5b8035610b0781613357565b5f60208284031215613386575f80fd5b813561339181613357565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b60405161010081016001600160401b03811182821017156133cf576133cf613398565b60405290565b604051608081016001600160401b03811182821017156133cf576133cf613398565b60405160e081016001600160401b03811182821017156133cf576133cf613398565b604080519081016001600160401b03811182821017156133cf576133cf613398565b60405161012081016001600160401b03811182821017156133cf576133cf613398565b60405161020081016001600160401b03811182821017156133cf576133cf613398565b60405161024081016001600160401b03811182821017156133cf576133cf613398565b60405160c081016001600160401b03811182821017156133cf576133cf613398565b604051601f8201601f191681016001600160401b03811182821017156134ee576134ee613398565b604052919050565b5f82601f830112613505575f80fd5b8135602083015f806001600160401b0384111561352457613524613398565b50601f8301601f1916602001613539816134c6565b91505082815285838301111561354d575f80fd5b828260208301375f92810160200192909252509392505050565b64ffffffffff81168114612a2d575f80fd5b8035610b0781613567565b8015158114612a2d575f80fd5b8035610b0781613584565b5f61010082840312156135ad575f80fd5b6135b56133ac565b90506135c08261336b565b815260208201356001600160401b038111156135da575f80fd5b6135e6848285016134f6565b6020830152506135f86040830161336b565b604082015260608201356001600160401b03811115613615575f80fd5b613621848285016134f6565b60608301525060808201356001600160401b0381111561363f575f80fd5b61364b848285016134f6565b60808301525061365d60a08301613579565b60a082015261366e60c08301613579565b60c082015261367f60e08301613591565b60e082015292915050565b5f6020828403121561369a575f80fd5b81356001600160401b038111156136af575f80fd5b6136bb8482850161359c565b949350505050565b5f602082840312156136d3575f80fd5b5035919050565b60ff81168114612a2d575f80fd5b8035610b07816136da565b5f60208284031215613703575f80fd5b8135613391816136da565b5f806040838503121561371f575f80fd5b823561372a81613357565b9150602083013561373a816136da565b809150509250929050565b6001600160a01b0381168114612a2d575f80fd5b5f60808284031215613769575f80fd5b6137716133d5565b905081356001600160401b03811115613788575f80fd5b613794848285016134f6565b82525060208201356137a581613745565b602082015260408201356137b881613745565b604082015260608201356001600160401b038111156137d5575f80fd5b6137e1848285016134f6565b60608301525092915050565b5f805f606084860312156137ff575f80fd5b833561380a81613357565b925060208401356001600160401b03811115613824575f80fd5b61383086828701613759565b9250506040840135613841816136da565b809150509250925092565b5f806040838503121561385d575f80fd5b823561386881613357565b9150602083013561373a81613357565b6001600160401b0381168114612a2d575f80fd5b5f805f6060848603121561389e575f80fd5b83356138a981613878565b925060208401356001600160401b038111156138c3575f80fd5b6138308682870161359c565b5f60e082840312156138df575f80fd5b6138e76133f7565b905081356138f481613357565b8152602082013561390481613584565b6020820152604082013561391781613584565b6040820152606082013561392a81613584565b606082015261393b60808301613591565b608082015260a0828101359082015260c09182013591810191909152919050565b5f805f610120848603121561396f575f80fd5b833561397a81613357565b925061398985602086016138cf565b9150610100840135613841816136da565b5f80604083850312156139ab575f80fd5b82356139b681613357565b915060208301356001600160401b038111156139d0575f80fd5b6139dc85828601613759565b9150509250929050565b6001600160c01b031981168114612a2d575f80fd5b8035610b07816139e6565b5f60408284031215613a16575f80fd5b613a1e613419565b90508135613a2b81613357565b815260208201356001600160401b03811115613a45575f80fd5b613a51848285016134f6565b60208301525092915050565b5f8060408385031215613a6e575f80fd5b8235613a79816139e6565b915060208301356001600160401b03811115613a93575f80fd5b6139dc85828601613a06565b63ffffffff81168114612a2d575f80fd5b8035610b0781613a9f565b5f6101208284031215613acc575f80fd5b613ad461343b565b905081356001600160401b03811115613aeb575f80fd5b613af7848285016134f6565b825250602082810135908201526040808301359082015260608083013590820152613b2460808301613ab0565b6080820152613b3560a08301613ab0565b60a0820152613b4660c08301613591565b60c0820152613b5760e08301613591565b60e08201526101008201356001600160401b03811115613b75575f80fd5b613b81848285016134f6565b6101008301525092915050565b5f8060408385031215613b9f575f80fd5b8235613baa816139e6565b915060208301356001600160401b03811115613bc4575f80fd5b6139dc85828601613abb565b5f805f60608486031215613be2575f80fd5b8335613bed81613357565b92506020840135613bfd81613567565b91506040840135613841816136da565b61ffff81168114612a2d575f80fd5b8035610b0781613c0d565b5f60a08284031215613c37575f80fd5b60405160a081016001600160401b0381118282101715613c5957613c59613398565b6040529050808235613c6a81613c0d565b81526020830135613c7a81613357565b60208201526040830135613c8d81613745565b604082015260608301356001600160401b03811115613caa575f80fd5b613cb6858286016134f6565b6060830152506080830135613cca81613567565b6080919091015292915050565b5f805f8060808587031215613cea575f80fd5b8435613cf581613357565b93506020850135613d0581613567565b925060408501356001600160401b03811115613d1f575f80fd5b613d2b87828801613c27565b9250506060850135613d3c816136da565b939692955090935050565b5f6102008284031215613d58575f80fd5b613d6061345e565b9050613d6b8261336b565b8152613d796020830161336b565b6020820152613d8a604083016139fb565b6040820152613d9b606083016139fb565b6060820152613dac6080830161336b565b6080820152613dbd60a0830161336b565b60a0820152613dce60c08301613579565b60c082015260e08201356001600160401b03811115613deb575f80fd5b613df7848285016134f6565b60e0830152506101008201356001600160401b03811115613e16575f80fd5b613e22848285016134f6565b61010083015250613e366101208301613c1c565b610120820152613e496101408301613c1c565b610140820152613e5c610160830161336b565b610160820152613e6f610180830161336b565b610180820152613e826101a08301613579565b6101a0820152613e956101c08301613579565b6101c0820152613ea86101e08301613579565b6101e082015292915050565b5f805f60608486031215613ec6575f80fd5b8335613ed181613357565b925060208401356001600160401b03811115613eeb575f80fd5b61383086828701613d47565b5f60408284031215613f07575f80fd5b613f0f613419565b823581526020928301359281019290925250919050565b5f808284036101e0811215613f39575f80fd5b8335613f4481613357565b92506101c0601f1982011215613f58575f80fd5b50613f616133f7565b613f6e8560208601613ef7565b8152613f7d8560608601613ef7565b6020820152613f8f8560a08601613ef7565b6040820152613fa18560e08601613ef7565b6060820152613fb4856101208601613ef7565b6080820152613fc7856101608601613ef7565b60a0820152613fda856101a08601613ef7565b60c0820152809150509250929050565b5f80828403610260811215613ffd575f80fd5b833561400881613357565b9250610240601f198201121561401c575f80fd5b50614025613481565b6140316020850161336b565b815261403f6040850161336b565b60208201526140506060850161336b565b60408201526140616080850161336b565b606082015261407260a0850161336b565b608082015261408360c0850161336b565b60a082015261409460e0850161336b565b60c08201526140a6610100850161336b565b60e08201526140b8610120850161336b565b6101008201526140cb610140850161336b565b6101208201526140de610160850161336b565b6101408201526140f1610180850161336b565b6101608201526141046101a0850161336b565b6101808201526141176101c0850161336b565b6101a082015261412a6101e0850161336b565b6101c082015261413d610200850161336b565b6101e0820152614150610220850161336b565b610200820152614163610240850161336b565b610220820152809150509250929050565b5f60e08284031215614184575f80fd5b61418c6134a4565b9050813561419981613357565b81526141a88360208401613ef7565b602082015260608201356001600160401b038111156141c5575f80fd5b6141d1848285016134f6565b60408301525060808201356141e581613567565b60608201526141f660a08301613579565b608082015261420760c08301613579565b60a082015292915050565b5f805f60608486031215614224575f80fd5b833561422f81613357565b925060208401356001600160401b03811115614249575f80fd5b61383086828701614174565b5f60808284031215614265575f80fd5b61426d6133d5565b9050813561427a816139e6565b8152602082013561428a81613584565b602082015260408201356001600160401b038111156142a7575f80fd5b6142b3848285016134f6565b60408301525060608201356142c781613a9f565b606082015292915050565b5f805f606084860312156142e4575f80fd5b83356142ef81613357565b925060208401356001600160401b03811115614309575f80fd5b61383086828701614255565b5f805f8060808587031215614328575f80fd5b8435614333816136da565b93506020850135614343816136da565b92506040850135614353816136da565b91506060850135613d3c816136da565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b7f6020830184614363565b5f805f606084860312156143b5575f80fd5b83356143c0816139e6565b925060208401356001600160401b038111156143da575f80fd5b61383086828701613abb565b5f60e082840312156143f6575f80fd5b6143fe6133f7565b90506144098261336b565b815260208201356001600160401b03811115614423575f80fd5b61442f848285016134f6565b6020830152506040828101359082015261444b60608301613ab0565b606082015261445c60808301613ab0565b608082015261446d60a08301613579565b60a082015260c08201356001600160401b0381111561448a575f80fd5b614496848285016134f6565b60c08301525092915050565b5f805f606084860312156144b4575f80fd5b83356144bf816139e6565b925060208401356001600160401b038111156144d9575f80fd5b613830868287016143e6565b5f80604083850312156144f6575f80fd5b823561450181613357565b915060208301356001600160401b0381111561451b575f80fd5b6139dc85828601613d47565b5f60208284031215614537575f80fd5b813561339181613745565b5f8060408385031215614553575f80fd5b823561372a816139e6565b602081526145a360208201835160ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f602083015160a0808401526136bb60c0840182614363565b5f80604083850312156145cd575f80fd5b82356145d881613357565b915060208301356001600160401b038111156145f2575f80fd5b6139dc85828601614174565b60808101610b82828460ff815116825260ff602082015116602083015263ffffffff604082015116604083015263ffffffff60608201511660608301525050565b5f805f60608486031215614651575f80fd5b833561465c816139e6565b925060208401356001600160401b03811115614676575f80fd5b61383086828701613a06565b5f8060408385031215614693575f80fd5b823561372a81613878565b5f805f606084860312156146b0575f80fd5b83356146bb81613357565b92506020840135613bfd81613c0d565b5f805f606084860312156146dd575f80fd5b83356146e881613357565b925060208401356146f881613567565b915060408401356001600160401b03811115614712575f80fd5b61471e86828701613c27565b9150509250925092565b5f8060408385031215614739575f80fd5b8235614744816139e6565b915060208301356001600160401b0381111561475e575f80fd5b6139dc858286016143e6565b5f82601f830112614779575f80fd5b81356001600160401b0381111561479257614792613398565b8060051b6147a2602082016134c6565b918252602081850181019290810190868411156147bd575f80fd5b6020860192505b838310156147e85782356147d781613357565b8252602092830192909101906147c4565b9695505050505050565b5f6101008284031215614803575f80fd5b61480b6133ac565b905061481682613591565b815261482460208301613591565b602082015261483560408301613591565b6040820152614846606083016136e8565b6060820152614857608083016136e8565b608082015261486860a0830161336b565b60a082015261487960c0830161336b565b60c082015260e08201356001600160401b03811115614896575f80fd5b6148a28482850161476a565b60e08301525092915050565b5f805f606084860312156148c0575f80fd5b83356148cb81613357565b925060208401356001600160401b038111156148e5575f80fd5b613830868287016147f2565b803562ffffff81168114610b07575f80fd5b5f60e08284031215614913575f80fd5b61491b6133f7565b90506149268261336b565b81526149346020830161336b565b6020820152614945604083016148f1565b6040820152614956606083016148f1565b606082015260808201356001600160401b03811115614973575f80fd5b61497f848285016134f6565b60808301525060a08201356001600160401b0381111561499d575f80fd5b6149a9848285016134f6565b60a0830152506149bb60c08301613579565b60c082015292915050565b5f805f80608085870312156149d9575f80fd5b84356149e481613357565b935060208501356149f481613c0d565b925060408501356001600160401b03811115614a0e575f80fd5b613d2b87828801614903565b5f805f60608486031215614a2c575f80fd5b8335614a3781613357565b92506020840135614a4781613c0d565b915060408401356001600160401b03811115614a61575f80fd5b61471e86828701614903565b5f805f60608486031215614a7f575f80fd5b8335614a8a816136da565b92506020840135613bfd816136da565b60ff1981168114612a2d575f80fd5b5f8060408385031215614aba575f80fd5b8235614ac5816136da565b9150602083013561373a81614a9a565b5f8060408385031215614ae6575f80fd5b8235614af181613357565b915060208301356001600160401b03811115614b0b575f80fd5b6139dc85828601614255565b5f8060408385031215614b28575f80fd5b8235614b3381613357565b915060208301356001600160401b03811115614b4d575f80fd5b6139dc858286016147f2565b5f806101008385031215614b6b575f80fd5b8235614b7681613357565b9150614b8584602085016138cf565b90509250929050565b5f60208284031215614b9e575f80fd5b5051919050565b60208152614bbf6020820183516001600160601b03169052565b5f60208301516101006040840152614bdb610120840182614363565b90506040840151614bf760608501826001600160601b03169052565b506060840151838203601f19016080850152614c138282614363565b9150506080840151601f198483030160a0850152614c318282614363565b91505060a0840151614c4c60c085018264ffffffffff169052565b5060c084015164ffffffffff811660e08501525060e08401518015156101008501525b509392505050565b602081525f825160806020840152614c9260a0840182614363565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f19016080860152909150614cd48282614363565b95945050505050565b5f60e0820190506001600160601b03835116825260208301511515602083015260408301511515604083015260608301511515606083015260808301511515608083015260a083015160a083015260c083015160c083015292915050565b6001600160c01b031991909116815260200190565b602081526001600160601b0382511660208201525f60208301516040808401526136bb6060840182614363565b602081525f82516101206020840152614d9a610140840182614363565b90506020840151604084015260408401516060840152606084015160808401526080840151614dd160a085018263ffffffff169052565b5060a084015163ffffffff811660c08501525060c084015180151560e08501525060e084015180151561010085015250610100840151838203601f1901610120850152614cd48282614363565b5f60208284031215614e2e575f80fd5b815161339181613584565b6020815261ffff82511660208201526001600160601b03602083015116604082015260018060a01b0360408301511660608201525f606083015160a06080840152614e8760c0840182614363565b905064ffffffffff60808501511660a08401528091505092915050565b60208152614ebe6020820183516001600160601b03169052565b5f6020830151614ed960408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b0319811660808401525060808301516001600160601b03811660a08401525060a08301516001600160601b03811660c08401525060c083015164ffffffffff811660e08401525060e0830151610200610100840152614f5f610220840182614363565b9050610100840151601f1984830301610120850152614f7e8282614363565b915050610120840151614f9861014085018261ffff169052565b5061014084015161ffff8116610160850152506101608401516001600160601b038116610180850152506101808401516001600160601b0381166101a0850152506101a084015164ffffffffff81166101c0850152506101c084015164ffffffffff81166101e0850152506101e084015164ffffffffff8116610200850152614c6f565b815180518252602090810151908201526101c081016020838101518051604085015290810151606084015250604083015180516080840152602081015160a0840152506060830151805160c0840152602081015160e0840152506080830151805161010084015260208101516101208401525060a0830151805161014084015260208101516101608401525060c0830151805161018084015260208101516101a08401526126f6565b81516001600160601b03168152610240810160208301516150f160208401826001600160601b03169052565b50604083015161510c60408401826001600160601b03169052565b50606083015161512760608401826001600160601b03169052565b50608083015161514260808401826001600160601b03169052565b5060a083015161515d60a08401826001600160601b03169052565b5060c083015161517860c08401826001600160601b03169052565b5060e083015161519360e08401826001600160601b03169052565b506101008301516151b06101008401826001600160601b03169052565b506101208301516151cd6101208401826001600160601b03169052565b506101408301516151ea6101408401826001600160601b03169052565b506101608301516152076101608401826001600160601b03169052565b506101808301516152246101808401826001600160601b03169052565b506101a08301516152416101a08401826001600160601b03169052565b506101c083015161525e6101c08401826001600160601b03169052565b506101e083015161527b6101e08401826001600160601b03169052565b506102008301516152986102008401826001600160601b03169052565b506102208301516126f66102208401826001600160601b03169052565b602081526001600160601b0382511660208201525f60208301516152e6604084018280518252602090810151910152565b50604083015160e06080840152615301610100840182614363565b905064ffffffffff60608501511660a084015264ffffffffff60808501511660c084015264ffffffffff60a08501511660e08401528091505092915050565b602081526001600160401b0360c01b82511660208201526020820151151560408201525f60408301516080606084015261537d60a0840182614363565b905063ffffffff60608501511660808401528091505092915050565b600181811c908216806153ad57607f821691505b6020821081036153cb57634e487b7160e01b5f52602260045260245ffd5b50919050565b602081526001600160601b0382511660208201525f602083015160e06040840152615400610100840182614363565b90506040840151606084015263ffffffff6060850151166080840152608084015161543360a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e0850152614cd48282614363565b5f60208284031215615472575f80fd5b815161339181613745565b5f8151808452602084019350602083015f5b828110156154b65781516001600160601b031686526020958601959091019060010161548f565b5093949350505050565b602081528151151560208201526020820151151560408201525f60408301516154ed606084018215159052565b50606083015160ff8116608084015250608083015160ff811660a08401525060a08301516001600160601b03811660c08401525060c08301516001600160601b03811660e08401525060e0830151610100808401526136bb61012084018261547d565b602081526001600160601b0382511660208201526001600160601b0360208301511660408201525f604083015161558e606084018262ffffff169052565b50606083015162ffffff8116608084015250608083015160e060a08401526155ba610100840182614363565b905060a0840151601f198483030160c08501526155d78282614363565b91505060c0840151614c6f60e085018264ffffffffff169052565b5f8085851115615600575f80fd5b8386111561560c575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156126f6576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f600182016156ab57634e487b7160e01b5f52601160045260245ffd5b5060010190565b5f602082840312156156c2575f80fd5b815161339181613878565b5f602082840312156156dd575f80fd5b8151613391816136da565b601f821115610b2957805f5260205f20601f840160051c8101602085101561570d5750805b601f840160051c820191505b818110156115a9575f8155600101615719565b81516001600160401b0381111561574557615745613398565b615759816157538454615399565b846156e8565b6020601f82116001811461578b575f83156157745750848201515b5f19600385901b1c1916600184901b1784556115a9565b5f84815260208120601f198516915b828110156157ba578785015182556020948501946001909201910161579a565b50848210156157d757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f602082840312156157f6575f80fd5b815161339181614a9a565b6001600160601b03948516815292841660208401529216604082015263ffffffff909116606082015260800190565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615857575f80fd5b825161586281613584565b602084015190925061373a81613a9f565b5f60208284031215615883575f80fd5b815161339181613a9f565b5f6020828403121561589e575f80fd5b815161339181613357565b634e487b7160e01b5f52600160045260245ffdfef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212203b05471b71306e90c83905b27942d379721d7fc0abb2fe076302e68802c9c00464736f6c634300081a0033",
3328
+ "linkReferences": {
3329
+ "contracts/type/Amount.sol": {
3330
+ "AmountLib": [
3331
+ {
3332
+ "length": 20,
3333
+ "start": 12013
3334
+ },
3335
+ {
3336
+ "length": 20,
3337
+ "start": 12303
3338
+ }
3339
+ ]
3340
+ },
3341
+ "contracts/type/Blocknumber.sol": {
3342
+ "BlocknumberLib": [
3343
+ {
3344
+ "length": 20,
3345
+ "start": 11868
3346
+ },
3347
+ {
3348
+ "length": 20,
3349
+ "start": 12108
3350
+ }
3351
+ ]
3352
+ },
3353
+ "contracts/type/ClaimId.sol": {
3354
+ "ClaimIdLib": [
3355
+ {
3356
+ "length": 20,
3357
+ "start": 11342
3358
+ }
3359
+ ]
3360
+ },
3361
+ "contracts/type/DistributorType.sol": {
3362
+ "DistributorTypeLib": [
3363
+ {
3364
+ "length": 20,
3365
+ "start": 3438
3366
+ },
3367
+ {
3368
+ "length": 20,
3369
+ "start": 4596
3370
+ },
3371
+ {
3372
+ "length": 20,
3373
+ "start": 5975
3374
+ }
3375
+ ]
3376
+ },
3377
+ "contracts/type/Key32.sol": {
3378
+ "Key32Lib": [
3379
+ {
3380
+ "length": 20,
3381
+ "start": 6943
3382
+ },
3383
+ {
3384
+ "length": 20,
3385
+ "start": 7610
3386
+ },
3387
+ {
3388
+ "length": 20,
3389
+ "start": 8283
3390
+ },
3391
+ {
3392
+ "length": 20,
3393
+ "start": 8397
3394
+ },
3395
+ {
3396
+ "length": 20,
3397
+ "start": 9065
3398
+ },
3399
+ {
3400
+ "length": 20,
3401
+ "start": 9179
3402
+ },
3403
+ {
3404
+ "length": 20,
3405
+ "start": 9487
3406
+ },
3407
+ {
3408
+ "length": 20,
3409
+ "start": 9601
3410
+ }
3411
+ ]
3412
+ },
3413
+ "contracts/type/NftId.sol": {
3414
+ "NftIdLib": [
3415
+ {
3416
+ "length": 20,
3417
+ "start": 8591
3418
+ }
3419
+ ]
3420
+ },
3421
+ "contracts/type/ObjectType.sol": {
3422
+ "ObjectTypeLib": [
3423
+ {
3424
+ "length": 20,
3425
+ "start": 7729
3426
+ }
3427
+ ]
3428
+ },
3429
+ "contracts/type/PayoutId.sol": {
3430
+ "PayoutIdLib": [
3431
+ {
3432
+ "length": 20,
3433
+ "start": 10232
3434
+ }
3435
+ ]
3436
+ },
3437
+ "contracts/type/Referral.sol": {
3438
+ "ReferralLib": [
3439
+ {
3440
+ "length": 20,
3441
+ "start": 4754
3442
+ },
3443
+ {
3444
+ "length": 20,
3445
+ "start": 6260
3446
+ },
3447
+ {
3448
+ "length": 20,
3449
+ "start": 6639
3450
+ }
3451
+ ]
3452
+ },
3453
+ "contracts/type/RequestId.sol": {
3454
+ "RequestIdLib": [
3455
+ {
3456
+ "length": 20,
3457
+ "start": 2726
3458
+ },
3459
+ {
3460
+ "length": 20,
3461
+ "start": 3027
3462
+ },
3463
+ {
3464
+ "length": 20,
3465
+ "start": 6373
3466
+ },
3467
+ {
3468
+ "length": 20,
3469
+ "start": 7489
3470
+ }
3471
+ ]
3472
+ },
3473
+ "contracts/type/RiskId.sol": {
3474
+ "RiskIdLib": [
3475
+ {
3476
+ "length": 20,
3477
+ "start": 3280
3478
+ },
3479
+ {
3480
+ "length": 20,
3481
+ "start": 5091
3482
+ },
3483
+ {
3484
+ "length": 20,
3485
+ "start": 6102
3486
+ }
3487
+ ]
3488
+ },
3489
+ "contracts/type/StateId.sol": {
3490
+ "StateIdLib": [
3491
+ {
3492
+ "length": 20,
3493
+ "start": 3639
3494
+ },
3495
+ {
3496
+ "length": 20,
3497
+ "start": 4104
3498
+ },
3499
+ {
3500
+ "length": 20,
3501
+ "start": 6550
3502
+ },
3503
+ {
3504
+ "length": 20,
3505
+ "start": 7902
3506
+ },
3507
+ {
3508
+ "length": 20,
3509
+ "start": 8651
3510
+ },
3511
+ {
3512
+ "length": 20,
3513
+ "start": 8838
3514
+ }
3515
+ ]
3516
+ }
3517
+ },
3518
+ "deployedLinkReferences": {
3519
+ "contracts/type/Amount.sol": {
3520
+ "AmountLib": [
3521
+ {
3522
+ "length": 20,
3523
+ "start": 11981
3524
+ },
3525
+ {
3526
+ "length": 20,
3527
+ "start": 12271
3528
+ }
3529
+ ]
3530
+ },
3531
+ "contracts/type/Blocknumber.sol": {
3532
+ "BlocknumberLib": [
3533
+ {
3534
+ "length": 20,
3535
+ "start": 11836
3536
+ },
3537
+ {
3538
+ "length": 20,
3539
+ "start": 12076
3540
+ }
3541
+ ]
3542
+ },
3543
+ "contracts/type/ClaimId.sol": {
3544
+ "ClaimIdLib": [
3545
+ {
3546
+ "length": 20,
3547
+ "start": 11310
3548
+ }
3549
+ ]
3550
+ },
3551
+ "contracts/type/DistributorType.sol": {
3552
+ "DistributorTypeLib": [
3553
+ {
3554
+ "length": 20,
3555
+ "start": 3406
3556
+ },
3557
+ {
3558
+ "length": 20,
3559
+ "start": 4564
3560
+ },
3561
+ {
3562
+ "length": 20,
3563
+ "start": 5943
3564
+ }
3565
+ ]
3566
+ },
3567
+ "contracts/type/Key32.sol": {
3568
+ "Key32Lib": [
3569
+ {
3570
+ "length": 20,
3571
+ "start": 6911
3572
+ },
3573
+ {
3574
+ "length": 20,
3575
+ "start": 7578
3576
+ },
3577
+ {
3578
+ "length": 20,
3579
+ "start": 8251
3580
+ },
3581
+ {
3582
+ "length": 20,
3583
+ "start": 8365
3584
+ },
3585
+ {
3586
+ "length": 20,
3587
+ "start": 9033
3588
+ },
3589
+ {
3590
+ "length": 20,
3591
+ "start": 9147
3592
+ },
3593
+ {
3594
+ "length": 20,
3595
+ "start": 9455
3596
+ },
3597
+ {
3598
+ "length": 20,
3599
+ "start": 9569
3600
+ }
3601
+ ]
3602
+ },
3603
+ "contracts/type/NftId.sol": {
3604
+ "NftIdLib": [
3605
+ {
3606
+ "length": 20,
3607
+ "start": 8559
3608
+ }
3609
+ ]
3610
+ },
3611
+ "contracts/type/ObjectType.sol": {
3612
+ "ObjectTypeLib": [
3613
+ {
3614
+ "length": 20,
3615
+ "start": 7697
3616
+ }
3617
+ ]
3618
+ },
3619
+ "contracts/type/PayoutId.sol": {
3620
+ "PayoutIdLib": [
3621
+ {
3622
+ "length": 20,
3623
+ "start": 10200
3624
+ }
3625
+ ]
3626
+ },
3627
+ "contracts/type/Referral.sol": {
3628
+ "ReferralLib": [
3629
+ {
3630
+ "length": 20,
3631
+ "start": 4722
3632
+ },
3633
+ {
3634
+ "length": 20,
3635
+ "start": 6228
3636
+ },
3637
+ {
3638
+ "length": 20,
3639
+ "start": 6607
3640
+ }
3641
+ ]
3642
+ },
3643
+ "contracts/type/RequestId.sol": {
3644
+ "RequestIdLib": [
3645
+ {
3646
+ "length": 20,
3647
+ "start": 2694
3648
+ },
3649
+ {
3650
+ "length": 20,
3651
+ "start": 2995
3652
+ },
3653
+ {
3654
+ "length": 20,
3655
+ "start": 6341
3656
+ },
3657
+ {
3658
+ "length": 20,
3659
+ "start": 7457
3660
+ }
3661
+ ]
3662
+ },
3663
+ "contracts/type/RiskId.sol": {
3664
+ "RiskIdLib": [
3665
+ {
3666
+ "length": 20,
3667
+ "start": 3248
3668
+ },
3669
+ {
3670
+ "length": 20,
3671
+ "start": 5059
3672
+ },
3673
+ {
3674
+ "length": 20,
3675
+ "start": 6070
3676
+ }
3677
+ ]
3678
+ },
3679
+ "contracts/type/StateId.sol": {
3680
+ "StateIdLib": [
3681
+ {
3682
+ "length": 20,
3683
+ "start": 3607
3684
+ },
3685
+ {
3686
+ "length": 20,
3687
+ "start": 4072
3688
+ },
3689
+ {
3690
+ "length": 20,
3691
+ "start": 6518
3692
+ },
3693
+ {
3694
+ "length": 20,
3695
+ "start": 7870
3696
+ },
3697
+ {
3698
+ "length": 20,
3699
+ "start": 8619
3700
+ },
3701
+ {
3702
+ "length": 20,
3703
+ "start": 8806
3704
+ }
3705
+ ]
3706
+ }
3707
+ }
3708
+ }