@etherisc/gif-next 0.0.2-bdb6804-509 → 0.0.2-bdbfee9-660

Sign up to get free protection for your applications and to get access to all the features.
Files changed (736) hide show
  1. package/README.md +130 -10
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1056 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +771 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +824 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1664 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1372 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1225 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/{components/IDistributionComponent.sol/IDistributionComponent.json → distribution/Distribution.sol/Distribution.json} +285 -324
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1675 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +931 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → distribution/IDistributionComponent.sol/IDistributionComponent.json} +274 -275
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +368 -129
  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 +1461 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2026 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -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/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1404 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1628 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2452 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  67. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  69. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +651 -97
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +445 -99
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +651 -221
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2349 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1977 -620
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +461 -279
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +195 -115
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1962 -855
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  90. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
  92. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  94. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  96. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  98. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  100. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  102. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  103. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  105. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  106. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  107. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  108. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +938 -0
  109. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  110. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
  111. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  112. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  113. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  114. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +753 -0
  115. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  116. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +311 -174
  117. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  118. package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +253 -241
  119. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  120. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1023 -0
  121. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  122. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +791 -0
  123. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  124. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +320 -465
  125. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  126. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
  127. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  128. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1303 -0
  129. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  130. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +851 -0
  131. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  132. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → pool/IBundleService.sol/IBundleService.json} +373 -327
  133. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  134. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +886 -0
  135. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  136. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1251 -0
  137. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  138. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +368 -426
  139. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  140. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +546 -0
  141. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1635 -0
  143. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +847 -0
  145. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +881 -0
  147. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +771 -0
  149. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  150. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +455 -482
  151. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
  153. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1533 -0
  155. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +875 -0
  157. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  158. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → product/IApplicationService.sol/IApplicationService.json} +191 -201
  159. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  160. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1085 -0
  161. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1017 -0
  163. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  164. package/artifacts/contracts/{instance/service → product}/IPricingService.sol/IPricingService.json +205 -90
  165. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +997 -0
  167. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  168. package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IRiskService.sol/IRiskService.json} +130 -115
  169. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1385 -0
  171. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  172. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  173. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  174. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +835 -0
  175. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  176. package/artifacts/contracts/product/PricingService.sol/PricingService.json +913 -0
  177. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  178. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +795 -0
  179. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  180. package/artifacts/contracts/product/Product.sol/Product.json +1098 -0
  181. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  182. package/artifacts/contracts/product/RiskService.sol/RiskService.json +698 -0
  183. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  184. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +755 -0
  185. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  186. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  187. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  188. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +494 -29
  189. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  190. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +296 -109
  191. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  192. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  193. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  194. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
  195. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  196. package/artifacts/contracts/registry/Registry.sol/Registry.json +993 -137
  197. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  198. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2147 -0
  199. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  200. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
  201. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  202. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +371 -250
  203. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  204. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +193 -109
  205. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  206. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  207. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  208. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  209. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  210. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1389 -0
  211. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  212. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
  213. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  214. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +317 -154
  215. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  216. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +259 -212
  217. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  218. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1497 -0
  219. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  220. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +835 -0
  221. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  222. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  229. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  230. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +137 -131
  231. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  232. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → shared/IComponentService.sol/IComponentService.json} +571 -763
  233. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  234. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +688 -0
  235. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  236. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  237. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  238. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  239. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  240. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -10
  241. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  242. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  243. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  244. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +144 -3
  245. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  246. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  247. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  248. package/artifacts/contracts/shared/IService.sol/IService.json +79 -5
  249. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  250. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  251. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  252. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +776 -0
  253. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  254. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  255. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  256. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  257. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  258. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  259. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  260. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -70
  261. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  262. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  263. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  264. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -100
  265. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  266. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  267. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  268. package/artifacts/contracts/shared/Service.sol/Service.json +76 -109
  269. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  270. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  271. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  272. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  273. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  274. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  275. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  276. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1627 -0
  277. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  278. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1177 -0
  279. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  280. package/artifacts/contracts/staking/Staking.sol/Staking.json +2035 -0
  281. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  282. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
  283. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  284. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  285. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  286. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +823 -0
  287. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  288. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  289. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  290. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1406 -0
  291. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  292. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +763 -0
  293. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  294. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
  295. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  296. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -0
  297. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  298. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  299. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  300. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  301. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  302. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  303. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  305. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  306. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  307. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  308. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  309. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  310. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  311. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  312. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  313. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  314. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  315. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  316. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  317. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  318. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  319. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  320. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  321. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  322. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  323. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  324. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  325. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  326. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  327. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  328. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  329. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  330. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +265 -0
  331. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  332. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  333. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  334. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  335. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  336. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  337. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  338. package/artifacts/contracts/type/String.sol/StrLib.json +180 -0
  339. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  340. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  341. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  342. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  343. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  344. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  345. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  346. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  347. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  348. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +11 -1
  349. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  350. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +637 -0
  351. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  352. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  353. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  354. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +11 -1
  355. package/contracts/accounting/AccountingService.sol +274 -0
  356. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  357. package/contracts/accounting/IAccountingService.sol +47 -0
  358. package/contracts/authorization/AccessAdmin.sol +780 -0
  359. package/contracts/authorization/AccessAdminLib.sol +396 -0
  360. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  361. package/contracts/authorization/Authorization.sol +172 -0
  362. package/contracts/authorization/IAccess.sol +67 -0
  363. package/contracts/authorization/IAccessAdmin.sol +144 -0
  364. package/contracts/authorization/IAuthorization.sol +27 -0
  365. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  366. package/contracts/authorization/ServiceAuthorization.sol +320 -0
  367. package/contracts/distribution/BasicDistribution.sol +141 -0
  368. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  369. package/contracts/distribution/Distribution.sol +247 -0
  370. package/contracts/distribution/DistributionService.sol +435 -0
  371. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  372. package/contracts/distribution/IDistributionComponent.sol +45 -0
  373. package/contracts/distribution/IDistributionService.sol +109 -0
  374. package/contracts/examples/fire/DamageLevel.sol +59 -0
  375. package/contracts/examples/fire/FirePool.sol +86 -0
  376. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  377. package/contracts/examples/fire/FireProduct.sol +433 -0
  378. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  379. package/contracts/examples/fire/FireUSD.sol +26 -0
  380. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  381. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  382. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  383. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  384. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  385. package/contracts/examples/unpermissioned/SimpleProduct.sol +385 -0
  386. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  387. package/contracts/instance/BundleSet.sol +130 -0
  388. package/contracts/instance/IInstance.sol +124 -39
  389. package/contracts/instance/IInstanceService.sol +79 -50
  390. package/contracts/instance/Instance.sol +258 -111
  391. package/contracts/instance/InstanceAdmin.sol +383 -0
  392. package/contracts/instance/InstanceAuthorizationV3.sol +266 -0
  393. package/contracts/instance/InstanceReader.sol +530 -191
  394. package/contracts/instance/InstanceService.sol +403 -211
  395. package/contracts/instance/InstanceServiceManager.sol +14 -29
  396. package/contracts/instance/InstanceStore.sol +174 -95
  397. package/contracts/instance/RiskSet.sol +118 -0
  398. package/contracts/instance/base/BalanceStore.sol +121 -0
  399. package/contracts/instance/base/Cloneable.sol +28 -0
  400. package/contracts/instance/base/ObjectCounter.sol +20 -0
  401. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  402. package/contracts/instance/base/ObjectSet.sol +77 -0
  403. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  404. package/contracts/instance/module/IBundle.sol +9 -11
  405. package/contracts/instance/module/IComponents.sol +44 -23
  406. package/contracts/instance/module/IDistribution.sol +25 -12
  407. package/contracts/instance/module/IPolicy.sol +71 -38
  408. package/contracts/instance/module/IRisk.sol +6 -1
  409. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  410. package/contracts/oracle/BasicOracle.sol +45 -0
  411. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  412. package/contracts/oracle/IOracle.sol +41 -0
  413. package/contracts/oracle/IOracleComponent.sol +33 -0
  414. package/contracts/oracle/IOracleService.sol +66 -0
  415. package/contracts/oracle/Oracle.sol +154 -0
  416. package/contracts/oracle/OracleService.sol +310 -0
  417. package/contracts/oracle/OracleServiceManager.sol +39 -0
  418. package/contracts/pool/BasicPool.sol +173 -0
  419. package/contracts/pool/BasicPoolAuthorization.sol +82 -0
  420. package/contracts/pool/BundleService.sol +394 -0
  421. package/contracts/pool/BundleServiceManager.sol +39 -0
  422. package/contracts/{instance/service → pool}/IBundleService.sol +52 -30
  423. package/contracts/pool/IPoolComponent.sol +62 -0
  424. package/contracts/pool/IPoolService.sol +164 -0
  425. package/contracts/pool/Pool.sol +343 -0
  426. package/contracts/pool/PoolLib.sol +359 -0
  427. package/contracts/pool/PoolService.sol +593 -0
  428. package/contracts/pool/PoolServiceManager.sol +39 -0
  429. package/contracts/product/ApplicationService.sol +299 -0
  430. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  431. package/contracts/product/BasicProduct.sol +49 -0
  432. package/contracts/product/BasicProductAuthorization.sol +63 -0
  433. package/contracts/product/ClaimService.sol +639 -0
  434. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  435. package/contracts/{instance/service → product}/IApplicationService.sol +22 -17
  436. package/contracts/product/IClaimService.sol +135 -0
  437. package/contracts/product/IPolicyService.sol +102 -0
  438. package/contracts/product/IPricingService.sol +40 -0
  439. package/contracts/product/IProductComponent.sol +62 -0
  440. package/contracts/product/IRiskService.sol +33 -0
  441. package/contracts/product/PolicyService.sol +645 -0
  442. package/contracts/product/PolicyServiceLib.sol +139 -0
  443. package/contracts/product/PolicyServiceManager.sol +39 -0
  444. package/contracts/product/PricingService.sol +306 -0
  445. package/contracts/product/PricingServiceManager.sol +39 -0
  446. package/contracts/product/Product.sol +472 -0
  447. package/contracts/product/RiskService.sol +157 -0
  448. package/contracts/product/RiskServiceManager.sol +39 -0
  449. package/contracts/registry/ChainNft.sol +79 -40
  450. package/contracts/registry/IRegistry.sol +103 -29
  451. package/contracts/registry/IRegistryService.sol +34 -40
  452. package/contracts/registry/IRelease.sol +29 -0
  453. package/contracts/registry/ITransferInterceptor.sol +1 -2
  454. package/contracts/registry/Registry.sol +465 -196
  455. package/contracts/registry/RegistryAdmin.sol +188 -0
  456. package/contracts/registry/RegistryAuthorization.sol +284 -0
  457. package/contracts/registry/RegistryService.sol +90 -135
  458. package/contracts/registry/RegistryServiceManager.sol +23 -32
  459. package/contracts/registry/ReleaseAdmin.sol +195 -0
  460. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  461. package/contracts/registry/ReleaseRegistry.sol +520 -0
  462. package/contracts/registry/ServiceAuthorizationV3.sol +345 -0
  463. package/contracts/registry/TokenRegistry.sol +263 -65
  464. package/contracts/shared/Component.sol +210 -0
  465. package/contracts/shared/ComponentService.sol +678 -0
  466. package/contracts/shared/ComponentServiceManager.sol +38 -0
  467. package/contracts/shared/ContractLib.sol +311 -0
  468. package/contracts/shared/IComponent.sol +58 -0
  469. package/contracts/shared/IComponentService.sol +110 -0
  470. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  471. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  472. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  473. package/contracts/shared/INftOwnable.sol +4 -2
  474. package/contracts/shared/IPolicyHolder.sol +23 -14
  475. package/contracts/shared/IRegisterable.sol +22 -1
  476. package/contracts/shared/IRegistryLinked.sol +0 -1
  477. package/contracts/shared/IService.sol +12 -5
  478. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +12 -4
  479. package/contracts/shared/InstanceLinkedComponent.sol +194 -0
  480. package/contracts/shared/KeyValueStore.sol +131 -0
  481. package/contracts/shared/Lifecycle.sol +88 -0
  482. package/contracts/shared/NftIdSet.sol +65 -0
  483. package/contracts/shared/NftOwnable.sol +34 -27
  484. package/contracts/shared/PolicyHolder.sol +23 -41
  485. package/contracts/shared/Registerable.sol +52 -20
  486. package/contracts/shared/RegistryLinked.sol +9 -19
  487. package/contracts/shared/Service.sol +36 -41
  488. package/contracts/shared/TokenHandler.sol +322 -13
  489. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  490. package/contracts/staking/IStaking.sol +195 -0
  491. package/contracts/staking/IStakingService.sol +170 -0
  492. package/contracts/staking/Staking.sol +605 -0
  493. package/contracts/staking/StakingLib.sol +281 -0
  494. package/contracts/staking/StakingLifecycle.sol +23 -0
  495. package/contracts/staking/StakingManager.sol +52 -0
  496. package/contracts/staking/StakingReader.sol +199 -0
  497. package/contracts/staking/StakingService.sol +468 -0
  498. package/contracts/staking/StakingServiceManager.sol +45 -0
  499. package/contracts/staking/StakingStore.sol +606 -0
  500. package/contracts/staking/TargetManagerLib.sol +211 -0
  501. package/contracts/{types → type}/AddressSet.sol +1 -1
  502. package/contracts/type/Amount.sol +150 -0
  503. package/contracts/{types → type}/Blocknumber.sol +26 -3
  504. package/contracts/{types → type}/ClaimId.sol +31 -3
  505. package/contracts/{types → type}/Fee.sol +28 -26
  506. package/contracts/{types → type}/Key32.sol +2 -2
  507. package/contracts/type/Key32Set.sol +62 -0
  508. package/contracts/{types → type}/NftId.sol +21 -16
  509. package/contracts/{types → type}/NftIdSet.sol +2 -2
  510. package/contracts/type/ObjectType.sol +307 -0
  511. package/contracts/type/PayoutId.sol +82 -0
  512. package/contracts/{types → type}/Referral.sol +2 -1
  513. package/contracts/type/RequestId.sol +75 -0
  514. package/contracts/type/RiskId.sol +75 -0
  515. package/contracts/type/RoleId.sol +180 -0
  516. package/contracts/type/Seconds.sol +105 -0
  517. package/contracts/type/Selector.sol +107 -0
  518. package/contracts/{types → type}/StateId.sol +47 -4
  519. package/contracts/type/String.sol +65 -0
  520. package/contracts/{types → type}/Timestamp.sol +20 -6
  521. package/contracts/type/UFixed.sol +262 -0
  522. package/contracts/{types → type}/Version.sol +58 -7
  523. package/contracts/{shared → upgradeability}/IVersionable.sol +4 -1
  524. package/contracts/{shared → upgradeability}/ProxyManager.sol +118 -41
  525. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +8 -4
  526. package/contracts/{shared → upgradeability}/Versionable.sol +9 -6
  527. package/package.json +12 -8
  528. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  529. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  530. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  531. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  532. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  533. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  534. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  535. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  536. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  537. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  538. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  539. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
  540. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  541. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  542. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1348
  543. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +0 -4
  544. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +0 -124
  545. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  546. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
  547. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  548. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  549. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  550. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  551. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  552. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  553. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  554. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  555. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -237
  556. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  557. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  558. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  559. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  560. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -860
  561. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  562. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -641
  563. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  564. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1263
  565. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  566. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
  567. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  568. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -849
  569. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  570. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
  571. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  572. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1539
  573. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  574. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -769
  575. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  576. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  577. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  578. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -475
  579. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  580. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  581. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  582. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +0 -4
  583. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  584. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +0 -450
  585. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  586. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1124
  587. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  588. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
  589. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  590. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1269
  591. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  592. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -661
  593. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +0 -4
  594. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +0 -988
  595. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +0 -4
  596. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +0 -689
  597. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  598. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -872
  599. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  600. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
  601. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  602. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  603. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  604. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
  605. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  606. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  607. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  608. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  609. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  610. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  611. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  612. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  613. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  614. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  615. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  616. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  617. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  618. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  619. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  620. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  621. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  622. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -596
  623. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  624. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  625. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  626. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  627. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  628. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  629. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  630. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  631. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  632. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  633. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
  634. package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
  635. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  636. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  637. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  638. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  639. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  640. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  641. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  642. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  643. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  644. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
  645. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  646. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  647. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  648. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  649. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  650. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  651. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  652. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  653. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  654. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  655. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  656. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  657. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  658. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  659. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  660. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  661. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  662. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  663. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  664. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  665. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  666. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  667. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  668. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  669. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  671. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  672. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  673. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  674. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  675. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  676. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  677. package/contracts/components/Component.sol +0 -253
  678. package/contracts/components/Distribution.sol +0 -280
  679. package/contracts/components/IComponent.sol +0 -76
  680. package/contracts/components/IDistributionComponent.sol +0 -71
  681. package/contracts/components/IPoolComponent.sol +0 -113
  682. package/contracts/components/IProductComponent.sol +0 -40
  683. package/contracts/components/Pool.sol +0 -303
  684. package/contracts/components/Product.sol +0 -296
  685. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
  686. package/contracts/instance/BundleManager.sol +0 -127
  687. package/contracts/instance/Cloneable.sol +0 -51
  688. package/contracts/instance/InstanceAccessManager.sol +0 -540
  689. package/contracts/instance/InstanceAuthorizationsLib.sol +0 -299
  690. package/contracts/instance/ObjectManager.sol +0 -82
  691. package/contracts/instance/base/ComponentService.sol +0 -147
  692. package/contracts/instance/base/KeyValueStore.sol +0 -180
  693. package/contracts/instance/base/Lifecycle.sol +0 -109
  694. package/contracts/instance/module/IAccess.sol +0 -54
  695. package/contracts/instance/module/ISetup.sol +0 -33
  696. package/contracts/instance/module/ITreasury.sol +0 -23
  697. package/contracts/instance/service/ApplicationService.sol +0 -183
  698. package/contracts/instance/service/BundleService.sol +0 -431
  699. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  700. package/contracts/instance/service/ClaimService.sol +0 -145
  701. package/contracts/instance/service/DistributionService.sol +0 -346
  702. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  703. package/contracts/instance/service/IClaimService.sol +0 -61
  704. package/contracts/instance/service/IDistributionService.sol +0 -85
  705. package/contracts/instance/service/IPolicyService.sol +0 -72
  706. package/contracts/instance/service/IPoolService.sol +0 -99
  707. package/contracts/instance/service/IPricingService.sol +0 -36
  708. package/contracts/instance/service/IProductService.sol +0 -40
  709. package/contracts/instance/service/PolicyService.sol +0 -366
  710. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  711. package/contracts/instance/service/PoolService.sol +0 -303
  712. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  713. package/contracts/instance/service/PricingService.sol +0 -275
  714. package/contracts/instance/service/PricingServiceManager.sol +0 -51
  715. package/contracts/instance/service/ProductService.sol +0 -210
  716. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  717. package/contracts/registry/RegistryAccessManager.sol +0 -216
  718. package/contracts/registry/ReleaseManager.sol +0 -324
  719. package/contracts/shared/ContractDeployerLib.sol +0 -72
  720. package/contracts/test/TestFee.sol +0 -25
  721. package/contracts/test/TestRegisterable.sol +0 -18
  722. package/contracts/test/TestRoleId.sol +0 -14
  723. package/contracts/test/TestService.sol +0 -25
  724. package/contracts/test/TestToken.sol +0 -26
  725. package/contracts/test/TestVersion.sol +0 -44
  726. package/contracts/test/TestVersionable.sol +0 -17
  727. package/contracts/types/Amount.sol +0 -60
  728. package/contracts/types/ChainId.sol +0 -38
  729. package/contracts/types/NumberId.sol +0 -52
  730. package/contracts/types/ObjectType.sol +0 -161
  731. package/contracts/types/PayoutId.sol +0 -54
  732. package/contracts/types/RiskId.sol +0 -43
  733. package/contracts/types/RoleId.sol +0 -97
  734. package/contracts/types/Seconds.sol +0 -54
  735. package/contracts/types/UFixed.sol +0 -326
  736. /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -0,0 +1,1303 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "BundleService",
4
+ "sourceName": "contracts/pool/BundleService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "bundleNftId",
60
+ "type": "uint96"
61
+ },
62
+ {
63
+ "internalType": "StateId",
64
+ "name": "state",
65
+ "type": "uint8"
66
+ },
67
+ {
68
+ "internalType": "Timestamp",
69
+ "name": "expiredAt",
70
+ "type": "uint40"
71
+ }
72
+ ],
73
+ "name": "ErrorBundleServiceBundleNotOpen",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "bundleNftId",
81
+ "type": "uint96"
82
+ },
83
+ {
84
+ "internalType": "NftId",
85
+ "name": "expectedPool",
86
+ "type": "uint96"
87
+ },
88
+ {
89
+ "internalType": "NftId",
90
+ "name": "actualPool",
91
+ "type": "uint96"
92
+ }
93
+ ],
94
+ "name": "ErrorBundleServiceBundlePoolMismatch",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "NftId",
101
+ "name": "bundleNftId",
102
+ "type": "uint96"
103
+ }
104
+ ],
105
+ "name": "ErrorBundleServiceBundleUnknown",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "NftId",
112
+ "name": "bundleNftId",
113
+ "type": "uint96"
114
+ },
115
+ {
116
+ "internalType": "uint256",
117
+ "name": "openPoliciesCount",
118
+ "type": "uint256"
119
+ }
120
+ ],
121
+ "name": "ErrorBundleServiceBundleWithOpenPolicies",
122
+ "type": "error"
123
+ },
124
+ {
125
+ "inputs": [
126
+ {
127
+ "internalType": "NftId",
128
+ "name": "bundleNftId",
129
+ "type": "uint96"
130
+ },
131
+ {
132
+ "internalType": "Amount",
133
+ "name": "capacityAmount",
134
+ "type": "uint96"
135
+ },
136
+ {
137
+ "internalType": "Amount",
138
+ "name": "collateralAmount",
139
+ "type": "uint96"
140
+ }
141
+ ],
142
+ "name": "ErrorBundleServiceCapacityInsufficient",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [],
147
+ "name": "ErrorBundleServiceExtensionLifetimeIsZero",
148
+ "type": "error"
149
+ },
150
+ {
151
+ "inputs": [
152
+ {
153
+ "internalType": "address",
154
+ "name": "bundleOwner",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "internalType": "address",
159
+ "name": "tokenHandlerAddress",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "internalType": "Amount",
164
+ "name": "amount",
165
+ "type": "uint96"
166
+ }
167
+ ],
168
+ "name": "ErrorBundleServiceInsufficientAllowance",
169
+ "type": "error"
170
+ },
171
+ {
172
+ "inputs": [
173
+ {
174
+ "internalType": "NftId",
175
+ "name": "policyNftId",
176
+ "type": "uint96"
177
+ }
178
+ ],
179
+ "name": "ErrorBundleServicePolicyNotCloseable",
180
+ "type": "error"
181
+ },
182
+ {
183
+ "inputs": [
184
+ {
185
+ "internalType": "Amount",
186
+ "name": "amount",
187
+ "type": "uint96"
188
+ },
189
+ {
190
+ "internalType": "Amount",
191
+ "name": "limit",
192
+ "type": "uint96"
193
+ }
194
+ ],
195
+ "name": "ErrorBundleServiceUnstakeAmountExceedsLimit",
196
+ "type": "error"
197
+ },
198
+ {
199
+ "inputs": [
200
+ {
201
+ "internalType": "NftId",
202
+ "name": "nftId",
203
+ "type": "uint96"
204
+ }
205
+ ],
206
+ "name": "ErrorNftOwnableAlreadyLinked",
207
+ "type": "error"
208
+ },
209
+ {
210
+ "inputs": [
211
+ {
212
+ "internalType": "address",
213
+ "name": "contractAddress",
214
+ "type": "address"
215
+ }
216
+ ],
217
+ "name": "ErrorNftOwnableContractNotRegistered",
218
+ "type": "error"
219
+ },
220
+ {
221
+ "inputs": [],
222
+ "name": "ErrorNftOwnableInitialOwnerZero",
223
+ "type": "error"
224
+ },
225
+ {
226
+ "inputs": [
227
+ {
228
+ "internalType": "NftId",
229
+ "name": "nftId",
230
+ "type": "uint96"
231
+ },
232
+ {
233
+ "internalType": "ObjectType",
234
+ "name": "expectedObjectType",
235
+ "type": "uint8"
236
+ }
237
+ ],
238
+ "name": "ErrorNftOwnableInvalidType",
239
+ "type": "error"
240
+ },
241
+ {
242
+ "inputs": [
243
+ {
244
+ "internalType": "address",
245
+ "name": "account",
246
+ "type": "address"
247
+ }
248
+ ],
249
+ "name": "ErrorNftOwnableNotOwner",
250
+ "type": "error"
251
+ },
252
+ {
253
+ "inputs": [
254
+ {
255
+ "internalType": "address",
256
+ "name": "registryAddress",
257
+ "type": "address"
258
+ }
259
+ ],
260
+ "name": "ErrorNotRegistry",
261
+ "type": "error"
262
+ },
263
+ {
264
+ "inputs": [],
265
+ "name": "ErrorRegisterableNotActive",
266
+ "type": "error"
267
+ },
268
+ {
269
+ "inputs": [],
270
+ "name": "ErrorVersionableInitializeNotImplemented",
271
+ "type": "error"
272
+ },
273
+ {
274
+ "inputs": [],
275
+ "name": "ErrorVersionableUpgradeNotImplemented",
276
+ "type": "error"
277
+ },
278
+ {
279
+ "inputs": [],
280
+ "name": "InvalidInitialization",
281
+ "type": "error"
282
+ },
283
+ {
284
+ "inputs": [],
285
+ "name": "NotInitializing",
286
+ "type": "error"
287
+ },
288
+ {
289
+ "inputs": [],
290
+ "name": "ReentrancyGuardReentrantCall",
291
+ "type": "error"
292
+ },
293
+ {
294
+ "anonymous": false,
295
+ "inputs": [
296
+ {
297
+ "indexed": false,
298
+ "internalType": "address",
299
+ "name": "authority",
300
+ "type": "address"
301
+ }
302
+ ],
303
+ "name": "AuthorityUpdated",
304
+ "type": "event"
305
+ },
306
+ {
307
+ "anonymous": false,
308
+ "inputs": [
309
+ {
310
+ "indexed": false,
311
+ "internalType": "uint64",
312
+ "name": "version",
313
+ "type": "uint64"
314
+ }
315
+ ],
316
+ "name": "Initialized",
317
+ "type": "event"
318
+ },
319
+ {
320
+ "anonymous": false,
321
+ "inputs": [
322
+ {
323
+ "indexed": false,
324
+ "internalType": "NftId",
325
+ "name": "bundleNftId",
326
+ "type": "uint96"
327
+ }
328
+ ],
329
+ "name": "LogBundleServiceBundleActivated",
330
+ "type": "event"
331
+ },
332
+ {
333
+ "anonymous": false,
334
+ "inputs": [
335
+ {
336
+ "indexed": false,
337
+ "internalType": "NftId",
338
+ "name": "bundleNftId",
339
+ "type": "uint96"
340
+ },
341
+ {
342
+ "indexed": false,
343
+ "internalType": "NftId",
344
+ "name": "poolNftId",
345
+ "type": "uint96"
346
+ }
347
+ ],
348
+ "name": "LogBundleServiceBundleCreated",
349
+ "type": "event"
350
+ },
351
+ {
352
+ "anonymous": false,
353
+ "inputs": [
354
+ {
355
+ "indexed": false,
356
+ "internalType": "NftId",
357
+ "name": "bundleNftId",
358
+ "type": "uint96"
359
+ },
360
+ {
361
+ "indexed": false,
362
+ "internalType": "Seconds",
363
+ "name": "lifetimeExtension",
364
+ "type": "uint40"
365
+ },
366
+ {
367
+ "indexed": false,
368
+ "internalType": "Timestamp",
369
+ "name": "extendedExpiredAt",
370
+ "type": "uint40"
371
+ }
372
+ ],
373
+ "name": "LogBundleServiceBundleExtended",
374
+ "type": "event"
375
+ },
376
+ {
377
+ "anonymous": false,
378
+ "inputs": [
379
+ {
380
+ "indexed": false,
381
+ "internalType": "NftId",
382
+ "name": "bundleNftId",
383
+ "type": "uint96"
384
+ }
385
+ ],
386
+ "name": "LogBundleServiceBundleLocked",
387
+ "type": "event"
388
+ },
389
+ {
390
+ "inputs": [],
391
+ "name": "NAME",
392
+ "outputs": [
393
+ {
394
+ "internalType": "string",
395
+ "name": "",
396
+ "type": "string"
397
+ }
398
+ ],
399
+ "stateMutability": "view",
400
+ "type": "function"
401
+ },
402
+ {
403
+ "inputs": [],
404
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
405
+ "outputs": [
406
+ {
407
+ "internalType": "bytes32",
408
+ "name": "",
409
+ "type": "bytes32"
410
+ }
411
+ ],
412
+ "stateMutability": "view",
413
+ "type": "function"
414
+ },
415
+ {
416
+ "inputs": [],
417
+ "name": "REGISTERABLE_LOCATION_V1",
418
+ "outputs": [
419
+ {
420
+ "internalType": "bytes32",
421
+ "name": "",
422
+ "type": "bytes32"
423
+ }
424
+ ],
425
+ "stateMutability": "view",
426
+ "type": "function"
427
+ },
428
+ {
429
+ "inputs": [],
430
+ "name": "authority",
431
+ "outputs": [
432
+ {
433
+ "internalType": "address",
434
+ "name": "",
435
+ "type": "address"
436
+ }
437
+ ],
438
+ "stateMutability": "view",
439
+ "type": "function"
440
+ },
441
+ {
442
+ "inputs": [
443
+ {
444
+ "internalType": "contract IInstance",
445
+ "name": "instance",
446
+ "type": "address"
447
+ },
448
+ {
449
+ "internalType": "NftId",
450
+ "name": "bundleNftId",
451
+ "type": "uint96"
452
+ }
453
+ ],
454
+ "name": "close",
455
+ "outputs": [
456
+ {
457
+ "internalType": "Amount",
458
+ "name": "unstakedAmount",
459
+ "type": "uint96"
460
+ },
461
+ {
462
+ "internalType": "Amount",
463
+ "name": "feeAmount",
464
+ "type": "uint96"
465
+ }
466
+ ],
467
+ "stateMutability": "nonpayable",
468
+ "type": "function"
469
+ },
470
+ {
471
+ "inputs": [
472
+ {
473
+ "internalType": "address",
474
+ "name": "owner",
475
+ "type": "address"
476
+ },
477
+ {
478
+ "components": [
479
+ {
480
+ "internalType": "UFixed",
481
+ "name": "fractionalFee",
482
+ "type": "uint160"
483
+ },
484
+ {
485
+ "internalType": "Amount",
486
+ "name": "fixedFee",
487
+ "type": "uint96"
488
+ }
489
+ ],
490
+ "internalType": "struct Fee",
491
+ "name": "bundleFee",
492
+ "type": "tuple"
493
+ },
494
+ {
495
+ "internalType": "Seconds",
496
+ "name": "lifetime",
497
+ "type": "uint40"
498
+ },
499
+ {
500
+ "internalType": "bytes",
501
+ "name": "filter",
502
+ "type": "bytes"
503
+ }
504
+ ],
505
+ "name": "create",
506
+ "outputs": [
507
+ {
508
+ "internalType": "NftId",
509
+ "name": "bundleNftId",
510
+ "type": "uint96"
511
+ }
512
+ ],
513
+ "stateMutability": "nonpayable",
514
+ "type": "function"
515
+ },
516
+ {
517
+ "inputs": [
518
+ {
519
+ "internalType": "NftId",
520
+ "name": "bundleNftId",
521
+ "type": "uint96"
522
+ },
523
+ {
524
+ "internalType": "Seconds",
525
+ "name": "lifetimeExtension",
526
+ "type": "uint40"
527
+ }
528
+ ],
529
+ "name": "extend",
530
+ "outputs": [
531
+ {
532
+ "internalType": "Timestamp",
533
+ "name": "extendedExpiredAt",
534
+ "type": "uint40"
535
+ }
536
+ ],
537
+ "stateMutability": "nonpayable",
538
+ "type": "function"
539
+ },
540
+ {
541
+ "inputs": [],
542
+ "name": "getDomain",
543
+ "outputs": [
544
+ {
545
+ "internalType": "ObjectType",
546
+ "name": "serviceDomain",
547
+ "type": "uint8"
548
+ }
549
+ ],
550
+ "stateMutability": "pure",
551
+ "type": "function"
552
+ },
553
+ {
554
+ "inputs": [],
555
+ "name": "getInitialInfo",
556
+ "outputs": [
557
+ {
558
+ "components": [
559
+ {
560
+ "internalType": "NftId",
561
+ "name": "nftId",
562
+ "type": "uint96"
563
+ },
564
+ {
565
+ "internalType": "NftId",
566
+ "name": "parentNftId",
567
+ "type": "uint96"
568
+ },
569
+ {
570
+ "internalType": "ObjectType",
571
+ "name": "objectType",
572
+ "type": "uint8"
573
+ },
574
+ {
575
+ "internalType": "bool",
576
+ "name": "isInterceptor",
577
+ "type": "bool"
578
+ },
579
+ {
580
+ "internalType": "address",
581
+ "name": "objectAddress",
582
+ "type": "address"
583
+ },
584
+ {
585
+ "internalType": "address",
586
+ "name": "initialOwner",
587
+ "type": "address"
588
+ },
589
+ {
590
+ "internalType": "bytes",
591
+ "name": "data",
592
+ "type": "bytes"
593
+ }
594
+ ],
595
+ "internalType": "struct IRegistry.ObjectInfo",
596
+ "name": "info",
597
+ "type": "tuple"
598
+ }
599
+ ],
600
+ "stateMutability": "view",
601
+ "type": "function"
602
+ },
603
+ {
604
+ "inputs": [],
605
+ "name": "getNftId",
606
+ "outputs": [
607
+ {
608
+ "internalType": "NftId",
609
+ "name": "",
610
+ "type": "uint96"
611
+ }
612
+ ],
613
+ "stateMutability": "view",
614
+ "type": "function"
615
+ },
616
+ {
617
+ "inputs": [],
618
+ "name": "getOwner",
619
+ "outputs": [
620
+ {
621
+ "internalType": "address",
622
+ "name": "",
623
+ "type": "address"
624
+ }
625
+ ],
626
+ "stateMutability": "view",
627
+ "type": "function"
628
+ },
629
+ {
630
+ "inputs": [],
631
+ "name": "getRegistry",
632
+ "outputs": [
633
+ {
634
+ "internalType": "contract IRegistry",
635
+ "name": "",
636
+ "type": "address"
637
+ }
638
+ ],
639
+ "stateMutability": "view",
640
+ "type": "function"
641
+ },
642
+ {
643
+ "inputs": [],
644
+ "name": "getRelease",
645
+ "outputs": [
646
+ {
647
+ "internalType": "VersionPart",
648
+ "name": "release",
649
+ "type": "uint8"
650
+ }
651
+ ],
652
+ "stateMutability": "view",
653
+ "type": "function"
654
+ },
655
+ {
656
+ "inputs": [],
657
+ "name": "getRoleId",
658
+ "outputs": [
659
+ {
660
+ "internalType": "RoleId",
661
+ "name": "serviceRoleId",
662
+ "type": "uint64"
663
+ }
664
+ ],
665
+ "stateMutability": "view",
666
+ "type": "function"
667
+ },
668
+ {
669
+ "inputs": [],
670
+ "name": "getVersion",
671
+ "outputs": [
672
+ {
673
+ "internalType": "Version",
674
+ "name": "",
675
+ "type": "uint24"
676
+ }
677
+ ],
678
+ "stateMutability": "pure",
679
+ "type": "function"
680
+ },
681
+ {
682
+ "inputs": [
683
+ {
684
+ "internalType": "address",
685
+ "name": "activatedBy",
686
+ "type": "address"
687
+ },
688
+ {
689
+ "internalType": "bytes",
690
+ "name": "data",
691
+ "type": "bytes"
692
+ }
693
+ ],
694
+ "name": "initializeVersionable",
695
+ "outputs": [],
696
+ "stateMutability": "nonpayable",
697
+ "type": "function"
698
+ },
699
+ {
700
+ "inputs": [],
701
+ "name": "isActive",
702
+ "outputs": [
703
+ {
704
+ "internalType": "bool",
705
+ "name": "active",
706
+ "type": "bool"
707
+ }
708
+ ],
709
+ "stateMutability": "view",
710
+ "type": "function"
711
+ },
712
+ {
713
+ "inputs": [],
714
+ "name": "isConsumingScheduledOp",
715
+ "outputs": [
716
+ {
717
+ "internalType": "bytes4",
718
+ "name": "",
719
+ "type": "bytes4"
720
+ }
721
+ ],
722
+ "stateMutability": "view",
723
+ "type": "function"
724
+ },
725
+ {
726
+ "inputs": [],
727
+ "name": "linkToRegisteredNftId",
728
+ "outputs": [
729
+ {
730
+ "internalType": "NftId",
731
+ "name": "nftId",
732
+ "type": "uint96"
733
+ }
734
+ ],
735
+ "stateMutability": "nonpayable",
736
+ "type": "function"
737
+ },
738
+ {
739
+ "inputs": [
740
+ {
741
+ "internalType": "NftId",
742
+ "name": "bundleNftId",
743
+ "type": "uint96"
744
+ }
745
+ ],
746
+ "name": "lock",
747
+ "outputs": [],
748
+ "stateMutability": "nonpayable",
749
+ "type": "function"
750
+ },
751
+ {
752
+ "inputs": [
753
+ {
754
+ "internalType": "contract IInstance",
755
+ "name": "instance",
756
+ "type": "address"
757
+ },
758
+ {
759
+ "internalType": "NftId",
760
+ "name": "policyNftId",
761
+ "type": "uint96"
762
+ },
763
+ {
764
+ "internalType": "NftId",
765
+ "name": "bundleNftId",
766
+ "type": "uint96"
767
+ },
768
+ {
769
+ "internalType": "Amount",
770
+ "name": "collateralAmount",
771
+ "type": "uint96"
772
+ }
773
+ ],
774
+ "name": "lockCollateral",
775
+ "outputs": [],
776
+ "stateMutability": "nonpayable",
777
+ "type": "function"
778
+ },
779
+ {
780
+ "inputs": [
781
+ {
782
+ "internalType": "contract InstanceStore",
783
+ "name": "instanceStore",
784
+ "type": "address"
785
+ },
786
+ {
787
+ "internalType": "NftId",
788
+ "name": "policyNftId",
789
+ "type": "uint96"
790
+ },
791
+ {
792
+ "internalType": "NftId",
793
+ "name": "bundleNftId",
794
+ "type": "uint96"
795
+ },
796
+ {
797
+ "internalType": "Amount",
798
+ "name": "collateralAmount",
799
+ "type": "uint96"
800
+ }
801
+ ],
802
+ "name": "releaseCollateral",
803
+ "outputs": [],
804
+ "stateMutability": "nonpayable",
805
+ "type": "function"
806
+ },
807
+ {
808
+ "inputs": [
809
+ {
810
+ "internalType": "address",
811
+ "name": "newAuthority",
812
+ "type": "address"
813
+ }
814
+ ],
815
+ "name": "setAuthority",
816
+ "outputs": [],
817
+ "stateMutability": "nonpayable",
818
+ "type": "function"
819
+ },
820
+ {
821
+ "inputs": [
822
+ {
823
+ "internalType": "NftId",
824
+ "name": "bundleNftId",
825
+ "type": "uint96"
826
+ },
827
+ {
828
+ "components": [
829
+ {
830
+ "internalType": "UFixed",
831
+ "name": "fractionalFee",
832
+ "type": "uint160"
833
+ },
834
+ {
835
+ "internalType": "Amount",
836
+ "name": "fixedFee",
837
+ "type": "uint96"
838
+ }
839
+ ],
840
+ "internalType": "struct Fee",
841
+ "name": "fee",
842
+ "type": "tuple"
843
+ }
844
+ ],
845
+ "name": "setFee",
846
+ "outputs": [],
847
+ "stateMutability": "nonpayable",
848
+ "type": "function"
849
+ },
850
+ {
851
+ "inputs": [
852
+ {
853
+ "internalType": "contract InstanceReader",
854
+ "name": "instanceReader",
855
+ "type": "address"
856
+ },
857
+ {
858
+ "internalType": "contract InstanceStore",
859
+ "name": "instanceStore",
860
+ "type": "address"
861
+ },
862
+ {
863
+ "internalType": "NftId",
864
+ "name": "bundleNftId",
865
+ "type": "uint96"
866
+ },
867
+ {
868
+ "internalType": "Amount",
869
+ "name": "amount",
870
+ "type": "uint96"
871
+ }
872
+ ],
873
+ "name": "stake",
874
+ "outputs": [],
875
+ "stateMutability": "nonpayable",
876
+ "type": "function"
877
+ },
878
+ {
879
+ "inputs": [
880
+ {
881
+ "internalType": "bytes4",
882
+ "name": "interfaceId",
883
+ "type": "bytes4"
884
+ }
885
+ ],
886
+ "name": "supportsInterface",
887
+ "outputs": [
888
+ {
889
+ "internalType": "bool",
890
+ "name": "",
891
+ "type": "bool"
892
+ }
893
+ ],
894
+ "stateMutability": "view",
895
+ "type": "function"
896
+ },
897
+ {
898
+ "inputs": [
899
+ {
900
+ "internalType": "NftId",
901
+ "name": "bundleNftId",
902
+ "type": "uint96"
903
+ }
904
+ ],
905
+ "name": "unlock",
906
+ "outputs": [],
907
+ "stateMutability": "nonpayable",
908
+ "type": "function"
909
+ },
910
+ {
911
+ "inputs": [
912
+ {
913
+ "internalType": "contract InstanceStore",
914
+ "name": "instanceStore",
915
+ "type": "address"
916
+ },
917
+ {
918
+ "internalType": "NftId",
919
+ "name": "bundleNftId",
920
+ "type": "uint96"
921
+ },
922
+ {
923
+ "internalType": "Amount",
924
+ "name": "amount",
925
+ "type": "uint96"
926
+ }
927
+ ],
928
+ "name": "unstake",
929
+ "outputs": [
930
+ {
931
+ "internalType": "Amount",
932
+ "name": "unstakedAmount",
933
+ "type": "uint96"
934
+ }
935
+ ],
936
+ "stateMutability": "nonpayable",
937
+ "type": "function"
938
+ },
939
+ {
940
+ "inputs": [
941
+ {
942
+ "internalType": "bytes",
943
+ "name": "data",
944
+ "type": "bytes"
945
+ }
946
+ ],
947
+ "name": "upgradeVersionable",
948
+ "outputs": [],
949
+ "stateMutability": "nonpayable",
950
+ "type": "function"
951
+ }
952
+ ],
953
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61490b806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101c6575f3560e01c806376b707b7116100fe578063ad328d9f1161009e578063bf7e214f1161006e578063bf7e214f14610472578063c548949d1461047a578063f3d0e5d21461048d578063fdbb9296146104b6575f80fd5b8063ad328d9f14610431578063ada9652e14610444578063b5346af514610458578063b68d18091461046b575f80fd5b80638fb36037116100d95780638fb3603714610391578063a3f4df7e146103b2578063a5fbe479146103eb578063aa9acb2c146103fe575f80fd5b806376b707b71461035c5780637a9e5e4b14610376578063893d20e814610389575f80fd5b80632d2cf222116101695780634adcf909116101445780634adcf909146102e75780635ab1bd53146102fa578063644c45e01461031f5780636c741e781461033c575f80fd5b80632d2cf222146102ae578063329d6e74146102c157806349bb9e4b146102d4575f80fd5b80630fec111c116101a45780630fec111c1461023c578063138461e0146102515780631eff4b221461027157806322f3e2d4146102a6575f80fd5b806301ffc9a7146101ca57806306fa45651461020b5780630d8e6e2c14610220575b5f80fd5b6101f66101d8366004613d28565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e610219366004613d63565b6104c9565b005b61022861074c565b60405162ffffff9091168152602001610202565b6102446107d3565b6040516102029190613dac565b61025961098d565b6040516001600160601b039091168152602001610202565b6102987f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610202565b6101f6610997565b6102596102bc366004613e54565b610a0e565b61021e6102cf366004613fa2565b610ce5565b61021e6102e2366004613fd3565b610e27565b61021e6102f536600461401f565b610f23565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610202565b5f80516020614876833981519152546001600160601b0316610259565b610344611380565b6040516001600160401b039091168152602001610202565b61036461140c565b60405160ff9091168152602001610202565b61021e610384366004614078565b611474565b6103076114fa565b61039961162b565b6040516001600160e01b03199091168152602001610202565b6103de6040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b6040516102029190614093565b61021e6103f93660046140e5565b611660565b61041161040c366004614119565b6119af565b604080516001600160601b03938416815292909116602083015201610202565b61021e61043f36600461401f565b611dbc565b6102985f8051602061487683398151915281565b61021e610466366004613d63565b611e5a565b6016610364565b6103076120d1565b61021e610488366004614150565b6120ec565b6104a061049b366004614190565b6123d4565b60405164ffffffffff9091168152602001610202565b6102596104c43660046141bc565b61296d565b6104d5335b5f36612f17565b6104e0816016613015565b5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee861050d6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af4158015610554573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610578919061426b565b915050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105db9190614298565b6001600160a01b031663fe1f18d68360056040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015610632575f80fd5b505af1158015610644573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610685573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a99190614298565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa4565906024015f604051808303815f87803b1580156106f3575f80fd5b505af1158015610705573d5f803e3d5ffd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156107aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce91906142b3565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561087f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a391906142d5565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016108eb6114fa565b6001600160a01b03168152602001826001018054610908906142f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610934906142f0565b801561097f5780601f106109565761010080835404028352916020019161097f565b820191905f5260205f20905b81548152906001019060200180831161096257829003601f168201915b505050505081525091505090565b5f6107ce30613149565b5f6109a06120d1565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156109e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a089190614337565b15905090565b5f610a18336104ce565b610a23836016613015565b6040516317bb785d60e21b81526001600160601b03841660048201525f90819081906001600160a01b03881690635eede17490602401606060405180830381865afa158015610a74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a989190614350565b9250925092508493505f610ab584610ab08585613342565b6133ce565b9050856001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4891906142d5565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610b91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb59190614337565b15610bbe578094505b610bc88582613418565b15610bfd5760405162f808ef60e61b81526001600160601b038088166004830152821660248201526044015b60405180910390fd5b60045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f89898873__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8e91906142d5565b6040518563ffffffff1660e01b8152600401610cad949392919061438f565b5f604051808303815f87803b158015610cc4575f80fd5b505af1158015610cd6573d5f803e3d5ffd5b50505050505050509392505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d0761074c565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6991906143d5565b5f805160206148b68339815191528054600160401b900460ff1680610d9b575080546001600160401b03808416911610155b15610db95760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610de38361349d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161073f565b5f805160206148b68339815191528054600160401b810460ff1615906001600160401b03165f81158015610e585750825b90505f826001600160401b03166001148015610e735750303b155b905081158015610e81575080155b15610e9f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ec957845460ff60401b1916600160401b1785555b610ed387876134be565b8315610f1a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610f2c336104ce565b610f37836015613015565b610f42826016613015565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa39190614298565b90505f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fe2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110069190614298565b604051637d8f1e8160e01b81526001600160601b03861660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa158015611053573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061107791906143fe565b604051634793b4ab60e01b81526001600160601b03861660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa1580156110c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526110ed91908101906144a6565b90506111028260055b60ff9081169116141590565b8061118a575061118a816020015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611157573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117b919061456a565b64ffffffffff90811691161090565b156111cf57602081015160405163bf5b8f0960e01b81526001600160601b038716600482015260ff8416602482015264ffffffffff9091166044820152606401610bf4565b50505f856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561120e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112329190614298565b6040516317bb785d60e21b81526001600160601b03861660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015611286573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112aa9190614350565b9250925092505f6112bf84610ab08585613342565b90506112cb8188613657565b156113045760405163826a5ff960e01b81526001600160601b03808a166004830152808316602483015288166044820152606401610bf4565b505060405163248a77dd60e01b81526001600160601b038088166004830152861660248201526001600160a01b038416925063248a77dd91506044016020604051808303815f875af115801561135c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f1a91906142d5565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe60166113a561140c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156113e8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce91906143d5565b5f6114156120d1565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611450573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce91906143fe565b3361147d6120d1565b6001600160a01b0316816001600160a01b0316146114b85760405162d1953b60e31b81526001600160a01b0382166004820152602401610bf4565b816001600160a01b03163b5f036114ed576040516361798f2f60e11b81526001600160a01b0383166004820152602401610bf4565b6114f6826136a1565b5050565b5f805f8051602061487683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611566573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061158a9190614337565b15611615576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156115eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160f9190614298565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061489683398151915280545f9190600160a01b900460ff16611652575f61160f565b638fb3603760e01b91505090565b611669336104ce565b611674826016613015565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee86116a26001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af41580156116e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061170d919061426b565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561174e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117729190614298565b604051634793b4ab60e01b81526001600160601b03871660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa1580156117c1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526117e891908101906144a6565b6060810151604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611847573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061186b9190614337565b15611894576040516349e9f38360e01b81526001600160601b0387166004820152602401610bf4565b6118a2816060015185613701565b156118e157606081015160405163dab86e4560e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610bf4565b848160800181905250826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611926573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061194a9190614298565b6001600160a01b03166308077cd9878360ff6040518463ffffffff1660e01b815260040161197a93929190614609565b5f604051808303815f87803b158015611991575f80fd5b505af11580156119a3573d5f803e3d5ffd5b50505050505050505050565b5f806119ba336104ce565b6119c5836016613015565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a269190614298565b90505f856001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a899190614298565b6040516322cc1d4560e11b81526001600160601b03871660048201529091505f906001600160a01b038316906345983a8a90602401602060405180830381865afa158015611ad9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611afd919061463d565b90508015611b30576040516356a410b760e01b81526001600160601b038716600482015260248101829052604401610bf4565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b919190614298565b90506001600160a01b03811663fe1f18d68860c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015611beb575f80fd5b505af1158015611bfd573d5f803e3d5ffd5b505060405163b5346af560e01b81526001600160601b038a1660048201526001600160a01b038616925063b5346af591506024015f604051808303815f87803b158015611c48575f80fd5b505af1158015611c5a573d5f803e3d5ffd5b50506040516308a390bb60e21b81526001600160601b038a1660048201525f92506001600160a01b038716915063228e42ec90602401602060405180830381865afa158015611cab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccf91906142d5565b604051630232ca4960e01b81526001600160601b038a1660048201529091506001600160a01b03861690630232ca4990602401602060405180830381865afa158015611d1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d4191906142d5565b9550611d4d81876133ce565b6004805460405163e618053f60e01b81529299506001600160a01b03169163e618053f91611d839186918d918d918d910161438f565b5f604051808303815f87803b158015611d9a575f80fd5b505af1158015611dac573d5f803e3d5ffd5b5050505050505050509250929050565b611dc5336104ce565b611dd0836015613015565b611ddb826016613015565b6040516353ebe12960e01b81526001600160601b038084166004830152821660248201526001600160a01b038516906353ebe129906044016020604051808303815f875af1158015611e2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e5391906142d5565b5050505050565b611e63336104ce565b611e6e816016613015565b5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee8611e9b6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af4158015611ee2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f06919061426b565b915050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f699190614298565b6001600160a01b031663fe1f18d683606e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015611fc0575f80fd5b505af1158015611fd2573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612013573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120379190614298565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af5906024015f604051808303815f87803b158015612081575f80fd5b505af1158015612093573d5f803e3d5ffd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f49250602001905061073f565b5f80516020614896833981519152546001600160a01b031690565b6120f5336104ce565b612100826016613015565b604051634793b4ab60e01b81526001600160601b03831660048201525f906001600160a01b03861690634793b4ab906024015f60405180830381865afa15801561214c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261217391908101906144a6565b604051637d8f1e8160e01b81526001600160601b03851660048201529091505f906001600160a01b03871690637d8f1e8190602401602060405180830381865afa1580156121c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121e791906143fe565b90506121f48160056110f6565b8015612206575061220681606e6110f6565b8061225b575061225b826020015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611157573d5f803e3d5ffd5b806122df57506040828101519051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af41580156122bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122df9190614337565b1561232457602082015160405163bf5b8f0960e01b81526001600160601b038616600482015260ff8316602482015264ffffffffff9091166044820152606401610bf4565b60045f9054906101000a90046001600160a01b03166001600160a01b03166325e451d386868673__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612391573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123b591906142d5565b6040518563ffffffff1660e01b815260040161197a949392919061438f565b5f6123de336104ce565b6123e9836016613015565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee86124176001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af415801561245e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612482919061426b565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124e79190614298565b604051634793b4ab60e01b81526001600160601b03881660048201526001600160a01b039190911690634793b4ab906024015f60405180830381865afa158015612533573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261255a91908101906144a6565b90505f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125bd9190614298565b604051637d8f1e8160e01b81526001600160601b03891660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa15801561260a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061262e91906143fe565b905061263e826060015185613701565b1561267d57606082015160405163dab86e4560e01b81526001600160601b03808a16600483015291821660248201529085166044820152606401610bf4565b6126888160056110f6565b806126dd57506126dd826020015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611157573d5f803e3d5ffd5b1561272257602082015160405163bf5b8f0960e01b81526001600160601b038916600482015260ff8316602482015264ffffffffff9091166044820152606401610bf4565b60405163790a38ad60e01b815264ffffffffff8716600482015273__$71e292c09eace9601b3e21e68a1278917a$__9063790a38ad90602401602060405180830381865af4158015612776573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061279a9190614337565b156127b8576040516307f6a6ab60e31b815260040160405180910390fd5b60208201516040516352bcc5a760e11b815264ffffffffff9182166004820152908716602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af415801561281a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061283e919061456a565b64ffffffffff16602080840182905260408051631a99b41b60e31b815290519297506001600160a01b0386169263d4cda0d8926004808401939192918290030181865afa158015612891573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128b59190614298565b6001600160a01b03166308077cd9888460ff6040518463ffffffff1660e01b81526004016128e593929190614609565b5f604051808303815f87803b1580156128fc575f80fd5b505af115801561290e573d5f803e3d5ffd5b5050604080516001600160601b038b16815264ffffffffff8a8116602083015289168183015290517f47dde095fac4cfe7361ede303a6499020b475037d805fa37784e682c423ddc929350908190036060019150a15050505092915050565b5f612977336104ce565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee86129a56001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af41580156129ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a10919061426b565b9150915060035f9054906101000a90046001600160a01b03166001600160a01b031663c2bf08c86040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aad91906142d5565b6001600160601b03168152602001856001600160601b03168152602001612ad2601690565b60ff1681526020015f151581526020015f6001600160a01b031681526020018b6001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401612b2e9190613dac565b6020604051808303815f875af1158015612b4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6e91906142d5565b92505f816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bd19190614298565b9050806001600160a01b031663d7719f46856040518060c0016040528073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c59919061456a565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612cac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cd0919061456a565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908d16602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015612d2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d51919061456a565b64ffffffffff1681526020015f64ffffffffff168152602001876001600160601b031681526020018c81526020018a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050509152506040516001600160e01b031960e085901b168152612dd8929190600401614654565b5f604051808303815f87803b158015612def575f80fd5b505af1158015612e01573d5f803e3d5ffd5b505050505f826001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e669190614298565b6040516346f0e8a760e11b81526001600160601b03871660048201529091506001600160a01b03821690638de1d14e906024015f604051808303815f87803b158015612eb0575f80fd5b505af1158015612ec2573d5f803e3d5ffd5b5050604080516001600160601b03808a168252881660208201527f7be1ab18e66200dc91d36236580ea990a4738693aaf2409d0dcfdccc83046bf1935001905060405180910390a15050505095945050505050565b5f805160206148968339815191525f80612f4f612f326120d1565b8730612f4160045f8a8c614675565b612f4a9161469c565b61374b565b915091508161300d5763ffffffff811615612fea57825460ff60a01b1916600160a01b178355612f7d6120d1565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612fac939291906146d4565b5f604051808303815f87803b158015612fc3575f80fd5b505af1158015612fd5573d5f803e3d5ffd5b5050845460ff60a01b191685555061300d9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610bf4565b505050505050565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015613065573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130899190614337565b8061311757506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa1580156130f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131159190614337565b155b156114f65760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610bf4565b5f805f8051602061487683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156131b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d99190614337565b156132055780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610bf4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613257573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327b9190614337565b6132a35760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610bf4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156132f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061331991906142d5565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af41580156133a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133c791906142d5565b9392505050565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613388565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044015b602060405180830381865af4158015613479573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133c79190614337565b6134a5613853565b60405163502ec37160e01b815260040160405180910390fd5b5f805160206148b68339815191528054600160401b810460ff1615906001600160401b03165f811580156134ef5750825b90505f826001600160401b0316600114801561350a5750303b155b905081158015613518575080155b156135365760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561356057845460ff60401b1916600160401b1785555b5f80878060200190518101906135769190614713565b9150915061358582828b61388b565b61358f600261392d565b600380546001600160a01b0319166001600160a01b03929092169190911790556135b9602861392d565b600480546001600160a01b0319166001600160a01b03929092169190911790556135e3600b61392d565b600580546001600160a01b0319166001600160a01b03929092169190911790556136136317a9ccb560e31b6139c4565b50508315610f1a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610f11565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d629060440161345e565b5f8051602061489683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c519060440161345e565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516137b9919061472f565b5f60405180830381855afa9150503d805f81146137f1576040519150601f19603f3d011682016040523d82523d5f602084013e6137f6565b606091505b50915091508115613848576040815110613828578080602001905181019061381e9190614745565b9094509250613848565b602081511061384857808060200190518101906138459190614337565b93505b505094509492505050565b5f805160206148b683398151915254600160401b900460ff1661388957604051631afcd79f60e31b815260040160405180910390fd5b565b613893613853565b61389b6139f7565b6139188383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138dc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061390091906142d5565b60085f8660405180602001604052805f815250613a07565b61392863daf9067160e01b6139c4565b505050565b5f6139406001546001600160a01b031690565b6001600160a01b031663d39e60438361395761140c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561399a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139be9190614298565b92915050565b6139cc613853565b6139f4816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6139ff613853565b613889613b4e565b613a0f613853565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015613a65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a899190614337565b613ab15760405163cf6935e560e01b81526001600160a01b0388166004820152602401610bf4565b613aba87613b7c565b613ac48683613b8d565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101613b3383826147bb565b50613b44634a531f3360e01b6139c4565b5050505050505050565b613b56613853565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b613b84613853565b6139f481613c03565b613b95613853565b613b9d613c14565b613ba682613c5c565b6001600160a01b038116613bcd5760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061487683398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b613c0b613853565b6139f4816136a1565b613c1c613853565b6138896301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b613c64613853565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613cba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cde9190614337565b613d065760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610bf4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f60208284031215613d38575f80fd5b81356001600160e01b0319811681146133c7575f80fd5b6001600160601b03811681146139f4575f80fd5b5f60208284031215613d73575f80fd5b81356133c781613d4f565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151613df4608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613e38610100840182613d7e565b949350505050565b6001600160a01b03811681146139f4575f80fd5b5f805f60608486031215613e66575f80fd5b8335613e7181613e40565b92506020840135613e8181613d4f565b91506040840135613e9181613d4f565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715613ed257613ed2613e9c565b60405290565b60405160c081016001600160401b0381118282101715613ed257613ed2613e9c565b604051601f8201601f191681016001600160401b0381118282101715613f2257613f22613e9c565b604052919050565b5f6001600160401b03821115613f4257613f42613e9c565b50601f01601f191660200190565b5f82601f830112613f5f575f80fd5b8135613f72613f6d82613f2a565b613efa565b818152846020838601011115613f86575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215613fb2575f80fd5b81356001600160401b03811115613fc7575f80fd5b613e3884828501613f50565b5f8060408385031215613fe4575f80fd5b8235613fef81613e40565b915060208301356001600160401b03811115614009575f80fd5b61401585828601613f50565b9150509250929050565b5f805f8060808587031215614032575f80fd5b843561403d81613e40565b9350602085013561404d81613d4f565b9250604085013561405d81613d4f565b9150606085013561406d81613d4f565b939692955090935050565b5f60208284031215614088575f80fd5b81356133c781613e40565b602081525f6133c76020830184613d7e565b5f604082840312156140b5575f80fd5b6140bd613eb0565b905081356140ca81613e40565b815260208201356140da81613d4f565b602082015292915050565b5f80606083850312156140f6575f80fd5b823561410181613d4f565b915061411084602085016140a5565b90509250929050565b5f806040838503121561412a575f80fd5b823561413581613e40565b9150602083013561414581613d4f565b809150509250929050565b5f805f8060808587031215614163575f80fd5b843561416e81613e40565b9350602085013561404d81613e40565b64ffffffffff811681146139f4575f80fd5b5f80604083850312156141a1575f80fd5b82356141ac81613d4f565b915060208301356141458161417e565b5f805f805f60a086880312156141d0575f80fd5b85356141db81613e40565b94506141ea87602088016140a5565b935060608601356141fa8161417e565b925060808601356001600160401b03811115614214575f80fd5b8601601f81018813614224575f80fd5b80356001600160401b03811115614239575f80fd5b88602082840101111561424a575f80fd5b959894975092955050506020019190565b805161426681613d4f565b919050565b5f806040838503121561427c575f80fd5b825161428781613d4f565b602084015190925061414581613e40565b5f602082840312156142a8575f80fd5b81516133c781613e40565b5f602082840312156142c3575f80fd5b815162ffffff811681146133c7575f80fd5b5f602082840312156142e5575f80fd5b81516133c781613d4f565b600181811c9082168061430457607f821691505b60208210810361432257634e487b7160e01b5f52602260045260245ffd5b50919050565b80518015158114614266575f80fd5b5f60208284031215614347575f80fd5b6133c782614328565b5f805f60608486031215614362575f80fd5b835161436d81613d4f565b602085015190935061437e81613d4f565b6040850151909250613e9181613d4f565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b6001600160401b03811681146139f4575f80fd5b5f602082840312156143e5575f80fd5b81516133c7816143c1565b60ff811681146139f4575f80fd5b5f6020828403121561440e575f80fd5b81516133c7816143f0565b80516142668161417e565b5f60408284031215614434575f80fd5b61443c613eb0565b9050815161444981613e40565b815260208201516140da81613d4f565b5f82601f830112614468575f80fd5b8151614476613f6d82613f2a565b81815284602083860101111561448a575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156144b6575f80fd5b81516001600160401b038111156144cb575f80fd5b820160e081850312156144dc575f80fd5b6144e4613ed8565b81516144ef8161417e565b815260208201516144ff8161417e565b602082015261451060408301614419565b60408201526145216060830161425b565b60608201526145338560808401614424565b608082015260c08201516001600160401b03811115614550575f80fd5b61455c86828501614459565b60a083015250949350505050565b5f6020828403121561457a575f80fd5b81516133c78161417e565b64ffffffffff815116825264ffffffffff602082015116602083015264ffffffffff60408201511660408301526001600160601b0360608201511660608301525f60808201516080840160018060a01b0382511681526001600160601b036020830151166020820152505060a082015160e060c0850152613e3860e0850182613d7e565b6001600160601b0384168152606060208201525f61462a6060830185614585565b905060ff83166040830152949350505050565b5f6020828403121561464d575f80fd5b5051919050565b6001600160601b0383168152604060208201525f613e386040830184614585565b5f8085851115614683575f80fd5b8386111561468f575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156146cd576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215614724575f80fd5b825161428781613e40565b5f82518060208501845e5f920191825250919050565b5f8060408385031215614756575f80fd5b61475f83614328565b9150602083015163ffffffff81168114614145575f80fd5b601f82111561392857805f5260205f20601f840160051c8101602085101561479c5750805b601f840160051c820191505b81811015611e53575f81556001016147a8565b81516001600160401b038111156147d4576147d4613e9c565b6147e8816147e284546142f0565b84614777565b6020601f82116001811461481a575f83156148035750848201515b5f19600385901b1c1916600184901b178455611e53565b5f84815260208120601f198516915b828110156148495787850151825560209485019460019092019101614829565b508482101561486657868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220c372e1b722a8aa88d46b74579977eff0a274b31bb0686164e461fcad654fd25464736f6c634300081a0033",
954
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101c6575f3560e01c806376b707b7116100fe578063ad328d9f1161009e578063bf7e214f1161006e578063bf7e214f14610472578063c548949d1461047a578063f3d0e5d21461048d578063fdbb9296146104b6575f80fd5b8063ad328d9f14610431578063ada9652e14610444578063b5346af514610458578063b68d18091461046b575f80fd5b80638fb36037116100d95780638fb3603714610391578063a3f4df7e146103b2578063a5fbe479146103eb578063aa9acb2c146103fe575f80fd5b806376b707b71461035c5780637a9e5e4b14610376578063893d20e814610389575f80fd5b80632d2cf222116101695780634adcf909116101445780634adcf909146102e75780635ab1bd53146102fa578063644c45e01461031f5780636c741e781461033c575f80fd5b80632d2cf222146102ae578063329d6e74146102c157806349bb9e4b146102d4575f80fd5b80630fec111c116101a45780630fec111c1461023c578063138461e0146102515780631eff4b221461027157806322f3e2d4146102a6575f80fd5b806301ffc9a7146101ca57806306fa45651461020b5780630d8e6e2c14610220575b5f80fd5b6101f66101d8366004613d28565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61021e610219366004613d63565b6104c9565b005b61022861074c565b60405162ffffff9091168152602001610202565b6102446107d3565b6040516102029190613dac565b61025961098d565b6040516001600160601b039091168152602001610202565b6102987f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610202565b6101f6610997565b6102596102bc366004613e54565b610a0e565b61021e6102cf366004613fa2565b610ce5565b61021e6102e2366004613fd3565b610e27565b61021e6102f536600461401f565b610f23565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610202565b5f80516020614876833981519152546001600160601b0316610259565b610344611380565b6040516001600160401b039091168152602001610202565b61036461140c565b60405160ff9091168152602001610202565b61021e610384366004614078565b611474565b6103076114fa565b61039961162b565b6040516001600160e01b03199091168152602001610202565b6103de6040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b6040516102029190614093565b61021e6103f93660046140e5565b611660565b61041161040c366004614119565b6119af565b604080516001600160601b03938416815292909116602083015201610202565b61021e61043f36600461401f565b611dbc565b6102985f8051602061487683398151915281565b61021e610466366004613d63565b611e5a565b6016610364565b6103076120d1565b61021e610488366004614150565b6120ec565b6104a061049b366004614190565b6123d4565b60405164ffffffffff9091168152602001610202565b6102596104c43660046141bc565b61296d565b6104d5335b5f36612f17565b6104e0816016613015565b5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee861050d6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af4158015610554573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610578919061426b565b915050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105db9190614298565b6001600160a01b031663fe1f18d68360056040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015610632575f80fd5b505af1158015610644573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610685573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a99190614298565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa4565906024015f604051808303815f87803b1580156106f3575f80fd5b505af1158015610705573d5f803e3d5ffd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156107aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce91906142b3565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561087f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a391906142d5565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016108eb6114fa565b6001600160a01b03168152602001826001018054610908906142f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610934906142f0565b801561097f5780601f106109565761010080835404028352916020019161097f565b820191905f5260205f20905b81548152906001019060200180831161096257829003601f168201915b505050505081525091505090565b5f6107ce30613149565b5f6109a06120d1565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156109e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a089190614337565b15905090565b5f610a18336104ce565b610a23836016613015565b6040516317bb785d60e21b81526001600160601b03841660048201525f90819081906001600160a01b03881690635eede17490602401606060405180830381865afa158015610a74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a989190614350565b9250925092508493505f610ab584610ab08585613342565b6133ce565b9050856001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4891906142d5565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610b91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bb59190614337565b15610bbe578094505b610bc88582613418565b15610bfd5760405162f808ef60e61b81526001600160601b038088166004830152821660248201526044015b60405180910390fd5b60045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f89898873__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8e91906142d5565b6040518563ffffffff1660e01b8152600401610cad949392919061438f565b5f604051808303815f87803b158015610cc4575f80fd5b505af1158015610cd6573d5f803e3d5ffd5b50505050505050509392505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d0761074c565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6991906143d5565b5f805160206148b68339815191528054600160401b900460ff1680610d9b575080546001600160401b03808416911610155b15610db95760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610de38361349d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161073f565b5f805160206148b68339815191528054600160401b810460ff1615906001600160401b03165f81158015610e585750825b90505f826001600160401b03166001148015610e735750303b155b905081158015610e81575080155b15610e9f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ec957845460ff60401b1916600160401b1785555b610ed387876134be565b8315610f1a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610f2c336104ce565b610f37836015613015565b610f42826016613015565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fa39190614298565b90505f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fe2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110069190614298565b604051637d8f1e8160e01b81526001600160601b03861660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa158015611053573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061107791906143fe565b604051634793b4ab60e01b81526001600160601b03861660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa1580156110c6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526110ed91908101906144a6565b90506111028260055b60ff9081169116141590565b8061118a575061118a816020015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611157573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117b919061456a565b64ffffffffff90811691161090565b156111cf57602081015160405163bf5b8f0960e01b81526001600160601b038716600482015260ff8416602482015264ffffffffff9091166044820152606401610bf4565b50505f856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561120e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112329190614298565b6040516317bb785d60e21b81526001600160601b03861660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015611286573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112aa9190614350565b9250925092505f6112bf84610ab08585613342565b90506112cb8188613657565b156113045760405163826a5ff960e01b81526001600160601b03808a166004830152808316602483015288166044820152606401610bf4565b505060405163248a77dd60e01b81526001600160601b038088166004830152861660248201526001600160a01b038416925063248a77dd91506044016020604051808303815f875af115801561135c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f1a91906142d5565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe60166113a561140c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156113e8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce91906143d5565b5f6114156120d1565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611450573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce91906143fe565b3361147d6120d1565b6001600160a01b0316816001600160a01b0316146114b85760405162d1953b60e31b81526001600160a01b0382166004820152602401610bf4565b816001600160a01b03163b5f036114ed576040516361798f2f60e11b81526001600160a01b0383166004820152602401610bf4565b6114f6826136a1565b5050565b5f805f8051602061487683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611566573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061158a9190614337565b15611615576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156115eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061160f9190614298565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061489683398151915280545f9190600160a01b900460ff16611652575f61160f565b638fb3603760e01b91505090565b611669336104ce565b611674826016613015565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee86116a26001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af41580156116e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061170d919061426b565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561174e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117729190614298565b604051634793b4ab60e01b81526001600160601b03871660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa1580156117c1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526117e891908101906144a6565b6060810151604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611847573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061186b9190614337565b15611894576040516349e9f38360e01b81526001600160601b0387166004820152602401610bf4565b6118a2816060015185613701565b156118e157606081015160405163dab86e4560e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610bf4565b848160800181905250826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611926573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061194a9190614298565b6001600160a01b03166308077cd9878360ff6040518463ffffffff1660e01b815260040161197a93929190614609565b5f604051808303815f87803b158015611991575f80fd5b505af11580156119a3573d5f803e3d5ffd5b50505050505050505050565b5f806119ba336104ce565b6119c5836016613015565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a269190614298565b90505f856001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a899190614298565b6040516322cc1d4560e11b81526001600160601b03871660048201529091505f906001600160a01b038316906345983a8a90602401602060405180830381865afa158015611ad9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611afd919061463d565b90508015611b30576040516356a410b760e01b81526001600160601b038716600482015260248101829052604401610bf4565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b919190614298565b90506001600160a01b03811663fe1f18d68860c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015611beb575f80fd5b505af1158015611bfd573d5f803e3d5ffd5b505060405163b5346af560e01b81526001600160601b038a1660048201526001600160a01b038616925063b5346af591506024015f604051808303815f87803b158015611c48575f80fd5b505af1158015611c5a573d5f803e3d5ffd5b50506040516308a390bb60e21b81526001600160601b038a1660048201525f92506001600160a01b038716915063228e42ec90602401602060405180830381865afa158015611cab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccf91906142d5565b604051630232ca4960e01b81526001600160601b038a1660048201529091506001600160a01b03861690630232ca4990602401602060405180830381865afa158015611d1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d4191906142d5565b9550611d4d81876133ce565b6004805460405163e618053f60e01b81529299506001600160a01b03169163e618053f91611d839186918d918d918d910161438f565b5f604051808303815f87803b158015611d9a575f80fd5b505af1158015611dac573d5f803e3d5ffd5b5050505050505050509250929050565b611dc5336104ce565b611dd0836015613015565b611ddb826016613015565b6040516353ebe12960e01b81526001600160601b038084166004830152821660248201526001600160a01b038516906353ebe129906044016020604051808303815f875af1158015611e2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e5391906142d5565b5050505050565b611e63336104ce565b611e6e816016613015565b5f73__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee8611e9b6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af4158015611ee2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f06919061426b565b915050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f699190614298565b6001600160a01b031663fe1f18d683606e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015611fc0575f80fd5b505af1158015611fd2573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612013573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120379190614298565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af5906024015f604051808303815f87803b158015612081575f80fd5b505af1158015612093573d5f803e3d5ffd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f49250602001905061073f565b5f80516020614896833981519152546001600160a01b031690565b6120f5336104ce565b612100826016613015565b604051634793b4ab60e01b81526001600160601b03831660048201525f906001600160a01b03861690634793b4ab906024015f60405180830381865afa15801561214c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261217391908101906144a6565b604051637d8f1e8160e01b81526001600160601b03851660048201529091505f906001600160a01b03871690637d8f1e8190602401602060405180830381865afa1580156121c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121e791906143fe565b90506121f48160056110f6565b8015612206575061220681606e6110f6565b8061225b575061225b826020015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611157573d5f803e3d5ffd5b806122df57506040828101519051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af41580156122bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122df9190614337565b1561232457602082015160405163bf5b8f0960e01b81526001600160601b038616600482015260ff8316602482015264ffffffffff9091166044820152606401610bf4565b60045f9054906101000a90046001600160a01b03166001600160a01b03166325e451d386868673__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612391573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123b591906142d5565b6040518563ffffffff1660e01b815260040161197a949392919061438f565b5f6123de336104ce565b6123e9836016613015565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee86124176001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af415801561245e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612482919061426b565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124e79190614298565b604051634793b4ab60e01b81526001600160601b03881660048201526001600160a01b039190911690634793b4ab906024015f60405180830381865afa158015612533573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261255a91908101906144a6565b90505f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612599573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125bd9190614298565b604051637d8f1e8160e01b81526001600160601b03891660048201526001600160a01b039190911690637d8f1e8190602401602060405180830381865afa15801561260a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061262e91906143fe565b905061263e826060015185613701565b1561267d57606082015160405163dab86e4560e01b81526001600160601b03808a16600483015291821660248201529085166044820152606401610bf4565b6126888160056110f6565b806126dd57506126dd826020015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611157573d5f803e3d5ffd5b1561272257602082015160405163bf5b8f0960e01b81526001600160601b038916600482015260ff8316602482015264ffffffffff9091166044820152606401610bf4565b60405163790a38ad60e01b815264ffffffffff8716600482015273__$71e292c09eace9601b3e21e68a1278917a$__9063790a38ad90602401602060405180830381865af4158015612776573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061279a9190614337565b156127b8576040516307f6a6ab60e31b815260040160405180910390fd5b60208201516040516352bcc5a760e11b815264ffffffffff9182166004820152908716602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af415801561281a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061283e919061456a565b64ffffffffff16602080840182905260408051631a99b41b60e31b815290519297506001600160a01b0386169263d4cda0d8926004808401939192918290030181865afa158015612891573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128b59190614298565b6001600160a01b03166308077cd9888460ff6040518463ffffffff1660e01b81526004016128e593929190614609565b5f604051808303815f87803b1580156128fc575f80fd5b505af115801561290e573d5f803e3d5ffd5b5050604080516001600160601b038b16815264ffffffffff8a8116602083015289168183015290517f47dde095fac4cfe7361ede303a6499020b475037d805fa37784e682c423ddc929350908190036060019150a15050505092915050565b5f612977336104ce565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__6339b8cee86129a56001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523360248201526044016040805180830381865af41580156129ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a10919061426b565b9150915060035f9054906101000a90046001600160a01b03166001600160a01b031663c2bf08c86040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aad91906142d5565b6001600160601b03168152602001856001600160601b03168152602001612ad2601690565b60ff1681526020015f151581526020015f6001600160a01b031681526020018b6001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401612b2e9190613dac565b6020604051808303815f875af1158015612b4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6e91906142d5565b92505f816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bd19190614298565b9050806001600160a01b031663d7719f46856040518060c0016040528073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612c35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c59919061456a565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612cac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cd0919061456a565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908d16602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af4158015612d2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d51919061456a565b64ffffffffff1681526020015f64ffffffffff168152602001876001600160601b031681526020018c81526020018a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050509152506040516001600160e01b031960e085901b168152612dd8929190600401614654565b5f604051808303815f87803b158015612def575f80fd5b505af1158015612e01573d5f803e3d5ffd5b505050505f826001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e669190614298565b6040516346f0e8a760e11b81526001600160601b03871660048201529091506001600160a01b03821690638de1d14e906024015f604051808303815f87803b158015612eb0575f80fd5b505af1158015612ec2573d5f803e3d5ffd5b5050604080516001600160601b03808a168252881660208201527f7be1ab18e66200dc91d36236580ea990a4738693aaf2409d0dcfdccc83046bf1935001905060405180910390a15050505095945050505050565b5f805160206148968339815191525f80612f4f612f326120d1565b8730612f4160045f8a8c614675565b612f4a9161469c565b61374b565b915091508161300d5763ffffffff811615612fea57825460ff60a01b1916600160a01b178355612f7d6120d1565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612fac939291906146d4565b5f604051808303815f87803b158015612fc3575f80fd5b505af1158015612fd5573d5f803e3d5ffd5b5050845460ff60a01b191685555061300d9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610bf4565b505050505050565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015613065573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130899190614337565b8061311757506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa1580156130f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131159190614337565b155b156114f65760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610bf4565b5f805f8051602061487683398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156131b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d99190614337565b156132055780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610bf4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613257573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061327b9190614337565b6132a35760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610bf4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156132f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061331991906142d5565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af41580156133a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133c791906142d5565b9392505050565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613388565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044015b602060405180830381865af4158015613479573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133c79190614337565b6134a5613853565b60405163502ec37160e01b815260040160405180910390fd5b5f805160206148b68339815191528054600160401b810460ff1615906001600160401b03165f811580156134ef5750825b90505f826001600160401b0316600114801561350a5750303b155b905081158015613518575080155b156135365760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561356057845460ff60401b1916600160401b1785555b5f80878060200190518101906135769190614713565b9150915061358582828b61388b565b61358f600261392d565b600380546001600160a01b0319166001600160a01b03929092169190911790556135b9602861392d565b600480546001600160a01b0319166001600160a01b03929092169190911790556135e3600b61392d565b600580546001600160a01b0319166001600160a01b03929092169190911790556136136317a9ccb560e31b6139c4565b50508315610f1a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610f11565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d629060440161345e565b5f8051602061489683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c519060440161345e565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516137b9919061472f565b5f60405180830381855afa9150503d805f81146137f1576040519150601f19603f3d011682016040523d82523d5f602084013e6137f6565b606091505b50915091508115613848576040815110613828578080602001905181019061381e9190614745565b9094509250613848565b602081511061384857808060200190518101906138459190614337565b93505b505094509492505050565b5f805160206148b683398151915254600160401b900460ff1661388957604051631afcd79f60e31b815260040160405180910390fd5b565b613893613853565b61389b6139f7565b6139188383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138dc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061390091906142d5565b60085f8660405180602001604052805f815250613a07565b61392863daf9067160e01b6139c4565b505050565b5f6139406001546001600160a01b031690565b6001600160a01b031663d39e60438361395761140c565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561399a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139be9190614298565b92915050565b6139cc613853565b6139f4816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6139ff613853565b613889613b4e565b613a0f613853565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015613a65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a899190614337565b613ab15760405163cf6935e560e01b81526001600160a01b0388166004820152602401610bf4565b613aba87613b7c565b613ac48683613b8d565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101613b3383826147bb565b50613b44634a531f3360e01b6139c4565b5050505050505050565b613b56613853565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b613b84613853565b6139f481613c03565b613b95613853565b613b9d613c14565b613ba682613c5c565b6001600160a01b038116613bcd5760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061487683398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b613c0b613853565b6139f4816136a1565b613c1c613853565b6138896301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b613c64613853565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015613cba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cde9190614337565b613d065760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610bf4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f60208284031215613d38575f80fd5b81356001600160e01b0319811681146133c7575f80fd5b6001600160601b03811681146139f4575f80fd5b5f60208284031215613d73575f80fd5b81356133c781613d4f565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151613df4608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613e38610100840182613d7e565b949350505050565b6001600160a01b03811681146139f4575f80fd5b5f805f60608486031215613e66575f80fd5b8335613e7181613e40565b92506020840135613e8181613d4f565b91506040840135613e9181613d4f565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715613ed257613ed2613e9c565b60405290565b60405160c081016001600160401b0381118282101715613ed257613ed2613e9c565b604051601f8201601f191681016001600160401b0381118282101715613f2257613f22613e9c565b604052919050565b5f6001600160401b03821115613f4257613f42613e9c565b50601f01601f191660200190565b5f82601f830112613f5f575f80fd5b8135613f72613f6d82613f2a565b613efa565b818152846020838601011115613f86575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215613fb2575f80fd5b81356001600160401b03811115613fc7575f80fd5b613e3884828501613f50565b5f8060408385031215613fe4575f80fd5b8235613fef81613e40565b915060208301356001600160401b03811115614009575f80fd5b61401585828601613f50565b9150509250929050565b5f805f8060808587031215614032575f80fd5b843561403d81613e40565b9350602085013561404d81613d4f565b9250604085013561405d81613d4f565b9150606085013561406d81613d4f565b939692955090935050565b5f60208284031215614088575f80fd5b81356133c781613e40565b602081525f6133c76020830184613d7e565b5f604082840312156140b5575f80fd5b6140bd613eb0565b905081356140ca81613e40565b815260208201356140da81613d4f565b602082015292915050565b5f80606083850312156140f6575f80fd5b823561410181613d4f565b915061411084602085016140a5565b90509250929050565b5f806040838503121561412a575f80fd5b823561413581613e40565b9150602083013561414581613d4f565b809150509250929050565b5f805f8060808587031215614163575f80fd5b843561416e81613e40565b9350602085013561404d81613e40565b64ffffffffff811681146139f4575f80fd5b5f80604083850312156141a1575f80fd5b82356141ac81613d4f565b915060208301356141458161417e565b5f805f805f60a086880312156141d0575f80fd5b85356141db81613e40565b94506141ea87602088016140a5565b935060608601356141fa8161417e565b925060808601356001600160401b03811115614214575f80fd5b8601601f81018813614224575f80fd5b80356001600160401b03811115614239575f80fd5b88602082840101111561424a575f80fd5b959894975092955050506020019190565b805161426681613d4f565b919050565b5f806040838503121561427c575f80fd5b825161428781613d4f565b602084015190925061414581613e40565b5f602082840312156142a8575f80fd5b81516133c781613e40565b5f602082840312156142c3575f80fd5b815162ffffff811681146133c7575f80fd5b5f602082840312156142e5575f80fd5b81516133c781613d4f565b600181811c9082168061430457607f821691505b60208210810361432257634e487b7160e01b5f52602260045260245ffd5b50919050565b80518015158114614266575f80fd5b5f60208284031215614347575f80fd5b6133c782614328565b5f805f60608486031215614362575f80fd5b835161436d81613d4f565b602085015190935061437e81613d4f565b6040850151909250613e9181613d4f565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b6001600160401b03811681146139f4575f80fd5b5f602082840312156143e5575f80fd5b81516133c7816143c1565b60ff811681146139f4575f80fd5b5f6020828403121561440e575f80fd5b81516133c7816143f0565b80516142668161417e565b5f60408284031215614434575f80fd5b61443c613eb0565b9050815161444981613e40565b815260208201516140da81613d4f565b5f82601f830112614468575f80fd5b8151614476613f6d82613f2a565b81815284602083860101111561448a575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156144b6575f80fd5b81516001600160401b038111156144cb575f80fd5b820160e081850312156144dc575f80fd5b6144e4613ed8565b81516144ef8161417e565b815260208201516144ff8161417e565b602082015261451060408301614419565b60408201526145216060830161425b565b60608201526145338560808401614424565b608082015260c08201516001600160401b03811115614550575f80fd5b61455c86828501614459565b60a083015250949350505050565b5f6020828403121561457a575f80fd5b81516133c78161417e565b64ffffffffff815116825264ffffffffff602082015116602083015264ffffffffff60408201511660408301526001600160601b0360608201511660608301525f60808201516080840160018060a01b0382511681526001600160601b036020830151166020820152505060a082015160e060c0850152613e3860e0850182613d7e565b6001600160601b0384168152606060208201525f61462a6060830185614585565b905060ff83166040830152949350505050565b5f6020828403121561464d575f80fd5b5051919050565b6001600160601b0383168152604060208201525f613e386040830184614585565b5f8085851115614683575f80fd5b8386111561468f575f80fd5b5050820193919092039150565b80356001600160e01b031981169060048410156146cd576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215614724575f80fd5b825161428781613e40565b5f82518060208501845e5f920191825250919050565b5f8060408385031215614756575f80fd5b61475f83614328565b9150602083015163ffffffff81168114614145575f80fd5b601f82111561392857805f5260205f20601f840160051c8101602085101561479c5750805b601f840160051c820191505b81811015611e53575f81556001016147a8565b81516001600160401b038111156147d4576147d4613e9c565b6147e8816147e284546142f0565b84614777565b6020601f82116001811461481a575f83156148035750848201515b5f19600385901b1c1916600184901b178455611e53565b5f84815260208120601f198516915b828110156148495787850151825560209485019460019092019101614829565b508482101561486657868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220c372e1b722a8aa88d46b74579977eff0a274b31bb0686164e461fcad654fd25464736f6c634300081a0033",
955
+ "linkReferences": {
956
+ "contracts/pool/PoolLib.sol": {
957
+ "PoolLib": [
958
+ {
959
+ "length": 20,
960
+ "start": 1465
961
+ },
962
+ {
963
+ "length": 20,
964
+ "start": 5966
965
+ },
966
+ {
967
+ "length": 20,
968
+ "start": 8007
969
+ },
970
+ {
971
+ "length": 20,
972
+ "start": 9411
973
+ },
974
+ {
975
+ "length": 20,
976
+ "start": 10833
977
+ }
978
+ ]
979
+ },
980
+ "contracts/shared/ContractLib.sol": {
981
+ "ContractLib": [
982
+ {
983
+ "length": 20,
984
+ "start": 15107
985
+ },
986
+ {
987
+ "length": 20,
988
+ "start": 15704
989
+ }
990
+ ]
991
+ },
992
+ "contracts/type/Amount.sol": {
993
+ "AmountLib": [
994
+ {
995
+ "length": 20,
996
+ "start": 2969
997
+ },
998
+ {
999
+ "length": 20,
1000
+ "start": 2997
1001
+ },
1002
+ {
1003
+ "length": 20,
1004
+ "start": 3323
1005
+ },
1006
+ {
1007
+ "length": 20,
1008
+ "start": 9250
1009
+ },
1010
+ {
1011
+ "length": 20,
1012
+ "start": 13376
1013
+ },
1014
+ {
1015
+ "length": 20,
1016
+ "start": 13516
1017
+ },
1018
+ {
1019
+ "length": 20,
1020
+ "start": 13590
1021
+ },
1022
+ {
1023
+ "length": 20,
1024
+ "start": 14165
1025
+ }
1026
+ ]
1027
+ },
1028
+ "contracts/type/NftId.sol": {
1029
+ "NftIdLib": [
1030
+ {
1031
+ "length": 20,
1032
+ "start": 2320
1033
+ },
1034
+ {
1035
+ "length": 20,
1036
+ "start": 5636
1037
+ },
1038
+ {
1039
+ "length": 20,
1040
+ "start": 6373
1041
+ },
1042
+ {
1043
+ "length": 20,
1044
+ "start": 11034
1045
+ },
1046
+ {
1047
+ "length": 20,
1048
+ "start": 12883
1049
+ },
1050
+ {
1051
+ "length": 20,
1052
+ "start": 14335
1053
+ }
1054
+ ]
1055
+ },
1056
+ "contracts/type/ObjectType.sol": {
1057
+ "ObjectTypeLib": [
1058
+ {
1059
+ "length": 20,
1060
+ "start": 12547
1061
+ }
1062
+ ]
1063
+ },
1064
+ "contracts/type/RoleId.sol": {
1065
+ "RoleIdLib": [
1066
+ {
1067
+ "length": 20,
1068
+ "start": 5209
1069
+ }
1070
+ ]
1071
+ },
1072
+ "contracts/type/Seconds.sol": {
1073
+ "SecondsLib": [
1074
+ {
1075
+ "length": 20,
1076
+ "start": 10260
1077
+ }
1078
+ ]
1079
+ },
1080
+ "contracts/type/Timestamp.sol": {
1081
+ "TimestampLib": [
1082
+ {
1083
+ "length": 20,
1084
+ "start": 4584
1085
+ },
1086
+ {
1087
+ "length": 20,
1088
+ "start": 8940
1089
+ },
1090
+ {
1091
+ "length": 20,
1092
+ "start": 9049
1093
+ },
1094
+ {
1095
+ "length": 20,
1096
+ "start": 10094
1097
+ },
1098
+ {
1099
+ "length": 20,
1100
+ "start": 10424
1101
+ },
1102
+ {
1103
+ "length": 20,
1104
+ "start": 11462
1105
+ },
1106
+ {
1107
+ "length": 20,
1108
+ "start": 11581
1109
+ },
1110
+ {
1111
+ "length": 20,
1112
+ "start": 11723
1113
+ }
1114
+ ]
1115
+ },
1116
+ "contracts/type/Version.sol": {
1117
+ "VersionLib": [
1118
+ {
1119
+ "length": 20,
1120
+ "start": 2120
1121
+ },
1122
+ {
1123
+ "length": 20,
1124
+ "start": 3517
1125
+ }
1126
+ ]
1127
+ }
1128
+ },
1129
+ "deployedLinkReferences": {
1130
+ "contracts/pool/PoolLib.sol": {
1131
+ "PoolLib": [
1132
+ {
1133
+ "length": 20,
1134
+ "start": 1251
1135
+ },
1136
+ {
1137
+ "length": 20,
1138
+ "start": 5752
1139
+ },
1140
+ {
1141
+ "length": 20,
1142
+ "start": 7793
1143
+ },
1144
+ {
1145
+ "length": 20,
1146
+ "start": 9197
1147
+ },
1148
+ {
1149
+ "length": 20,
1150
+ "start": 10619
1151
+ }
1152
+ ]
1153
+ },
1154
+ "contracts/shared/ContractLib.sol": {
1155
+ "ContractLib": [
1156
+ {
1157
+ "length": 20,
1158
+ "start": 14893
1159
+ },
1160
+ {
1161
+ "length": 20,
1162
+ "start": 15490
1163
+ }
1164
+ ]
1165
+ },
1166
+ "contracts/type/Amount.sol": {
1167
+ "AmountLib": [
1168
+ {
1169
+ "length": 20,
1170
+ "start": 2755
1171
+ },
1172
+ {
1173
+ "length": 20,
1174
+ "start": 2783
1175
+ },
1176
+ {
1177
+ "length": 20,
1178
+ "start": 3109
1179
+ },
1180
+ {
1181
+ "length": 20,
1182
+ "start": 9036
1183
+ },
1184
+ {
1185
+ "length": 20,
1186
+ "start": 13162
1187
+ },
1188
+ {
1189
+ "length": 20,
1190
+ "start": 13302
1191
+ },
1192
+ {
1193
+ "length": 20,
1194
+ "start": 13376
1195
+ },
1196
+ {
1197
+ "length": 20,
1198
+ "start": 13951
1199
+ }
1200
+ ]
1201
+ },
1202
+ "contracts/type/NftId.sol": {
1203
+ "NftIdLib": [
1204
+ {
1205
+ "length": 20,
1206
+ "start": 2106
1207
+ },
1208
+ {
1209
+ "length": 20,
1210
+ "start": 5422
1211
+ },
1212
+ {
1213
+ "length": 20,
1214
+ "start": 6159
1215
+ },
1216
+ {
1217
+ "length": 20,
1218
+ "start": 10820
1219
+ },
1220
+ {
1221
+ "length": 20,
1222
+ "start": 12669
1223
+ },
1224
+ {
1225
+ "length": 20,
1226
+ "start": 14121
1227
+ }
1228
+ ]
1229
+ },
1230
+ "contracts/type/ObjectType.sol": {
1231
+ "ObjectTypeLib": [
1232
+ {
1233
+ "length": 20,
1234
+ "start": 12333
1235
+ }
1236
+ ]
1237
+ },
1238
+ "contracts/type/RoleId.sol": {
1239
+ "RoleIdLib": [
1240
+ {
1241
+ "length": 20,
1242
+ "start": 4995
1243
+ }
1244
+ ]
1245
+ },
1246
+ "contracts/type/Seconds.sol": {
1247
+ "SecondsLib": [
1248
+ {
1249
+ "length": 20,
1250
+ "start": 10046
1251
+ }
1252
+ ]
1253
+ },
1254
+ "contracts/type/Timestamp.sol": {
1255
+ "TimestampLib": [
1256
+ {
1257
+ "length": 20,
1258
+ "start": 4370
1259
+ },
1260
+ {
1261
+ "length": 20,
1262
+ "start": 8726
1263
+ },
1264
+ {
1265
+ "length": 20,
1266
+ "start": 8835
1267
+ },
1268
+ {
1269
+ "length": 20,
1270
+ "start": 9880
1271
+ },
1272
+ {
1273
+ "length": 20,
1274
+ "start": 10210
1275
+ },
1276
+ {
1277
+ "length": 20,
1278
+ "start": 11248
1279
+ },
1280
+ {
1281
+ "length": 20,
1282
+ "start": 11367
1283
+ },
1284
+ {
1285
+ "length": 20,
1286
+ "start": 11509
1287
+ }
1288
+ ]
1289
+ },
1290
+ "contracts/type/Version.sol": {
1291
+ "VersionLib": [
1292
+ {
1293
+ "length": 20,
1294
+ "start": 1906
1295
+ },
1296
+ {
1297
+ "length": 20,
1298
+ "start": 3303
1299
+ }
1300
+ ]
1301
+ }
1302
+ }
1303
+ }