@etherisc/gif-next 0.0.2-ffba655 → 3.0.0-05a0348-829

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 (709) hide show
  1. package/README.md +285 -68
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1061 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +806 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +837 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1735 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2053 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1416 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +817 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/access → authorization}/IAccess.sol/IAccess.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1412 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +465 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +407 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +652 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1140 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +844 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +845 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1882 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +950 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +744 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1357 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1399 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +844 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1963 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +844 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  52. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.dbg.json +4 -0
  53. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.json +799 -0
  54. package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.dbg.json +4 -0
  55. package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.json +229 -0
  56. package/artifacts/contracts/examples/flight/FlightNft.sol/FlightNft.dbg.json +4 -0
  57. package/artifacts/contracts/examples/flight/FlightNft.sol/FlightNft.json +801 -0
  58. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.json +1278 -0
  60. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.json +896 -0
  62. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.dbg.json +4 -0
  63. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.json +1391 -0
  64. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.json +844 -0
  66. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.dbg.json +4 -0
  67. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.json +2214 -0
  68. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.dbg.json +4 -0
  69. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.json +891 -0
  70. package/artifacts/contracts/examples/flight/FlightProductManager.sol/FlightProductManager.dbg.json +4 -0
  71. package/artifacts/contracts/examples/flight/FlightProductManager.sol/FlightProductManager.json +711 -0
  72. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.dbg.json +4 -0
  73. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.json +586 -0
  74. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.dbg.json +4 -0
  75. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.json +901 -0
  76. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  77. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1335 -0
  78. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  79. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +844 -0
  80. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  81. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1086 -0
  82. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  83. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1562 -0
  84. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  85. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +844 -0
  86. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  87. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2500 -0
  88. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  89. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +844 -0
  90. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.json +382 -0
  92. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  93. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  94. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
  95. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +354 -0
  96. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  97. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +734 -451
  98. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +1175 -0
  100. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  101. package/artifacts/contracts/instance/Instance.sol/Instance.json +810 -530
  102. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  103. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2400 -0
  104. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  105. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +872 -0
  106. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  107. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2687 -0
  108. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1437 -0
  110. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +792 -0
  112. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  113. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3089 -0
  114. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
  115. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3477 -0
  116. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  117. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  118. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  119. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  120. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  121. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  122. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  123. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  124. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  125. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  126. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  127. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  128. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  129. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  130. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  131. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IBundle.sol/IBundle.json} +2 -2
  132. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  133. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IComponents.sol/IComponents.json} +2 -2
  134. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  135. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  136. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  137. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  138. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  139. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
  140. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  141. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  142. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  143. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +872 -0
  144. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  145. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +849 -0
  146. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  147. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  148. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  149. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +687 -0
  150. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  151. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +768 -0
  152. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  153. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +788 -0
  154. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  155. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1048 -0
  156. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +830 -0
  158. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  159. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1157 -0
  160. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  161. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +844 -0
  162. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  163. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1450 -0
  164. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  165. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +886 -0
  166. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  167. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1045 -0
  168. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  169. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +820 -0
  170. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  171. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1461 -0
  172. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  173. package/artifacts/contracts/pool/Pool.sol/Pool.json +940 -0
  174. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  175. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +517 -0
  176. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  177. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1845 -0
  178. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +886 -0
  180. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  181. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
  182. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +810 -0
  184. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  185. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1074 -0
  186. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  187. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +844 -0
  188. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  189. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1542 -0
  190. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  191. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +906 -0
  192. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  193. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +804 -0
  194. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  195. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1110 -0
  196. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  197. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1048 -0
  198. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  199. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +652 -0
  200. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  201. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +931 -0
  202. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  203. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +665 -0
  204. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  205. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1416 -0
  206. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  207. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +791 -0
  208. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  209. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +874 -0
  210. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  211. package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
  212. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  213. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +834 -0
  214. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  215. package/artifacts/contracts/product/Product.sol/Product.json +1032 -0
  216. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  217. package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
  218. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  219. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +794 -0
  220. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  221. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +295 -2
  222. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  223. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1061 -113
  224. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  225. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1072 -0
  226. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  227. package/artifacts/contracts/{instance/component/IComponent.sol/IInstanceLinked.json → registry/IRelease.sol/IRelease.json} +6 -6
  228. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  229. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
  230. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  231. package/artifacts/contracts/registry/Registry.sol/Registry.json +1553 -176
  232. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  233. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2255 -0
  234. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  235. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1112 -0
  236. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  237. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1298 -0
  238. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  239. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +793 -0
  240. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  241. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2271 -0
  242. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  243. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  244. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  245. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1411 -0
  246. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  247. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +705 -0
  248. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  249. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +721 -0
  250. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  251. package/artifacts/contracts/shared/Component.sol/Component.json +620 -0
  252. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  253. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1767 -0
  254. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  255. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +882 -0
  256. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  257. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  258. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  259. package/artifacts/contracts/{registry/IRegistry.sol/IOwnable.json → shared/ContractLib.sol/IInstanceAdminHelper.json} +5 -5
  260. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  261. package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/ContractLib.sol/ITargetHelper.json} +4 -9
  262. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  263. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  264. package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.dbg.json +4 -0
  265. package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.json +558 -0
  266. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  267. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +545 -0
  268. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  269. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1391 -0
  270. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  271. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +622 -0
  272. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  273. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +146 -0
  274. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  275. package/artifacts/contracts/{registry/IRegistry.sol/IRegisterable.json → shared/INftOwnable.sol/INftOwnable.json} +72 -72
  276. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  277. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  278. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  279. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IRegisterable.sol/IRegisterable.json} +179 -158
  280. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  281. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +5 -19
  282. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  283. package/artifacts/contracts/shared/IService.sol/IService.json +428 -0
  284. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  285. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  286. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  287. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +710 -0
  288. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  289. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  290. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  291. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  292. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  293. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +228 -0
  294. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  295. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  296. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  297. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +397 -0
  298. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  299. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  300. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  301. package/artifacts/contracts/shared/Service.sol/Service.json +482 -0
  302. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  303. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +696 -0
  304. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  305. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +457 -0
  306. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  307. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  308. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  309. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +2697 -0
  310. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  311. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +947 -0
  312. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
  313. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
  314. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  315. package/artifacts/contracts/staking/Staking.sol/Staking.json +3125 -0
  316. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  317. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +465 -0
  318. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  319. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +867 -0
  320. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  321. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +704 -0
  322. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  323. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1144 -0
  324. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  325. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +786 -0
  326. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  327. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +3097 -0
  328. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
  329. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +304 -0
  330. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  331. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +674 -0
  332. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  333. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  334. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/Amount.sol/AmountLib.json +393 -0
  336. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +270 -0
  338. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  340. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  342. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  344. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Fee.sol/FeeLib.json +368 -0
  346. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  348. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  349. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  350. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  352. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  353. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  354. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  355. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +238 -0
  356. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  357. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  358. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  359. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +161 -0
  360. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  361. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  362. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.dbg.json +4 -0
  363. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.json +33 -0
  364. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  365. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  366. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  367. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  368. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  369. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +308 -0
  370. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  371. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  372. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  373. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  374. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  375. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  376. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  377. package/artifacts/contracts/type/String.sol/StrLib.json +199 -0
  378. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  379. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +344 -0
  380. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  381. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +567 -0
  382. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  383. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  384. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  385. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  386. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  387. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +65 -0
  388. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  389. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +672 -0
  390. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  391. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  392. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  393. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +88 -0
  394. package/contracts/accounting/AccountingService.sol +262 -0
  395. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  396. package/contracts/accounting/IAccountingService.sol +46 -0
  397. package/contracts/authorization/AccessAdmin.sol +662 -0
  398. package/contracts/authorization/AccessAdminLib.sol +695 -0
  399. package/contracts/authorization/AccessManagerCloneable.sol +144 -0
  400. package/contracts/authorization/Authorization.sol +190 -0
  401. package/contracts/authorization/IAccess.sol +66 -0
  402. package/contracts/authorization/IAccessAdmin.sol +143 -0
  403. package/contracts/authorization/IAuthorization.sol +26 -0
  404. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  405. package/contracts/authorization/ServiceAuthorization.sol +300 -0
  406. package/contracts/distribution/BasicDistribution.sol +140 -0
  407. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  408. package/contracts/distribution/Distribution.sol +245 -0
  409. package/contracts/distribution/DistributionService.sol +453 -0
  410. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  411. package/contracts/distribution/IDistributionComponent.sol +43 -0
  412. package/contracts/distribution/IDistributionService.sol +116 -0
  413. package/contracts/examples/fire/DamageLevel.sol +59 -0
  414. package/contracts/examples/fire/FirePool.sol +86 -0
  415. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  416. package/contracts/examples/fire/FireProduct.sol +433 -0
  417. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  418. package/contracts/examples/fire/FireUSD.sol +26 -0
  419. package/contracts/examples/flight/FlightLib.sol +337 -0
  420. package/contracts/examples/flight/FlightMessageVerifier.sol +128 -0
  421. package/contracts/examples/flight/FlightNft.sol +234 -0
  422. package/contracts/examples/flight/FlightOracle.sol +226 -0
  423. package/contracts/examples/flight/FlightOracleAuthorization.sol +57 -0
  424. package/contracts/examples/flight/FlightPool.sol +89 -0
  425. package/contracts/examples/flight/FlightPoolAuthorization.sol +37 -0
  426. package/contracts/examples/flight/FlightProduct.sol +687 -0
  427. package/contracts/examples/flight/FlightProductAuthorization.sol +70 -0
  428. package/contracts/examples/flight/FlightProductManager.sol +49 -0
  429. package/contracts/examples/flight/FlightUSD.sol +28 -0
  430. package/contracts/examples/flight/originalV1.sol +396 -0
  431. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  432. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  433. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  434. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  435. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  436. package/contracts/examples/unpermissioned/SimpleProduct.sol +437 -0
  437. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  438. package/contracts/instance/BaseStore.sol +97 -0
  439. package/contracts/instance/BundleSet.sol +130 -0
  440. package/contracts/instance/IBaseStore.sol +45 -0
  441. package/contracts/instance/IInstance.sol +151 -15
  442. package/contracts/instance/IInstanceService.sol +121 -0
  443. package/contracts/instance/Instance.sol +332 -45
  444. package/contracts/instance/InstanceAdmin.sol +306 -0
  445. package/contracts/instance/InstanceAuthorizationV3.sol +275 -0
  446. package/contracts/instance/InstanceReader.sol +642 -0
  447. package/contracts/instance/InstanceService.sol +522 -0
  448. package/contracts/instance/InstanceServiceManager.sol +39 -0
  449. package/contracts/instance/InstanceStore.sol +323 -0
  450. package/contracts/instance/ProductStore.sol +290 -0
  451. package/contracts/instance/RiskSet.sol +126 -0
  452. package/contracts/instance/TargetNames.sol +10 -0
  453. package/contracts/instance/base/BalanceStore.sol +121 -0
  454. package/contracts/instance/base/Cloneable.sol +28 -0
  455. package/contracts/instance/base/ObjectCounter.sol +20 -0
  456. package/contracts/instance/base/ObjectLifecycle.sol +109 -0
  457. package/contracts/instance/base/ObjectSet.sol +77 -0
  458. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  459. package/contracts/instance/module/IBundle.sol +21 -0
  460. package/contracts/instance/module/IComponents.sol +60 -0
  461. package/contracts/instance/module/IDistribution.sol +54 -0
  462. package/contracts/instance/module/IPolicy.sol +105 -0
  463. package/contracts/instance/module/IRisk.sol +16 -0
  464. package/contracts/mock/Dip.sol +26 -0
  465. package/contracts/oracle/BasicOracle.sol +45 -0
  466. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  467. package/contracts/oracle/IOracle.sol +41 -0
  468. package/contracts/oracle/IOracleComponent.sol +33 -0
  469. package/contracts/oracle/IOracleService.sol +66 -0
  470. package/contracts/oracle/Oracle.sol +152 -0
  471. package/contracts/oracle/OracleService.sol +310 -0
  472. package/contracts/oracle/OracleServiceManager.sol +39 -0
  473. package/contracts/pool/BasicPool.sol +161 -0
  474. package/contracts/pool/BasicPoolAuthorization.sol +81 -0
  475. package/contracts/pool/BundleService.sol +386 -0
  476. package/contracts/pool/BundleServiceManager.sol +39 -0
  477. package/contracts/pool/IBundleService.sol +116 -0
  478. package/contracts/pool/IPoolComponent.sol +62 -0
  479. package/contracts/pool/IPoolService.sol +170 -0
  480. package/contracts/pool/Pool.sol +331 -0
  481. package/contracts/pool/PoolLib.sol +341 -0
  482. package/contracts/pool/PoolService.sol +614 -0
  483. package/contracts/pool/PoolServiceManager.sol +39 -0
  484. package/contracts/product/ApplicationService.sol +327 -0
  485. package/contracts/product/ApplicationServiceManager.sol +38 -0
  486. package/contracts/product/BasicProduct.sol +48 -0
  487. package/contracts/product/BasicProductAuthorization.sol +64 -0
  488. package/contracts/product/ClaimService.sol +626 -0
  489. package/contracts/product/ClaimServiceManager.sol +38 -0
  490. package/contracts/product/IApplicationService.sol +88 -0
  491. package/contracts/product/IClaimService.sol +136 -0
  492. package/contracts/product/IPolicyService.sol +102 -0
  493. package/contracts/product/IPricingService.sol +40 -0
  494. package/contracts/product/IProductComponent.sol +62 -0
  495. package/contracts/product/IRiskService.sol +48 -0
  496. package/contracts/product/PolicyService.sol +645 -0
  497. package/contracts/product/PolicyServiceLib.sol +141 -0
  498. package/contracts/product/PolicyServiceManager.sol +39 -0
  499. package/contracts/product/PricingService.sol +306 -0
  500. package/contracts/product/PricingServiceManager.sol +39 -0
  501. package/contracts/product/Product.sol +491 -0
  502. package/contracts/product/RiskService.sol +189 -0
  503. package/contracts/product/RiskServiceManager.sol +39 -0
  504. package/contracts/registry/ChainNft.sol +176 -100
  505. package/contracts/registry/IRegistry.sol +149 -47
  506. package/contracts/registry/IRegistryService.sol +62 -0
  507. package/contracts/registry/IRelease.sol +29 -0
  508. package/contracts/registry/ITransferInterceptor.sol +6 -0
  509. package/contracts/registry/Registry.sol +673 -117
  510. package/contracts/registry/RegistryAdmin.sol +179 -0
  511. package/contracts/registry/RegistryAuthorization.sol +335 -0
  512. package/contracts/registry/RegistryService.sol +241 -0
  513. package/contracts/registry/RegistryServiceManager.sol +53 -0
  514. package/contracts/registry/ReleaseAdmin.sol +206 -0
  515. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  516. package/contracts/registry/ReleaseRegistry.sol +525 -0
  517. package/contracts/registry/ServiceAuthorizationV3.sol +342 -0
  518. package/contracts/registry/TokenRegistry.sol +317 -0
  519. package/contracts/shared/Component.sol +210 -0
  520. package/contracts/shared/ComponentService.sol +725 -0
  521. package/contracts/shared/ComponentServiceManager.sol +38 -0
  522. package/contracts/shared/ContractLib.sol +312 -0
  523. package/contracts/shared/EcdsaChecker.sol +5 -0
  524. package/contracts/shared/IAuthorizedComponent.sol +15 -0
  525. package/contracts/shared/IComponent.sol +54 -0
  526. package/contracts/shared/IComponentService.sol +133 -0
  527. package/contracts/shared/IInstanceLinkedComponent.sol +27 -0
  528. package/contracts/shared/ILifecycle.sol +31 -0
  529. package/contracts/shared/INftOwnable.sol +27 -0
  530. package/contracts/shared/IPolicyHolder.sol +35 -0
  531. package/contracts/shared/IRegisterable.sol +36 -0
  532. package/contracts/shared/IRegistryLinked.sol +11 -0
  533. package/contracts/shared/IService.sol +23 -0
  534. package/contracts/shared/InitializableERC165.sol +35 -0
  535. package/contracts/shared/InstanceLinkedComponent.sol +233 -0
  536. package/contracts/shared/Lifecycle.sol +88 -0
  537. package/contracts/shared/NftIdSet.sol +65 -0
  538. package/contracts/shared/NftOwnable.sol +129 -0
  539. package/contracts/shared/PolicyHolder.sol +63 -0
  540. package/contracts/shared/Registerable.sol +106 -0
  541. package/contracts/shared/RegistryLinked.sol +38 -0
  542. package/contracts/shared/Service.sol +67 -0
  543. package/contracts/shared/TokenHandler.sol +342 -0
  544. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  545. package/contracts/staking/IStaking.sol +368 -0
  546. package/contracts/staking/IStakingService.sol +118 -0
  547. package/contracts/staking/ITargetLimitHandler.sol +17 -0
  548. package/contracts/staking/Staking.sol +798 -0
  549. package/contracts/staking/StakingLib.sol +195 -0
  550. package/contracts/staking/StakingManager.sol +53 -0
  551. package/contracts/staking/StakingReader.sol +171 -0
  552. package/contracts/staking/StakingService.sol +321 -0
  553. package/contracts/staking/StakingServiceManager.sol +46 -0
  554. package/contracts/staking/StakingStore.sol +1368 -0
  555. package/contracts/staking/TargetHandler.sol +132 -0
  556. package/contracts/staking/TargetManagerLib.sol +234 -0
  557. package/contracts/type/AddressSet.sol +58 -0
  558. package/contracts/type/Amount.sol +154 -0
  559. package/contracts/type/Blocknumber.sol +137 -0
  560. package/contracts/type/ChainId.sol +101 -0
  561. package/contracts/type/ClaimId.sol +80 -0
  562. package/contracts/type/DistributorType.sol +55 -0
  563. package/contracts/type/Fee.sol +66 -0
  564. package/contracts/type/Key32.sol +50 -0
  565. package/contracts/type/Key32Set.sol +62 -0
  566. package/contracts/type/NftId.sol +85 -0
  567. package/contracts/type/NftIdSet.sol +62 -0
  568. package/contracts/type/ObjectType.sol +278 -0
  569. package/contracts/type/PayoutId.sol +82 -0
  570. package/contracts/type/Referral.sol +96 -0
  571. package/contracts/type/RequestId.sol +75 -0
  572. package/contracts/type/RequestIdSet.sol +62 -0
  573. package/contracts/type/RiskId.sol +75 -0
  574. package/contracts/type/RoleId.sol +180 -0
  575. package/contracts/type/Seconds.sol +124 -0
  576. package/contracts/type/Selector.sol +107 -0
  577. package/contracts/type/StateId.sol +149 -0
  578. package/contracts/type/String.sol +95 -0
  579. package/contracts/type/Timestamp.sol +152 -0
  580. package/contracts/type/UFixed.sol +263 -0
  581. package/contracts/type/Version.sol +159 -0
  582. package/contracts/upgradeability/IVersionable.sol +56 -0
  583. package/contracts/upgradeability/ProxyManager.sol +246 -0
  584. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +24 -0
  585. package/contracts/upgradeability/Versionable.sol +62 -0
  586. package/package.json +27 -7
  587. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  588. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  589. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  590. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  591. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  592. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  593. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  594. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  595. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  596. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -213
  597. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  598. package/artifacts/contracts/components/Product.sol/Product.json +0 -231
  599. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  600. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  601. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  602. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  603. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  604. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  605. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  606. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  607. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  608. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  609. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  610. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  611. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  612. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  613. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  614. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  615. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  616. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  617. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  618. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  619. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  620. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  621. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  622. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  623. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  624. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  625. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  626. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  627. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  628. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  629. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  630. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  631. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  632. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  633. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
  634. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  635. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  636. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  637. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  638. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  639. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  640. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  641. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  642. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  643. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  644. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  645. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  646. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  647. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  648. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  649. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  650. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  651. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
  652. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  653. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  654. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  655. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  656. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  657. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  658. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  659. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
  660. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  661. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  662. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  663. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  664. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  665. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  666. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  667. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  668. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  669. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  671. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  672. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  673. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  674. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
  675. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  676. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
  677. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  678. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
  679. package/contracts/components/Component.sol +0 -62
  680. package/contracts/components/IPool.sol +0 -9
  681. package/contracts/components/IProduct.sol +0 -12
  682. package/contracts/components/Pool.sol +0 -29
  683. package/contracts/components/Product.sol +0 -66
  684. package/contracts/experiment/errors/Require.sol +0 -33
  685. package/contracts/experiment/errors/Revert.sol +0 -39
  686. package/contracts/experiment/inheritance/A.sol +0 -56
  687. package/contracts/experiment/inheritance/B.sol +0 -23
  688. package/contracts/experiment/inheritance/C.sol +0 -28
  689. package/contracts/experiment/inheritance/IA.sol +0 -18
  690. package/contracts/experiment/inheritance/IB.sol +0 -9
  691. package/contracts/experiment/inheritance/IC.sol +0 -11
  692. package/contracts/experiment/types/TypeA.sol +0 -42
  693. package/contracts/experiment/types/TypeB.sol +0 -24
  694. package/contracts/instance/access/Access.sol +0 -218
  695. package/contracts/instance/access/IAccess.sol +0 -83
  696. package/contracts/instance/component/ComponentModule.sol +0 -248
  697. package/contracts/instance/component/IComponent.sol +0 -95
  698. package/contracts/instance/policy/IPolicy.sol +0 -66
  699. package/contracts/instance/policy/PolicyModule.sol +0 -107
  700. package/contracts/instance/pool/IPoolModule.sol +0 -41
  701. package/contracts/instance/pool/PoolModule.sol +0 -86
  702. package/contracts/instance/product/IProductService.sol +0 -46
  703. package/contracts/instance/product/ProductService.sol +0 -108
  704. package/contracts/registry/IChainNft.sol +0 -18
  705. package/contracts/types/Blocknumber.sol +0 -60
  706. package/contracts/types/ChainId.sol +0 -30
  707. package/contracts/types/NftId.sol +0 -35
  708. package/contracts/types/Timestamp.sol +0 -55
  709. package/contracts/types/UFixed.sol +0 -211
@@ -0,0 +1,1391 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "FlightPool",
4
+ "sourceName": "contracts/examples/flight/FlightPool.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "productNftId",
16
+ "type": "uint96"
17
+ },
18
+ {
19
+ "internalType": "string",
20
+ "name": "componentName",
21
+ "type": "string"
22
+ },
23
+ {
24
+ "internalType": "contract IAuthorization",
25
+ "name": "authorization",
26
+ "type": "address"
27
+ }
28
+ ],
29
+ "stateMutability": "nonpayable",
30
+ "type": "constructor"
31
+ },
32
+ {
33
+ "inputs": [
34
+ {
35
+ "internalType": "address",
36
+ "name": "authority",
37
+ "type": "address"
38
+ }
39
+ ],
40
+ "name": "AccessManagedInvalidAuthority",
41
+ "type": "error"
42
+ },
43
+ {
44
+ "inputs": [
45
+ {
46
+ "internalType": "address",
47
+ "name": "caller",
48
+ "type": "address"
49
+ },
50
+ {
51
+ "internalType": "uint32",
52
+ "name": "delay",
53
+ "type": "uint32"
54
+ }
55
+ ],
56
+ "name": "AccessManagedRequiredDelay",
57
+ "type": "error"
58
+ },
59
+ {
60
+ "inputs": [
61
+ {
62
+ "internalType": "address",
63
+ "name": "caller",
64
+ "type": "address"
65
+ }
66
+ ],
67
+ "name": "AccessManagedUnauthorized",
68
+ "type": "error"
69
+ },
70
+ {
71
+ "inputs": [
72
+ {
73
+ "internalType": "address",
74
+ "name": "authority",
75
+ "type": "address"
76
+ }
77
+ ],
78
+ "name": "ErrorAuthorityInvalid",
79
+ "type": "error"
80
+ },
81
+ {
82
+ "inputs": [],
83
+ "name": "ErrorComponentNameLengthZero",
84
+ "type": "error"
85
+ },
86
+ {
87
+ "inputs": [
88
+ {
89
+ "internalType": "address",
90
+ "name": "caller",
91
+ "type": "address"
92
+ }
93
+ ],
94
+ "name": "ErrorComponentNotChainNft",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [],
99
+ "name": "ErrorComponentProductNftIdNonzero",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [],
104
+ "name": "ErrorComponentProductNftIdZero",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [],
109
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
110
+ "type": "error"
111
+ },
112
+ {
113
+ "inputs": [],
114
+ "name": "ErrorComponentWalletAddressZero",
115
+ "type": "error"
116
+ },
117
+ {
118
+ "inputs": [],
119
+ "name": "ErrorComponentWalletNotComponent",
120
+ "type": "error"
121
+ },
122
+ {
123
+ "inputs": [
124
+ {
125
+ "internalType": "NftId",
126
+ "name": "nftId",
127
+ "type": "uint96"
128
+ },
129
+ {
130
+ "internalType": "ObjectType",
131
+ "name": "objectType",
132
+ "type": "uint8"
133
+ }
134
+ ],
135
+ "name": "ErrorInstanceLinkedComponentNotProduct",
136
+ "type": "error"
137
+ },
138
+ {
139
+ "inputs": [
140
+ {
141
+ "internalType": "ObjectType",
142
+ "name": "requiredType",
143
+ "type": "uint8"
144
+ },
145
+ {
146
+ "internalType": "ObjectType",
147
+ "name": "objectType",
148
+ "type": "uint8"
149
+ }
150
+ ],
151
+ "name": "ErrorInstanceLinkedComponentTypeMismatch",
152
+ "type": "error"
153
+ },
154
+ {
155
+ "inputs": [
156
+ {
157
+ "internalType": "NftId",
158
+ "name": "nftId",
159
+ "type": "uint96"
160
+ }
161
+ ],
162
+ "name": "ErrorNftOwnableAlreadyLinked",
163
+ "type": "error"
164
+ },
165
+ {
166
+ "inputs": [
167
+ {
168
+ "internalType": "address",
169
+ "name": "contractAddress",
170
+ "type": "address"
171
+ }
172
+ ],
173
+ "name": "ErrorNftOwnableContractNotRegistered",
174
+ "type": "error"
175
+ },
176
+ {
177
+ "inputs": [],
178
+ "name": "ErrorNftOwnableInitialOwnerZero",
179
+ "type": "error"
180
+ },
181
+ {
182
+ "inputs": [
183
+ {
184
+ "internalType": "NftId",
185
+ "name": "nftId",
186
+ "type": "uint96"
187
+ },
188
+ {
189
+ "internalType": "ObjectType",
190
+ "name": "expectedObjectType",
191
+ "type": "uint8"
192
+ }
193
+ ],
194
+ "name": "ErrorNftOwnableInvalidType",
195
+ "type": "error"
196
+ },
197
+ {
198
+ "inputs": [
199
+ {
200
+ "internalType": "address",
201
+ "name": "account",
202
+ "type": "address"
203
+ }
204
+ ],
205
+ "name": "ErrorNftOwnableNotOwner",
206
+ "type": "error"
207
+ },
208
+ {
209
+ "inputs": [
210
+ {
211
+ "internalType": "address",
212
+ "name": "registryAddress",
213
+ "type": "address"
214
+ }
215
+ ],
216
+ "name": "ErrorNotRegistry",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [
221
+ {
222
+ "internalType": "NftId",
223
+ "name": "applicationNftId",
224
+ "type": "uint96"
225
+ }
226
+ ],
227
+ "name": "ErrorPoolApplicationBundleMismatch",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [
232
+ {
233
+ "internalType": "NftId",
234
+ "name": "bundleNftId",
235
+ "type": "uint96"
236
+ },
237
+ {
238
+ "internalType": "address",
239
+ "name": "caller",
240
+ "type": "address"
241
+ }
242
+ ],
243
+ "name": "ErrorPoolNotBundleOwner",
244
+ "type": "error"
245
+ },
246
+ {
247
+ "inputs": [
248
+ {
249
+ "internalType": "address",
250
+ "name": "caller",
251
+ "type": "address"
252
+ }
253
+ ],
254
+ "name": "ErrorPoolNotPoolService",
255
+ "type": "error"
256
+ },
257
+ {
258
+ "inputs": [],
259
+ "name": "ErrorRegisterableNotActive",
260
+ "type": "error"
261
+ },
262
+ {
263
+ "inputs": [],
264
+ "name": "InvalidInitialization",
265
+ "type": "error"
266
+ },
267
+ {
268
+ "inputs": [],
269
+ "name": "NotInitializing",
270
+ "type": "error"
271
+ },
272
+ {
273
+ "anonymous": false,
274
+ "inputs": [
275
+ {
276
+ "indexed": false,
277
+ "internalType": "address",
278
+ "name": "authority",
279
+ "type": "address"
280
+ }
281
+ ],
282
+ "name": "AuthorityUpdated",
283
+ "type": "event"
284
+ },
285
+ {
286
+ "anonymous": false,
287
+ "inputs": [
288
+ {
289
+ "indexed": false,
290
+ "internalType": "uint64",
291
+ "name": "version",
292
+ "type": "uint64"
293
+ }
294
+ ],
295
+ "name": "Initialized",
296
+ "type": "event"
297
+ },
298
+ {
299
+ "anonymous": false,
300
+ "inputs": [
301
+ {
302
+ "indexed": false,
303
+ "internalType": "NftId",
304
+ "name": "nftId",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "indexed": false,
309
+ "internalType": "address",
310
+ "name": "owner",
311
+ "type": "address"
312
+ }
313
+ ],
314
+ "name": "LogNftOwnableNftLinkedToAddress",
315
+ "type": "event"
316
+ },
317
+ {
318
+ "anonymous": false,
319
+ "inputs": [
320
+ {
321
+ "indexed": true,
322
+ "internalType": "address",
323
+ "name": "pool",
324
+ "type": "address"
325
+ },
326
+ {
327
+ "indexed": true,
328
+ "internalType": "NftId",
329
+ "name": "applicationNftId",
330
+ "type": "uint96"
331
+ },
332
+ {
333
+ "indexed": true,
334
+ "internalType": "Amount",
335
+ "name": "collateralizationAmount",
336
+ "type": "uint96"
337
+ }
338
+ ],
339
+ "name": "LogPoolVerifiedByPool",
340
+ "type": "event"
341
+ },
342
+ {
343
+ "inputs": [],
344
+ "name": "COMPONENT_LOCATION_V1",
345
+ "outputs": [
346
+ {
347
+ "internalType": "bytes32",
348
+ "name": "",
349
+ "type": "bytes32"
350
+ }
351
+ ],
352
+ "stateMutability": "view",
353
+ "type": "function"
354
+ },
355
+ {
356
+ "inputs": [],
357
+ "name": "INSTANCE_LINKED_COMPONENT_LOCATION_V1",
358
+ "outputs": [
359
+ {
360
+ "internalType": "bytes32",
361
+ "name": "",
362
+ "type": "bytes32"
363
+ }
364
+ ],
365
+ "stateMutability": "view",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "inputs": [],
370
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
371
+ "outputs": [
372
+ {
373
+ "internalType": "bytes32",
374
+ "name": "",
375
+ "type": "bytes32"
376
+ }
377
+ ],
378
+ "stateMutability": "view",
379
+ "type": "function"
380
+ },
381
+ {
382
+ "inputs": [],
383
+ "name": "POOL_STORAGE_LOCATION_V1",
384
+ "outputs": [
385
+ {
386
+ "internalType": "bytes32",
387
+ "name": "",
388
+ "type": "bytes32"
389
+ }
390
+ ],
391
+ "stateMutability": "view",
392
+ "type": "function"
393
+ },
394
+ {
395
+ "inputs": [],
396
+ "name": "REGISTERABLE_LOCATION_V1",
397
+ "outputs": [
398
+ {
399
+ "internalType": "bytes32",
400
+ "name": "",
401
+ "type": "bytes32"
402
+ }
403
+ ],
404
+ "stateMutability": "view",
405
+ "type": "function"
406
+ },
407
+ {
408
+ "inputs": [
409
+ {
410
+ "internalType": "NftId",
411
+ "name": "applicationNftId",
412
+ "type": "uint96"
413
+ },
414
+ {
415
+ "internalType": "bytes",
416
+ "name": "applicationData",
417
+ "type": "bytes"
418
+ },
419
+ {
420
+ "internalType": "NftId",
421
+ "name": "bundleNftId",
422
+ "type": "uint96"
423
+ },
424
+ {
425
+ "internalType": "bytes",
426
+ "name": "bundleFilter",
427
+ "type": "bytes"
428
+ },
429
+ {
430
+ "internalType": "Amount",
431
+ "name": "collateralizationAmount",
432
+ "type": "uint96"
433
+ }
434
+ ],
435
+ "name": "applicationMatchesBundle",
436
+ "outputs": [
437
+ {
438
+ "internalType": "bool",
439
+ "name": "isMatching",
440
+ "type": "bool"
441
+ }
442
+ ],
443
+ "stateMutability": "view",
444
+ "type": "function"
445
+ },
446
+ {
447
+ "inputs": [
448
+ {
449
+ "internalType": "contract IERC20Metadata",
450
+ "name": "token",
451
+ "type": "address"
452
+ },
453
+ {
454
+ "internalType": "Amount",
455
+ "name": "amount",
456
+ "type": "uint96"
457
+ }
458
+ ],
459
+ "name": "approveTokenHandler",
460
+ "outputs": [],
461
+ "stateMutability": "nonpayable",
462
+ "type": "function"
463
+ },
464
+ {
465
+ "inputs": [],
466
+ "name": "authority",
467
+ "outputs": [
468
+ {
469
+ "internalType": "address",
470
+ "name": "",
471
+ "type": "address"
472
+ }
473
+ ],
474
+ "stateMutability": "view",
475
+ "type": "function"
476
+ },
477
+ {
478
+ "inputs": [
479
+ {
480
+ "internalType": "NftId",
481
+ "name": "bundleNftId",
482
+ "type": "uint96"
483
+ }
484
+ ],
485
+ "name": "closeBundle",
486
+ "outputs": [],
487
+ "stateMutability": "nonpayable",
488
+ "type": "function"
489
+ },
490
+ {
491
+ "inputs": [
492
+ {
493
+ "internalType": "Amount",
494
+ "name": "initialAmount",
495
+ "type": "uint96"
496
+ }
497
+ ],
498
+ "name": "createBundle",
499
+ "outputs": [
500
+ {
501
+ "internalType": "NftId",
502
+ "name": "bundleNftId",
503
+ "type": "uint96"
504
+ }
505
+ ],
506
+ "stateMutability": "nonpayable",
507
+ "type": "function"
508
+ },
509
+ {
510
+ "inputs": [
511
+ {
512
+ "internalType": "NftId",
513
+ "name": "bundleNftId",
514
+ "type": "uint96"
515
+ },
516
+ {
517
+ "internalType": "Seconds",
518
+ "name": "lifetimeExtension",
519
+ "type": "uint40"
520
+ }
521
+ ],
522
+ "name": "extend",
523
+ "outputs": [
524
+ {
525
+ "internalType": "Timestamp",
526
+ "name": "newExpiredAt",
527
+ "type": "uint40"
528
+ }
529
+ ],
530
+ "stateMutability": "nonpayable",
531
+ "type": "function"
532
+ },
533
+ {
534
+ "inputs": [],
535
+ "name": "getAuthorization",
536
+ "outputs": [
537
+ {
538
+ "internalType": "contract IAuthorization",
539
+ "name": "authorization",
540
+ "type": "address"
541
+ }
542
+ ],
543
+ "stateMutability": "view",
544
+ "type": "function"
545
+ },
546
+ {
547
+ "inputs": [],
548
+ "name": "getComponentInfo",
549
+ "outputs": [
550
+ {
551
+ "components": [
552
+ {
553
+ "internalType": "string",
554
+ "name": "name",
555
+ "type": "string"
556
+ },
557
+ {
558
+ "internalType": "contract TokenHandler",
559
+ "name": "tokenHandler",
560
+ "type": "address"
561
+ }
562
+ ],
563
+ "internalType": "struct IComponents.ComponentInfo",
564
+ "name": "info",
565
+ "type": "tuple"
566
+ }
567
+ ],
568
+ "stateMutability": "view",
569
+ "type": "function"
570
+ },
571
+ {
572
+ "inputs": [
573
+ {
574
+ "internalType": "bytes",
575
+ "name": "name",
576
+ "type": "bytes"
577
+ }
578
+ ],
579
+ "name": "getContractLocation",
580
+ "outputs": [
581
+ {
582
+ "internalType": "bytes32",
583
+ "name": "hash",
584
+ "type": "bytes32"
585
+ }
586
+ ],
587
+ "stateMutability": "pure",
588
+ "type": "function"
589
+ },
590
+ {
591
+ "inputs": [],
592
+ "name": "getInitialComponentInfo",
593
+ "outputs": [
594
+ {
595
+ "components": [
596
+ {
597
+ "internalType": "string",
598
+ "name": "name",
599
+ "type": "string"
600
+ },
601
+ {
602
+ "internalType": "contract TokenHandler",
603
+ "name": "tokenHandler",
604
+ "type": "address"
605
+ }
606
+ ],
607
+ "internalType": "struct IComponents.ComponentInfo",
608
+ "name": "info",
609
+ "type": "tuple"
610
+ }
611
+ ],
612
+ "stateMutability": "view",
613
+ "type": "function"
614
+ },
615
+ {
616
+ "inputs": [],
617
+ "name": "getInitialInfo",
618
+ "outputs": [
619
+ {
620
+ "components": [
621
+ {
622
+ "internalType": "NftId",
623
+ "name": "nftId",
624
+ "type": "uint96"
625
+ },
626
+ {
627
+ "internalType": "NftId",
628
+ "name": "parentNftId",
629
+ "type": "uint96"
630
+ },
631
+ {
632
+ "internalType": "ObjectType",
633
+ "name": "objectType",
634
+ "type": "uint8"
635
+ },
636
+ {
637
+ "internalType": "bool",
638
+ "name": "isInterceptor",
639
+ "type": "bool"
640
+ },
641
+ {
642
+ "internalType": "address",
643
+ "name": "objectAddress",
644
+ "type": "address"
645
+ },
646
+ {
647
+ "internalType": "address",
648
+ "name": "initialOwner",
649
+ "type": "address"
650
+ },
651
+ {
652
+ "internalType": "bytes",
653
+ "name": "data",
654
+ "type": "bytes"
655
+ }
656
+ ],
657
+ "internalType": "struct IRegistry.ObjectInfo",
658
+ "name": "info",
659
+ "type": "tuple"
660
+ }
661
+ ],
662
+ "stateMutability": "view",
663
+ "type": "function"
664
+ },
665
+ {
666
+ "inputs": [],
667
+ "name": "getInitialPoolInfo",
668
+ "outputs": [
669
+ {
670
+ "components": [
671
+ {
672
+ "internalType": "Amount",
673
+ "name": "maxBalanceAmount",
674
+ "type": "uint96"
675
+ },
676
+ {
677
+ "internalType": "UFixed",
678
+ "name": "collateralizationLevel",
679
+ "type": "uint160"
680
+ },
681
+ {
682
+ "internalType": "UFixed",
683
+ "name": "retentionLevel",
684
+ "type": "uint160"
685
+ },
686
+ {
687
+ "internalType": "bool",
688
+ "name": "isInterceptingBundleTransfers",
689
+ "type": "bool"
690
+ },
691
+ {
692
+ "internalType": "bool",
693
+ "name": "isProcessingConfirmedClaims",
694
+ "type": "bool"
695
+ },
696
+ {
697
+ "internalType": "bool",
698
+ "name": "isExternallyManaged",
699
+ "type": "bool"
700
+ },
701
+ {
702
+ "internalType": "bool",
703
+ "name": "isVerifyingApplications",
704
+ "type": "bool"
705
+ }
706
+ ],
707
+ "internalType": "struct IComponents.PoolInfo",
708
+ "name": "poolInfo",
709
+ "type": "tuple"
710
+ }
711
+ ],
712
+ "stateMutability": "view",
713
+ "type": "function"
714
+ },
715
+ {
716
+ "inputs": [],
717
+ "name": "getInstance",
718
+ "outputs": [
719
+ {
720
+ "internalType": "contract IInstance",
721
+ "name": "instance",
722
+ "type": "address"
723
+ }
724
+ ],
725
+ "stateMutability": "view",
726
+ "type": "function"
727
+ },
728
+ {
729
+ "inputs": [],
730
+ "name": "getName",
731
+ "outputs": [
732
+ {
733
+ "internalType": "string",
734
+ "name": "name",
735
+ "type": "string"
736
+ }
737
+ ],
738
+ "stateMutability": "view",
739
+ "type": "function"
740
+ },
741
+ {
742
+ "inputs": [],
743
+ "name": "getNftId",
744
+ "outputs": [
745
+ {
746
+ "internalType": "NftId",
747
+ "name": "",
748
+ "type": "uint96"
749
+ }
750
+ ],
751
+ "stateMutability": "view",
752
+ "type": "function"
753
+ },
754
+ {
755
+ "inputs": [],
756
+ "name": "getOwner",
757
+ "outputs": [
758
+ {
759
+ "internalType": "address",
760
+ "name": "",
761
+ "type": "address"
762
+ }
763
+ ],
764
+ "stateMutability": "view",
765
+ "type": "function"
766
+ },
767
+ {
768
+ "inputs": [],
769
+ "name": "getRegistry",
770
+ "outputs": [
771
+ {
772
+ "internalType": "contract IRegistry",
773
+ "name": "",
774
+ "type": "address"
775
+ }
776
+ ],
777
+ "stateMutability": "view",
778
+ "type": "function"
779
+ },
780
+ {
781
+ "inputs": [],
782
+ "name": "getRelease",
783
+ "outputs": [
784
+ {
785
+ "internalType": "VersionPart",
786
+ "name": "release",
787
+ "type": "uint8"
788
+ }
789
+ ],
790
+ "stateMutability": "view",
791
+ "type": "function"
792
+ },
793
+ {
794
+ "inputs": [],
795
+ "name": "getToken",
796
+ "outputs": [
797
+ {
798
+ "internalType": "contract IERC20Metadata",
799
+ "name": "token",
800
+ "type": "address"
801
+ }
802
+ ],
803
+ "stateMutability": "view",
804
+ "type": "function"
805
+ },
806
+ {
807
+ "inputs": [],
808
+ "name": "getTokenHandler",
809
+ "outputs": [
810
+ {
811
+ "internalType": "contract TokenHandler",
812
+ "name": "tokenHandler",
813
+ "type": "address"
814
+ }
815
+ ],
816
+ "stateMutability": "view",
817
+ "type": "function"
818
+ },
819
+ {
820
+ "inputs": [],
821
+ "name": "getVersion",
822
+ "outputs": [
823
+ {
824
+ "internalType": "Version",
825
+ "name": "version",
826
+ "type": "uint24"
827
+ }
828
+ ],
829
+ "stateMutability": "view",
830
+ "type": "function"
831
+ },
832
+ {
833
+ "inputs": [],
834
+ "name": "getWallet",
835
+ "outputs": [
836
+ {
837
+ "internalType": "address",
838
+ "name": "walletAddress",
839
+ "type": "address"
840
+ }
841
+ ],
842
+ "stateMutability": "view",
843
+ "type": "function"
844
+ },
845
+ {
846
+ "inputs": [],
847
+ "name": "isActive",
848
+ "outputs": [
849
+ {
850
+ "internalType": "bool",
851
+ "name": "active",
852
+ "type": "bool"
853
+ }
854
+ ],
855
+ "stateMutability": "view",
856
+ "type": "function"
857
+ },
858
+ {
859
+ "inputs": [],
860
+ "name": "isConsumingScheduledOp",
861
+ "outputs": [
862
+ {
863
+ "internalType": "bytes4",
864
+ "name": "",
865
+ "type": "bytes4"
866
+ }
867
+ ],
868
+ "stateMutability": "view",
869
+ "type": "function"
870
+ },
871
+ {
872
+ "inputs": [],
873
+ "name": "isNftInterceptor",
874
+ "outputs": [
875
+ {
876
+ "internalType": "bool",
877
+ "name": "isInterceptor",
878
+ "type": "bool"
879
+ }
880
+ ],
881
+ "stateMutability": "view",
882
+ "type": "function"
883
+ },
884
+ {
885
+ "inputs": [],
886
+ "name": "isRegistered",
887
+ "outputs": [
888
+ {
889
+ "internalType": "bool",
890
+ "name": "",
891
+ "type": "bool"
892
+ }
893
+ ],
894
+ "stateMutability": "view",
895
+ "type": "function"
896
+ },
897
+ {
898
+ "inputs": [],
899
+ "name": "linkToRegisteredNftId",
900
+ "outputs": [
901
+ {
902
+ "internalType": "NftId",
903
+ "name": "nftId",
904
+ "type": "uint96"
905
+ }
906
+ ],
907
+ "stateMutability": "nonpayable",
908
+ "type": "function"
909
+ },
910
+ {
911
+ "inputs": [
912
+ {
913
+ "internalType": "address",
914
+ "name": "from",
915
+ "type": "address"
916
+ },
917
+ {
918
+ "internalType": "address",
919
+ "name": "to",
920
+ "type": "address"
921
+ },
922
+ {
923
+ "internalType": "uint256",
924
+ "name": "tokenId",
925
+ "type": "uint256"
926
+ },
927
+ {
928
+ "internalType": "address",
929
+ "name": "operator",
930
+ "type": "address"
931
+ }
932
+ ],
933
+ "name": "nftTransferFrom",
934
+ "outputs": [],
935
+ "stateMutability": "nonpayable",
936
+ "type": "function"
937
+ },
938
+ {
939
+ "inputs": [
940
+ {
941
+ "internalType": "NftId",
942
+ "name": "policyNftId",
943
+ "type": "uint96"
944
+ },
945
+ {
946
+ "internalType": "ClaimId",
947
+ "name": "claimId",
948
+ "type": "uint16"
949
+ },
950
+ {
951
+ "internalType": "Amount",
952
+ "name": "amount",
953
+ "type": "uint96"
954
+ }
955
+ ],
956
+ "name": "processConfirmedClaim",
957
+ "outputs": [],
958
+ "stateMutability": "nonpayable",
959
+ "type": "function"
960
+ },
961
+ {
962
+ "inputs": [
963
+ {
964
+ "internalType": "address",
965
+ "name": "newAuthority",
966
+ "type": "address"
967
+ }
968
+ ],
969
+ "name": "setAuthority",
970
+ "outputs": [],
971
+ "stateMutability": "nonpayable",
972
+ "type": "function"
973
+ },
974
+ {
975
+ "inputs": [
976
+ {
977
+ "internalType": "NftId",
978
+ "name": "bundleNftId",
979
+ "type": "uint96"
980
+ },
981
+ {
982
+ "components": [
983
+ {
984
+ "internalType": "UFixed",
985
+ "name": "fractionalFee",
986
+ "type": "uint160"
987
+ },
988
+ {
989
+ "internalType": "Amount",
990
+ "name": "fixedFee",
991
+ "type": "uint96"
992
+ }
993
+ ],
994
+ "internalType": "struct Fee",
995
+ "name": "fee",
996
+ "type": "tuple"
997
+ }
998
+ ],
999
+ "name": "setBundleFee",
1000
+ "outputs": [],
1001
+ "stateMutability": "nonpayable",
1002
+ "type": "function"
1003
+ },
1004
+ {
1005
+ "inputs": [
1006
+ {
1007
+ "internalType": "NftId",
1008
+ "name": "bundleNftId",
1009
+ "type": "uint96"
1010
+ },
1011
+ {
1012
+ "internalType": "bool",
1013
+ "name": "locked",
1014
+ "type": "bool"
1015
+ }
1016
+ ],
1017
+ "name": "setBundleLocked",
1018
+ "outputs": [],
1019
+ "stateMutability": "nonpayable",
1020
+ "type": "function"
1021
+ },
1022
+ {
1023
+ "inputs": [
1024
+ {
1025
+ "components": [
1026
+ {
1027
+ "internalType": "UFixed",
1028
+ "name": "fractionalFee",
1029
+ "type": "uint160"
1030
+ },
1031
+ {
1032
+ "internalType": "Amount",
1033
+ "name": "fixedFee",
1034
+ "type": "uint96"
1035
+ }
1036
+ ],
1037
+ "internalType": "struct Fee",
1038
+ "name": "poolFee",
1039
+ "type": "tuple"
1040
+ },
1041
+ {
1042
+ "components": [
1043
+ {
1044
+ "internalType": "UFixed",
1045
+ "name": "fractionalFee",
1046
+ "type": "uint160"
1047
+ },
1048
+ {
1049
+ "internalType": "Amount",
1050
+ "name": "fixedFee",
1051
+ "type": "uint96"
1052
+ }
1053
+ ],
1054
+ "internalType": "struct Fee",
1055
+ "name": "stakingFee",
1056
+ "type": "tuple"
1057
+ },
1058
+ {
1059
+ "components": [
1060
+ {
1061
+ "internalType": "UFixed",
1062
+ "name": "fractionalFee",
1063
+ "type": "uint160"
1064
+ },
1065
+ {
1066
+ "internalType": "Amount",
1067
+ "name": "fixedFee",
1068
+ "type": "uint96"
1069
+ }
1070
+ ],
1071
+ "internalType": "struct Fee",
1072
+ "name": "performanceFee",
1073
+ "type": "tuple"
1074
+ }
1075
+ ],
1076
+ "name": "setFees",
1077
+ "outputs": [],
1078
+ "stateMutability": "nonpayable",
1079
+ "type": "function"
1080
+ },
1081
+ {
1082
+ "inputs": [
1083
+ {
1084
+ "internalType": "Amount",
1085
+ "name": "maxBalanceAmount",
1086
+ "type": "uint96"
1087
+ }
1088
+ ],
1089
+ "name": "setMaxBalanceAmount",
1090
+ "outputs": [],
1091
+ "stateMutability": "nonpayable",
1092
+ "type": "function"
1093
+ },
1094
+ {
1095
+ "inputs": [
1096
+ {
1097
+ "internalType": "address",
1098
+ "name": "newWallet",
1099
+ "type": "address"
1100
+ }
1101
+ ],
1102
+ "name": "setWallet",
1103
+ "outputs": [],
1104
+ "stateMutability": "nonpayable",
1105
+ "type": "function"
1106
+ },
1107
+ {
1108
+ "inputs": [
1109
+ {
1110
+ "internalType": "NftId",
1111
+ "name": "bundleNftId",
1112
+ "type": "uint96"
1113
+ },
1114
+ {
1115
+ "internalType": "Amount",
1116
+ "name": "amount",
1117
+ "type": "uint96"
1118
+ }
1119
+ ],
1120
+ "name": "stake",
1121
+ "outputs": [],
1122
+ "stateMutability": "nonpayable",
1123
+ "type": "function"
1124
+ },
1125
+ {
1126
+ "inputs": [
1127
+ {
1128
+ "internalType": "bytes4",
1129
+ "name": "interfaceId",
1130
+ "type": "bytes4"
1131
+ }
1132
+ ],
1133
+ "name": "supportsInterface",
1134
+ "outputs": [
1135
+ {
1136
+ "internalType": "bool",
1137
+ "name": "",
1138
+ "type": "bool"
1139
+ }
1140
+ ],
1141
+ "stateMutability": "view",
1142
+ "type": "function"
1143
+ },
1144
+ {
1145
+ "inputs": [
1146
+ {
1147
+ "internalType": "NftId",
1148
+ "name": "bundleNftId",
1149
+ "type": "uint96"
1150
+ },
1151
+ {
1152
+ "internalType": "Amount",
1153
+ "name": "amount",
1154
+ "type": "uint96"
1155
+ }
1156
+ ],
1157
+ "name": "unstake",
1158
+ "outputs": [],
1159
+ "stateMutability": "nonpayable",
1160
+ "type": "function"
1161
+ },
1162
+ {
1163
+ "inputs": [
1164
+ {
1165
+ "internalType": "NftId",
1166
+ "name": "applicationNftId",
1167
+ "type": "uint96"
1168
+ },
1169
+ {
1170
+ "internalType": "NftId",
1171
+ "name": "bundleNftId",
1172
+ "type": "uint96"
1173
+ },
1174
+ {
1175
+ "internalType": "Amount",
1176
+ "name": "collateralizationAmount",
1177
+ "type": "uint96"
1178
+ }
1179
+ ],
1180
+ "name": "verifyApplication",
1181
+ "outputs": [],
1182
+ "stateMutability": "nonpayable",
1183
+ "type": "function"
1184
+ },
1185
+ {
1186
+ "inputs": [
1187
+ {
1188
+ "internalType": "NftId",
1189
+ "name": "bundleNftId",
1190
+ "type": "uint96"
1191
+ },
1192
+ {
1193
+ "internalType": "Amount",
1194
+ "name": "amount",
1195
+ "type": "uint96"
1196
+ }
1197
+ ],
1198
+ "name": "withdrawBundleFees",
1199
+ "outputs": [
1200
+ {
1201
+ "internalType": "Amount",
1202
+ "name": "withdrawnAmount",
1203
+ "type": "uint96"
1204
+ }
1205
+ ],
1206
+ "stateMutability": "nonpayable",
1207
+ "type": "function"
1208
+ },
1209
+ {
1210
+ "inputs": [
1211
+ {
1212
+ "internalType": "Amount",
1213
+ "name": "amount",
1214
+ "type": "uint96"
1215
+ }
1216
+ ],
1217
+ "name": "withdrawFees",
1218
+ "outputs": [
1219
+ {
1220
+ "internalType": "Amount",
1221
+ "name": "withdrawnAmount",
1222
+ "type": "uint96"
1223
+ }
1224
+ ],
1225
+ "stateMutability": "nonpayable",
1226
+ "type": "function"
1227
+ }
1228
+ ],
1229
+ "bytecode": "0x608060405234801561000f575f5ffd5b50604051614d18380380614d1883398101604081905261002e91610f2c565b5f3390506101ce8585856040518060e0016040528073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561008a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100ae9190610fb1565b6001600160601b0316815260200173__$bf7bc340cbb9229ef1de2c568356e67902$__63901717d16040518163ffffffff1660e01b8152600401602060405180830381865af4158015610103573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101279190610fcc565b6001600160a01b0316815260200173__$bf7bc340cbb9229ef1de2c568356e67902$__63901717d16040518163ffffffff1660e01b8152600401602060405180830381865af415801561017c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101a09190610fcc565b6001600160a01b031681525f60208201819052604082018190526001606083015260809091015286866101d8565b505050505061126f565b5f516020614cf85f395f51905f52805468010000000000000000810460ff1615906001600160401b03165f8115801561020e5750825b90505f826001600160401b031660011480156102295750303b155b905081158015610237575080155b156102555760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561028357845460ff60401b1916680100000000000000001785555b6102918b8b8b8b8b8b6102e4565b83156102d757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050505050565b6102ec610302565b6102fa86868686868661033f565b505050505050565b5f516020614cf85f395f51905f525468010000000000000000900460ff1661033d57604051631afcd79f60e31b815260040160405180910390fd5b565b610347610302565b61035c868686600f60608801518790876104d6565b5f7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c58300845160208601516001600160601b039091166c010000000000000000000000006001600160a01b03928316021782556040860151600183018054606089015160808a015160a08b015160c08c0151959096166001600160a81b031990931692909217600160a01b911515919091021761ffff60a81b1916600160a81b9115159190910260ff60b01b191617600160b01b931515939093029290921760ff60b81b1916600160b81b91151591909102179055905061044161043c600f90565b610731565b6003820180546001600160a01b0319166001600160a01b039290921691909117905561046e61043c601690565b6004820180546001600160a01b0319166001600160a01b039290921691909117905561049b61043c600b90565b6002820180546001600160a01b0319166001600160a01b03929092169190911790556104cd635a48579360e11b6107c8565b50505050505050565b6104de610302565b5f6104ea8888876107fb565b90505f7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0060405163bf8e179760e01b81526001600160601b03841660048201529091506001600160a01b038a169063bf8e179790602401602060405180830381865afa15801561055c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105809190610fcc565b81546001600160a01b0319166001600160a01b039190911690811782556040805163bf7e214f60e01b8152905161061e929163bf7e214f9160048083019260209291908290030181865afa1580156105da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105fe9190610fcc565b8a8a8a8a898960405180602001604052805f8152506108a660201b60201c565b8054604080516302cd307160e01b815290516001600160a01b03909216916302cd3071916004808201926020929091908290030181865afa158015610665573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106899190610fcc565b6001820180546001600160a01b03199081166001600160a01b03938416179091556002830180549091169187169190911790556106c761043c600b90565b6003820180546001600160a01b0319166001600160a01b03929092169190911790556106f461043c600d90565b6004820180546001600160a01b0319166001600160a01b03929092169190911790556107266330841f2160e21b6107c8565b505050505050505050565b5f6107446001546001600160a01b031690565b6001600160a01b031663d39e60438361075b61096f565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561079e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c29190610fcc565b92915050565b6107d0610302565b6107f8816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b5f60ff8216600c0361081c576108138484600a6109f2565b5082905061089f565b5f6108298585600c6109f2565b60405163677d3feb60e11b81526001600160601b03861660048201529091506001600160a01b0382169063cefa7fd690602401602060405180830381865afa158015610877573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061089b9190610fb1565b9150505b9392505050565b6108ae610302565b84515f036108cf5760405163591eebf360e11b815260040160405180910390fd5b6108de88888887878787610abc565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f008061090a878261106b565b5060018101805460ff191685151517905561092661043c600b90565b6001820180546001600160a01b039290921661010002610100600160a81b031990921691909117905561095f634a531f3360e01b6107c8565b6107266306e9e5ff60e31b6107c8565b5f61098e5f516020614cd85f395f51905f52546001600160a01b031690565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109c9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ed919061113e565b905090565b6040516305247a1760e51b81526001600160601b038316600482015283905f906001600160a01b0383169063a48f42e0906024015f60405180830381865afa158015610a40573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a679190810190611186565b9050610a7e81604001518460ff9081169116141590565b15610ab457604080820151905163b0c1f6eb60e01b815260ff808616600483015290911660248201526044015b60405180910390fd5b509392505050565b610ac4610302565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015610b1a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3e9190611256565b610b665760405163cf6935e560e01b81526001600160a01b0388166004820152602401610aab565b610b6f87610c10565b610b798683610c21565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d010000000000000000000000000086151502178155905060018101610bf5838261106b565b50610c06634a531f3360e01b6107c8565b5050505050505050565b610c18610302565b6107f881610cb3565b610c29610302565b610c31610cc4565b610c3a82610d0c565b6001600160a01b038116610c615760405163f17ef42d60e01b815260040160405180910390fd5b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b039093169290920291909117905550565b610cbb610302565b6107f881610dd8565b610ccc610302565b61033d6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610d14610302565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015610d6a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8e9190611256565b610db65760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610aab565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f516020614cd85f395f51905f5280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6001600160a01b03811681146107f8575f5ffd5b8051610e5781610e38565b919050565b6001600160601b03811681146107f8575f5ffd5b8051610e5781610e5c565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b0381118282101715610eb157610eb1610e7b565b60405290565b5f806001600160401b03841115610ed057610ed0610e7b565b50604051601f19601f85018116603f011681018181106001600160401b0382111715610efe57610efe610e7b565b604052838152905080828401851015610f15575f5ffd5b8383602083015e5f60208583010152509392505050565b5f5f5f5f60808587031215610f3f575f5ffd5b8451610f4a81610e38565b6020860151909450610f5b81610e5c565b60408601519093506001600160401b03811115610f76575f5ffd5b8501601f81018713610f86575f5ffd5b610f9587825160208401610eb7565b9250506060850151610fa681610e38565b939692955090935050565b5f60208284031215610fc1575f5ffd5b815161089f81610e5c565b5f60208284031215610fdc575f5ffd5b815161089f81610e38565b600181811c90821680610ffb57607f821691505b60208210810361101957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561106657805f5260205f20601f840160051c810160208510156110445750805b601f840160051c820191505b81811015611063575f8155600101611050565b50505b505050565b81516001600160401b0381111561108457611084610e7b565b611098816110928454610fe7565b8461101f565b6020601f8211600181146110ca575f83156110b35750848201515b5f19600385901b1c1916600184901b178455611063565b5f84815260208120601f198516915b828110156110f957878501518255602094850194600190920191016110d9565b508482101561111657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60ff811681146107f8575f5ffd5b8051610e5781611125565b5f6020828403121561114e575f5ffd5b815161089f81611125565b80518015158114610e57575f5ffd5b5f82601f830112611177575f5ffd5b61089f83835160208501610eb7565b5f60208284031215611196575f5ffd5b81516001600160401b038111156111ab575f5ffd5b820160e081850312156111bc575f5ffd5b6111c4610e8f565b6111cd82610e70565b81526111db60208301610e70565b60208201526111ec60408301611133565b60408201526111fd60608301611159565b606082015261120e60808301610e4c565b608082015261121f60a08301610e4c565b60a082015260c08201516001600160401b0381111561123c575f5ffd5b61124886828501611168565b60c083015250949350505050565b5f60208284031215611266575f5ffd5b61089f82611159565b613a5c8061127c5f395ff3fe608060405234801561000f575f5ffd5b5060043610610280575f3560e01c8063644c45e01161015657806392f37d78116100ca578063d0d63b0911610084578063d0d63b09146106e0578063de7b5d14146106f3578063deaa59df14610723578063ea15869f14610736578063ee3784631461075d578063f3d0e5d214610770575f5ffd5b806392f37d7814610683578063ad12ad6014610696578063ada9652e146106a9578063b423086c146106bd578063bca99e39146106c5578063bf7e214f146106d8575f5ffd5b80637a9e5e4b1161011b5780637a9e5e4b1461052e57806385ba834414610541578063893d20e8146106325780638d9a753f1461063a5780638fb360371461064d57806390edbd351461066e575f5ffd5b8063644c45e0146104a157806368d2b320146104be5780636bd1c0eb146104d15780636c1e9dff1461050157806376b707b714610514575f5ffd5b806322366844116101f857806343d752d3116101b257806343d752d3146104475780634deed5791461044f57806354e50779146104625780635741e5e9146104755780635ab1bd531461047d5780635e1767ea1461048e575f5ffd5b806322366844146103d557806322f3e2d4146103dd57806326889b09146103e55780632eb3e6f4146103fa57806337dd18a514610421578063419197fe14610434575f5ffd5b806313299604116102495780631329960414610356578063138461e01461037657806317d7de7c1461037e5780631c6b2190146103935780631eff4b22146103a657806321df0da7146103cd575f5ffd5b806293f0eb1461028457806301ffc9a7146102b45780630d8e6e2c146102f05780630fec111c1461030c5780630ffeecca14610321575b5f5ffd5b610297610292366004612bc6565b610799565b6040516001600160601b0390911681526020015b60405180910390f35b6102e06102c2366004612be8565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020016102ab565b6102f86108ef565b60405162ffffff90911681526020016102ab565b610314610976565b6040516102ab9190612c3d565b6103487f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c5830081565b6040519081526020016102ab565b61035e610b30565b6040516001600160a01b0390911681526020016102ab565b610297610b98565b610386610ba2565b6040516102ab9190612cd1565b6102976103a1366004612bc6565b610bb2565b6103487f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61035e610c08565b6102e0610c4c565b6102e0610d42565b6103f86103f3366004612ce3565b610db9565b005b6103487fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6103f861042f366004612e41565b610e9a565b6103f8610442366004612e75565b610f7a565b61035e610fcd565b6103f861045d366004612e91565b610fdf565b610297610470366004612ce3565b61118d565b6102e0611271565b6001546001600160a01b031661035e565b61034861049c366004612f51565b611327565b5f5160206139c75f395f51905f52546001600160601b0316610297565b6103f86104cc366004612f8f565b611370565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b031661035e565b6103f861050f366004612ce3565b611449565b61051c611522565b60405160ff90911681526020016102ab565b6103f861053c366004612fbb565b61158a565b6106256040805160e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c08101919091527f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583006040805160e08101825282546001600160601b03811682526001600160a01b03600160601b909104811660208301526001909301549283169181019190915260ff600160a01b8304811615156060830152600160a81b8304811615156080830152600160b01b83048116151560a0830152600160b81b909204909116151560c0820152919050565b6040516102ab9190612fd6565b61035e611610565b6103f861064836600461305c565b611741565b610655611790565b6040516001600160e01b031990911681526020016102ab565b6106766117c5565b6040516102ab919061309f565b6102e06106913660046130db565b6117f6565b6103f86106a4366004613176565b611821565b6103485f5160206139c75f395f51905f5281565b6106766118c4565b6103f86106d3366004612bc6565b6118e0565b61035e611930565b6103f86106ee366004612bc6565b61194b565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b031661035e565b6103f8610731366004612fbb565b611a23565b6103487fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6103f861076b3660046131d5565b611a70565b61078361077e366004613214565b611a86565b60405164ffffffffff90911681526020016102ab565b5f6107a6335b5f36611b60565b6107ae611610565b6001600160a01b0316336001600160a01b0316146107e65760405163086391f760e31b81523360048201526024015b60405180910390fd5b5f3390506108dc8173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015610834573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108589190613280565b6040516209629960e41b8152605a600482015273__$71e292c09eace9601b3e21e68a1278917a$__906296299090602401602060405180830381865af41580156108a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c891906132a5565b60405180602001604052805f815250611c56565b91506108e88284611cf4565b5050919050565b604051632efe011360e01b8152600160048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561094d573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061097191906132c0565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610a22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4691906132e2565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610a8e611610565b6001600160a01b03168152602001826001018054610aab906132fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad7906132fd565b8015610b225780601f10610af957610100808354040283529160200191610b22565b820191905f5260205f20905b815481529060010190602001808311610b0557829003601f168201915b505050505081525091505090565b5f610b39610fcd565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b74573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109719190613340565b5f61097130611d86565b6060610bac6117c5565b51919050565b5f610bbc3361079f565b610bc4611610565b6001600160a01b0316336001600160a01b031614610bf75760405163086391f760e31b81523360048201526024016107dd565b610c0082611fc8565b90505b919050565b5f610c11610fcd565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b74573d5f5f3e3d5ffd5b5f610c5f6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610ca3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc791906132e2565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610d1e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109719190613366565b5f610d4b611930565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d8f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db39190613366565b15905090565b610dc23361079f565b81610dd56001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610e22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e469190613340565b6001600160a01b0316336001600160a01b031614610e7b578033604051636efdd32b60e11b81526004016107dd929190613381565b826016610e88828261205f565b610e928585612193565b505050505050565b610ea33361079f565b81610eb66001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f03573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f279190613340565b6001600160a01b0316336001600160a01b031614610f5c578033604051636efdd32b60e11b81526004016107dd929190613381565b826016610f69828261205f565b610f7385856121e0565b5050505050565b610f833361079f565b610f8b611610565b6001600160a01b0316336001600160a01b031614610fbe5760405163086391f760e31b81523360048201526024016107dd565b610fc8828261225a565b505050565b5f610fd66117c5565b60200151905090565b610fe83361079f565b826015610ff5828261205f565b5f6110277fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b60405163bd7d9d8560e01b81526001600160601b03881660048201529091506111239087906001600160a01b0384169063bd7d9d85906024015f60405180830381865afa15801561107a573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526110a19190810190613419565b6101c00151604051634793b4ab60e01b81526001600160601b038916600482015288906001600160a01b03861690634793b4ab906024015f60405180830381865afa1580156110f2573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261111991908101906135ac565b60a00151886117f6565b61114b57604051636b468c9b60e01b81526001600160601b03871660048201526024016107dd565b6040516001600160601b03808616919088169030907fcca48a0200c526a7c48f1e770c739ef8e82d7b30e26825735858705fbcda4e07905f90a4505050505050565b5f6111973361079f565b826111aa6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156111f7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061121b9190613340565b6001600160a01b0316336001600160a01b031614611250578033604051636efdd32b60e11b81526004016107dd929190613381565b83601661125d828261205f565b61126786866123ee565b9695505050505050565b5f61127a610c4c565b156112fe576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156112ce573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112f59190810190613689565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f015460ff1690565b805160208201205f9060ff199061134090600190613759565b60405160200161135291815260200190565b60405160208183030381529060405280519060200120169050919050565b6113793361079f565b8161138c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156113d9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113fd9190613340565b6001600160a01b0316336001600160a01b031614611432578033604051636efdd32b60e11b81526004016107dd929190613381565b82601661143f828261205f565b610f73858561243b565b6114523361079f565b816114656001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156114b2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114d69190613340565b6001600160a01b0316336001600160a01b03161461150b578033604051636efdd32b60e11b81526004016107dd929190613381565b826016611518828261205f565b610e928585611cf4565b5f61152b611930565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611566573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109719190613778565b33611593611930565b6001600160a01b0316816001600160a01b0316146115ce5760405162d1953b60e31b81526001600160a01b03821660048201526024016107dd565b816001600160a01b03163b5f03611603576040516361798f2f60e11b81526001600160a01b03831660048201526024016107dd565b61160c8261249b565b5050565b5f805f5160206139c75f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561167c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a09190613366565b1561172b576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611701573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117259190613340565b91505090565b54600160601b90046001600160a01b0316919050565b61174a3361079f565b611752611610565b6001600160a01b0316336001600160a01b0316146117855760405163086391f760e31b81523360048201526024016107dd565b610fc88383836124fb565b5f5160206139e75f395f51905f5280545f9190600160a01b900460ff166117b7575f611725565b638fb3603760e01b91505090565b60408051808201909152606081525f60208201526117e1610c4c565b156117ee57610971612580565b6109716118c4565b5f856015611804828261205f565b856016611811828261205f565b5060019998505050505050505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611868573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188c9190613340565b6001600160a01b0316336001600160a01b0316146118be5760405162f0630960e01b81523360048201526024016107dd565b50505050565b60408051808201909152606081525f6020820152610971612580565b6118e93361079f565b6118f1611610565b6001600160a01b0316336001600160a01b0316146119245760405163086391f760e31b81523360048201526024016107dd565b61192d81612772565b50565b5f5160206139e75f395f51905f52546001600160a01b031690565b6119543361079f565b806119676001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156119b4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d89190613340565b6001600160a01b0316336001600160a01b031614611a0d578033604051636efdd32b60e11b81526004016107dd929190613381565b816016611a1a828261205f565b6118be846127dc565b611a2c3361079f565b611a34611610565b6001600160a01b0316336001600160a01b031614611a675760405163086391f760e31b81523360048201526024016107dd565b61192d81612821565b611a793361079f565b826015610f73828261205f565b5f611a903361079f565b82611aa36001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611af0573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b149190613340565b6001600160a01b0316336001600160a01b031614611b49578033604051636efdd32b60e11b81526004016107dd929190613381565b836016611b56828261205f565b6112678686612896565b5f5160206139e75f395f51905f525f80611b98611b7b611930565b8730611b8a60045f8a8c613793565b611b93916137ba565b61293c565b9150915081610e925763ffffffff811615611c3357825460ff60a01b1916600160a01b178355611bc6611930565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611bf5939291906137f0565b5f604051808303815f87803b158015611c0c575f5ffd5b505af1158015611c1e573d5f5f3e3d5ffd5b5050845460ff60a01b1916855550610e929050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016107dd565b7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c5830454604051637eddc94b60e11b81525f916001600160a01b03169063fdbb929690611cab908890889088908890600401613850565b6020604051808303815f875af1158015611cc7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ceb91906132e2565b95945050505050565b5f516020613a075f395f51905f5254604051636c1e9dff60e01b81526001600160601b038481166004830152831660248201525f916001600160a01b031690636c1e9dff906044015b6020604051808303815f875af1158015611d59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906132e2565b90505b92915050565b5f805f5160206139c75f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611df2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e169190613366565b15611e425780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016107dd565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e94573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb89190613366565b611ee05760405163b9304b0d60e01b81526001600160a01b03841660048201526024016107dd565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611f32573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f5691906132e2565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490611fa2611610565b604051611fb0929190613381565b60405180910390a1546001600160601b031692915050565b5f7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af115801561203b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0091906132e2565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156120af573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d39190613366565b8061216157506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa15801561213b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215f9190613366565b155b1561160c5760405163d711af7560e01b81526001600160601b038316600482015260ff821660248201526044016107dd565b5f516020613a075f395f51905f52546040516326889b0960e01b81526001600160601b038481166004830152831660248201525f916001600160a01b0316906326889b0990604401611d3d565b7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583045460405163a5fbe47960e01b81526001600160a01b039091169063a5fbe47990612231908590859060040161388b565b5f604051808303815f87803b158015612248575f5ffd5b505af1158015610e92573d5f5f3e3d5ffd5b5f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96846001600160a01b031663dd62ed3e61228c610fcd565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa1580156122d4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122f891906138a8565b6040518263ffffffff1660e01b815260040161231691815260200190565b602060405180830381865af4158015612331573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061235591906132e2565b90507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00600101546040516320c8cbff60e11b81526001600160a01b0385811660048301526001600160601b03851660248301526101009092049091169063419197fe906044015f604051808303815f87803b1580156123d2575f5ffd5b505af11580156123e4573d5f5f3e3d5ffd5b5050505092915050565b5f516020613a075f395f51905f52546040516354e5077960e01b81526001600160601b038481166004830152831660248201525f916001600160a01b0316906354e5077990604401611d3d565b7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583045460405163d42a24b160e01b81526001600160601b038416600482015282151560248201526001600160a01b039091169063d42a24b190604401612231565b5f5160206139e75f395f51905f5280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583025460405163cf2f336560e01b81526001600160a01b039091169063cf2f33659061254e908690869086906004016138bf565b5f604051808303815f87803b158015612565575f5ffd5b505af1158015612577573d5f5f3e3d5ffd5b50505050505050565b60408051808201909152606081525f60208201525f6125a76001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156125eb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061260f91906132e2565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612668573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061268c9190613366565b1561276a577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c36126e85f5160206139c75f395f51905f52546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015612729573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261275091908101906138e7565b60208101519092506001600160a01b03161561276a575090565b611725612a44565b5f516020613a075f395f51905f525460405163bca99e3960e01b81526001600160601b03831660048201526001600160a01b039091169063bca99e39906024015b5f604051808303815f87803b1580156127ca575f5ffd5b505af1158015610f73573d5f5f3e3d5ffd5b5f516020613a075f395f51905f525460405163d0d63b0960e01b81526001600160601b03831660048201526001600160a01b039091169063d0d63b09906024016127b3565b612829611610565b6001600160a01b0316336001600160a01b03161461285c5760405163086391f760e31b81523360048201526024016107dd565b612866600b612b21565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024016127b3565b5f7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583006004908101546040516379e872e960e11b81526001600160601b0386169281019290925264ffffffffff841660248301526001600160a01b03169063f3d0e5d2906044016020604051808303815f875af1158015612918573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906132a5565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516129aa919061397b565b5f60405180830381855afa9150503d805f81146129e2576040519150601f19603f3d011682016040523d82523d5f602084013e6129e7565b606091505b50915091508115612a39576040815110612a195780806020019051810190612a0f9190613991565b9094509250612a39565b6020815110612a395780806020019051810190612a369190613366565b93505b505094509492505050565b60408051808201909152606081525f60208201525f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060400160405280825f018054612a95906132fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612ac1906132fd565b8015612b0c5780601f10612ae357610100808354040283529160200191612b0c565b820191905f5260205f20905b815481529060010190602001808311612aef57829003601f168201915b50505091835250505f60209091015292915050565b5f612b346001546001600160a01b031690565b6001600160a01b031663d39e604383612b4b611522565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612b8e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c009190613340565b6001600160601b038116811461192d575f5ffd5b5f60208284031215612bd6575f5ffd5b8135612be181612bb2565b9392505050565b5f60208284031215612bf8575f5ffd5b81356001600160e01b031981168114612be1575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151612c85608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152612cc9610100840182612c0f565b949350505050565b602081525f611d7d6020830184612c0f565b5f5f60408385031215612cf4575f5ffd5b8235612cff81612bb2565b91506020830135612d0f81612bb2565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715612d5057612d50612d1a565b60405290565b60405161020081016001600160401b0381118282101715612d5057612d50612d1a565b60405160c081016001600160401b0381118282101715612d5057612d50612d1a565b60405160e081016001600160401b0381118282101715612d5057612d50612d1a565b604051601f8201601f191681016001600160401b0381118282101715612de557612de5612d1a565b604052919050565b6001600160a01b038116811461192d575f5ffd5b5f60408284031215612e11575f5ffd5b612e19612d2e565b90508135612e2681612ded565b81526020820135612e3681612bb2565b602082015292915050565b5f5f60608385031215612e52575f5ffd5b8235612e5d81612bb2565b9150612e6c8460208501612e01565b90509250929050565b5f5f60408385031215612e86575f5ffd5b8235612cff81612ded565b5f5f5f60608486031215612ea3575f5ffd5b8335612eae81612bb2565b92506020840135612ebe81612bb2565b91506040840135612ece81612bb2565b809150509250925092565b5f6001600160401b03821115612ef157612ef1612d1a565b50601f01601f191660200190565b5f82601f830112612f0e575f5ffd5b8135612f21612f1c82612ed9565b612dbd565b818152846020838601011115612f35575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215612f61575f5ffd5b81356001600160401b03811115612f76575f5ffd5b612cc984828501612eff565b801515811461192d575f5ffd5b5f5f60408385031215612fa0575f5ffd5b8235612fab81612bb2565b91506020830135612d0f81612f82565b5f60208284031215612fcb575f5ffd5b8135612be181612ded565b5f60e0820190506001600160601b03835116825260018060a01b03602084015116602083015260018060a01b036040840151166040830152606083015115156060830152608083015161302d608084018215159052565b5060a083015161304160a084018215159052565b5060c083015161305560c084018215159052565b5092915050565b5f5f5f60c0848603121561306e575f5ffd5b6130788585612e01565b92506130878560408601612e01565b91506130968560808601612e01565b90509250925092565b602081525f8251604060208401526130ba6060840182612c0f565b602094909401516001600160a01b0316604093909301929092525090919050565b5f5f5f5f5f60a086880312156130ef575f5ffd5b85356130fa81612bb2565b945060208601356001600160401b03811115613114575f5ffd5b61312088828901612eff565b945050604086013561313181612bb2565b925060608601356001600160401b0381111561314b575f5ffd5b61315788828901612eff565b925050608086013561316881612bb2565b809150509295509295909350565b5f5f5f5f60808587031215613189575f5ffd5b843561319481612ded565b935060208501356131a481612ded565b92506040850135915060608501356131bb81612ded565b939692955090935050565b61ffff8116811461192d575f5ffd5b5f5f5f606084860312156131e7575f5ffd5b83356131f281612bb2565b92506020840135612ebe816131c6565b64ffffffffff8116811461192d575f5ffd5b5f5f60408385031215613225575f5ffd5b823561323081612bb2565b91506020830135612d0f81613202565b8051610c0381612bb2565b5f6040828403121561325b575f5ffd5b613263612d2e565b9050815161327081612ded565b81526020820151612e3681612bb2565b5f60408284031215613290575f5ffd5b611d7d838361324b565b8051610c0381613202565b5f602082840312156132b5575f5ffd5b8151612be181613202565b5f602082840312156132d0575f5ffd5b815162ffffff81168114612be1575f5ffd5b5f602082840312156132f2575f5ffd5b8151612be181612bb2565b600181811c9082168061331157607f821691505b60208210810361332f57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051610c0381612ded565b5f60208284031215613350575f5ffd5b8151612be181612ded565b8051610c0381612f82565b5f60208284031215613376575f5ffd5b8151612be181612f82565b6001600160601b039290921682526001600160a01b0316602082015260400190565b80516001600160c01b031981168114610c03575f5ffd5b8051610c03816131c6565b5f6133d2612f1c84612ed9565b90508281528383830111156133e5575f5ffd5b8282602083015e5f602084830101529392505050565b5f82601f83011261340a575f5ffd5b611d7d838351602085016133c5565b5f60208284031215613429575f5ffd5b81516001600160401b0381111561343e575f5ffd5b82016102008185031215613450575f5ffd5b613458612d56565b61346182613240565b815261346f60208301613240565b6020820152613480604083016133a3565b604082015261349160608301613240565b60608201526134a260808301613240565b60808201526134b360a083016133a3565b60a08201526134c460c083016133ba565b60c08201526134d560e083016133ba565b60e08201526134e76101008301613240565b6101008201526134fa6101208301613240565b61012082015261350d610140830161329a565b610140820152613520610160830161329a565b610160820152613533610180830161329a565b6101808201526135466101a0830161329a565b6101a08201526101c08201516001600160401b03811115613565575f5ffd5b613571868285016133fb565b6101c0830152506101e08201516001600160401b03811115613591575f5ffd5b61359d868285016133fb565b6101e083015250949350505050565b5f602082840312156135bc575f5ffd5b81516001600160401b038111156135d1575f5ffd5b820160e081850312156135e2575f5ffd5b6135ea612d79565b81516135f581613202565b8152602082015161360581613202565b60208201526136166040830161329a565b604082015261362760608301613240565b6060820152613639856080840161324b565b608082015260c08201516001600160401b03811115613656575f5ffd5b613662868285016133fb565b60a083015250949350505050565b60ff8116811461192d575f5ffd5b8051610c0381613670565b5f60208284031215613699575f5ffd5b81516001600160401b038111156136ae575f5ffd5b820160e081850312156136bf575f5ffd5b6136c7612d9b565b6136d082613240565b81526136de60208301613240565b60208201526136ef6040830161367e565b60408201526137006060830161335b565b606082015261371160808301613335565b608082015261372260a08301613335565b60a082015260c08201516001600160401b0381111561373f575f5ffd5b61374b868285016133fb565b60c083015250949350505050565b81810381811115611d8057634e487b7160e01b5f52601160045260245ffd5b5f60208284031215613788575f5ffd5b8151612be181613670565b5f5f858511156137a1575f5ffd5b838611156137ad575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015613055576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b80516001600160a01b031682526020908101516001600160601b0316910152565b6001600160a01b0385168152613869602082018561382f565b64ffffffffff8316606082015260a060808201525f61126760a0830184612c0f565b6001600160601b038316815260608101612be1602083018461382f565b5f602082840312156138b8575f5ffd5b5051919050565b60c081016138cd828661382f565b6138da604083018561382f565b612cc9608083018461382f565b5f602082840312156138f7575f5ffd5b81516001600160401b0381111561390c575f5ffd5b82016040818503121561391d575f5ffd5b613925612d2e565b81516001600160401b0381111561393a575f5ffd5b8201601f8101861361394a575f5ffd5b613959868251602084016133c5565b8252506020820151915061396c82612ded565b60208101919091529392505050565b5f82518060208501845e5f920191825250919050565b5f5f604083850312156139a2575f5ffd5b82516139ad81612f82565b602084015190925063ffffffff81168114612d0f575f5ffdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0025e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c58303a2646970667358221220f0f684c0ced40dc69f2d336f31ce2fbc7cbe83c6afb6750ae0480930eac8797a64736f6c634300081b0033f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00",
1230
+ "deployedBytecode": "0x608060405234801561000f575f5ffd5b5060043610610280575f3560e01c8063644c45e01161015657806392f37d78116100ca578063d0d63b0911610084578063d0d63b09146106e0578063de7b5d14146106f3578063deaa59df14610723578063ea15869f14610736578063ee3784631461075d578063f3d0e5d214610770575f5ffd5b806392f37d7814610683578063ad12ad6014610696578063ada9652e146106a9578063b423086c146106bd578063bca99e39146106c5578063bf7e214f146106d8575f5ffd5b80637a9e5e4b1161011b5780637a9e5e4b1461052e57806385ba834414610541578063893d20e8146106325780638d9a753f1461063a5780638fb360371461064d57806390edbd351461066e575f5ffd5b8063644c45e0146104a157806368d2b320146104be5780636bd1c0eb146104d15780636c1e9dff1461050157806376b707b714610514575f5ffd5b806322366844116101f857806343d752d3116101b257806343d752d3146104475780634deed5791461044f57806354e50779146104625780635741e5e9146104755780635ab1bd531461047d5780635e1767ea1461048e575f5ffd5b806322366844146103d557806322f3e2d4146103dd57806326889b09146103e55780632eb3e6f4146103fa57806337dd18a514610421578063419197fe14610434575f5ffd5b806313299604116102495780631329960414610356578063138461e01461037657806317d7de7c1461037e5780631c6b2190146103935780631eff4b22146103a657806321df0da7146103cd575f5ffd5b806293f0eb1461028457806301ffc9a7146102b45780630d8e6e2c146102f05780630fec111c1461030c5780630ffeecca14610321575b5f5ffd5b610297610292366004612bc6565b610799565b6040516001600160601b0390911681526020015b60405180910390f35b6102e06102c2366004612be8565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020016102ab565b6102f86108ef565b60405162ffffff90911681526020016102ab565b610314610976565b6040516102ab9190612c3d565b6103487f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c5830081565b6040519081526020016102ab565b61035e610b30565b6040516001600160a01b0390911681526020016102ab565b610297610b98565b610386610ba2565b6040516102ab9190612cd1565b6102976103a1366004612bc6565b610bb2565b6103487f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61035e610c08565b6102e0610c4c565b6102e0610d42565b6103f86103f3366004612ce3565b610db9565b005b6103487fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6103f861042f366004612e41565b610e9a565b6103f8610442366004612e75565b610f7a565b61035e610fcd565b6103f861045d366004612e91565b610fdf565b610297610470366004612ce3565b61118d565b6102e0611271565b6001546001600160a01b031661035e565b61034861049c366004612f51565b611327565b5f5160206139c75f395f51905f52546001600160601b0316610297565b6103f86104cc366004612f8f565b611370565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b031661035e565b6103f861050f366004612ce3565b611449565b61051c611522565b60405160ff90911681526020016102ab565b6103f861053c366004612fbb565b61158a565b6106256040805160e0810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c08101919091527f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583006040805160e08101825282546001600160601b03811682526001600160a01b03600160601b909104811660208301526001909301549283169181019190915260ff600160a01b8304811615156060830152600160a81b8304811615156080830152600160b01b83048116151560a0830152600160b81b909204909116151560c0820152919050565b6040516102ab9190612fd6565b61035e611610565b6103f861064836600461305c565b611741565b610655611790565b6040516001600160e01b031990911681526020016102ab565b6106766117c5565b6040516102ab919061309f565b6102e06106913660046130db565b6117f6565b6103f86106a4366004613176565b611821565b6103485f5160206139c75f395f51905f5281565b6106766118c4565b6103f86106d3366004612bc6565b6118e0565b61035e611930565b6103f86106ee366004612bc6565b61194b565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b031661035e565b6103f8610731366004612fbb565b611a23565b6103487fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6103f861076b3660046131d5565b611a70565b61078361077e366004613214565b611a86565b60405164ffffffffff90911681526020016102ab565b5f6107a6335b5f36611b60565b6107ae611610565b6001600160a01b0316336001600160a01b0316146107e65760405163086391f760e31b81523360048201526024015b60405180910390fd5b5f3390506108dc8173__$58e11c6004c5796aaa8c56e718245e69a2$__63bc1b392d6040518163ffffffff1660e01b81526004016040805180830381865af4158015610834573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108589190613280565b6040516209629960e41b8152605a600482015273__$71e292c09eace9601b3e21e68a1278917a$__906296299090602401602060405180830381865af41580156108a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c891906132a5565b60405180602001604052805f815250611c56565b91506108e88284611cf4565b5050919050565b604051632efe011360e01b8152600160048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561094d573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061097191906132c0565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610a22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4691906132e2565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610a8e611610565b6001600160a01b03168152602001826001018054610aab906132fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad7906132fd565b8015610b225780601f10610af957610100808354040283529160200191610b22565b820191905f5260205f20905b815481529060010190602001808311610b0557829003601f168201915b505050505081525091505090565b5f610b39610fcd565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b74573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109719190613340565b5f61097130611d86565b6060610bac6117c5565b51919050565b5f610bbc3361079f565b610bc4611610565b6001600160a01b0316336001600160a01b031614610bf75760405163086391f760e31b81523360048201526024016107dd565b610c0082611fc8565b90505b919050565b5f610c11610fcd565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b74573d5f5f3e3d5ffd5b5f610c5f6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610ca3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc791906132e2565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610d1e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109719190613366565b5f610d4b611930565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d8f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db39190613366565b15905090565b610dc23361079f565b81610dd56001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610e22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e469190613340565b6001600160a01b0316336001600160a01b031614610e7b578033604051636efdd32b60e11b81526004016107dd929190613381565b826016610e88828261205f565b610e928585612193565b505050505050565b610ea33361079f565b81610eb66001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f03573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f279190613340565b6001600160a01b0316336001600160a01b031614610f5c578033604051636efdd32b60e11b81526004016107dd929190613381565b826016610f69828261205f565b610f7385856121e0565b5050505050565b610f833361079f565b610f8b611610565b6001600160a01b0316336001600160a01b031614610fbe5760405163086391f760e31b81523360048201526024016107dd565b610fc8828261225a565b505050565b5f610fd66117c5565b60200151905090565b610fe83361079f565b826015610ff5828261205f565b5f6110277fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b031690565b60405163bd7d9d8560e01b81526001600160601b03881660048201529091506111239087906001600160a01b0384169063bd7d9d85906024015f60405180830381865afa15801561107a573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526110a19190810190613419565b6101c00151604051634793b4ab60e01b81526001600160601b038916600482015288906001600160a01b03861690634793b4ab906024015f60405180830381865afa1580156110f2573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261111991908101906135ac565b60a00151886117f6565b61114b57604051636b468c9b60e01b81526001600160601b03871660048201526024016107dd565b6040516001600160601b03808616919088169030907fcca48a0200c526a7c48f1e770c739ef8e82d7b30e26825735858705fbcda4e07905f90a4505050505050565b5f6111973361079f565b826111aa6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156111f7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061121b9190613340565b6001600160a01b0316336001600160a01b031614611250578033604051636efdd32b60e11b81526004016107dd929190613381565b83601661125d828261205f565b61126786866123ee565b9695505050505050565b5f61127a610c4c565b156112fe576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156112ce573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112f59190810190613689565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f015460ff1690565b805160208201205f9060ff199061134090600190613759565b60405160200161135291815260200190565b60405160208183030381529060405280519060200120169050919050565b6113793361079f565b8161138c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156113d9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113fd9190613340565b6001600160a01b0316336001600160a01b031614611432578033604051636efdd32b60e11b81526004016107dd929190613381565b82601661143f828261205f565b610f73858561243b565b6114523361079f565b816114656001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156114b2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114d69190613340565b6001600160a01b0316336001600160a01b03161461150b578033604051636efdd32b60e11b81526004016107dd929190613381565b826016611518828261205f565b610e928585611cf4565b5f61152b611930565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611566573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109719190613778565b33611593611930565b6001600160a01b0316816001600160a01b0316146115ce5760405162d1953b60e31b81526001600160a01b03821660048201526024016107dd565b816001600160a01b03163b5f03611603576040516361798f2f60e11b81526001600160a01b03831660048201526024016107dd565b61160c8261249b565b5050565b5f805f5160206139c75f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561167c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a09190613366565b1561172b576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611701573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117259190613340565b91505090565b54600160601b90046001600160a01b0316919050565b61174a3361079f565b611752611610565b6001600160a01b0316336001600160a01b0316146117855760405163086391f760e31b81523360048201526024016107dd565b610fc88383836124fb565b5f5160206139e75f395f51905f5280545f9190600160a01b900460ff166117b7575f611725565b638fb3603760e01b91505090565b60408051808201909152606081525f60208201526117e1610c4c565b156117ee57610971612580565b6109716118c4565b5f856015611804828261205f565b856016611811828261205f565b5060019998505050505050505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611868573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188c9190613340565b6001600160a01b0316336001600160a01b0316146118be5760405162f0630960e01b81523360048201526024016107dd565b50505050565b60408051808201909152606081525f6020820152610971612580565b6118e93361079f565b6118f1611610565b6001600160a01b0316336001600160a01b0316146119245760405163086391f760e31b81523360048201526024016107dd565b61192d81612772565b50565b5f5160206139e75f395f51905f52546001600160a01b031690565b6119543361079f565b806119676001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156119b4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d89190613340565b6001600160a01b0316336001600160a01b031614611a0d578033604051636efdd32b60e11b81526004016107dd929190613381565b816016611a1a828261205f565b6118be846127dc565b611a2c3361079f565b611a34611610565b6001600160a01b0316336001600160a01b031614611a675760405163086391f760e31b81523360048201526024016107dd565b61192d81612821565b611a793361079f565b826015610f73828261205f565b5f611a903361079f565b82611aa36001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611af0573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b149190613340565b6001600160a01b0316336001600160a01b031614611b49578033604051636efdd32b60e11b81526004016107dd929190613381565b836016611b56828261205f565b6112678686612896565b5f5160206139e75f395f51905f525f80611b98611b7b611930565b8730611b8a60045f8a8c613793565b611b93916137ba565b61293c565b9150915081610e925763ffffffff811615611c3357825460ff60a01b1916600160a01b178355611bc6611930565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611bf5939291906137f0565b5f604051808303815f87803b158015611c0c575f5ffd5b505af1158015611c1e573d5f5f3e3d5ffd5b5050845460ff60a01b1916855550610e929050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016107dd565b7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c5830454604051637eddc94b60e11b81525f916001600160a01b03169063fdbb929690611cab908890889088908890600401613850565b6020604051808303815f875af1158015611cc7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ceb91906132e2565b95945050505050565b5f516020613a075f395f51905f5254604051636c1e9dff60e01b81526001600160601b038481166004830152831660248201525f916001600160a01b031690636c1e9dff906044015b6020604051808303815f875af1158015611d59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906132e2565b90505b92915050565b5f805f5160206139c75f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611df2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e169190613366565b15611e425780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016107dd565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e94573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb89190613366565b611ee05760405163b9304b0d60e01b81526001600160a01b03841660048201526024016107dd565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611f32573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f5691906132e2565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490611fa2611610565b604051611fb0929190613381565b60405180910390a1546001600160601b031692915050565b5f7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00600301546040516301c6b21960e41b81526001600160601b03841660048201526001600160a01b0390911690631c6b2190906024016020604051808303815f875af115801561203b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0091906132e2565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156120af573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d39190613366565b8061216157506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa15801561213b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061215f9190613366565b155b1561160c5760405163d711af7560e01b81526001600160601b038316600482015260ff821660248201526044016107dd565b5f516020613a075f395f51905f52546040516326889b0960e01b81526001600160601b038481166004830152831660248201525f916001600160a01b0316906326889b0990604401611d3d565b7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583045460405163a5fbe47960e01b81526001600160a01b039091169063a5fbe47990612231908590859060040161388b565b5f604051808303815f87803b158015612248575f5ffd5b505af1158015610e92573d5f5f3e3d5ffd5b5f73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96846001600160a01b031663dd62ed3e61228c610fcd565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa1580156122d4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122f891906138a8565b6040518263ffffffff1660e01b815260040161231691815260200190565b602060405180830381865af4158015612331573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061235591906132e2565b90507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00600101546040516320c8cbff60e11b81526001600160a01b0385811660048301526001600160601b03851660248301526101009092049091169063419197fe906044015f604051808303815f87803b1580156123d2575f5ffd5b505af11580156123e4573d5f5f3e3d5ffd5b5050505092915050565b5f516020613a075f395f51905f52546040516354e5077960e01b81526001600160601b038481166004830152831660248201525f916001600160a01b0316906354e5077990604401611d3d565b7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583045460405163d42a24b160e01b81526001600160601b038416600482015282151560248201526001600160a01b039091169063d42a24b190604401612231565b5f5160206139e75f395f51905f5280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583025460405163cf2f336560e01b81526001600160a01b039091169063cf2f33659061254e908690869086906004016138bf565b5f604051808303815f87803b158015612565575f5ffd5b505af1158015612577573d5f5f3e3d5ffd5b50505050505050565b60408051808201909152606081525f60208201525f6125a76001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156125eb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061260f91906132e2565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612668573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061268c9190613366565b1561276a577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c36126e85f5160206139c75f395f51905f52546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015612729573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261275091908101906138e7565b60208101519092506001600160a01b03161561276a575090565b611725612a44565b5f516020613a075f395f51905f525460405163bca99e3960e01b81526001600160601b03831660048201526001600160a01b039091169063bca99e39906024015b5f604051808303815f87803b1580156127ca575f5ffd5b505af1158015610f73573d5f5f3e3d5ffd5b5f516020613a075f395f51905f525460405163d0d63b0960e01b81526001600160601b03831660048201526001600160a01b039091169063d0d63b09906024016127b3565b612829611610565b6001600160a01b0316336001600160a01b03161461285c5760405163086391f760e31b81523360048201526024016107dd565b612866600b612b21565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024016127b3565b5f7f25e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c583006004908101546040516379e872e960e11b81526001600160601b0386169281019290925264ffffffffff841660248301526001600160a01b03169063f3d0e5d2906044016020604051808303815f875af1158015612918573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d7d91906132a5565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516129aa919061397b565b5f60405180830381855afa9150503d805f81146129e2576040519150601f19603f3d011682016040523d82523d5f602084013e6129e7565b606091505b50915091508115612a39576040815110612a195780806020019051810190612a0f9190613991565b9094509250612a39565b6020815110612a395780806020019051810190612a369190613366565b93505b505094509492505050565b60408051808201909152606081525f60208201525f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060400160405280825f018054612a95906132fd565b80601f0160208091040260200160405190810160405280929190818152602001828054612ac1906132fd565b8015612b0c5780601f10612ae357610100808354040283529160200191612b0c565b820191905f5260205f20905b815481529060010190602001808311612aef57829003601f168201915b50505091835250505f60209091015292915050565b5f612b346001546001600160a01b031690565b6001600160a01b031663d39e604383612b4b611522565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612b8e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c009190613340565b6001600160601b038116811461192d575f5ffd5b5f60208284031215612bd6575f5ffd5b8135612be181612bb2565b9392505050565b5f60208284031215612bf8575f5ffd5b81356001600160e01b031981168114612be1575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151612c85608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152612cc9610100840182612c0f565b949350505050565b602081525f611d7d6020830184612c0f565b5f5f60408385031215612cf4575f5ffd5b8235612cff81612bb2565b91506020830135612d0f81612bb2565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715612d5057612d50612d1a565b60405290565b60405161020081016001600160401b0381118282101715612d5057612d50612d1a565b60405160c081016001600160401b0381118282101715612d5057612d50612d1a565b60405160e081016001600160401b0381118282101715612d5057612d50612d1a565b604051601f8201601f191681016001600160401b0381118282101715612de557612de5612d1a565b604052919050565b6001600160a01b038116811461192d575f5ffd5b5f60408284031215612e11575f5ffd5b612e19612d2e565b90508135612e2681612ded565b81526020820135612e3681612bb2565b602082015292915050565b5f5f60608385031215612e52575f5ffd5b8235612e5d81612bb2565b9150612e6c8460208501612e01565b90509250929050565b5f5f60408385031215612e86575f5ffd5b8235612cff81612ded565b5f5f5f60608486031215612ea3575f5ffd5b8335612eae81612bb2565b92506020840135612ebe81612bb2565b91506040840135612ece81612bb2565b809150509250925092565b5f6001600160401b03821115612ef157612ef1612d1a565b50601f01601f191660200190565b5f82601f830112612f0e575f5ffd5b8135612f21612f1c82612ed9565b612dbd565b818152846020838601011115612f35575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215612f61575f5ffd5b81356001600160401b03811115612f76575f5ffd5b612cc984828501612eff565b801515811461192d575f5ffd5b5f5f60408385031215612fa0575f5ffd5b8235612fab81612bb2565b91506020830135612d0f81612f82565b5f60208284031215612fcb575f5ffd5b8135612be181612ded565b5f60e0820190506001600160601b03835116825260018060a01b03602084015116602083015260018060a01b036040840151166040830152606083015115156060830152608083015161302d608084018215159052565b5060a083015161304160a084018215159052565b5060c083015161305560c084018215159052565b5092915050565b5f5f5f60c0848603121561306e575f5ffd5b6130788585612e01565b92506130878560408601612e01565b91506130968560808601612e01565b90509250925092565b602081525f8251604060208401526130ba6060840182612c0f565b602094909401516001600160a01b0316604093909301929092525090919050565b5f5f5f5f5f60a086880312156130ef575f5ffd5b85356130fa81612bb2565b945060208601356001600160401b03811115613114575f5ffd5b61312088828901612eff565b945050604086013561313181612bb2565b925060608601356001600160401b0381111561314b575f5ffd5b61315788828901612eff565b925050608086013561316881612bb2565b809150509295509295909350565b5f5f5f5f60808587031215613189575f5ffd5b843561319481612ded565b935060208501356131a481612ded565b92506040850135915060608501356131bb81612ded565b939692955090935050565b61ffff8116811461192d575f5ffd5b5f5f5f606084860312156131e7575f5ffd5b83356131f281612bb2565b92506020840135612ebe816131c6565b64ffffffffff8116811461192d575f5ffd5b5f5f60408385031215613225575f5ffd5b823561323081612bb2565b91506020830135612d0f81613202565b8051610c0381612bb2565b5f6040828403121561325b575f5ffd5b613263612d2e565b9050815161327081612ded565b81526020820151612e3681612bb2565b5f60408284031215613290575f5ffd5b611d7d838361324b565b8051610c0381613202565b5f602082840312156132b5575f5ffd5b8151612be181613202565b5f602082840312156132d0575f5ffd5b815162ffffff81168114612be1575f5ffd5b5f602082840312156132f2575f5ffd5b8151612be181612bb2565b600181811c9082168061331157607f821691505b60208210810361332f57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051610c0381612ded565b5f60208284031215613350575f5ffd5b8151612be181612ded565b8051610c0381612f82565b5f60208284031215613376575f5ffd5b8151612be181612f82565b6001600160601b039290921682526001600160a01b0316602082015260400190565b80516001600160c01b031981168114610c03575f5ffd5b8051610c03816131c6565b5f6133d2612f1c84612ed9565b90508281528383830111156133e5575f5ffd5b8282602083015e5f602084830101529392505050565b5f82601f83011261340a575f5ffd5b611d7d838351602085016133c5565b5f60208284031215613429575f5ffd5b81516001600160401b0381111561343e575f5ffd5b82016102008185031215613450575f5ffd5b613458612d56565b61346182613240565b815261346f60208301613240565b6020820152613480604083016133a3565b604082015261349160608301613240565b60608201526134a260808301613240565b60808201526134b360a083016133a3565b60a08201526134c460c083016133ba565b60c08201526134d560e083016133ba565b60e08201526134e76101008301613240565b6101008201526134fa6101208301613240565b61012082015261350d610140830161329a565b610140820152613520610160830161329a565b610160820152613533610180830161329a565b6101808201526135466101a0830161329a565b6101a08201526101c08201516001600160401b03811115613565575f5ffd5b613571868285016133fb565b6101c0830152506101e08201516001600160401b03811115613591575f5ffd5b61359d868285016133fb565b6101e083015250949350505050565b5f602082840312156135bc575f5ffd5b81516001600160401b038111156135d1575f5ffd5b820160e081850312156135e2575f5ffd5b6135ea612d79565b81516135f581613202565b8152602082015161360581613202565b60208201526136166040830161329a565b604082015261362760608301613240565b6060820152613639856080840161324b565b608082015260c08201516001600160401b03811115613656575f5ffd5b613662868285016133fb565b60a083015250949350505050565b60ff8116811461192d575f5ffd5b8051610c0381613670565b5f60208284031215613699575f5ffd5b81516001600160401b038111156136ae575f5ffd5b820160e081850312156136bf575f5ffd5b6136c7612d9b565b6136d082613240565b81526136de60208301613240565b60208201526136ef6040830161367e565b60408201526137006060830161335b565b606082015261371160808301613335565b608082015261372260a08301613335565b60a082015260c08201516001600160401b0381111561373f575f5ffd5b61374b868285016133fb565b60c083015250949350505050565b81810381811115611d8057634e487b7160e01b5f52601160045260245ffd5b5f60208284031215613788575f5ffd5b8151612be181613670565b5f5f858511156137a1575f5ffd5b838611156137ad575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015613055576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b80516001600160a01b031682526020908101516001600160601b0316910152565b6001600160a01b0385168152613869602082018561382f565b64ffffffffff8316606082015260a060808201525f61126760a0830184612c0f565b6001600160601b038316815260608101612be1602083018461382f565b5f602082840312156138b8575f5ffd5b5051919050565b60c081016138cd828661382f565b6138da604083018561382f565b612cc9608083018461382f565b5f602082840312156138f7575f5ffd5b81516001600160401b0381111561390c575f5ffd5b82016040818503121561391d575f5ffd5b613925612d2e565b81516001600160401b0381111561393a575f5ffd5b8201601f8101861361394a575f5ffd5b613959868251602084016133c5565b8252506020820151915061396c82612ded565b60208101919091529392505050565b5f82518060208501845e5f920191825250919050565b5f5f604083850312156139a2575f5ffd5b82516139ad81612f82565b602084015190925063ffffffff81168114612d0f575f5ffdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0025e3e51823fbfffb988e0a2744bb93722d9f3e906c07cc0a9e77884c46c58303a2646970667358221220f0f684c0ced40dc69f2d336f31ce2fbc7cbe83c6afb6750ae0480930eac8797a64736f6c634300081b0033",
1231
+ "linkReferences": {
1232
+ "contracts/shared/ContractLib.sol": {
1233
+ "ContractLib": [
1234
+ {
1235
+ "length": 20,
1236
+ "start": 2786
1237
+ },
1238
+ {
1239
+ "length": 20,
1240
+ "start": 3378
1241
+ }
1242
+ ]
1243
+ },
1244
+ "contracts/type/Amount.sol": {
1245
+ "AmountLib": [
1246
+ {
1247
+ "length": 20,
1248
+ "start": 69
1249
+ },
1250
+ {
1251
+ "length": 20,
1252
+ "start": 13529
1253
+ }
1254
+ ]
1255
+ },
1256
+ "contracts/type/Fee.sol": {
1257
+ "FeeLib": [
1258
+ {
1259
+ "length": 20,
1260
+ "start": 6764
1261
+ }
1262
+ ]
1263
+ },
1264
+ "contracts/type/NftId.sol": {
1265
+ "NftIdLib": [
1266
+ {
1267
+ "length": 20,
1268
+ "start": 7257
1269
+ },
1270
+ {
1271
+ "length": 20,
1272
+ "start": 8034
1273
+ },
1274
+ {
1275
+ "length": 20,
1276
+ "start": 10432
1277
+ },
1278
+ {
1279
+ "length": 20,
1280
+ "start": 12342
1281
+ },
1282
+ {
1283
+ "length": 20,
1284
+ "start": 14508
1285
+ }
1286
+ ]
1287
+ },
1288
+ "contracts/type/ObjectType.sol": {
1289
+ "ObjectTypeLib": [
1290
+ {
1291
+ "length": 20,
1292
+ "start": 13043
1293
+ }
1294
+ ]
1295
+ },
1296
+ "contracts/type/Seconds.sol": {
1297
+ "SecondsLib": [
1298
+ {
1299
+ "length": 20,
1300
+ "start": 6889
1301
+ }
1302
+ ]
1303
+ },
1304
+ "contracts/type/UFixed.sol": {
1305
+ "UFixedLib": [
1306
+ {
1307
+ "length": 20,
1308
+ "start": 190
1309
+ },
1310
+ {
1311
+ "length": 20,
1312
+ "start": 311
1313
+ }
1314
+ ]
1315
+ },
1316
+ "contracts/type/Version.sol": {
1317
+ "VersionLib": [
1318
+ {
1319
+ "length": 20,
1320
+ "start": 7057
1321
+ }
1322
+ ]
1323
+ }
1324
+ },
1325
+ "deployedLinkReferences": {
1326
+ "contracts/type/Amount.sol": {
1327
+ "AmountLib": [
1328
+ {
1329
+ "length": 20,
1330
+ "start": 8797
1331
+ }
1332
+ ]
1333
+ },
1334
+ "contracts/type/Fee.sol": {
1335
+ "FeeLib": [
1336
+ {
1337
+ "length": 20,
1338
+ "start": 2032
1339
+ }
1340
+ ]
1341
+ },
1342
+ "contracts/type/NftId.sol": {
1343
+ "NftIdLib": [
1344
+ {
1345
+ "length": 20,
1346
+ "start": 2525
1347
+ },
1348
+ {
1349
+ "length": 20,
1350
+ "start": 3302
1351
+ },
1352
+ {
1353
+ "length": 20,
1354
+ "start": 5700
1355
+ },
1356
+ {
1357
+ "length": 20,
1358
+ "start": 7610
1359
+ },
1360
+ {
1361
+ "length": 20,
1362
+ "start": 9776
1363
+ }
1364
+ ]
1365
+ },
1366
+ "contracts/type/ObjectType.sol": {
1367
+ "ObjectTypeLib": [
1368
+ {
1369
+ "length": 20,
1370
+ "start": 8311
1371
+ }
1372
+ ]
1373
+ },
1374
+ "contracts/type/Seconds.sol": {
1375
+ "SecondsLib": [
1376
+ {
1377
+ "length": 20,
1378
+ "start": 2157
1379
+ }
1380
+ ]
1381
+ },
1382
+ "contracts/type/Version.sol": {
1383
+ "VersionLib": [
1384
+ {
1385
+ "length": 20,
1386
+ "start": 2325
1387
+ }
1388
+ ]
1389
+ }
1390
+ }
1391
+ }