@etherisc/gif-next 0.0.2-f9bc4c7-556 → 0.0.2-fa35bce-363

Sign up to get free protection for your applications and to get access to all the features.
Files changed (794) hide show
  1. package/README.md +378 -20
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +790 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -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/access → authorization}/IAccess.sol/IAccess.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +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 +1244 -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/distribution/Distribution.sol/Distribution.json +949 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1809 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +930 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +848 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1284 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1484 -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 +2053 -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 +1439 -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 +1171 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1647 -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 +2585 -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 +576 -1290
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +1082 -0
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +653 -1537
  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 +4 -0
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2646 -0
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1328 -0
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +772 -0
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3792 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -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/base/Cloneable.sol/Cloneable.json +137 -0
  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 +4 -0
  101. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  102. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  103. package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
  104. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  105. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  106. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  107. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  108. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  110. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  111. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  112. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +957 -0
  114. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
  116. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  118. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
  120. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +762 -0
  122. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +873 -0
  124. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  125. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1042 -0
  126. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  127. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +810 -0
  128. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1242 -0
  130. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
  132. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  133. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1438 -0
  134. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  135. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +866 -0
  136. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1033 -0
  138. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  139. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +905 -0
  140. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  141. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1449 -0
  142. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  143. package/artifacts/contracts/pool/Pool.sol/Pool.json +1025 -0
  144. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  146. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  147. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1833 -0
  148. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +866 -0
  150. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  151. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
  152. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  153. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +790 -0
  154. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  155. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1159 -0
  156. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  157. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
  158. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  159. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1536 -0
  160. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  161. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +886 -0
  162. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +804 -0
  164. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  165. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1104 -0
  166. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  167. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1036 -0
  168. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  169. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +652 -0
  170. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  171. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1016 -0
  172. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  173. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +665 -0
  174. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1404 -0
  176. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  177. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  178. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +854 -0
  180. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  181. package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
  182. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +814 -0
  184. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  185. package/artifacts/contracts/product/Product.sol/Product.json +1117 -0
  186. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  187. package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
  188. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  189. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +774 -0
  190. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  191. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +242 -12
  192. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  193. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1035 -119
  194. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  195. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1072 -0
  196. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  197. package/artifacts/contracts/{instance/IInstanceLinked.sol/IInstanceLinked.json → registry/IRelease.sol/IRelease.json} +6 -6
  198. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  199. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
  200. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  201. package/artifacts/contracts/registry/Registry.sol/Registry.json +1473 -231
  202. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  203. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2160 -0
  204. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  205. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1074 -0
  206. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  207. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1298 -0
  208. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  209. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +773 -0
  210. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  212. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  214. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  215. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1389 -0
  216. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  217. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
  218. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  219. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +721 -0
  220. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  221. package/artifacts/contracts/shared/Component.sol/Component.json +705 -0
  222. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1551 -0
  224. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +862 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  229. package/artifacts/contracts/shared/{IOwnable.sol/IOwnable.json → ContractLib.sol/IInstanceAdminHelper.json} +5 -5
  230. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  231. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  232. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  233. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  234. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  235. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +630 -0
  236. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  237. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1175 -0
  238. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  239. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +707 -0
  240. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  241. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +146 -147
  242. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  243. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  244. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  245. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +62 -70
  246. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  247. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  248. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +248 -21
  250. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  251. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  252. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  253. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +224 -160
  254. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  255. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  256. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  257. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +795 -0
  258. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  259. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  260. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  261. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  262. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  263. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  264. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  265. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +228 -0
  266. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  267. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  268. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  269. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +294 -18
  270. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  271. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  272. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  273. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → shared/Service.sol/Service.json} +239 -234
  274. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  275. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +723 -0
  276. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  277. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  278. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  279. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  280. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  281. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +2568 -0
  282. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  283. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1147 -0
  284. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
  285. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +69 -0
  286. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  287. package/artifacts/contracts/staking/Staking.sol/Staking.json +3028 -0
  288. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
  290. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  292. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +863 -0
  294. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +554 -0
  296. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  297. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1344 -0
  298. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  299. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +766 -0
  300. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  301. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +3136 -0
  302. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
  303. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +265 -0
  304. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  305. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +657 -0
  306. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  307. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  308. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  310. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +251 -0
  312. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  314. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  316. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  317. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  318. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  320. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  321. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  322. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  323. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  324. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  326. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  327. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  328. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  330. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  332. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  334. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  336. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  338. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  340. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +289 -0
  342. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  344. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  346. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  348. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  349. package/artifacts/contracts/type/String.sol/StrLib.json +180 -0
  350. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  352. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  353. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  354. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  355. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  356. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  357. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  358. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  359. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +65 -0
  360. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  361. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +656 -0
  362. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  363. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  364. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  365. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +88 -0
  366. package/contracts/accounting/AccountingService.sol +274 -0
  367. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  368. package/contracts/accounting/IAccountingService.sol +47 -0
  369. package/contracts/authorization/AccessAdmin.sol +780 -0
  370. package/contracts/authorization/AccessAdminLib.sol +396 -0
  371. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  372. package/contracts/authorization/Authorization.sol +169 -0
  373. package/contracts/authorization/IAccess.sol +67 -0
  374. package/contracts/authorization/IAccessAdmin.sol +144 -0
  375. package/contracts/authorization/IAuthorization.sol +26 -0
  376. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  377. package/contracts/authorization/ServiceAuthorization.sol +320 -0
  378. package/contracts/distribution/BasicDistribution.sol +141 -0
  379. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  380. package/contracts/distribution/Distribution.sol +247 -0
  381. package/contracts/distribution/DistributionService.sol +448 -0
  382. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  383. package/contracts/distribution/IDistributionComponent.sol +45 -0
  384. package/contracts/distribution/IDistributionService.sol +115 -0
  385. package/contracts/examples/fire/DamageLevel.sol +59 -0
  386. package/contracts/examples/fire/FirePool.sol +86 -0
  387. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  388. package/contracts/examples/fire/FireProduct.sol +433 -0
  389. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  390. package/contracts/examples/fire/FireUSD.sol +26 -0
  391. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  392. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  393. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  394. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  395. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  396. package/contracts/examples/unpermissioned/SimpleProduct.sol +437 -0
  397. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  398. package/contracts/instance/BundleSet.sol +130 -0
  399. package/contracts/instance/IInstance.sol +138 -45
  400. package/contracts/instance/IInstanceService.sol +117 -0
  401. package/contracts/instance/Instance.sol +333 -54
  402. package/contracts/instance/InstanceAdmin.sol +383 -0
  403. package/contracts/instance/InstanceAuthorizationV3.sol +266 -0
  404. package/contracts/instance/InstanceReader.sol +632 -0
  405. package/contracts/instance/InstanceService.sol +500 -0
  406. package/contracts/instance/InstanceServiceManager.sol +39 -0
  407. package/contracts/instance/InstanceStore.sol +298 -0
  408. package/contracts/instance/RiskSet.sol +126 -0
  409. package/contracts/instance/base/BalanceStore.sol +121 -0
  410. package/contracts/instance/base/Cloneable.sol +28 -0
  411. package/contracts/instance/base/ObjectCounter.sol +20 -0
  412. package/contracts/instance/base/ObjectLifecycle.sol +109 -0
  413. package/contracts/instance/base/ObjectSet.sol +77 -0
  414. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  415. package/contracts/instance/module/IBundle.sol +21 -0
  416. package/contracts/instance/module/IComponents.sol +62 -0
  417. package/contracts/instance/module/IDistribution.sol +54 -0
  418. package/contracts/instance/module/IPolicy.sol +105 -0
  419. package/contracts/instance/module/IRisk.sol +16 -0
  420. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  421. package/contracts/oracle/BasicOracle.sol +45 -0
  422. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  423. package/contracts/oracle/IOracle.sol +41 -0
  424. package/contracts/oracle/IOracleComponent.sol +33 -0
  425. package/contracts/oracle/IOracleService.sol +66 -0
  426. package/contracts/oracle/Oracle.sol +154 -0
  427. package/contracts/oracle/OracleService.sol +310 -0
  428. package/contracts/oracle/OracleServiceManager.sol +39 -0
  429. package/contracts/pool/BasicPool.sol +162 -0
  430. package/contracts/pool/BasicPoolAuthorization.sol +81 -0
  431. package/contracts/pool/BundleService.sol +386 -0
  432. package/contracts/pool/BundleServiceManager.sol +39 -0
  433. package/contracts/pool/IBundleService.sol +116 -0
  434. package/contracts/pool/IPoolComponent.sol +62 -0
  435. package/contracts/pool/IPoolService.sol +170 -0
  436. package/contracts/pool/Pool.sol +333 -0
  437. package/contracts/pool/PoolLib.sol +341 -0
  438. package/contracts/pool/PoolService.sol +614 -0
  439. package/contracts/pool/PoolServiceManager.sol +39 -0
  440. package/contracts/product/ApplicationService.sol +327 -0
  441. package/contracts/product/ApplicationServiceManager.sol +38 -0
  442. package/contracts/product/BasicProduct.sol +49 -0
  443. package/contracts/product/BasicProductAuthorization.sol +63 -0
  444. package/contracts/product/ClaimService.sol +630 -0
  445. package/contracts/product/ClaimServiceManager.sol +38 -0
  446. package/contracts/product/IApplicationService.sol +88 -0
  447. package/contracts/product/IClaimService.sol +136 -0
  448. package/contracts/product/IPolicyService.sol +102 -0
  449. package/contracts/product/IPricingService.sol +40 -0
  450. package/contracts/product/IProductComponent.sol +62 -0
  451. package/contracts/product/IRiskService.sol +48 -0
  452. package/contracts/product/PolicyService.sol +645 -0
  453. package/contracts/product/PolicyServiceLib.sol +139 -0
  454. package/contracts/product/PolicyServiceManager.sol +39 -0
  455. package/contracts/product/PricingService.sol +306 -0
  456. package/contracts/product/PricingServiceManager.sol +39 -0
  457. package/contracts/product/Product.sol +493 -0
  458. package/contracts/product/RiskService.sol +190 -0
  459. package/contracts/product/RiskServiceManager.sol +39 -0
  460. package/contracts/registry/ChainNft.sol +130 -40
  461. package/contracts/registry/IRegistry.sol +144 -29
  462. package/contracts/registry/IRegistryService.sol +62 -0
  463. package/contracts/registry/IRelease.sol +29 -0
  464. package/contracts/registry/ITransferInterceptor.sol +6 -0
  465. package/contracts/registry/Registry.sol +637 -282
  466. package/contracts/registry/RegistryAdmin.sol +191 -0
  467. package/contracts/registry/RegistryAuthorization.sol +312 -0
  468. package/contracts/registry/RegistryService.sol +241 -0
  469. package/contracts/registry/RegistryServiceManager.sol +53 -0
  470. package/contracts/registry/ReleaseAdmin.sol +195 -0
  471. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  472. package/contracts/registry/ReleaseRegistry.sol +525 -0
  473. package/contracts/registry/ServiceAuthorizationV3.sol +342 -0
  474. package/contracts/registry/TokenRegistry.sol +317 -0
  475. package/contracts/shared/Component.sol +214 -0
  476. package/contracts/shared/ComponentService.sol +687 -0
  477. package/contracts/shared/ComponentServiceManager.sol +38 -0
  478. package/contracts/shared/ContractLib.sol +312 -0
  479. package/contracts/shared/IComponent.sol +58 -0
  480. package/contracts/shared/IComponentService.sol +111 -0
  481. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  482. package/contracts/shared/IKeyValueStore.sol +54 -0
  483. package/contracts/{instance/base → shared}/ILifecycle.sol +6 -5
  484. package/contracts/shared/INftOwnable.sol +27 -0
  485. package/contracts/shared/IPolicyHolder.sol +35 -0
  486. package/contracts/shared/IRegisterable.sol +31 -19
  487. package/contracts/shared/IRegistryLinked.sol +11 -0
  488. package/contracts/shared/IService.sol +23 -0
  489. package/contracts/shared/InitializableERC165.sol +35 -0
  490. package/contracts/shared/InstanceLinkedComponent.sol +194 -0
  491. package/contracts/shared/KeyValueStore.sol +131 -0
  492. package/contracts/shared/Lifecycle.sol +88 -0
  493. package/contracts/shared/NftIdSet.sol +65 -0
  494. package/contracts/shared/NftOwnable.sol +129 -0
  495. package/contracts/shared/PolicyHolder.sol +63 -0
  496. package/contracts/shared/Registerable.sol +80 -60
  497. package/contracts/shared/RegistryLinked.sol +38 -0
  498. package/contracts/shared/Service.sol +67 -0
  499. package/contracts/shared/TokenHandler.sol +342 -0
  500. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  501. package/contracts/staking/IStaking.sol +297 -0
  502. package/contracts/staking/IStakingService.sol +127 -0
  503. package/contracts/staking/ITargetLimitHandler.sol +26 -0
  504. package/contracts/staking/Staking.sol +780 -0
  505. package/contracts/staking/StakingLib.sol +195 -0
  506. package/contracts/staking/StakingLifecycle.sol +23 -0
  507. package/contracts/staking/StakingManager.sol +53 -0
  508. package/contracts/staking/StakingReader.sol +151 -0
  509. package/contracts/staking/StakingService.sol +321 -0
  510. package/contracts/staking/StakingServiceManager.sol +46 -0
  511. package/contracts/staking/StakingStore.sol +1174 -0
  512. package/contracts/staking/TargetHandler.sol +102 -0
  513. package/contracts/staking/TargetManagerLib.sol +211 -0
  514. package/contracts/{types → type}/AddressSet.sol +1 -1
  515. package/contracts/type/Amount.sol +154 -0
  516. package/contracts/{types → type}/Blocknumber.sol +36 -12
  517. package/contracts/type/ChainId.sol +101 -0
  518. package/contracts/type/ClaimId.sol +80 -0
  519. package/contracts/type/DistributorType.sol +55 -0
  520. package/contracts/type/Fee.sol +66 -0
  521. package/contracts/{types → type}/Key32.sol +10 -5
  522. package/contracts/type/Key32Set.sol +62 -0
  523. package/contracts/{types → type}/NftId.sol +28 -15
  524. package/contracts/type/NftIdSet.sol +62 -0
  525. package/contracts/type/ObjectType.sol +307 -0
  526. package/contracts/type/PayoutId.sol +82 -0
  527. package/contracts/type/Referral.sol +90 -0
  528. package/contracts/type/RequestId.sol +75 -0
  529. package/contracts/type/RiskId.sol +75 -0
  530. package/contracts/type/RoleId.sol +180 -0
  531. package/contracts/type/Seconds.sol +115 -0
  532. package/contracts/type/Selector.sol +107 -0
  533. package/contracts/{types → type}/StateId.sol +53 -5
  534. package/contracts/type/String.sol +65 -0
  535. package/contracts/{types → type}/Timestamp.sol +39 -19
  536. package/contracts/{types → type}/UFixed.sol +73 -19
  537. package/contracts/type/Version.sol +159 -0
  538. package/contracts/upgradeability/IVersionable.sol +56 -0
  539. package/contracts/upgradeability/ProxyManager.sol +246 -0
  540. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +24 -0
  541. package/contracts/upgradeability/Versionable.sol +62 -0
  542. package/package.json +13 -8
  543. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  544. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  545. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  546. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  547. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
  548. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  549. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
  550. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  551. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
  552. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  553. package/artifacts/contracts/components/Product.sol/Product.json +0 -305
  554. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  555. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  556. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  557. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  558. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  559. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  560. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  561. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  562. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  563. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  564. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  565. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  566. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  568. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  570. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  572. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  573. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  574. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  575. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  576. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  577. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  578. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  579. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  580. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  581. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  582. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  583. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  584. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  585. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  586. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  587. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  588. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  589. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  590. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  591. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  592. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  593. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  594. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  595. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  596. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  597. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  598. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +0 -326
  599. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  600. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
  601. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  602. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  603. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  604. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  605. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  606. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  607. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  608. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  609. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  610. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  611. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  612. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  613. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  614. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  615. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  616. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  617. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  618. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  619. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  620. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  621. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  622. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  623. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  624. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  625. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  626. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  627. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  628. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  629. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  630. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  631. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  632. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  633. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  634. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  635. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  636. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  637. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  638. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  639. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  640. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  641. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  642. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  643. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  644. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  645. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  646. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  647. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  648. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  649. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  650. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  651. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  652. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  653. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
  654. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  655. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  656. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
  657. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  658. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  659. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
  660. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  661. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
  662. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  663. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  664. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  665. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  666. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  667. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  668. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  669. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -164
  670. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  671. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -164
  672. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  673. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  674. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  675. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  676. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  677. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  678. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  679. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  680. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  681. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  682. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  683. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  684. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  685. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  686. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  687. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  688. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  689. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  690. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  691. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  692. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  693. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  694. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  695. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  696. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  697. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  698. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  699. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
  700. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  701. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  702. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  703. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  704. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  705. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  706. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  707. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  708. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  709. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  710. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  711. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  712. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  713. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  714. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  715. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  716. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  717. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  718. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  719. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  720. package/contracts/components/BaseComponent.sol +0 -88
  721. package/contracts/components/IBaseComponent.sol +0 -19
  722. package/contracts/components/IPoolComponent.sol +0 -57
  723. package/contracts/components/IProductComponent.sol +0 -19
  724. package/contracts/components/Pool.sol +0 -174
  725. package/contracts/components/Product.sol +0 -117
  726. package/contracts/experiment/errors/Require.sol +0 -38
  727. package/contracts/experiment/errors/Revert.sol +0 -44
  728. package/contracts/experiment/inheritance/A.sol +0 -53
  729. package/contracts/experiment/inheritance/B.sol +0 -28
  730. package/contracts/experiment/inheritance/C.sol +0 -34
  731. package/contracts/experiment/inheritance/IA.sol +0 -13
  732. package/contracts/experiment/inheritance/IB.sol +0 -10
  733. package/contracts/experiment/inheritance/IC.sol +0 -12
  734. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  735. package/contracts/experiment/statemachine/ISM.sol +0 -25
  736. package/contracts/experiment/statemachine/README.md +0 -112
  737. package/contracts/experiment/statemachine/SM.sol +0 -57
  738. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  739. package/contracts/experiment/types/TypeA.sol +0 -47
  740. package/contracts/experiment/types/TypeB.sol +0 -29
  741. package/contracts/instance/IInstanceLinked.sol +0 -8
  742. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  743. package/contracts/instance/base/IInstanceBase.sol +0 -14
  744. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  745. package/contracts/instance/base/IService.sol +0 -15
  746. package/contracts/instance/base/InstanceBase.sol +0 -80
  747. package/contracts/instance/base/KeyValueStore.sol +0 -156
  748. package/contracts/instance/base/Lifecycle.sol +0 -95
  749. package/contracts/instance/base/ModuleBase.sol +0 -52
  750. package/contracts/instance/base/ServiceBase.sol +0 -37
  751. package/contracts/instance/module/access/Access.sol +0 -149
  752. package/contracts/instance/module/access/IAccess.sol +0 -53
  753. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  754. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  755. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  756. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  757. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  758. package/contracts/instance/module/component/IComponent.sol +0 -53
  759. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  760. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  761. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  762. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  763. package/contracts/instance/module/risk/IRisk.sol +0 -10
  764. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  765. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  766. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  767. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  768. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  769. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  770. package/contracts/instance/service/IPoolService.sol +0 -30
  771. package/contracts/instance/service/IProductService.sol +0 -58
  772. package/contracts/instance/service/PoolService.sol +0 -123
  773. package/contracts/instance/service/ProductService.sol +0 -354
  774. package/contracts/registry/IChainNft.sol +0 -21
  775. package/contracts/registry/IRegistryLinked.sol +0 -8
  776. package/contracts/shared/ERC165.sol +0 -21
  777. package/contracts/shared/IOwnable.sol +0 -6
  778. package/contracts/shared/IVersionable.sol +0 -52
  779. package/contracts/shared/Versionable.sol +0 -89
  780. package/contracts/test/TestFee.sol +0 -25
  781. package/contracts/test/TestPool.sol +0 -22
  782. package/contracts/test/TestProduct.sol +0 -44
  783. package/contracts/test/TestRegisterable.sol +0 -19
  784. package/contracts/test/TestRoleId.sol +0 -14
  785. package/contracts/test/TestService.sol +0 -32
  786. package/contracts/test/TestToken.sol +0 -26
  787. package/contracts/test/TestVersion.sol +0 -44
  788. package/contracts/test/TestVersionable.sol +0 -17
  789. package/contracts/types/ChainId.sol +0 -38
  790. package/contracts/types/Fee.sol +0 -51
  791. package/contracts/types/NftIdSet.sol +0 -60
  792. package/contracts/types/ObjectType.sol +0 -115
  793. package/contracts/types/RoleId.sol +0 -38
  794. package/contracts/types/Version.sol +0 -95
@@ -0,0 +1,3028 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "Staking",
4
+ "sourceName": "contracts/staking/Staking.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
+ "name": "ErrorComponentNameLengthZero",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "address",
64
+ "name": "caller",
65
+ "type": "address"
66
+ }
67
+ ],
68
+ "name": "ErrorComponentNotChainNft",
69
+ "type": "error"
70
+ },
71
+ {
72
+ "inputs": [],
73
+ "name": "ErrorComponentProductNftIdNonzero",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [],
78
+ "name": "ErrorComponentProductNftIdZero",
79
+ "type": "error"
80
+ },
81
+ {
82
+ "inputs": [],
83
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
84
+ "type": "error"
85
+ },
86
+ {
87
+ "inputs": [],
88
+ "name": "ErrorComponentWalletAddressZero",
89
+ "type": "error"
90
+ },
91
+ {
92
+ "inputs": [],
93
+ "name": "ErrorComponentWalletNotComponent",
94
+ "type": "error"
95
+ },
96
+ {
97
+ "inputs": [
98
+ {
99
+ "internalType": "NftId",
100
+ "name": "nftId",
101
+ "type": "uint96"
102
+ }
103
+ ],
104
+ "name": "ErrorNftOwnableAlreadyLinked",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "address",
111
+ "name": "contractAddress",
112
+ "type": "address"
113
+ }
114
+ ],
115
+ "name": "ErrorNftOwnableContractNotRegistered",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "ErrorNftOwnableInitialOwnerZero",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "inputs": [
125
+ {
126
+ "internalType": "NftId",
127
+ "name": "nftId",
128
+ "type": "uint96"
129
+ },
130
+ {
131
+ "internalType": "ObjectType",
132
+ "name": "expectedObjectType",
133
+ "type": "uint8"
134
+ }
135
+ ],
136
+ "name": "ErrorNftOwnableInvalidType",
137
+ "type": "error"
138
+ },
139
+ {
140
+ "inputs": [
141
+ {
142
+ "internalType": "address",
143
+ "name": "account",
144
+ "type": "address"
145
+ }
146
+ ],
147
+ "name": "ErrorNftOwnableNotOwner",
148
+ "type": "error"
149
+ },
150
+ {
151
+ "inputs": [
152
+ {
153
+ "internalType": "address",
154
+ "name": "registryAddress",
155
+ "type": "address"
156
+ }
157
+ ],
158
+ "name": "ErrorNotRegistry",
159
+ "type": "error"
160
+ },
161
+ {
162
+ "inputs": [],
163
+ "name": "ErrorRegisterableNotActive",
164
+ "type": "error"
165
+ },
166
+ {
167
+ "inputs": [
168
+ {
169
+ "internalType": "address",
170
+ "name": "owner",
171
+ "type": "address"
172
+ },
173
+ {
174
+ "internalType": "address",
175
+ "name": "tokenHandler",
176
+ "type": "address"
177
+ },
178
+ {
179
+ "internalType": "uint256",
180
+ "name": "amount",
181
+ "type": "uint256"
182
+ },
183
+ {
184
+ "internalType": "uint256",
185
+ "name": "dipAllowance",
186
+ "type": "uint256"
187
+ }
188
+ ],
189
+ "name": "ErrorStakingDipAllowanceInsufficient",
190
+ "type": "error"
191
+ },
192
+ {
193
+ "inputs": [
194
+ {
195
+ "internalType": "address",
196
+ "name": "owner",
197
+ "type": "address"
198
+ },
199
+ {
200
+ "internalType": "uint256",
201
+ "name": "amount",
202
+ "type": "uint256"
203
+ },
204
+ {
205
+ "internalType": "uint256",
206
+ "name": "dipBalance",
207
+ "type": "uint256"
208
+ }
209
+ ],
210
+ "name": "ErrorStakingDipBalanceInsufficient",
211
+ "type": "error"
212
+ },
213
+ {
214
+ "inputs": [
215
+ {
216
+ "internalType": "NftId",
217
+ "name": "targetNftId",
218
+ "type": "uint96"
219
+ },
220
+ {
221
+ "internalType": "Seconds",
222
+ "name": "maxLockingPeriod",
223
+ "type": "uint40"
224
+ },
225
+ {
226
+ "internalType": "Seconds",
227
+ "name": "lockingPeriod",
228
+ "type": "uint40"
229
+ }
230
+ ],
231
+ "name": "ErrorStakingLockingPeriodTooLong",
232
+ "type": "error"
233
+ },
234
+ {
235
+ "inputs": [
236
+ {
237
+ "internalType": "NftId",
238
+ "name": "targetNftId",
239
+ "type": "uint96"
240
+ },
241
+ {
242
+ "internalType": "Seconds",
243
+ "name": "minLockingPeriod",
244
+ "type": "uint40"
245
+ },
246
+ {
247
+ "internalType": "Seconds",
248
+ "name": "lockingPeriod",
249
+ "type": "uint40"
250
+ }
251
+ ],
252
+ "name": "ErrorStakingLockingPeriodTooShort",
253
+ "type": "error"
254
+ },
255
+ {
256
+ "inputs": [
257
+ {
258
+ "internalType": "NftId",
259
+ "name": "nftId",
260
+ "type": "uint96"
261
+ }
262
+ ],
263
+ "name": "ErrorStakingNotNftOwner",
264
+ "type": "error"
265
+ },
266
+ {
267
+ "inputs": [
268
+ {
269
+ "internalType": "NftId",
270
+ "name": "stakeNftId",
271
+ "type": "uint96"
272
+ },
273
+ {
274
+ "internalType": "address",
275
+ "name": "expectedOwner",
276
+ "type": "address"
277
+ },
278
+ {
279
+ "internalType": "address",
280
+ "name": "actualOwner",
281
+ "type": "address"
282
+ }
283
+ ],
284
+ "name": "ErrorStakingNotOwner",
285
+ "type": "error"
286
+ },
287
+ {
288
+ "inputs": [
289
+ {
290
+ "internalType": "address",
291
+ "name": "registry",
292
+ "type": "address"
293
+ }
294
+ ],
295
+ "name": "ErrorStakingNotRegistry",
296
+ "type": "error"
297
+ },
298
+ {
299
+ "inputs": [
300
+ {
301
+ "internalType": "NftId",
302
+ "name": "stakeNftId",
303
+ "type": "uint96"
304
+ }
305
+ ],
306
+ "name": "ErrorStakingNotStake",
307
+ "type": "error"
308
+ },
309
+ {
310
+ "inputs": [],
311
+ "name": "ErrorStakingNotStakingOwner",
312
+ "type": "error"
313
+ },
314
+ {
315
+ "inputs": [
316
+ {
317
+ "internalType": "NftId",
318
+ "name": "targetNftId",
319
+ "type": "uint96"
320
+ }
321
+ ],
322
+ "name": "ErrorStakingNotTarget",
323
+ "type": "error"
324
+ },
325
+ {
326
+ "inputs": [
327
+ {
328
+ "internalType": "VersionPart",
329
+ "name": "release",
330
+ "type": "uint8"
331
+ }
332
+ ],
333
+ "name": "ErrorStakingReleaseNotActive",
334
+ "type": "error"
335
+ },
336
+ {
337
+ "inputs": [
338
+ {
339
+ "internalType": "NftId",
340
+ "name": "targetNftId",
341
+ "type": "uint96"
342
+ },
343
+ {
344
+ "internalType": "UFixed",
345
+ "name": "maxRewardRate",
346
+ "type": "uint160"
347
+ },
348
+ {
349
+ "internalType": "UFixed",
350
+ "name": "rewardRate",
351
+ "type": "uint160"
352
+ }
353
+ ],
354
+ "name": "ErrorStakingRewardRateTooHigh",
355
+ "type": "error"
356
+ },
357
+ {
358
+ "inputs": [
359
+ {
360
+ "internalType": "VersionPart",
361
+ "name": "release",
362
+ "type": "uint8"
363
+ }
364
+ ],
365
+ "name": "ErrorStakingServiceNotFound",
366
+ "type": "error"
367
+ },
368
+ {
369
+ "inputs": [
370
+ {
371
+ "internalType": "NftId",
372
+ "name": "targetNftId",
373
+ "type": "uint96"
374
+ }
375
+ ],
376
+ "name": "ErrorStakingStakeAmountZero",
377
+ "type": "error"
378
+ },
379
+ {
380
+ "inputs": [
381
+ {
382
+ "internalType": "NftId",
383
+ "name": "stakeNftId",
384
+ "type": "uint96"
385
+ },
386
+ {
387
+ "internalType": "Timestamp",
388
+ "name": "lockedUntil",
389
+ "type": "uint40"
390
+ }
391
+ ],
392
+ "name": "ErrorStakingStakeLocked",
393
+ "type": "error"
394
+ },
395
+ {
396
+ "inputs": [
397
+ {
398
+ "internalType": "address",
399
+ "name": "stakingByStakingReader",
400
+ "type": "address"
401
+ }
402
+ ],
403
+ "name": "ErrorStakingStakingReaderStakingMismatch",
404
+ "type": "error"
405
+ },
406
+ {
407
+ "inputs": [
408
+ {
409
+ "internalType": "NftId",
410
+ "name": "targetNftId",
411
+ "type": "uint96"
412
+ }
413
+ ],
414
+ "name": "ErrorStakingTargetAlreadyRegistered",
415
+ "type": "error"
416
+ },
417
+ {
418
+ "inputs": [
419
+ {
420
+ "internalType": "NftId",
421
+ "name": "targetNftId",
422
+ "type": "uint96"
423
+ },
424
+ {
425
+ "internalType": "Amount",
426
+ "name": "stakeLimitAmount",
427
+ "type": "uint96"
428
+ },
429
+ {
430
+ "internalType": "Amount",
431
+ "name": "stakedAmount",
432
+ "type": "uint96"
433
+ }
434
+ ],
435
+ "name": "ErrorStakingTargetMaxStakedAmountExceeded",
436
+ "type": "error"
437
+ },
438
+ {
439
+ "inputs": [],
440
+ "name": "ErrorStakingTargetNftIdZero",
441
+ "type": "error"
442
+ },
443
+ {
444
+ "inputs": [
445
+ {
446
+ "internalType": "NftId",
447
+ "name": "targetNftId",
448
+ "type": "uint96"
449
+ }
450
+ ],
451
+ "name": "ErrorStakingTargetNotFound",
452
+ "type": "error"
453
+ },
454
+ {
455
+ "inputs": [
456
+ {
457
+ "internalType": "NftId",
458
+ "name": "targetNftId",
459
+ "type": "uint96"
460
+ },
461
+ {
462
+ "internalType": "ChainId",
463
+ "name": "chainId",
464
+ "type": "uint96"
465
+ },
466
+ {
467
+ "internalType": "address",
468
+ "name": "token",
469
+ "type": "address"
470
+ }
471
+ ],
472
+ "name": "ErrorStakingTargetTokenNotFound",
473
+ "type": "error"
474
+ },
475
+ {
476
+ "inputs": [
477
+ {
478
+ "internalType": "NftId",
479
+ "name": "targetNftId",
480
+ "type": "uint96"
481
+ },
482
+ {
483
+ "internalType": "ObjectType",
484
+ "name": "objectType",
485
+ "type": "uint8"
486
+ }
487
+ ],
488
+ "name": "ErrorStakingTargetTypeNotSupported",
489
+ "type": "error"
490
+ },
491
+ {
492
+ "inputs": [
493
+ {
494
+ "internalType": "NftId",
495
+ "name": "targetNftId",
496
+ "type": "uint96"
497
+ },
498
+ {
499
+ "internalType": "ObjectType",
500
+ "name": "expectedObjectType",
501
+ "type": "uint8"
502
+ },
503
+ {
504
+ "internalType": "ObjectType",
505
+ "name": "actualObjectType",
506
+ "type": "uint8"
507
+ }
508
+ ],
509
+ "name": "ErrorStakingTargetUnexpectedObjectType",
510
+ "type": "error"
511
+ },
512
+ {
513
+ "inputs": [
514
+ {
515
+ "internalType": "ChainId",
516
+ "name": "chainId",
517
+ "type": "uint96"
518
+ },
519
+ {
520
+ "internalType": "address",
521
+ "name": "token",
522
+ "type": "address"
523
+ }
524
+ ],
525
+ "name": "ErrorStakingTokenNotRegistered",
526
+ "type": "error"
527
+ },
528
+ {
529
+ "inputs": [],
530
+ "name": "ErrorVersionableInitializeNotImplemented",
531
+ "type": "error"
532
+ },
533
+ {
534
+ "inputs": [],
535
+ "name": "ErrorVersionableUpgradeNotImplemented",
536
+ "type": "error"
537
+ },
538
+ {
539
+ "inputs": [],
540
+ "name": "InvalidInitialization",
541
+ "type": "error"
542
+ },
543
+ {
544
+ "inputs": [],
545
+ "name": "NotInitializing",
546
+ "type": "error"
547
+ },
548
+ {
549
+ "anonymous": false,
550
+ "inputs": [
551
+ {
552
+ "indexed": false,
553
+ "internalType": "address",
554
+ "name": "authority",
555
+ "type": "address"
556
+ }
557
+ ],
558
+ "name": "AuthorityUpdated",
559
+ "type": "event"
560
+ },
561
+ {
562
+ "anonymous": false,
563
+ "inputs": [
564
+ {
565
+ "indexed": false,
566
+ "internalType": "uint64",
567
+ "name": "version",
568
+ "type": "uint64"
569
+ }
570
+ ],
571
+ "name": "Initialized",
572
+ "type": "event"
573
+ },
574
+ {
575
+ "anonymous": false,
576
+ "inputs": [
577
+ {
578
+ "indexed": false,
579
+ "internalType": "address",
580
+ "name": "tokenHandler",
581
+ "type": "address"
582
+ },
583
+ {
584
+ "indexed": false,
585
+ "internalType": "address",
586
+ "name": "token",
587
+ "type": "address"
588
+ },
589
+ {
590
+ "indexed": false,
591
+ "internalType": "Amount",
592
+ "name": "limit",
593
+ "type": "uint96"
594
+ },
595
+ {
596
+ "indexed": false,
597
+ "internalType": "bool",
598
+ "name": "isMaxAmount",
599
+ "type": "bool"
600
+ }
601
+ ],
602
+ "name": "LogComponentTokenHandlerApproved",
603
+ "type": "event"
604
+ },
605
+ {
606
+ "anonymous": false,
607
+ "inputs": [
608
+ {
609
+ "indexed": false,
610
+ "internalType": "address",
611
+ "name": "oldWallet",
612
+ "type": "address"
613
+ },
614
+ {
615
+ "indexed": false,
616
+ "internalType": "address",
617
+ "name": "newWallet",
618
+ "type": "address"
619
+ }
620
+ ],
621
+ "name": "LogComponentWalletAddressChanged",
622
+ "type": "event"
623
+ },
624
+ {
625
+ "anonymous": false,
626
+ "inputs": [
627
+ {
628
+ "indexed": false,
629
+ "internalType": "address",
630
+ "name": "from",
631
+ "type": "address"
632
+ },
633
+ {
634
+ "indexed": false,
635
+ "internalType": "address",
636
+ "name": "to",
637
+ "type": "address"
638
+ },
639
+ {
640
+ "indexed": false,
641
+ "internalType": "uint256",
642
+ "name": "amount",
643
+ "type": "uint256"
644
+ }
645
+ ],
646
+ "name": "LogComponentWalletTokensTransferred",
647
+ "type": "event"
648
+ },
649
+ {
650
+ "anonymous": false,
651
+ "inputs": [
652
+ {
653
+ "indexed": false,
654
+ "internalType": "NftId",
655
+ "name": "nftId",
656
+ "type": "uint96"
657
+ },
658
+ {
659
+ "indexed": false,
660
+ "internalType": "address",
661
+ "name": "owner",
662
+ "type": "address"
663
+ }
664
+ ],
665
+ "name": "LogNftOwnableNftLinkedToAddress",
666
+ "type": "event"
667
+ },
668
+ {
669
+ "anonymous": false,
670
+ "inputs": [
671
+ {
672
+ "indexed": false,
673
+ "internalType": "NftId",
674
+ "name": "targetNftId",
675
+ "type": "uint96"
676
+ },
677
+ {
678
+ "indexed": false,
679
+ "internalType": "Seconds",
680
+ "name": "newLockingPeriod",
681
+ "type": "uint40"
682
+ },
683
+ {
684
+ "indexed": false,
685
+ "internalType": "Seconds",
686
+ "name": "oldLockingPeriod",
687
+ "type": "uint40"
688
+ },
689
+ {
690
+ "indexed": false,
691
+ "internalType": "Blocknumber",
692
+ "name": "lastUpdateIn",
693
+ "type": "uint40"
694
+ }
695
+ ],
696
+ "name": "LogStakingProtocolLockingPeriodSet",
697
+ "type": "event"
698
+ },
699
+ {
700
+ "anonymous": false,
701
+ "inputs": [
702
+ {
703
+ "indexed": false,
704
+ "internalType": "NftId",
705
+ "name": "targetNftId",
706
+ "type": "uint96"
707
+ },
708
+ {
709
+ "indexed": false,
710
+ "internalType": "UFixed",
711
+ "name": "newRewardRate",
712
+ "type": "uint160"
713
+ },
714
+ {
715
+ "indexed": false,
716
+ "internalType": "UFixed",
717
+ "name": "oldRewardRate",
718
+ "type": "uint160"
719
+ },
720
+ {
721
+ "indexed": false,
722
+ "internalType": "Blocknumber",
723
+ "name": "lastUpdateIn",
724
+ "type": "uint40"
725
+ }
726
+ ],
727
+ "name": "LogStakingProtocolRewardRateSet",
728
+ "type": "event"
729
+ },
730
+ {
731
+ "anonymous": false,
732
+ "inputs": [
733
+ {
734
+ "indexed": false,
735
+ "internalType": "NftId",
736
+ "name": "targetNftId",
737
+ "type": "uint96"
738
+ },
739
+ {
740
+ "indexed": false,
741
+ "internalType": "Amount",
742
+ "name": "dipAmount",
743
+ "type": "uint96"
744
+ },
745
+ {
746
+ "indexed": false,
747
+ "internalType": "address",
748
+ "name": "targetOwner",
749
+ "type": "address"
750
+ },
751
+ {
752
+ "indexed": false,
753
+ "internalType": "Amount",
754
+ "name": "reserveBalance",
755
+ "type": "uint96"
756
+ },
757
+ {
758
+ "indexed": false,
759
+ "internalType": "Blocknumber",
760
+ "name": "lastUpdateIn",
761
+ "type": "uint40"
762
+ }
763
+ ],
764
+ "name": "LogStakingRewardReservesRefilled",
765
+ "type": "event"
766
+ },
767
+ {
768
+ "anonymous": false,
769
+ "inputs": [
770
+ {
771
+ "indexed": false,
772
+ "internalType": "NftId",
773
+ "name": "targetNftId",
774
+ "type": "uint96"
775
+ },
776
+ {
777
+ "indexed": false,
778
+ "internalType": "Amount",
779
+ "name": "dipAmount",
780
+ "type": "uint96"
781
+ },
782
+ {
783
+ "indexed": false,
784
+ "internalType": "Amount",
785
+ "name": "reserveBalance",
786
+ "type": "uint96"
787
+ },
788
+ {
789
+ "indexed": false,
790
+ "internalType": "Blocknumber",
791
+ "name": "lastUpdateIn",
792
+ "type": "uint40"
793
+ }
794
+ ],
795
+ "name": "LogStakingRewardReservesSpent",
796
+ "type": "event"
797
+ },
798
+ {
799
+ "anonymous": false,
800
+ "inputs": [
801
+ {
802
+ "indexed": false,
803
+ "internalType": "NftId",
804
+ "name": "targetNftId",
805
+ "type": "uint96"
806
+ },
807
+ {
808
+ "indexed": false,
809
+ "internalType": "Amount",
810
+ "name": "dipAmount",
811
+ "type": "uint96"
812
+ },
813
+ {
814
+ "indexed": false,
815
+ "internalType": "address",
816
+ "name": "targetOwner",
817
+ "type": "address"
818
+ },
819
+ {
820
+ "indexed": false,
821
+ "internalType": "Amount",
822
+ "name": "reserveBalance",
823
+ "type": "uint96"
824
+ },
825
+ {
826
+ "indexed": false,
827
+ "internalType": "Blocknumber",
828
+ "name": "lastUpdateIn",
829
+ "type": "uint40"
830
+ }
831
+ ],
832
+ "name": "LogStakingRewardReservesWithdrawn",
833
+ "type": "event"
834
+ },
835
+ {
836
+ "anonymous": false,
837
+ "inputs": [
838
+ {
839
+ "indexed": false,
840
+ "internalType": "NftId",
841
+ "name": "stakeNftId",
842
+ "type": "uint96"
843
+ },
844
+ {
845
+ "indexed": false,
846
+ "internalType": "Amount",
847
+ "name": "claimedAmount",
848
+ "type": "uint96"
849
+ },
850
+ {
851
+ "indexed": false,
852
+ "internalType": "Amount",
853
+ "name": "stakeBalance",
854
+ "type": "uint96"
855
+ },
856
+ {
857
+ "indexed": false,
858
+ "internalType": "Amount",
859
+ "name": "rewardBalance",
860
+ "type": "uint96"
861
+ },
862
+ {
863
+ "indexed": false,
864
+ "internalType": "Timestamp",
865
+ "name": "lockedUntil",
866
+ "type": "uint40"
867
+ },
868
+ {
869
+ "indexed": false,
870
+ "internalType": "Blocknumber",
871
+ "name": "lastUpdateIn",
872
+ "type": "uint40"
873
+ }
874
+ ],
875
+ "name": "LogStakingRewardsClaimed",
876
+ "type": "event"
877
+ },
878
+ {
879
+ "anonymous": false,
880
+ "inputs": [
881
+ {
882
+ "indexed": false,
883
+ "internalType": "NftId",
884
+ "name": "stakeNftId",
885
+ "type": "uint96"
886
+ },
887
+ {
888
+ "indexed": false,
889
+ "internalType": "Amount",
890
+ "name": "restakedAmount",
891
+ "type": "uint96"
892
+ },
893
+ {
894
+ "indexed": false,
895
+ "internalType": "Amount",
896
+ "name": "stakeBalance",
897
+ "type": "uint96"
898
+ },
899
+ {
900
+ "indexed": false,
901
+ "internalType": "Amount",
902
+ "name": "rewardBalance",
903
+ "type": "uint96"
904
+ },
905
+ {
906
+ "indexed": false,
907
+ "internalType": "Timestamp",
908
+ "name": "lockedUntil",
909
+ "type": "uint40"
910
+ },
911
+ {
912
+ "indexed": false,
913
+ "internalType": "Blocknumber",
914
+ "name": "lastUpdateIn",
915
+ "type": "uint40"
916
+ }
917
+ ],
918
+ "name": "LogStakingRewardsRestaked",
919
+ "type": "event"
920
+ },
921
+ {
922
+ "anonymous": false,
923
+ "inputs": [
924
+ {
925
+ "indexed": false,
926
+ "internalType": "NftId",
927
+ "name": "stakeNftId",
928
+ "type": "uint96"
929
+ },
930
+ {
931
+ "indexed": false,
932
+ "internalType": "NftId",
933
+ "name": "targetNftId",
934
+ "type": "uint96"
935
+ },
936
+ {
937
+ "indexed": false,
938
+ "internalType": "Amount",
939
+ "name": "stakeAmount",
940
+ "type": "uint96"
941
+ },
942
+ {
943
+ "indexed": false,
944
+ "internalType": "Timestamp",
945
+ "name": "lockedUntil",
946
+ "type": "uint40"
947
+ },
948
+ {
949
+ "indexed": false,
950
+ "internalType": "address",
951
+ "name": "stakeOwner",
952
+ "type": "address"
953
+ }
954
+ ],
955
+ "name": "LogStakingStakeCreated",
956
+ "type": "event"
957
+ },
958
+ {
959
+ "anonymous": false,
960
+ "inputs": [
961
+ {
962
+ "indexed": false,
963
+ "internalType": "NftId",
964
+ "name": "stakeNftId",
965
+ "type": "uint96"
966
+ },
967
+ {
968
+ "indexed": false,
969
+ "internalType": "NftId",
970
+ "name": "targetNftId",
971
+ "type": "uint96"
972
+ },
973
+ {
974
+ "indexed": false,
975
+ "internalType": "Amount",
976
+ "name": "stakeAmount",
977
+ "type": "uint96"
978
+ },
979
+ {
980
+ "indexed": false,
981
+ "internalType": "address",
982
+ "name": "owner",
983
+ "type": "address"
984
+ },
985
+ {
986
+ "indexed": false,
987
+ "internalType": "NftId",
988
+ "name": "oldStakeNftId",
989
+ "type": "uint96"
990
+ }
991
+ ],
992
+ "name": "LogStakingStakeRestaked",
993
+ "type": "event"
994
+ },
995
+ {
996
+ "anonymous": false,
997
+ "inputs": [
998
+ {
999
+ "indexed": false,
1000
+ "internalType": "NftId",
1001
+ "name": "stakeNftId",
1002
+ "type": "uint96"
1003
+ },
1004
+ {
1005
+ "indexed": false,
1006
+ "internalType": "Amount",
1007
+ "name": "rewardIncrementAmount",
1008
+ "type": "uint96"
1009
+ },
1010
+ {
1011
+ "indexed": false,
1012
+ "internalType": "Amount",
1013
+ "name": "stakeBalance",
1014
+ "type": "uint96"
1015
+ },
1016
+ {
1017
+ "indexed": false,
1018
+ "internalType": "Amount",
1019
+ "name": "rewardBalance",
1020
+ "type": "uint96"
1021
+ },
1022
+ {
1023
+ "indexed": false,
1024
+ "internalType": "Timestamp",
1025
+ "name": "lockedUntil",
1026
+ "type": "uint40"
1027
+ },
1028
+ {
1029
+ "indexed": false,
1030
+ "internalType": "Blocknumber",
1031
+ "name": "lastUpdateIn",
1032
+ "type": "uint40"
1033
+ }
1034
+ ],
1035
+ "name": "LogStakingStakeRewardsUpdated",
1036
+ "type": "event"
1037
+ },
1038
+ {
1039
+ "anonymous": false,
1040
+ "inputs": [
1041
+ {
1042
+ "indexed": false,
1043
+ "internalType": "NftId",
1044
+ "name": "stakeNftId",
1045
+ "type": "uint96"
1046
+ },
1047
+ {
1048
+ "indexed": false,
1049
+ "internalType": "Amount",
1050
+ "name": "stakedAmount",
1051
+ "type": "uint96"
1052
+ },
1053
+ {
1054
+ "indexed": false,
1055
+ "internalType": "Amount",
1056
+ "name": "stakeBalance",
1057
+ "type": "uint96"
1058
+ },
1059
+ {
1060
+ "indexed": false,
1061
+ "internalType": "Amount",
1062
+ "name": "rewardBalance",
1063
+ "type": "uint96"
1064
+ },
1065
+ {
1066
+ "indexed": false,
1067
+ "internalType": "Timestamp",
1068
+ "name": "lockedUntil",
1069
+ "type": "uint40"
1070
+ },
1071
+ {
1072
+ "indexed": false,
1073
+ "internalType": "Blocknumber",
1074
+ "name": "lastUpdateIn",
1075
+ "type": "uint40"
1076
+ }
1077
+ ],
1078
+ "name": "LogStakingStaked",
1079
+ "type": "event"
1080
+ },
1081
+ {
1082
+ "anonymous": false,
1083
+ "inputs": [
1084
+ {
1085
+ "indexed": false,
1086
+ "internalType": "ChainId",
1087
+ "name": "chainId",
1088
+ "type": "uint96"
1089
+ },
1090
+ {
1091
+ "indexed": false,
1092
+ "internalType": "address",
1093
+ "name": "token",
1094
+ "type": "address"
1095
+ },
1096
+ {
1097
+ "indexed": false,
1098
+ "internalType": "UFixed",
1099
+ "name": "newStakingRate",
1100
+ "type": "uint160"
1101
+ },
1102
+ {
1103
+ "indexed": false,
1104
+ "internalType": "UFixed",
1105
+ "name": "oldStakingRate",
1106
+ "type": "uint160"
1107
+ },
1108
+ {
1109
+ "indexed": false,
1110
+ "internalType": "Blocknumber",
1111
+ "name": "lastUpdateIn",
1112
+ "type": "uint40"
1113
+ }
1114
+ ],
1115
+ "name": "LogStakingStakingRateSet",
1116
+ "type": "event"
1117
+ },
1118
+ {
1119
+ "anonymous": false,
1120
+ "inputs": [
1121
+ {
1122
+ "indexed": false,
1123
+ "internalType": "address",
1124
+ "name": "stakingReader",
1125
+ "type": "address"
1126
+ },
1127
+ {
1128
+ "indexed": false,
1129
+ "internalType": "address",
1130
+ "name": "oldStakingReader",
1131
+ "type": "address"
1132
+ }
1133
+ ],
1134
+ "name": "LogStakingStakingReaderSet",
1135
+ "type": "event"
1136
+ },
1137
+ {
1138
+ "anonymous": false,
1139
+ "inputs": [
1140
+ {
1141
+ "indexed": false,
1142
+ "internalType": "address",
1143
+ "name": "stakingService",
1144
+ "type": "address"
1145
+ },
1146
+ {
1147
+ "indexed": false,
1148
+ "internalType": "VersionPart",
1149
+ "name": "release",
1150
+ "type": "uint8"
1151
+ },
1152
+ {
1153
+ "indexed": false,
1154
+ "internalType": "address",
1155
+ "name": "oldStakingService",
1156
+ "type": "address"
1157
+ }
1158
+ ],
1159
+ "name": "LogStakingStakingServiceSet",
1160
+ "type": "event"
1161
+ },
1162
+ {
1163
+ "anonymous": false,
1164
+ "inputs": [
1165
+ {
1166
+ "indexed": false,
1167
+ "internalType": "NftId",
1168
+ "name": "targetNftId",
1169
+ "type": "uint96"
1170
+ },
1171
+ {
1172
+ "indexed": false,
1173
+ "internalType": "ObjectType",
1174
+ "name": "objectType",
1175
+ "type": "uint8"
1176
+ },
1177
+ {
1178
+ "indexed": false,
1179
+ "internalType": "Seconds",
1180
+ "name": "lockingPeriod",
1181
+ "type": "uint40"
1182
+ },
1183
+ {
1184
+ "indexed": false,
1185
+ "internalType": "UFixed",
1186
+ "name": "rewardRate",
1187
+ "type": "uint160"
1188
+ },
1189
+ {
1190
+ "indexed": false,
1191
+ "internalType": "Amount",
1192
+ "name": "stakeLimitAmount",
1193
+ "type": "uint96"
1194
+ }
1195
+ ],
1196
+ "name": "LogStakingTargetCreated",
1197
+ "type": "event"
1198
+ },
1199
+ {
1200
+ "anonymous": false,
1201
+ "inputs": [
1202
+ {
1203
+ "indexed": false,
1204
+ "internalType": "address",
1205
+ "name": "targetManager",
1206
+ "type": "address"
1207
+ },
1208
+ {
1209
+ "indexed": false,
1210
+ "internalType": "address",
1211
+ "name": "oldTargetHandler",
1212
+ "type": "address"
1213
+ }
1214
+ ],
1215
+ "name": "LogStakingTargetHandlerSet",
1216
+ "type": "event"
1217
+ },
1218
+ {
1219
+ "anonymous": false,
1220
+ "inputs": [
1221
+ {
1222
+ "indexed": false,
1223
+ "internalType": "NftId",
1224
+ "name": "targetNftId",
1225
+ "type": "uint96"
1226
+ },
1227
+ {
1228
+ "indexed": false,
1229
+ "internalType": "Amount",
1230
+ "name": "limitAmount",
1231
+ "type": "uint96"
1232
+ },
1233
+ {
1234
+ "indexed": false,
1235
+ "internalType": "Amount",
1236
+ "name": "hardLimitAmount",
1237
+ "type": "uint96"
1238
+ },
1239
+ {
1240
+ "indexed": false,
1241
+ "internalType": "Amount",
1242
+ "name": "requiredStakeAmount",
1243
+ "type": "uint96"
1244
+ },
1245
+ {
1246
+ "indexed": false,
1247
+ "internalType": "Amount",
1248
+ "name": "actualStakeAmount",
1249
+ "type": "uint96"
1250
+ },
1251
+ {
1252
+ "indexed": false,
1253
+ "internalType": "Blocknumber",
1254
+ "name": "lastUpdateIn",
1255
+ "type": "uint40"
1256
+ }
1257
+ ],
1258
+ "name": "LogStakingTargetLimitUpdated",
1259
+ "type": "event"
1260
+ },
1261
+ {
1262
+ "anonymous": false,
1263
+ "inputs": [
1264
+ {
1265
+ "indexed": false,
1266
+ "internalType": "NftId",
1267
+ "name": "targetNftId",
1268
+ "type": "uint96"
1269
+ },
1270
+ {
1271
+ "indexed": false,
1272
+ "internalType": "Amount",
1273
+ "name": "stakeLimitAmount",
1274
+ "type": "uint96"
1275
+ },
1276
+ {
1277
+ "indexed": false,
1278
+ "internalType": "Amount",
1279
+ "name": "marginAmount",
1280
+ "type": "uint96"
1281
+ },
1282
+ {
1283
+ "indexed": false,
1284
+ "internalType": "Amount",
1285
+ "name": "limitAmount",
1286
+ "type": "uint96"
1287
+ }
1288
+ ],
1289
+ "name": "LogStakingTargetLimitsSet",
1290
+ "type": "event"
1291
+ },
1292
+ {
1293
+ "anonymous": false,
1294
+ "inputs": [
1295
+ {
1296
+ "indexed": false,
1297
+ "internalType": "NftId",
1298
+ "name": "targetNftId",
1299
+ "type": "uint96"
1300
+ },
1301
+ {
1302
+ "indexed": false,
1303
+ "internalType": "Amount",
1304
+ "name": "marginAmount",
1305
+ "type": "uint96"
1306
+ },
1307
+ {
1308
+ "indexed": false,
1309
+ "internalType": "Amount",
1310
+ "name": "hardLimitAmount",
1311
+ "type": "uint96"
1312
+ },
1313
+ {
1314
+ "indexed": false,
1315
+ "internalType": "Blocknumber",
1316
+ "name": "lastUpdateIn",
1317
+ "type": "uint40"
1318
+ }
1319
+ ],
1320
+ "name": "LogStakingTargetLimitsUpdated",
1321
+ "type": "event"
1322
+ },
1323
+ {
1324
+ "anonymous": false,
1325
+ "inputs": [
1326
+ {
1327
+ "indexed": false,
1328
+ "internalType": "NftId",
1329
+ "name": "targetNftId",
1330
+ "type": "uint96"
1331
+ },
1332
+ {
1333
+ "indexed": false,
1334
+ "internalType": "Seconds",
1335
+ "name": "oldLockingPeriod",
1336
+ "type": "uint40"
1337
+ },
1338
+ {
1339
+ "indexed": false,
1340
+ "internalType": "Seconds",
1341
+ "name": "lockingPeriod",
1342
+ "type": "uint40"
1343
+ }
1344
+ ],
1345
+ "name": "LogStakingTargetLockingPeriodSet",
1346
+ "type": "event"
1347
+ },
1348
+ {
1349
+ "anonymous": false,
1350
+ "inputs": [
1351
+ {
1352
+ "indexed": false,
1353
+ "internalType": "NftId",
1354
+ "name": "targetNftId",
1355
+ "type": "uint96"
1356
+ },
1357
+ {
1358
+ "indexed": false,
1359
+ "internalType": "Amount",
1360
+ "name": "stakeLimitAmount",
1361
+ "type": "uint96"
1362
+ },
1363
+ {
1364
+ "indexed": false,
1365
+ "internalType": "Blocknumber",
1366
+ "name": "lastUpdateIn",
1367
+ "type": "uint40"
1368
+ }
1369
+ ],
1370
+ "name": "LogStakingTargetMaxStakedAmountSet",
1371
+ "type": "event"
1372
+ },
1373
+ {
1374
+ "anonymous": false,
1375
+ "inputs": [
1376
+ {
1377
+ "indexed": false,
1378
+ "internalType": "NftId",
1379
+ "name": "targetNftId",
1380
+ "type": "uint96"
1381
+ },
1382
+ {
1383
+ "indexed": false,
1384
+ "internalType": "UFixed",
1385
+ "name": "rewardRate",
1386
+ "type": "uint160"
1387
+ },
1388
+ {
1389
+ "indexed": false,
1390
+ "internalType": "UFixed",
1391
+ "name": "oldRewardRate",
1392
+ "type": "uint160"
1393
+ }
1394
+ ],
1395
+ "name": "LogStakingTargetRewardRateSet",
1396
+ "type": "event"
1397
+ },
1398
+ {
1399
+ "anonymous": false,
1400
+ "inputs": [
1401
+ {
1402
+ "indexed": false,
1403
+ "internalType": "NftId",
1404
+ "name": "targetNftId",
1405
+ "type": "uint96"
1406
+ },
1407
+ {
1408
+ "indexed": false,
1409
+ "internalType": "ChainId",
1410
+ "name": "chainId",
1411
+ "type": "uint96"
1412
+ },
1413
+ {
1414
+ "indexed": false,
1415
+ "internalType": "address",
1416
+ "name": "token",
1417
+ "type": "address"
1418
+ }
1419
+ ],
1420
+ "name": "LogStakingTargetTokenAdded",
1421
+ "type": "event"
1422
+ },
1423
+ {
1424
+ "anonymous": false,
1425
+ "inputs": [
1426
+ {
1427
+ "indexed": false,
1428
+ "internalType": "ChainId",
1429
+ "name": "chainId",
1430
+ "type": "uint96"
1431
+ },
1432
+ {
1433
+ "indexed": false,
1434
+ "internalType": "address",
1435
+ "name": "token",
1436
+ "type": "address"
1437
+ }
1438
+ ],
1439
+ "name": "LogStakingTokenAdded",
1440
+ "type": "event"
1441
+ },
1442
+ {
1443
+ "anonymous": false,
1444
+ "inputs": [
1445
+ {
1446
+ "indexed": false,
1447
+ "internalType": "address",
1448
+ "name": "token",
1449
+ "type": "address"
1450
+ },
1451
+ {
1452
+ "indexed": false,
1453
+ "internalType": "Amount",
1454
+ "name": "approvalAmount",
1455
+ "type": "uint96"
1456
+ },
1457
+ {
1458
+ "indexed": false,
1459
+ "internalType": "Amount",
1460
+ "name": "oldApprovalAmount",
1461
+ "type": "uint96"
1462
+ }
1463
+ ],
1464
+ "name": "LogStakingTokenHandlerApproved",
1465
+ "type": "event"
1466
+ },
1467
+ {
1468
+ "anonymous": false,
1469
+ "inputs": [
1470
+ {
1471
+ "indexed": false,
1472
+ "internalType": "NftId",
1473
+ "name": "targetNftId",
1474
+ "type": "uint96"
1475
+ },
1476
+ {
1477
+ "indexed": false,
1478
+ "internalType": "address",
1479
+ "name": "token",
1480
+ "type": "address"
1481
+ },
1482
+ {
1483
+ "indexed": false,
1484
+ "internalType": "Amount",
1485
+ "name": "amount",
1486
+ "type": "uint96"
1487
+ },
1488
+ {
1489
+ "indexed": false,
1490
+ "internalType": "Amount",
1491
+ "name": "newBalance",
1492
+ "type": "uint96"
1493
+ },
1494
+ {
1495
+ "indexed": false,
1496
+ "internalType": "Blocknumber",
1497
+ "name": "lastUpdateIn",
1498
+ "type": "uint40"
1499
+ }
1500
+ ],
1501
+ "name": "LogStakingTvlDecreased",
1502
+ "type": "event"
1503
+ },
1504
+ {
1505
+ "anonymous": false,
1506
+ "inputs": [
1507
+ {
1508
+ "indexed": false,
1509
+ "internalType": "NftId",
1510
+ "name": "targetNftId",
1511
+ "type": "uint96"
1512
+ },
1513
+ {
1514
+ "indexed": false,
1515
+ "internalType": "address",
1516
+ "name": "token",
1517
+ "type": "address"
1518
+ },
1519
+ {
1520
+ "indexed": false,
1521
+ "internalType": "Amount",
1522
+ "name": "amount",
1523
+ "type": "uint96"
1524
+ },
1525
+ {
1526
+ "indexed": false,
1527
+ "internalType": "Amount",
1528
+ "name": "newBalance",
1529
+ "type": "uint96"
1530
+ },
1531
+ {
1532
+ "indexed": false,
1533
+ "internalType": "Blocknumber",
1534
+ "name": "lastUpdateIn",
1535
+ "type": "uint40"
1536
+ }
1537
+ ],
1538
+ "name": "LogStakingTvlIncreased",
1539
+ "type": "event"
1540
+ },
1541
+ {
1542
+ "anonymous": false,
1543
+ "inputs": [
1544
+ {
1545
+ "indexed": false,
1546
+ "internalType": "NftId",
1547
+ "name": "stakeNftId",
1548
+ "type": "uint96"
1549
+ },
1550
+ {
1551
+ "indexed": false,
1552
+ "internalType": "Amount",
1553
+ "name": "unstakedAmount",
1554
+ "type": "uint96"
1555
+ },
1556
+ {
1557
+ "indexed": false,
1558
+ "internalType": "Amount",
1559
+ "name": "stakeBalance",
1560
+ "type": "uint96"
1561
+ },
1562
+ {
1563
+ "indexed": false,
1564
+ "internalType": "Amount",
1565
+ "name": "rewardBalance",
1566
+ "type": "uint96"
1567
+ },
1568
+ {
1569
+ "indexed": false,
1570
+ "internalType": "Timestamp",
1571
+ "name": "lockedUntil",
1572
+ "type": "uint40"
1573
+ },
1574
+ {
1575
+ "indexed": false,
1576
+ "internalType": "Blocknumber",
1577
+ "name": "lastUpdateIn",
1578
+ "type": "uint40"
1579
+ }
1580
+ ],
1581
+ "name": "LogStakingUnstaked",
1582
+ "type": "event"
1583
+ },
1584
+ {
1585
+ "inputs": [],
1586
+ "name": "COMPONENT_LOCATION_V1",
1587
+ "outputs": [
1588
+ {
1589
+ "internalType": "bytes32",
1590
+ "name": "",
1591
+ "type": "bytes32"
1592
+ }
1593
+ ],
1594
+ "stateMutability": "view",
1595
+ "type": "function"
1596
+ },
1597
+ {
1598
+ "inputs": [],
1599
+ "name": "CONTRACT_NAME",
1600
+ "outputs": [
1601
+ {
1602
+ "internalType": "string",
1603
+ "name": "",
1604
+ "type": "string"
1605
+ }
1606
+ ],
1607
+ "stateMutability": "view",
1608
+ "type": "function"
1609
+ },
1610
+ {
1611
+ "inputs": [],
1612
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
1613
+ "outputs": [
1614
+ {
1615
+ "internalType": "bytes32",
1616
+ "name": "",
1617
+ "type": "bytes32"
1618
+ }
1619
+ ],
1620
+ "stateMutability": "view",
1621
+ "type": "function"
1622
+ },
1623
+ {
1624
+ "inputs": [],
1625
+ "name": "REGISTERABLE_LOCATION_V1",
1626
+ "outputs": [
1627
+ {
1628
+ "internalType": "bytes32",
1629
+ "name": "",
1630
+ "type": "bytes32"
1631
+ }
1632
+ ],
1633
+ "stateMutability": "view",
1634
+ "type": "function"
1635
+ },
1636
+ {
1637
+ "inputs": [],
1638
+ "name": "STAKING_LOCATION_V1",
1639
+ "outputs": [
1640
+ {
1641
+ "internalType": "bytes32",
1642
+ "name": "",
1643
+ "type": "bytes32"
1644
+ }
1645
+ ],
1646
+ "stateMutability": "view",
1647
+ "type": "function"
1648
+ },
1649
+ {
1650
+ "inputs": [
1651
+ {
1652
+ "internalType": "NftId",
1653
+ "name": "targetNftId",
1654
+ "type": "uint96"
1655
+ },
1656
+ {
1657
+ "internalType": "address",
1658
+ "name": "token",
1659
+ "type": "address"
1660
+ }
1661
+ ],
1662
+ "name": "addTargetToken",
1663
+ "outputs": [],
1664
+ "stateMutability": "nonpayable",
1665
+ "type": "function"
1666
+ },
1667
+ {
1668
+ "inputs": [
1669
+ {
1670
+ "internalType": "ChainId",
1671
+ "name": "chainId",
1672
+ "type": "uint96"
1673
+ },
1674
+ {
1675
+ "internalType": "address",
1676
+ "name": "token",
1677
+ "type": "address"
1678
+ }
1679
+ ],
1680
+ "name": "addToken",
1681
+ "outputs": [],
1682
+ "stateMutability": "nonpayable",
1683
+ "type": "function"
1684
+ },
1685
+ {
1686
+ "inputs": [
1687
+ {
1688
+ "internalType": "contract IERC20Metadata",
1689
+ "name": "token",
1690
+ "type": "address"
1691
+ },
1692
+ {
1693
+ "internalType": "Amount",
1694
+ "name": "amount",
1695
+ "type": "uint96"
1696
+ }
1697
+ ],
1698
+ "name": "approveTokenHandler",
1699
+ "outputs": [],
1700
+ "stateMutability": "nonpayable",
1701
+ "type": "function"
1702
+ },
1703
+ {
1704
+ "inputs": [],
1705
+ "name": "authority",
1706
+ "outputs": [
1707
+ {
1708
+ "internalType": "address",
1709
+ "name": "",
1710
+ "type": "address"
1711
+ }
1712
+ ],
1713
+ "stateMutability": "view",
1714
+ "type": "function"
1715
+ },
1716
+ {
1717
+ "inputs": [
1718
+ {
1719
+ "internalType": "NftId",
1720
+ "name": "stakeNftId",
1721
+ "type": "uint96"
1722
+ }
1723
+ ],
1724
+ "name": "claimRewards",
1725
+ "outputs": [
1726
+ {
1727
+ "internalType": "Amount",
1728
+ "name": "claimedAmount",
1729
+ "type": "uint96"
1730
+ }
1731
+ ],
1732
+ "stateMutability": "nonpayable",
1733
+ "type": "function"
1734
+ },
1735
+ {
1736
+ "inputs": [
1737
+ {
1738
+ "internalType": "NftId",
1739
+ "name": "targetNftId",
1740
+ "type": "uint96"
1741
+ },
1742
+ {
1743
+ "internalType": "Amount",
1744
+ "name": "stakeAmount",
1745
+ "type": "uint96"
1746
+ },
1747
+ {
1748
+ "internalType": "address",
1749
+ "name": "stakeOwner",
1750
+ "type": "address"
1751
+ }
1752
+ ],
1753
+ "name": "createStake",
1754
+ "outputs": [
1755
+ {
1756
+ "internalType": "NftId",
1757
+ "name": "stakeNftId",
1758
+ "type": "uint96"
1759
+ }
1760
+ ],
1761
+ "stateMutability": "nonpayable",
1762
+ "type": "function"
1763
+ },
1764
+ {
1765
+ "inputs": [
1766
+ {
1767
+ "internalType": "NftId",
1768
+ "name": "targetNftId",
1769
+ "type": "uint96"
1770
+ },
1771
+ {
1772
+ "internalType": "address",
1773
+ "name": "token",
1774
+ "type": "address"
1775
+ },
1776
+ {
1777
+ "internalType": "Amount",
1778
+ "name": "amount",
1779
+ "type": "uint96"
1780
+ }
1781
+ ],
1782
+ "name": "decreaseTotalValueLocked",
1783
+ "outputs": [
1784
+ {
1785
+ "internalType": "Amount",
1786
+ "name": "newBalance",
1787
+ "type": "uint96"
1788
+ }
1789
+ ],
1790
+ "stateMutability": "nonpayable",
1791
+ "type": "function"
1792
+ },
1793
+ {
1794
+ "inputs": [],
1795
+ "name": "getComponentInfo",
1796
+ "outputs": [
1797
+ {
1798
+ "components": [
1799
+ {
1800
+ "internalType": "string",
1801
+ "name": "name",
1802
+ "type": "string"
1803
+ },
1804
+ {
1805
+ "internalType": "contract TokenHandler",
1806
+ "name": "tokenHandler",
1807
+ "type": "address"
1808
+ },
1809
+ {
1810
+ "internalType": "bytes",
1811
+ "name": "data",
1812
+ "type": "bytes"
1813
+ }
1814
+ ],
1815
+ "internalType": "struct IComponents.ComponentInfo",
1816
+ "name": "info",
1817
+ "type": "tuple"
1818
+ }
1819
+ ],
1820
+ "stateMutability": "view",
1821
+ "type": "function"
1822
+ },
1823
+ {
1824
+ "inputs": [],
1825
+ "name": "getInitialComponentInfo",
1826
+ "outputs": [
1827
+ {
1828
+ "components": [
1829
+ {
1830
+ "internalType": "string",
1831
+ "name": "name",
1832
+ "type": "string"
1833
+ },
1834
+ {
1835
+ "internalType": "contract TokenHandler",
1836
+ "name": "tokenHandler",
1837
+ "type": "address"
1838
+ },
1839
+ {
1840
+ "internalType": "bytes",
1841
+ "name": "data",
1842
+ "type": "bytes"
1843
+ }
1844
+ ],
1845
+ "internalType": "struct IComponents.ComponentInfo",
1846
+ "name": "info",
1847
+ "type": "tuple"
1848
+ }
1849
+ ],
1850
+ "stateMutability": "view",
1851
+ "type": "function"
1852
+ },
1853
+ {
1854
+ "inputs": [],
1855
+ "name": "getInitialInfo",
1856
+ "outputs": [
1857
+ {
1858
+ "components": [
1859
+ {
1860
+ "internalType": "NftId",
1861
+ "name": "nftId",
1862
+ "type": "uint96"
1863
+ },
1864
+ {
1865
+ "internalType": "NftId",
1866
+ "name": "parentNftId",
1867
+ "type": "uint96"
1868
+ },
1869
+ {
1870
+ "internalType": "ObjectType",
1871
+ "name": "objectType",
1872
+ "type": "uint8"
1873
+ },
1874
+ {
1875
+ "internalType": "bool",
1876
+ "name": "isInterceptor",
1877
+ "type": "bool"
1878
+ },
1879
+ {
1880
+ "internalType": "address",
1881
+ "name": "objectAddress",
1882
+ "type": "address"
1883
+ },
1884
+ {
1885
+ "internalType": "address",
1886
+ "name": "initialOwner",
1887
+ "type": "address"
1888
+ },
1889
+ {
1890
+ "internalType": "bytes",
1891
+ "name": "data",
1892
+ "type": "bytes"
1893
+ }
1894
+ ],
1895
+ "internalType": "struct IRegistry.ObjectInfo",
1896
+ "name": "info",
1897
+ "type": "tuple"
1898
+ }
1899
+ ],
1900
+ "stateMutability": "view",
1901
+ "type": "function"
1902
+ },
1903
+ {
1904
+ "inputs": [],
1905
+ "name": "getName",
1906
+ "outputs": [
1907
+ {
1908
+ "internalType": "string",
1909
+ "name": "name",
1910
+ "type": "string"
1911
+ }
1912
+ ],
1913
+ "stateMutability": "view",
1914
+ "type": "function"
1915
+ },
1916
+ {
1917
+ "inputs": [],
1918
+ "name": "getNftId",
1919
+ "outputs": [
1920
+ {
1921
+ "internalType": "NftId",
1922
+ "name": "",
1923
+ "type": "uint96"
1924
+ }
1925
+ ],
1926
+ "stateMutability": "view",
1927
+ "type": "function"
1928
+ },
1929
+ {
1930
+ "inputs": [],
1931
+ "name": "getOwner",
1932
+ "outputs": [
1933
+ {
1934
+ "internalType": "address",
1935
+ "name": "",
1936
+ "type": "address"
1937
+ }
1938
+ ],
1939
+ "stateMutability": "view",
1940
+ "type": "function"
1941
+ },
1942
+ {
1943
+ "inputs": [],
1944
+ "name": "getRegistry",
1945
+ "outputs": [
1946
+ {
1947
+ "internalType": "contract IRegistry",
1948
+ "name": "",
1949
+ "type": "address"
1950
+ }
1951
+ ],
1952
+ "stateMutability": "view",
1953
+ "type": "function"
1954
+ },
1955
+ {
1956
+ "inputs": [],
1957
+ "name": "getRelease",
1958
+ "outputs": [
1959
+ {
1960
+ "internalType": "VersionPart",
1961
+ "name": "",
1962
+ "type": "uint8"
1963
+ }
1964
+ ],
1965
+ "stateMutability": "pure",
1966
+ "type": "function"
1967
+ },
1968
+ {
1969
+ "inputs": [],
1970
+ "name": "getStakingReader",
1971
+ "outputs": [
1972
+ {
1973
+ "internalType": "contract StakingReader",
1974
+ "name": "reader",
1975
+ "type": "address"
1976
+ }
1977
+ ],
1978
+ "stateMutability": "view",
1979
+ "type": "function"
1980
+ },
1981
+ {
1982
+ "inputs": [],
1983
+ "name": "getStakingStore",
1984
+ "outputs": [
1985
+ {
1986
+ "internalType": "contract StakingStore",
1987
+ "name": "stakingStore",
1988
+ "type": "address"
1989
+ }
1990
+ ],
1991
+ "stateMutability": "view",
1992
+ "type": "function"
1993
+ },
1994
+ {
1995
+ "inputs": [],
1996
+ "name": "getTargetHandler",
1997
+ "outputs": [
1998
+ {
1999
+ "internalType": "contract TargetHandler",
2000
+ "name": "targetHandler",
2001
+ "type": "address"
2002
+ }
2003
+ ],
2004
+ "stateMutability": "view",
2005
+ "type": "function"
2006
+ },
2007
+ {
2008
+ "inputs": [],
2009
+ "name": "getToken",
2010
+ "outputs": [
2011
+ {
2012
+ "internalType": "contract IERC20Metadata",
2013
+ "name": "token",
2014
+ "type": "address"
2015
+ }
2016
+ ],
2017
+ "stateMutability": "view",
2018
+ "type": "function"
2019
+ },
2020
+ {
2021
+ "inputs": [],
2022
+ "name": "getTokenHandler",
2023
+ "outputs": [
2024
+ {
2025
+ "internalType": "contract TokenHandler",
2026
+ "name": "tokenHandler",
2027
+ "type": "address"
2028
+ }
2029
+ ],
2030
+ "stateMutability": "view",
2031
+ "type": "function"
2032
+ },
2033
+ {
2034
+ "inputs": [],
2035
+ "name": "getTokenRegistryAddress",
2036
+ "outputs": [
2037
+ {
2038
+ "internalType": "address",
2039
+ "name": "tokenRegistry",
2040
+ "type": "address"
2041
+ }
2042
+ ],
2043
+ "stateMutability": "view",
2044
+ "type": "function"
2045
+ },
2046
+ {
2047
+ "inputs": [],
2048
+ "name": "getVersion",
2049
+ "outputs": [
2050
+ {
2051
+ "internalType": "Version",
2052
+ "name": "",
2053
+ "type": "uint24"
2054
+ }
2055
+ ],
2056
+ "stateMutability": "pure",
2057
+ "type": "function"
2058
+ },
2059
+ {
2060
+ "inputs": [],
2061
+ "name": "getWallet",
2062
+ "outputs": [
2063
+ {
2064
+ "internalType": "address",
2065
+ "name": "walletAddress",
2066
+ "type": "address"
2067
+ }
2068
+ ],
2069
+ "stateMutability": "view",
2070
+ "type": "function"
2071
+ },
2072
+ {
2073
+ "inputs": [
2074
+ {
2075
+ "internalType": "NftId",
2076
+ "name": "targetNftId",
2077
+ "type": "uint96"
2078
+ },
2079
+ {
2080
+ "internalType": "address",
2081
+ "name": "token",
2082
+ "type": "address"
2083
+ },
2084
+ {
2085
+ "internalType": "Amount",
2086
+ "name": "amount",
2087
+ "type": "uint96"
2088
+ }
2089
+ ],
2090
+ "name": "increaseTotalValueLocked",
2091
+ "outputs": [
2092
+ {
2093
+ "internalType": "Amount",
2094
+ "name": "newBalance",
2095
+ "type": "uint96"
2096
+ }
2097
+ ],
2098
+ "stateMutability": "nonpayable",
2099
+ "type": "function"
2100
+ },
2101
+ {
2102
+ "inputs": [],
2103
+ "name": "initializeTokenHandler",
2104
+ "outputs": [],
2105
+ "stateMutability": "nonpayable",
2106
+ "type": "function"
2107
+ },
2108
+ {
2109
+ "inputs": [
2110
+ {
2111
+ "internalType": "address",
2112
+ "name": "activatedBy",
2113
+ "type": "address"
2114
+ },
2115
+ {
2116
+ "internalType": "bytes",
2117
+ "name": "data",
2118
+ "type": "bytes"
2119
+ }
2120
+ ],
2121
+ "name": "initializeVersionable",
2122
+ "outputs": [],
2123
+ "stateMutability": "nonpayable",
2124
+ "type": "function"
2125
+ },
2126
+ {
2127
+ "inputs": [],
2128
+ "name": "isActive",
2129
+ "outputs": [
2130
+ {
2131
+ "internalType": "bool",
2132
+ "name": "active",
2133
+ "type": "bool"
2134
+ }
2135
+ ],
2136
+ "stateMutability": "view",
2137
+ "type": "function"
2138
+ },
2139
+ {
2140
+ "inputs": [],
2141
+ "name": "isConsumingScheduledOp",
2142
+ "outputs": [
2143
+ {
2144
+ "internalType": "bytes4",
2145
+ "name": "",
2146
+ "type": "bytes4"
2147
+ }
2148
+ ],
2149
+ "stateMutability": "view",
2150
+ "type": "function"
2151
+ },
2152
+ {
2153
+ "inputs": [],
2154
+ "name": "isNftInterceptor",
2155
+ "outputs": [
2156
+ {
2157
+ "internalType": "bool",
2158
+ "name": "isInterceptor",
2159
+ "type": "bool"
2160
+ }
2161
+ ],
2162
+ "stateMutability": "view",
2163
+ "type": "function"
2164
+ },
2165
+ {
2166
+ "inputs": [],
2167
+ "name": "isRegistered",
2168
+ "outputs": [
2169
+ {
2170
+ "internalType": "bool",
2171
+ "name": "",
2172
+ "type": "bool"
2173
+ }
2174
+ ],
2175
+ "stateMutability": "view",
2176
+ "type": "function"
2177
+ },
2178
+ {
2179
+ "inputs": [],
2180
+ "name": "linkToRegisteredNftId",
2181
+ "outputs": [
2182
+ {
2183
+ "internalType": "NftId",
2184
+ "name": "nftId",
2185
+ "type": "uint96"
2186
+ }
2187
+ ],
2188
+ "stateMutability": "nonpayable",
2189
+ "type": "function"
2190
+ },
2191
+ {
2192
+ "inputs": [
2193
+ {
2194
+ "internalType": "address",
2195
+ "name": "from",
2196
+ "type": "address"
2197
+ },
2198
+ {
2199
+ "internalType": "address",
2200
+ "name": "to",
2201
+ "type": "address"
2202
+ },
2203
+ {
2204
+ "internalType": "uint256",
2205
+ "name": "tokenId",
2206
+ "type": "uint256"
2207
+ },
2208
+ {
2209
+ "internalType": "address",
2210
+ "name": "operator",
2211
+ "type": "address"
2212
+ }
2213
+ ],
2214
+ "name": "nftTransferFrom",
2215
+ "outputs": [],
2216
+ "stateMutability": "nonpayable",
2217
+ "type": "function"
2218
+ },
2219
+ {
2220
+ "inputs": [
2221
+ {
2222
+ "internalType": "NftId",
2223
+ "name": "targetNftId",
2224
+ "type": "uint96"
2225
+ },
2226
+ {
2227
+ "internalType": "Amount",
2228
+ "name": "dipAmount",
2229
+ "type": "uint96"
2230
+ }
2231
+ ],
2232
+ "name": "refillRewardReserves",
2233
+ "outputs": [
2234
+ {
2235
+ "internalType": "Amount",
2236
+ "name": "newBalance",
2237
+ "type": "uint96"
2238
+ }
2239
+ ],
2240
+ "stateMutability": "nonpayable",
2241
+ "type": "function"
2242
+ },
2243
+ {
2244
+ "inputs": [
2245
+ {
2246
+ "internalType": "NftId",
2247
+ "name": "targetNftId",
2248
+ "type": "uint96"
2249
+ },
2250
+ {
2251
+ "internalType": "Amount",
2252
+ "name": "dipAmount",
2253
+ "type": "uint96"
2254
+ },
2255
+ {
2256
+ "internalType": "address",
2257
+ "name": "transferFrom",
2258
+ "type": "address"
2259
+ }
2260
+ ],
2261
+ "name": "refillRewardReservesByService",
2262
+ "outputs": [
2263
+ {
2264
+ "internalType": "Amount",
2265
+ "name": "newBalance",
2266
+ "type": "uint96"
2267
+ }
2268
+ ],
2269
+ "stateMutability": "nonpayable",
2270
+ "type": "function"
2271
+ },
2272
+ {
2273
+ "inputs": [
2274
+ {
2275
+ "internalType": "NftId",
2276
+ "name": "targetNftId",
2277
+ "type": "uint96"
2278
+ },
2279
+ {
2280
+ "components": [
2281
+ {
2282
+ "internalType": "Amount",
2283
+ "name": "stakedAmount",
2284
+ "type": "uint96"
2285
+ },
2286
+ {
2287
+ "internalType": "Amount",
2288
+ "name": "rewardAmount",
2289
+ "type": "uint96"
2290
+ },
2291
+ {
2292
+ "internalType": "Blocknumber",
2293
+ "name": "lastUpdateIn",
2294
+ "type": "uint40"
2295
+ },
2296
+ {
2297
+ "internalType": "Amount",
2298
+ "name": "reserveAmount",
2299
+ "type": "uint96"
2300
+ },
2301
+ {
2302
+ "internalType": "Amount",
2303
+ "name": "limitAmount",
2304
+ "type": "uint96"
2305
+ },
2306
+ {
2307
+ "internalType": "Seconds",
2308
+ "name": "lockingPeriod",
2309
+ "type": "uint40"
2310
+ },
2311
+ {
2312
+ "internalType": "ObjectType",
2313
+ "name": "objectType",
2314
+ "type": "uint8"
2315
+ },
2316
+ {
2317
+ "internalType": "UFixed",
2318
+ "name": "rewardRate",
2319
+ "type": "uint160"
2320
+ },
2321
+ {
2322
+ "internalType": "ChainId",
2323
+ "name": "chainId",
2324
+ "type": "uint96"
2325
+ }
2326
+ ],
2327
+ "internalType": "struct IStaking.TargetInfo",
2328
+ "name": "targetInfo",
2329
+ "type": "tuple"
2330
+ }
2331
+ ],
2332
+ "name": "registerRemoteTarget",
2333
+ "outputs": [],
2334
+ "stateMutability": "nonpayable",
2335
+ "type": "function"
2336
+ },
2337
+ {
2338
+ "inputs": [
2339
+ {
2340
+ "internalType": "NftId",
2341
+ "name": "targetNftId",
2342
+ "type": "uint96"
2343
+ },
2344
+ {
2345
+ "internalType": "ObjectType",
2346
+ "name": "expectedObjectType",
2347
+ "type": "uint8"
2348
+ },
2349
+ {
2350
+ "internalType": "Seconds",
2351
+ "name": "initialLockingPeriod",
2352
+ "type": "uint40"
2353
+ },
2354
+ {
2355
+ "internalType": "UFixed",
2356
+ "name": "initialRewardRate",
2357
+ "type": "uint160"
2358
+ }
2359
+ ],
2360
+ "name": "registerTarget",
2361
+ "outputs": [],
2362
+ "stateMutability": "nonpayable",
2363
+ "type": "function"
2364
+ },
2365
+ {
2366
+ "inputs": [
2367
+ {
2368
+ "internalType": "NftId",
2369
+ "name": "stakeNftId",
2370
+ "type": "uint96"
2371
+ },
2372
+ {
2373
+ "internalType": "NftId",
2374
+ "name": "newTargetNftId",
2375
+ "type": "uint96"
2376
+ }
2377
+ ],
2378
+ "name": "restake",
2379
+ "outputs": [
2380
+ {
2381
+ "internalType": "NftId",
2382
+ "name": "newStakeNftId",
2383
+ "type": "uint96"
2384
+ },
2385
+ {
2386
+ "internalType": "Amount",
2387
+ "name": "newStakedAmount",
2388
+ "type": "uint96"
2389
+ }
2390
+ ],
2391
+ "stateMutability": "nonpayable",
2392
+ "type": "function"
2393
+ },
2394
+ {
2395
+ "inputs": [
2396
+ {
2397
+ "internalType": "address",
2398
+ "name": "newAuthority",
2399
+ "type": "address"
2400
+ }
2401
+ ],
2402
+ "name": "setAuthority",
2403
+ "outputs": [],
2404
+ "stateMutability": "nonpayable",
2405
+ "type": "function"
2406
+ },
2407
+ {
2408
+ "inputs": [
2409
+ {
2410
+ "internalType": "NftId",
2411
+ "name": "targetNftId",
2412
+ "type": "uint96"
2413
+ },
2414
+ {
2415
+ "internalType": "Seconds",
2416
+ "name": "lockingPeriod",
2417
+ "type": "uint40"
2418
+ }
2419
+ ],
2420
+ "name": "setLockingPeriod",
2421
+ "outputs": [],
2422
+ "stateMutability": "nonpayable",
2423
+ "type": "function"
2424
+ },
2425
+ {
2426
+ "inputs": [
2427
+ {
2428
+ "internalType": "NftId",
2429
+ "name": "targetNftId",
2430
+ "type": "uint96"
2431
+ },
2432
+ {
2433
+ "internalType": "Amount",
2434
+ "name": "stakeLimitAmount",
2435
+ "type": "uint96"
2436
+ }
2437
+ ],
2438
+ "name": "setMaxStakedAmount",
2439
+ "outputs": [],
2440
+ "stateMutability": "nonpayable",
2441
+ "type": "function"
2442
+ },
2443
+ {
2444
+ "inputs": [
2445
+ {
2446
+ "internalType": "Seconds",
2447
+ "name": "newLockingPeriod",
2448
+ "type": "uint40"
2449
+ }
2450
+ ],
2451
+ "name": "setProtocolLockingPeriod",
2452
+ "outputs": [],
2453
+ "stateMutability": "nonpayable",
2454
+ "type": "function"
2455
+ },
2456
+ {
2457
+ "inputs": [
2458
+ {
2459
+ "internalType": "UFixed",
2460
+ "name": "newRewardRate",
2461
+ "type": "uint160"
2462
+ }
2463
+ ],
2464
+ "name": "setProtocolRewardRate",
2465
+ "outputs": [],
2466
+ "stateMutability": "nonpayable",
2467
+ "type": "function"
2468
+ },
2469
+ {
2470
+ "inputs": [
2471
+ {
2472
+ "internalType": "NftId",
2473
+ "name": "targetNftId",
2474
+ "type": "uint96"
2475
+ },
2476
+ {
2477
+ "internalType": "UFixed",
2478
+ "name": "rewardRate",
2479
+ "type": "uint160"
2480
+ }
2481
+ ],
2482
+ "name": "setRewardRate",
2483
+ "outputs": [],
2484
+ "stateMutability": "nonpayable",
2485
+ "type": "function"
2486
+ },
2487
+ {
2488
+ "inputs": [
2489
+ {
2490
+ "internalType": "ChainId",
2491
+ "name": "chainId",
2492
+ "type": "uint96"
2493
+ },
2494
+ {
2495
+ "internalType": "address",
2496
+ "name": "token",
2497
+ "type": "address"
2498
+ },
2499
+ {
2500
+ "internalType": "UFixed",
2501
+ "name": "stakingRate",
2502
+ "type": "uint160"
2503
+ }
2504
+ ],
2505
+ "name": "setStakingRate",
2506
+ "outputs": [],
2507
+ "stateMutability": "nonpayable",
2508
+ "type": "function"
2509
+ },
2510
+ {
2511
+ "inputs": [
2512
+ {
2513
+ "internalType": "address",
2514
+ "name": "reader",
2515
+ "type": "address"
2516
+ }
2517
+ ],
2518
+ "name": "setStakingReader",
2519
+ "outputs": [],
2520
+ "stateMutability": "nonpayable",
2521
+ "type": "function"
2522
+ },
2523
+ {
2524
+ "inputs": [
2525
+ {
2526
+ "internalType": "VersionPart",
2527
+ "name": "release",
2528
+ "type": "uint8"
2529
+ }
2530
+ ],
2531
+ "name": "setStakingService",
2532
+ "outputs": [],
2533
+ "stateMutability": "nonpayable",
2534
+ "type": "function"
2535
+ },
2536
+ {
2537
+ "inputs": [
2538
+ {
2539
+ "internalType": "NftId",
2540
+ "name": "targetNftId",
2541
+ "type": "uint96"
2542
+ },
2543
+ {
2544
+ "internalType": "Amount",
2545
+ "name": "marginAmount",
2546
+ "type": "uint96"
2547
+ },
2548
+ {
2549
+ "internalType": "Amount",
2550
+ "name": "limitAmount",
2551
+ "type": "uint96"
2552
+ }
2553
+ ],
2554
+ "name": "setTargetLimits",
2555
+ "outputs": [],
2556
+ "stateMutability": "nonpayable",
2557
+ "type": "function"
2558
+ },
2559
+ {
2560
+ "inputs": [
2561
+ {
2562
+ "internalType": "NftId",
2563
+ "name": "stakeNftId",
2564
+ "type": "uint96"
2565
+ },
2566
+ {
2567
+ "internalType": "Amount",
2568
+ "name": "stakeAmount",
2569
+ "type": "uint96"
2570
+ }
2571
+ ],
2572
+ "name": "stake",
2573
+ "outputs": [
2574
+ {
2575
+ "internalType": "Amount",
2576
+ "name": "newStakeBalance",
2577
+ "type": "uint96"
2578
+ }
2579
+ ],
2580
+ "stateMutability": "nonpayable",
2581
+ "type": "function"
2582
+ },
2583
+ {
2584
+ "inputs": [
2585
+ {
2586
+ "internalType": "bytes4",
2587
+ "name": "interfaceId",
2588
+ "type": "bytes4"
2589
+ }
2590
+ ],
2591
+ "name": "supportsInterface",
2592
+ "outputs": [
2593
+ {
2594
+ "internalType": "bool",
2595
+ "name": "",
2596
+ "type": "bool"
2597
+ }
2598
+ ],
2599
+ "stateMutability": "view",
2600
+ "type": "function"
2601
+ },
2602
+ {
2603
+ "inputs": [
2604
+ {
2605
+ "internalType": "NftId",
2606
+ "name": "stakeNftId",
2607
+ "type": "uint96"
2608
+ }
2609
+ ],
2610
+ "name": "unstake",
2611
+ "outputs": [
2612
+ {
2613
+ "internalType": "Amount",
2614
+ "name": "unstakedAmount",
2615
+ "type": "uint96"
2616
+ }
2617
+ ],
2618
+ "stateMutability": "nonpayable",
2619
+ "type": "function"
2620
+ },
2621
+ {
2622
+ "inputs": [
2623
+ {
2624
+ "internalType": "NftId",
2625
+ "name": "targetNftId",
2626
+ "type": "uint96"
2627
+ },
2628
+ {
2629
+ "internalType": "address",
2630
+ "name": "token",
2631
+ "type": "address"
2632
+ },
2633
+ {
2634
+ "internalType": "Amount",
2635
+ "name": "amount",
2636
+ "type": "uint96"
2637
+ }
2638
+ ],
2639
+ "name": "updateRemoteTvl",
2640
+ "outputs": [],
2641
+ "stateMutability": "nonpayable",
2642
+ "type": "function"
2643
+ },
2644
+ {
2645
+ "inputs": [
2646
+ {
2647
+ "internalType": "NftId",
2648
+ "name": "stakeNftId",
2649
+ "type": "uint96"
2650
+ }
2651
+ ],
2652
+ "name": "updateRewards",
2653
+ "outputs": [
2654
+ {
2655
+ "internalType": "Amount",
2656
+ "name": "newRewardAmount",
2657
+ "type": "uint96"
2658
+ }
2659
+ ],
2660
+ "stateMutability": "nonpayable",
2661
+ "type": "function"
2662
+ },
2663
+ {
2664
+ "inputs": [
2665
+ {
2666
+ "internalType": "bytes",
2667
+ "name": "data",
2668
+ "type": "bytes"
2669
+ }
2670
+ ],
2671
+ "name": "upgradeVersionable",
2672
+ "outputs": [],
2673
+ "stateMutability": "nonpayable",
2674
+ "type": "function"
2675
+ },
2676
+ {
2677
+ "inputs": [
2678
+ {
2679
+ "internalType": "NftId",
2680
+ "name": "targetNftId",
2681
+ "type": "uint96"
2682
+ },
2683
+ {
2684
+ "internalType": "Amount",
2685
+ "name": "dipAmount",
2686
+ "type": "uint96"
2687
+ }
2688
+ ],
2689
+ "name": "withdrawRewardReserves",
2690
+ "outputs": [
2691
+ {
2692
+ "internalType": "Amount",
2693
+ "name": "newBalance",
2694
+ "type": "uint96"
2695
+ }
2696
+ ],
2697
+ "stateMutability": "nonpayable",
2698
+ "type": "function"
2699
+ },
2700
+ {
2701
+ "inputs": [
2702
+ {
2703
+ "internalType": "NftId",
2704
+ "name": "targetNftId",
2705
+ "type": "uint96"
2706
+ },
2707
+ {
2708
+ "internalType": "Amount",
2709
+ "name": "dipAmount",
2710
+ "type": "uint96"
2711
+ },
2712
+ {
2713
+ "internalType": "address",
2714
+ "name": "transferTo",
2715
+ "type": "address"
2716
+ }
2717
+ ],
2718
+ "name": "withdrawRewardReservesByService",
2719
+ "outputs": [
2720
+ {
2721
+ "internalType": "Amount",
2722
+ "name": "newBalance",
2723
+ "type": "uint96"
2724
+ }
2725
+ ],
2726
+ "stateMutability": "nonpayable",
2727
+ "type": "function"
2728
+ }
2729
+ ],
2730
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6159f4806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610393575f3560e01c80636d387fe4116101df578063b423086c11610109578063d43a2623116100a9578063e8ce883d11610079578063e8ce883d14610810578063ea15869f14610823578063ea48ce9b1461084a578063ec0407d91461085d575f80fd5b8063d43a2623146107c4578063d44f8a4b146107d7578063de0eb85f146107ea578063dea4ccf2146107fd575f80fd5b8063bf7e214f116100e4578063bf7e214f1461078e578063c813d79114610796578063caed9897146107a9578063cdf73d50146107b1575f80fd5b8063b423086c14610760578063b47f488814610768578063bac475b71461077b575f80fd5b80638fb360371161017f578063a71bfbb71161014f578063a71bfbb714610713578063ad12ad6014610726578063ada9652e14610739578063b283765d1461074d575f80fd5b80638fb36037146106b757806390edbd35146106d8578063958697a0146106ed578063a6bc7cb814610700575f80fd5b80637a9e5e4b116101ba5780637a9e5e4b1461068c57806381f137f81461069f57806386c75754146106a7578063893d20e8146106af575f80fd5b80636d387fe41461064c578063719f761a1461065f57806376b707b714610672575f80fd5b80632391b052116102c05780635ab1bd5311610260578063614d08f811610230578063614d08f8146105ee5780636291423a14610614578063644c45e01461061c5780636c1e9dff14610639575f80fd5b80635ab1bd53146105845780635cbb7d85146105955780635ecf260f146105c85780635fd1efec146105db575f80fd5b806343d752d31161029b57806343d752d31461054e57806344dcf7301461055657806349bb9e4b146105695780635741e5e91461057c575f80fd5b80632391b05214610515578063329d6e7414610528578063419197fe1461053b575f80fd5b8063132996041161033657806321df0da71161030657806321df0da7146104ea57806322366844146104f257806322e16406146104fa57806322f3e2d41461050d575f80fd5b80631329960414610486578063138461e0146104a657806317d7de7c146104ae5780631eff4b22146104c3575f80fd5b806309980bfd1161037157806309980bfd146104225780630d8e6e2c1461042a5780630fec111c1461044657806310a0638a1461045b575f80fd5b806301ffc9a7146103975780630345861d146103d8578063062c9cdf146103ed575b5f80fd5b6103c36103a5366004614bdf565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6103eb6103e6366004614c49565b610870565b005b6104147fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0081565b6040519081526020016103cf565b6103eb610948565b610432610b3e565b60405162ffffff90911681526020016103cf565b61044e610bc5565b6040516103cf9190614cae565b61046e610469366004614d42565b610d7f565b6040516001600160601b0390911681526020016103cf565b61048e610e16565b6040516001600160a01b0390911681526020016103cf565b61046e610e7e565b6104b6610e88565b6040516103cf9190614d5d565b6104147f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61048e610e98565b6103c3610edc565b6103eb610508366004614c49565b610fd2565b6103c361102c565b61046e610523366004614d6f565b6110a3565b6103eb610536366004614ebe565b611299565b6103eb610549366004614eef565b6113f7565b61048e6115f7565b6103eb610564366004614f51565b611612565b6103eb610577366004614faa565b611746565b6103c3611854565b6001546001600160a01b031661048e565b6105a86105a3366004614ff6565b61190a565b604080516001600160601b039384168152929091166020830152016103cf565b6103eb6105d6366004615012565b611c2b565b6103eb6105e936600461503e565b611d21565b6104b6604051806040016040528060078152602001665374616b696e6760c81b81525081565b61048e611ee7565b5f8051602061597f833981519152546001600160601b031661046e565b61046e610647366004614ff6565b611f02565b6103eb61065a366004614ff6565b61219e565b61046e61066d366004614d42565b61224c565b61067a6124e9565b60405160ff90911681526020016103cf565b6103eb61069a36600461503e565b61255d565b61048e6125df565b61048e6125fa565b61048e612615565b6106bf612746565b6040516001600160e01b031990911681526020016103cf565b6106e061277b565b6040516103cf9190615059565b6103eb6106fb3660046150a7565b6127a0565b6103eb61070e3660046150e4565b6127e9565b6103eb610721366004614c49565b612924565b6103eb610734366004615111565b612a82565b6104145f8051602061597f83398151915281565b6103eb61075b36600461503e565b612b25565b6106e0612c6e565b6103eb610776366004615156565b612c7e565b6103eb610789366004615171565b612dcd565b61048e612e6c565b6103eb6107a436600461519e565b612e87565b61048e612ecb565b6103eb6107bf36600461527d565b612ee3565b61046e6107d2366004614d6f565b613041565b61046e6107e53660046150a7565b613062565b61046e6107f8366004614ff6565b61310a565b61046e61080b366004614d42565b613135565b61046e61081e366004614ff6565b61322e565b6104147fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b61046e6108583660046150a7565b613481565b61046e61086b366004614d6f565b6134e4565b61087c335b5f366135dd565b8161088a81601f5b5f6136d3565b5f61089361395d565b600490810154604051630345861d60e01b81526001600160a01b0390911691630345861d916108c6918891889101615298565b60408051808303815f875af11580156108e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090591906152d0565b5090507ec60e9fa0b11ba4353f1efa957e6380e75820bcf5afd13713f0c7c268b18a5b84848360405161093a939291906152fd565b60405180910390a150505050565b6001546001600160a01b0316331461097a57604051632a6e1a8960e01b81523360048201526024015b60405180910390fd5b5f61098361395d565b90505f61098e61395d565b546040805163b201f70960e01b815290516001600160a01b039092169163b201f709916004808201926020929091908290030181865afa1580156109d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f89190615327565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d610a266001546001600160a01b031690565b3084610a3a6001546001600160a01b031690565b6001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a999190615327565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015610af3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b179190615327565b60019290920180546001600160a01b0319166001600160a01b039093169290921790915550565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610b9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc09190615342565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c95919061536f565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cdd612615565b6001600160a01b03168152602001826001018054610cfa9061538a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d269061538a565b8015610d715780601f10610d4857610100808354040283529160200191610d71565b820191905f5260205f20905b815481529060010190602001808311610d5457829003601f168201915b505050505081525091505090565b5f610d8933610875565b81610d9881601e5b60016136d3565b5f610da161395d565b60048082015460405163085031c560e11b81529293506001600160a01b0316916310a0638a91610de2918891016001600160601b0391909116815260200190565b5f604051808303815f87803b158015610df9575f80fd5b505af1158015610e0b573d5f803e3d5ffd5b505050505050919050565b5f610e1f6115f7565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e5a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc09190615327565b5f610bc030613981565b6060610e9261277b565b51919050565b5f610ea16115f7565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e5a573d5f803e3d5ffd5b5f610eef6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610f33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f57919061536f565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610fae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc091906153d1565b610fdb33610875565b610fe3612615565b6001600160a01b0316336001600160a01b0316146110165760405163086391f760e31b8152336004820152602401610971565b61102861102161395d565b8383613bc3565b5050565b5f611035612e6c565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015611079573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109d91906153d1565b15905090565b5f6110ad33610875565b836110b981601f610884565b5f6110c261395d565b6002810154604051627c1b7d60e71b81529192506001600160a01b031690633e0dbe80906110f69089908890600401615298565b6020604051808303815f875af1158015611112573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611136919061536f565b6004808301546040516351486e7d60e01b81529295506001600160a01b0316916351486e7d9161116e9187918b918a918c91016153ea565b6020604051808303815f875af115801561118a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ae919061541e565b506040516330b8415f60e01b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015611205573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061122991906153d1565b1561129057600281015460405163f71c4cef60e01b81526001600160a01b039091169063f71c4cef906112629088908890600401615298565b5f604051808303815f87803b158015611279575f80fd5b505af115801561128b573d5f803e3d5ffd5b505050505b50509392505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6112bb610b3e565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156112f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131d9190615439565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff1680611362575080546001600160401b03808416911610155b156113805760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113aa83613ce9565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b61140033610875565b611408612615565b6001600160a01b0316336001600160a01b03161461143b5760405163086391f760e31b8152336004820152602401610971565b5f61144461395d565b6001810154604051636eb1769f60e11b81523060048201526001600160a01b0391821660248201529192505f9173__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd96919087169063dd62ed3e90604401602060405180830381865afa1580156114b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114d9919061545f565b6040518263ffffffff1660e01b81526004016114f791815260200190565b602060405180830381865af4158015611512573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611536919061536f565b60028301546040516320c8cbff60e11b81526001600160a01b0387811660048301526001600160601b038716602483015292935091169063419197fe906044015f604051808303815f87803b15801561158d575f80fd5b505af115801561159f573d5f803e3d5ffd5b5050604080516001600160a01b03881681526001600160601b0380881660208301528516918101919091527fd04c7a08e8de83264477350e162e0d3e26406e3eaf786d06d976ea7f229d5c4e9250606001905061093a565b5f61160061395d565b600101546001600160a01b0316919050565b61161b33610875565b61162361395d565b600490810154604051639a148b7f60e01b81526001600160601b0387169281019290925260ff8516602483015264ffffffffff841660448301526001600160a01b0383811660648401521690639a148b7f906084015f604051808303815f87803b15801561168f575f80fd5b505af11580156116a1573d5f803e3d5ffd5b505050507fc849e103742be0a3f6a0ce76fbdbf4c40caa5cd6eb6bdee9c12c925cff885fa58484848473__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611711573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611735919061536f565b60405161093a959493929190615476565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561178a5750825b90505f826001600160401b031660011480156117a55750303b155b9050811580156117b3575080155b156117d15760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117fb57845460ff60401b1916600160401b1785555b6118058787613d0a565b831561184b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f61185d610edc565b156118e1576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156118b1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118d89190810190615511565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f015460ff1690565b5f8061191533610875565b8361192181601e610d91565b8361192d81601f610884565b5f61193661395d565b9050806004015f9054906101000a90046001600160a01b03166001600160a01b0316630ad044ce8860018073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156119a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119cc919061536f565b60405160e086901b6001600160e01b03191681526001600160601b0394851660048201529215156024840152901515604483015290911660648201526084016020604051808303815f875af1158015611a27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a4b919061536f565b93505f611a606001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038a1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611aad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ad19190615327565b6002830154604051627c1b7d60e71b81529192506001600160a01b031690633e0dbe8090611b05908a908590600401615298565b6020604051808303815f875af1158015611b21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b45919061536f565b6004808401546040516351486e7d60e01b81529298506001600160a01b0316916351486e7d91611b7d918a918c9187918c91016153ea565b6020604051808303815f875af1158015611b99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bbd919061541e565b50604080516001600160601b0388811682528981166020830152878116828401526001600160a01b03841660608301528a16608082015290517fb83b505434e350ef4d02aa4d11d8c3bf9903b943ecba24fffa1061de4a109e199181900360a00190a1505050509250929050565b611c3433610875565b81611c4081601f610884565b5f611c4961395d565b600490810154604051635ecf260f60e01b81526001600160601b0387169281019290925264ffffffffff851660248301526001600160a01b031690635ecf260f9060440160408051808303815f875af1158015611ca8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccc91906155e1565b50604080516001600160601b038716815264ffffffffff80871660208301528316918101919091529091507f30c0fd8161ee020f45ae168e89fb340e68c952a10aad14f7a895dc9393818e469060600161093a565b611d2a33610875565b611d32612615565b6001600160a01b0316336001600160a01b031614611d655760405163086391f760e31b8152336004820152602401610971565b5f819050306001600160a01b0316816001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611daf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd39190615327565b6001600160a01b031614611e6657806001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e419190615327565b604051631641c88f60e11b81526001600160a01b039091166004820152602401610971565b5f611e6f61395d565b6005810180546001600160a01b0319166001600160a01b03858116919091179091556004808301546040516317f47bfb60e21b815287841692810192909252929350911690635fd1efec906024015b5f604051808303815f87803b158015611ed5575f80fd5b505af115801561184b573d5f803e3d5ffd5b5f611ef061395d565b600501546001600160a01b0316919050565b5f611f0c33610875565b82611f1881601e610d91565b5f611f2161395d565b9050806004015f9054906101000a90046001600160a01b03166001600160a01b03166359386f8e8660018073__$71e292c09eace9601b3e21e68a1278917a$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611f93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fb7919061541e565b6040516001600160e01b031960e087901b1681526001600160601b0394851660048201529215156024840152901515604483015264ffffffffff166064820152908716608482015260a4015f604051808303815f87803b158015612019575f80fd5b505af115801561202b573d5f803e3d5ffd5b50506040516330b8415f60e01b81526001600160601b038716600482015273__$3bac17678db7ae928afa209f2f44deec9c$__92506330b8415f9150602401602060405180830381865af4158015612085573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120a991906153d1565b15612196575f6120c16001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561210e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121329190615327565b600283015460405163f71c4cef60e01b81529192506001600160a01b03169063f71c4cef906121679088908590600401615298565b5f604051808303815f87803b15801561217e575f80fd5b505af1158015612190573d5f803e3d5ffd5b50505050505b505092915050565b6121a733610875565b816121b381601f610884565b5f6121bc61395d565b600480820154604051631b4e1ff960e21b81529293506001600160a01b031691636d387fe4916122059188918891016001600160601b0392831681529116602082015260400190565b60408051808303815f875af1158015612220573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224491906155fd565b505050505050565b5f61225633610875565b8161226281601e610d91565b5f61226b61395d565b9050806004015f9054906101000a90046001600160a01b03166001600160a01b0316634a923f0c85600173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156122dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612300919061536f565b60405160e085901b6001600160e01b03191681526001600160601b039384166004820152911515602483015290911660448201526064015b6020604051808303815f875af1158015612354573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612378919061536f565b6040516330b8415f60e01b81526001600160601b038216600482015290935073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156123d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123f591906153d1565b156124e2575f61240d6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561245a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247e9190615327565b6002830154604051630cb9145560e41b81529192506001600160a01b03169063cb914550906124b39087908590600401615298565b5f604051808303815f87803b1580156124ca575f80fd5b505af11580156124dc573d5f803e3d5ffd5b50505050505b5050919050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015612539573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc09190615619565b33612566612e6c565b6001600160a01b0316816001600160a01b0316146125a15760405162d1953b60e31b81526001600160a01b0382166004820152602401610971565b816001600160a01b03163b5f036125d6576040516361798f2f60e11b81526001600160a01b0383166004820152602401610971565b61102882613fa2565b5f6125e861395d565b600301546001600160a01b0316919050565b5f61260361395d565b600401546001600160a01b0316919050565b5f805f8051602061597f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612681573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a591906153d1565b15612730576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272a9190615327565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061599f83398151915280545f9190600160a01b900460ff1661276d575f61272a565b638fb3603760e01b91505090565b612783614bb6565b61278b610edc565b1561279857610bc0614003565b610bc0612c6e565b6127a933610875565b6127b1612615565b6001600160a01b0316336001600160a01b0316146127e45760405163086391f760e31b8152336004820152602401610971565b505050565b6127f233610875565b6127fa612615565b6001600160a01b0316336001600160a01b03161461282d5760405163086391f760e31b8152336004820152602401610971565b5f8061283761395d565b6004908101546040516314d78f9760e31b81526001600160a01b039091169163a6bc7cb89161286c91899189918991016152fd565b60408051808303815f875af1158015612887573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ab91906152d0565b604080516001600160601b03891681526001600160a01b03808916602083015280881692820192909252908316606082015264ffffffffff8216608082015291935091507f519b91b3c7a09332814e208f4ff950747fd39d6aa537517322893c161f6ac9459060a0015b60405180910390a15050505050565b61292d33610875565b8161293981601f610884565b5f61294261395d565b6040516301f8588560e51b81526001600160601b03861660048201529091505f9073__$dacf551d137a232f87fa09e79113e25430$__90633f0b10a090602401602060405180830381865af415801561299d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129c1919061536f565b90506129ce828286613bc3565b60048083015460405163a71bfbb760e01b81526001600160a01b039091169163a71bfbb791612a01918991899101615298565b5f604051808303815f87803b158015612a18575f80fd5b505af1158015612a2a573d5f803e3d5ffd5b5050604080516001600160601b03808a168252851660208201526001600160a01b038816918101919091527f7a2e316a9c20094b9155914cb3caab21339f9fc6d45d341144e1c2501103132892506060019050612915565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ac9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aed9190615327565b6001600160a01b0316336001600160a01b031614612b1f5760405162f0630960e01b8152336004820152602401610971565b50505050565b612b2e33610875565b612b36612615565b6001600160a01b0316336001600160a01b031614612b695760405163086391f760e31b8152336004820152602401610971565b5f612b7261395d565b6004818101546005830154604051630345861d60e01b81529394505f9384936001600160a01b0390931692630345861d92612bc192600160a01b9091046001600160601b031691899101615298565b60408051808303815f875af1158015612bdc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c0091906152d0565b600585015460408051600160a01b9092046001600160601b031682526001600160a01b03888116602084015284169082015264ffffffffff8216606082015291935091507f089233199b2878dc789e4ec6789758b5d04a0df1cd1e2f75b8e1077b0ed7806b9060800161093a565b612c76614bb6565b610bc0614003565b612c8733610875565b612c8f612615565b6001600160a01b0316336001600160a01b031614612cc25760405163086391f760e31b8152336004820152602401610971565b5f612ccb61395d565b6004818101546005830154604051635ecf260f60e01b8152600160a01b9091046001600160601b03169281019290925264ffffffffff851660248301529192505f9182916001600160a01b0390911690635ecf260f9060440160408051808303815f875af1158015612d3f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d6391906155e1565b600585015460408051600160a01b9092046001600160601b0316825264ffffffffff8881166020840152848116918301919091528216606082015291935091507f4de81d4f6acfa293451d20e78b7ce05c2e9f676381b7e41b986c75e7ce10491c9060800161093a565b612dd633610875565b82612de281601f610d91565b5f612deb61395d565b60048181015460405163bac475b760e01b81526001600160601b03808a1693820193909352828816602482015291861660448301529192506001600160a01b039091169063bac475b7906064015f604051808303815f87803b158015612e4f575f80fd5b505af1158015612e61573d5f803e3d5ffd5b505050505050505050565b5f8051602061599f833981519152546001600160a01b031690565b612e9033610875565b612e98612615565b6001600160a01b0316336001600160a01b0316146110285760405163086391f760e31b8152336004820152602401610971565b5f612ed461395d565b546001600160a01b0316919050565b612eec33610875565b612ef4612615565b6001600160a01b0316336001600160a01b031614612f275760405163086391f760e31b8152336004820152602401610971565b5f612f3061395d565b60028101549091506001600160a01b031673__$f048dbd5170c0ac319fa0222065b281d84$__63cf7601bf612f6d6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260ff86166024820152604401602060405180830381865af4158015612fb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fdc9190615327565b6002830180546001600160a01b0319166001600160a01b039283169081179091556040805191825260ff86166020830152918316918101919091527f0d3c2937ad932ccd841592977cdeb6dabbfb6fc4df9d7569f35a84f0864ac3c5906060016113ea565b5f61304b33610875565b8361305781601f610884565b6112908585856140e7565b5f61306c33610875565b5f61307561395d565b60048181015460405163d44f8a4b60e01b81526001600160601b03808a16938201939093526001600160a01b0388811660248301529287166044820152929350169063d44f8a4b906064015b6020604051808303815f875af11580156130dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613101919061536f565b95945050505050565b5f61311433610875565b8261312081601f610884565b3361312c8585836140e7565b50505092915050565b5f61313f33610875565b8161314b81601e610d91565b5f61315461395d565b9050806004015f9054906101000a90046001600160a01b03166001600160a01b0316630ad044ce8560018073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156131c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131ea919061536f565b60405160e086901b6001600160e01b03191681526001600160601b039485166004820152921515602484015290151560448301529091166064820152608401612338565b5f61323833610875565b8261324481601f610884565b5f6132bf8561325b6001546001600160a01b031690565b6001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132ba919061536f565b614265565b156132fc576132cc612615565b9050336001600160a01b038216146132f757604051631928390360e21b815260040160405180910390fd5b613476565b60405163f2c821f760e01b81526001600160601b038616600482015273__$dacf551d137a232f87fa09e79113e25430$__9063f2c821f790602401602060405180830381865af4158015613352573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061337691906153d1565b1561342e576001546001600160a01b0316604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156133d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133f89190615327565b9050336001600160a01b038216146132f757604051635520388f60e01b81526001600160601b0386166004820152602401610971565b60405162461bcd60e51b815260206004820181905260248201527f43726f73732d636861696e20746172676574206e6f7420737570706f727465646044820152606401610971565b6131018585836142f0565b5f61348b33610875565b5f61349461395d565b60048181015460405163ea48ce9b60e01b81526001600160601b03808a16938201939093526001600160a01b0388811660248301529287166044820152929350169063ea48ce9b906064016130c1565b5f6134ee33610875565b836134fa81601f610884565b6135108561325b6001546001600160a01b031690565b1561354057604051632778739960e11b81526001600160601b038616600482015260016024820152604401610971565b5f6135536001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156135a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135c49190615327565b90506135d18686836142f0565b9250505b509392505050565b5f8051602061599f8339815191525f806136156135f8612e6c565b873061360760045f8a8c615634565b6136109161565b565b614439565b91509150816122445763ffffffff8116156136b057825460ff60a01b1916600160a01b178355613643612e6c565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161367293929190615693565b5f604051808303815f87803b158015613689575f80fd5b505af115801561369b573d5f803e3d5ffd5b5050845460ff60a01b19168555506122449050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610971565b5f6136dc61395d565b905060ff8316601e0361378c57600481810154604051634f9c1c0960e01b81526001600160601b038716928101929092526001600160a01b031690634f9c1c0990602401602060405180830381865afa15801561373b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061375f91906153d1565b61378757604051632ab4595b60e11b81526001600160601b0385166004820152602401610971565b61389b565b60ff8316601f0361389b5760048082015460408051633a208dc760e01b815290516001600160a01b0390921692633a208dc79282820192602092908290030181865afa1580156137de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138029190615327565b604051634f9c1c0960e01b81526001600160601b03861660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa15801561384f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387391906153d1565b61389b576040516396cff01560e01b81526001600160601b0385166004820152602401610971565b8115612b1f575f6138b46001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613901573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139259190615327565b9050336001600160a01b0382161461395657848133604051630807d41d60e41b8152600401610971939291906152fd565b5050505050565b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0090565b5f805f8051602061597f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156139ed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a1191906153d1565b15613a3d5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610971565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613a8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ab391906153d1565b613adb5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610971565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613b2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b51919061536f565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490613b9d612615565b604051613bab929190615298565b60405180910390a1546001600160601b031692915050565b600480840154604051635809c85d60e01b81526001600160a01b0390911691635809c85d91613bf6918691869101615298565b6040805180830381865afa158015613c10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c3491906156d2565b6020015160405163790a38ad60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063790a38ad90602401602060405180830381865af4158015613c8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cb191906153d1565b156127e457600480840154604051631170b20360e11b81526001600160a01b03909116916322e1640691611ebe918691869101615298565b613cf1614541565b60405163502ec37160e01b815260040160405180910390fd5b613d12614541565b5f805f8084806020019051810190613d2a9190615730565b92965090945092509050835f613d3e61395d565b9050816001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da0919061536f565b6005820180546001600160601b0392909216600160a01b026001600160a01b039283161790556003820180548783166001600160a01b0319918216179091556004808401805493881693909216831790915560408051633148a11d60e11b81529051636291423a928281019260209291908290030181865afa158015613e28573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e4c9190615327565b6005820180546001600160a01b03199081166001600160a01b0393841617909155825416848216178255604080516307158bc560e51b81529051613f7f9285169163e2b178a09160048083019260209291908290030181865afa158015613eb5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ed99190615327565b83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f16573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f3a919061536f565b6040805180820190915260078152665374616b696e6760c81b602082015260035f8e60405180602001604052805f81525060405180602001604052805f81525061458c565b613f8881614668565b613f98632ea4539360e11b614803565b5050505050505050565b5f8051602061599f83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020015b60405180910390a15050565b61400b614bb6565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060600160405280825f0180546140489061538a565b80601f01602080910402602001604051908101604052809291908181526020018280546140749061538a565b80156140bf5780601f10614096576101008083540402835291602001916140bf565b820191905f5260205f20905b8154815290600101906020018083116140a257829003601f168201915b505050505081526020015f6001600160a01b03168152602001826002018054610cfa9061538a565b5f806140f161395d565b60048082015460405163de0eb85f60e01b81529293506001600160a01b03169163de0eb85f9161413a9189918991016001600160601b0392831681529116602082015260400190565b6020604051808303815f875af1158015614156573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061417a919061536f565b6040516330b8415f60e01b81526001600160601b038616600482015290925073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156141d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141f791906153d1565b156135d557600281015460405163f71c4cef60e01b81526001600160a01b039091169063f71c4cef906142309087908790600401615298565b5f604051808303815f87803b158015614247575f80fd5b505af1158015614259573d5f803e3d5ffd5b50505050509392505050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__9063c4cade9d90604401602060405180830381865af41580156142c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142e991906153d1565b9392505050565b5f806142fa61395d565b60048082015460405163e8ce883d60e01b81529293506001600160a01b03169163e8ce883d916143439189918991016001600160601b0392831681529116602082015260400190565b6020604051808303815f875af115801561435f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614383919061536f565b6040516330b8415f60e01b81526001600160601b038616600482015290925073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156143dc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061440091906153d1565b156135d5576002810154604051630cb9145560e41b81526001600160a01b039091169063cb914550906142309087908790600401615298565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516144a79190615781565b5f60405180830381855afa9150503d805f81146144df576040519150601f19603f3d011682016040523d82523d5f602084013e6144e4565b606091505b50915091508115614536576040815110614516578080602001905181019061450c9190615797565b9094509250614536565b6020815110614536578080602001905181019061453391906153d1565b93505b505094509492505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661458a57604051631afcd79f60e31b815260040160405180910390fd5b565b614594614541565b85515f036145b55760405163591eebf360e11b815260040160405180910390fd5b6145c489898988888888614836565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806145f0888261580d565b5060018101805460ff19168615151790556002810161460f838261580d565b5061461a600b614973565b6003820180546001600160a01b0319166001600160a01b039290921691909117905561464c634a531f3360e01b614803565b61465c6306e9e5ff60e31b614803565b50505050505050505050565b600481810154600583015460405163153d412560e31b8152600160a01b9091046001600160601b0316928101929092525f916001600160a01b039091169063a9ea09289060240161012060405180830381865afa1580156146cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146ef91906158c7565b604080820151905163790a38ad60e01b815264ffffffffff909116600482015290915073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063790a38ad90602401602060405180830381865af415801561474c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061477091906153d1565b156147a557600582015460405163686c563560e11b8152600160a01b9091046001600160601b03166004820152602401610971565b7fc849e103742be0a3f6a0ce76fbdbf4c40caa5cd6eb6bdee9c12c925cff885fa58260050160149054906101000a90046001600160601b03168260c001518360a001518460e001518560800151604051613ff7959493929190615476565b61480b614541565b614833816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b61483e614541565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614894573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906148b891906153d1565b6148e05760405163cf6935e560e01b81526001600160a01b0388166004820152602401610971565b6148e987614a0a565b6148f38683614a1b565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101614962838261580d565b50613f98634a531f3360e01b614803565b5f6149866001546001600160a01b031690565b6001600160a01b031663d39e60438361499d6124e9565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156149e0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a049190615327565b92915050565b614a12614541565b61483381614a91565b614a23614541565b614a2b614aa2565b614a3482614aea565b6001600160a01b038116614a5b5760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061597f83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614a99614541565b61483381613fa2565b614aaa614541565b61458a6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614af2614541565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614b48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b6c91906153d1565b614b945760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610971565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060600160405280606081526020015f6001600160a01b03168152602001606081525090565b5f60208284031215614bef575f80fd5b81356001600160e01b0319811681146142e9575f80fd5b6001600160601b0381168114614833575f80fd5b8035614c2581614c06565b919050565b6001600160a01b0381168114614833575f80fd5b8035614c2581614c2a565b5f8060408385031215614c5a575f80fd5b8235614c6581614c06565b91506020830135614c7581614c2a565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614cf6608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614d3a610100840182614c80565b949350505050565b5f60208284031215614d52575f80fd5b81356142e981614c06565b602081525f6142e96020830184614c80565b5f805f60608486031215614d81575f80fd5b8335614d8c81614c06565b92506020840135614d9c81614c06565b91506040840135614dac81614c2a565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b60405161012081016001600160401b0381118282101715614dee57614dee614db7565b60405290565b60405160e081016001600160401b0381118282101715614dee57614dee614db7565b604051601f8201601f191681016001600160401b0381118282101715614e3e57614e3e614db7565b604052919050565b5f6001600160401b03821115614e5e57614e5e614db7565b50601f01601f191660200190565b5f82601f830112614e7b575f80fd5b8135614e8e614e8982614e46565b614e16565b818152846020838601011115614ea2575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614ece575f80fd5b81356001600160401b03811115614ee3575f80fd5b614d3a84828501614e6c565b5f8060408385031215614f00575f80fd5b8235614f0b81614c2a565b91506020830135614c7581614c06565b60ff81168114614833575f80fd5b8035614c2581614f1b565b64ffffffffff81168114614833575f80fd5b8035614c2581614f34565b5f805f8060808587031215614f64575f80fd5b8435614f6f81614c06565b93506020850135614f7f81614f1b565b92506040850135614f8f81614f34565b91506060850135614f9f81614c2a565b939692955090935050565b5f8060408385031215614fbb575f80fd5b8235614fc681614c2a565b915060208301356001600160401b03811115614fe0575f80fd5b614fec85828601614e6c565b9150509250929050565b5f8060408385031215615007575f80fd5b8235614f0b81614c06565b5f8060408385031215615023575f80fd5b823561502e81614c06565b91506020830135614c7581614f34565b5f6020828403121561504e575f80fd5b81356142e981614c2a565b602081525f8251606060208401526150746080840182614c80565b60208501516001600160a01b0316604085810191909152850151848203601f190160608601529091506131018282614c80565b5f805f606084860312156150b9575f80fd5b83356150c481614c06565b925060208401356150d481614c2a565b91506040840135614dac81614c06565b5f805f606084860312156150f6575f80fd5b833561510181614c06565b92506020840135614d9c81614c2a565b5f805f8060808587031215615124575f80fd5b843561512f81614c2a565b9350602085013561513f81614c2a565b9250604085013591506060850135614f9f81614c2a565b5f60208284031215615166575f80fd5b81356142e981614f34565b5f805f60608486031215615183575f80fd5b833561518e81614c06565b925060208401356150d481614c06565b5f808284036101408112156151b1575f80fd5b83356151bc81614c06565b9250610120601f19820112156151d0575f80fd5b506151d9614dcb565b6151e560208501614c1a565b81526151f360408501614c1a565b602082015261520460608501614f46565b604082015261521560808501614c1a565b606082015261522660a08501614c1a565b608082015261523760c08501614f46565b60a082015261524860e08501614f29565b60c082015261525a6101008501614c3e565b60e082015261526c6101208501614c1a565b610100820152809150509250929050565b5f6020828403121561528d575f80fd5b81356142e981614f1b565b6001600160601b039290921682526001600160a01b0316602082015260400190565b8051614c2581614c2a565b8051614c2581614f34565b5f80604083850312156152e1575f80fd5b82516152ec81614c2a565b6020840151909250614c7581614f34565b6001600160601b039390931683526001600160a01b03918216602084015216604082015260600190565b5f60208284031215615337575f80fd5b81516142e981614c2a565b5f60208284031215615352575f80fd5b815162ffffff811681146142e9575f80fd5b8051614c2581614c06565b5f6020828403121561537f575f80fd5b81516142e981614c06565b600181811c9082168061539e57607f821691505b6020821081036153bc57634e487b7160e01b5f52602260045260245ffd5b50919050565b80518015158114614c25575f80fd5b5f602082840312156153e1575f80fd5b6142e9826153c2565b6001600160601b03948516815292841660208401526001600160a01b03919091166040830152909116606082015260800190565b5f6020828403121561542e575f80fd5b81516142e981614f34565b5f60208284031215615449575f80fd5b81516001600160401b03811681146142e9575f80fd5b5f6020828403121561546f575f80fd5b5051919050565b6001600160601b03958616815260ff94909416602085015264ffffffffff9290921660408401526001600160a01b03166060830152909116608082015260a00190565b8051614c2581614f1b565b5f82601f8301126154d3575f80fd5b81516154e1614e8982614e46565b8181528460208386010111156154f5575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215615521575f80fd5b81516001600160401b03811115615536575f80fd5b820160e08185031215615547575f80fd5b61554f614df4565b61555882615364565b815261556660208301615364565b6020820152615577604083016154b9565b6040820152615588606083016153c2565b6060820152615599608083016152ba565b60808201526155aa60a083016152ba565b60a082015260c08201516001600160401b038111156155c7575f80fd5b6155d3868285016154c4565b60c083015250949350505050565b5f80604083850312156155f2575f80fd5b82516152ec81614f34565b5f806040838503121561560e575f80fd5b82516152ec81614c06565b5f60208284031215615629575f80fd5b81516142e981614f1b565b5f8085851115615642575f80fd5b8386111561564e575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561568c576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60408284031280156156e3575f80fd5b50604080519081016001600160401b038111828210171561570657615706614db7565b604052825161571481614c2a565b8152602083015161572481614f34565b60208201529392505050565b5f805f8060808587031215615743575f80fd5b845161574e81614c2a565b602086015190945061575f81614c2a565b604086015190935061577081614c2a565b6060860151909250614f9f81614c2a565b5f82518060208501845e5f920191825250919050565b5f80604083850312156157a8575f80fd5b6157b1836153c2565b9150602083015163ffffffff81168114614c75575f80fd5b601f8211156127e457805f5260205f20601f840160051c810160208510156157ee5750805b601f840160051c820191505b81811015613956575f81556001016157fa565b81516001600160401b0381111561582657615826614db7565b61583a81615834845461538a565b846157c9565b6020601f82116001811461586c575f83156158555750848201515b5f19600385901b1c1916600184901b178455613956565b5f84815260208120601f198516915b8281101561589b578785015182556020948501946001909201910161587b565b50848210156158b857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6101208284031280156158d9575f80fd5b506158e2614dcb565b6158eb83615364565b81526158f960208401615364565b602082015261590a604084016152c5565b604082015261591b60608401615364565b606082015261592c60808401615364565b608082015261593d60a084016152c5565b60a082015261594e60c084016154b9565b60c082015261595f60e084016152ba565b60e08201526159716101008401615364565b610100820152939250505056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212205c81fb61b78925a359bc66e81aefea4b2b9dd0fc2874230358b28e0829ecdd4664736f6c634300081a0033",
2731
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610393575f3560e01c80636d387fe4116101df578063b423086c11610109578063d43a2623116100a9578063e8ce883d11610079578063e8ce883d14610810578063ea15869f14610823578063ea48ce9b1461084a578063ec0407d91461085d575f80fd5b8063d43a2623146107c4578063d44f8a4b146107d7578063de0eb85f146107ea578063dea4ccf2146107fd575f80fd5b8063bf7e214f116100e4578063bf7e214f1461078e578063c813d79114610796578063caed9897146107a9578063cdf73d50146107b1575f80fd5b8063b423086c14610760578063b47f488814610768578063bac475b71461077b575f80fd5b80638fb360371161017f578063a71bfbb71161014f578063a71bfbb714610713578063ad12ad6014610726578063ada9652e14610739578063b283765d1461074d575f80fd5b80638fb36037146106b757806390edbd35146106d8578063958697a0146106ed578063a6bc7cb814610700575f80fd5b80637a9e5e4b116101ba5780637a9e5e4b1461068c57806381f137f81461069f57806386c75754146106a7578063893d20e8146106af575f80fd5b80636d387fe41461064c578063719f761a1461065f57806376b707b714610672575f80fd5b80632391b052116102c05780635ab1bd5311610260578063614d08f811610230578063614d08f8146105ee5780636291423a14610614578063644c45e01461061c5780636c1e9dff14610639575f80fd5b80635ab1bd53146105845780635cbb7d85146105955780635ecf260f146105c85780635fd1efec146105db575f80fd5b806343d752d31161029b57806343d752d31461054e57806344dcf7301461055657806349bb9e4b146105695780635741e5e91461057c575f80fd5b80632391b05214610515578063329d6e7414610528578063419197fe1461053b575f80fd5b8063132996041161033657806321df0da71161030657806321df0da7146104ea57806322366844146104f257806322e16406146104fa57806322f3e2d41461050d575f80fd5b80631329960414610486578063138461e0146104a657806317d7de7c146104ae5780631eff4b22146104c3575f80fd5b806309980bfd1161037157806309980bfd146104225780630d8e6e2c1461042a5780630fec111c1461044657806310a0638a1461045b575f80fd5b806301ffc9a7146103975780630345861d146103d8578063062c9cdf146103ed575b5f80fd5b6103c36103a5366004614bdf565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6103eb6103e6366004614c49565b610870565b005b6104147fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0081565b6040519081526020016103cf565b6103eb610948565b610432610b3e565b60405162ffffff90911681526020016103cf565b61044e610bc5565b6040516103cf9190614cae565b61046e610469366004614d42565b610d7f565b6040516001600160601b0390911681526020016103cf565b61048e610e16565b6040516001600160a01b0390911681526020016103cf565b61046e610e7e565b6104b6610e88565b6040516103cf9190614d5d565b6104147f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61048e610e98565b6103c3610edc565b6103eb610508366004614c49565b610fd2565b6103c361102c565b61046e610523366004614d6f565b6110a3565b6103eb610536366004614ebe565b611299565b6103eb610549366004614eef565b6113f7565b61048e6115f7565b6103eb610564366004614f51565b611612565b6103eb610577366004614faa565b611746565b6103c3611854565b6001546001600160a01b031661048e565b6105a86105a3366004614ff6565b61190a565b604080516001600160601b039384168152929091166020830152016103cf565b6103eb6105d6366004615012565b611c2b565b6103eb6105e936600461503e565b611d21565b6104b6604051806040016040528060078152602001665374616b696e6760c81b81525081565b61048e611ee7565b5f8051602061597f833981519152546001600160601b031661046e565b61046e610647366004614ff6565b611f02565b6103eb61065a366004614ff6565b61219e565b61046e61066d366004614d42565b61224c565b61067a6124e9565b60405160ff90911681526020016103cf565b6103eb61069a36600461503e565b61255d565b61048e6125df565b61048e6125fa565b61048e612615565b6106bf612746565b6040516001600160e01b031990911681526020016103cf565b6106e061277b565b6040516103cf9190615059565b6103eb6106fb3660046150a7565b6127a0565b6103eb61070e3660046150e4565b6127e9565b6103eb610721366004614c49565b612924565b6103eb610734366004615111565b612a82565b6104145f8051602061597f83398151915281565b6103eb61075b36600461503e565b612b25565b6106e0612c6e565b6103eb610776366004615156565b612c7e565b6103eb610789366004615171565b612dcd565b61048e612e6c565b6103eb6107a436600461519e565b612e87565b61048e612ecb565b6103eb6107bf36600461527d565b612ee3565b61046e6107d2366004614d6f565b613041565b61046e6107e53660046150a7565b613062565b61046e6107f8366004614ff6565b61310a565b61046e61080b366004614d42565b613135565b61046e61081e366004614ff6565b61322e565b6104147fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b61046e6108583660046150a7565b613481565b61046e61086b366004614d6f565b6134e4565b61087c335b5f366135dd565b8161088a81601f5b5f6136d3565b5f61089361395d565b600490810154604051630345861d60e01b81526001600160a01b0390911691630345861d916108c6918891889101615298565b60408051808303815f875af11580156108e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061090591906152d0565b5090507ec60e9fa0b11ba4353f1efa957e6380e75820bcf5afd13713f0c7c268b18a5b84848360405161093a939291906152fd565b60405180910390a150505050565b6001546001600160a01b0316331461097a57604051632a6e1a8960e01b81523360048201526024015b60405180910390fd5b5f61098361395d565b90505f61098e61395d565b546040805163b201f70960e01b815290516001600160a01b039092169163b201f709916004808201926020929091908290030181865afa1580156109d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109f89190615327565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d610a266001546001600160a01b031690565b3084610a3a6001546001600160a01b031690565b6001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a999190615327565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015610af3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b179190615327565b60019290920180546001600160a01b0319166001600160a01b039093169290921790915550565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610b9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc09190615342565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c95919061536f565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cdd612615565b6001600160a01b03168152602001826001018054610cfa9061538a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d269061538a565b8015610d715780601f10610d4857610100808354040283529160200191610d71565b820191905f5260205f20905b815481529060010190602001808311610d5457829003601f168201915b505050505081525091505090565b5f610d8933610875565b81610d9881601e5b60016136d3565b5f610da161395d565b60048082015460405163085031c560e11b81529293506001600160a01b0316916310a0638a91610de2918891016001600160601b0391909116815260200190565b5f604051808303815f87803b158015610df9575f80fd5b505af1158015610e0b573d5f803e3d5ffd5b505050505050919050565b5f610e1f6115f7565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e5a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc09190615327565b5f610bc030613981565b6060610e9261277b565b51919050565b5f610ea16115f7565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e5a573d5f803e3d5ffd5b5f610eef6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610f33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f57919061536f565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610fae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc091906153d1565b610fdb33610875565b610fe3612615565b6001600160a01b0316336001600160a01b0316146110165760405163086391f760e31b8152336004820152602401610971565b61102861102161395d565b8383613bc3565b5050565b5f611035612e6c565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015611079573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109d91906153d1565b15905090565b5f6110ad33610875565b836110b981601f610884565b5f6110c261395d565b6002810154604051627c1b7d60e71b81529192506001600160a01b031690633e0dbe80906110f69089908890600401615298565b6020604051808303815f875af1158015611112573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611136919061536f565b6004808301546040516351486e7d60e01b81529295506001600160a01b0316916351486e7d9161116e9187918b918a918c91016153ea565b6020604051808303815f875af115801561118a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ae919061541e565b506040516330b8415f60e01b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015611205573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061122991906153d1565b1561129057600281015460405163f71c4cef60e01b81526001600160a01b039091169063f71c4cef906112629088908890600401615298565b5f604051808303815f87803b158015611279575f80fd5b505af115801561128b573d5f803e3d5ffd5b505050505b50509392505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6112bb610b3e565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156112f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131d9190615439565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff1680611362575080546001600160401b03808416911610155b156113805760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113aa83613ce9565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b61140033610875565b611408612615565b6001600160a01b0316336001600160a01b03161461143b5760405163086391f760e31b8152336004820152602401610971565b5f61144461395d565b6001810154604051636eb1769f60e11b81523060048201526001600160a01b0391821660248201529192505f9173__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd96919087169063dd62ed3e90604401602060405180830381865afa1580156114b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114d9919061545f565b6040518263ffffffff1660e01b81526004016114f791815260200190565b602060405180830381865af4158015611512573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611536919061536f565b60028301546040516320c8cbff60e11b81526001600160a01b0387811660048301526001600160601b038716602483015292935091169063419197fe906044015f604051808303815f87803b15801561158d575f80fd5b505af115801561159f573d5f803e3d5ffd5b5050604080516001600160a01b03881681526001600160601b0380881660208301528516918101919091527fd04c7a08e8de83264477350e162e0d3e26406e3eaf786d06d976ea7f229d5c4e9250606001905061093a565b5f61160061395d565b600101546001600160a01b0316919050565b61161b33610875565b61162361395d565b600490810154604051639a148b7f60e01b81526001600160601b0387169281019290925260ff8516602483015264ffffffffff841660448301526001600160a01b0383811660648401521690639a148b7f906084015f604051808303815f87803b15801561168f575f80fd5b505af11580156116a1573d5f803e3d5ffd5b505050507fc849e103742be0a3f6a0ce76fbdbf4c40caa5cd6eb6bdee9c12c925cff885fa58484848473__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611711573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611735919061536f565b60405161093a959493929190615476565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561178a5750825b90505f826001600160401b031660011480156117a55750303b155b9050811580156117b3575080155b156117d15760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117fb57845460ff60401b1916600160401b1785555b6118058787613d0a565b831561184b57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f61185d610edc565b156118e1576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156118b1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118d89190810190615511565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f015460ff1690565b5f8061191533610875565b8361192181601e610d91565b8361192d81601f610884565b5f61193661395d565b9050806004015f9054906101000a90046001600160a01b03166001600160a01b0316630ad044ce8860018073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156119a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119cc919061536f565b60405160e086901b6001600160e01b03191681526001600160601b0394851660048201529215156024840152901515604483015290911660648201526084016020604051808303815f875af1158015611a27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a4b919061536f565b93505f611a606001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038a1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611aad573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ad19190615327565b6002830154604051627c1b7d60e71b81529192506001600160a01b031690633e0dbe8090611b05908a908590600401615298565b6020604051808303815f875af1158015611b21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b45919061536f565b6004808401546040516351486e7d60e01b81529298506001600160a01b0316916351486e7d91611b7d918a918c9187918c91016153ea565b6020604051808303815f875af1158015611b99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bbd919061541e565b50604080516001600160601b0388811682528981166020830152878116828401526001600160a01b03841660608301528a16608082015290517fb83b505434e350ef4d02aa4d11d8c3bf9903b943ecba24fffa1061de4a109e199181900360a00190a1505050509250929050565b611c3433610875565b81611c4081601f610884565b5f611c4961395d565b600490810154604051635ecf260f60e01b81526001600160601b0387169281019290925264ffffffffff851660248301526001600160a01b031690635ecf260f9060440160408051808303815f875af1158015611ca8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccc91906155e1565b50604080516001600160601b038716815264ffffffffff80871660208301528316918101919091529091507f30c0fd8161ee020f45ae168e89fb340e68c952a10aad14f7a895dc9393818e469060600161093a565b611d2a33610875565b611d32612615565b6001600160a01b0316336001600160a01b031614611d655760405163086391f760e31b8152336004820152602401610971565b5f819050306001600160a01b0316816001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611daf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd39190615327565b6001600160a01b031614611e6657806001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e419190615327565b604051631641c88f60e11b81526001600160a01b039091166004820152602401610971565b5f611e6f61395d565b6005810180546001600160a01b0319166001600160a01b03858116919091179091556004808301546040516317f47bfb60e21b815287841692810192909252929350911690635fd1efec906024015b5f604051808303815f87803b158015611ed5575f80fd5b505af115801561184b573d5f803e3d5ffd5b5f611ef061395d565b600501546001600160a01b0316919050565b5f611f0c33610875565b82611f1881601e610d91565b5f611f2161395d565b9050806004015f9054906101000a90046001600160a01b03166001600160a01b03166359386f8e8660018073__$71e292c09eace9601b3e21e68a1278917a$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611f93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fb7919061541e565b6040516001600160e01b031960e087901b1681526001600160601b0394851660048201529215156024840152901515604483015264ffffffffff166064820152908716608482015260a4015f604051808303815f87803b158015612019575f80fd5b505af115801561202b573d5f803e3d5ffd5b50506040516330b8415f60e01b81526001600160601b038716600482015273__$3bac17678db7ae928afa209f2f44deec9c$__92506330b8415f9150602401602060405180830381865af4158015612085573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120a991906153d1565b15612196575f6120c16001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561210e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121329190615327565b600283015460405163f71c4cef60e01b81529192506001600160a01b03169063f71c4cef906121679088908590600401615298565b5f604051808303815f87803b15801561217e575f80fd5b505af1158015612190573d5f803e3d5ffd5b50505050505b505092915050565b6121a733610875565b816121b381601f610884565b5f6121bc61395d565b600480820154604051631b4e1ff960e21b81529293506001600160a01b031691636d387fe4916122059188918891016001600160601b0392831681529116602082015260400190565b60408051808303815f875af1158015612220573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224491906155fd565b505050505050565b5f61225633610875565b8161226281601e610d91565b5f61226b61395d565b9050806004015f9054906101000a90046001600160a01b03166001600160a01b0316634a923f0c85600173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156122dc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612300919061536f565b60405160e085901b6001600160e01b03191681526001600160601b039384166004820152911515602483015290911660448201526064015b6020604051808303815f875af1158015612354573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612378919061536f565b6040516330b8415f60e01b81526001600160601b038216600482015290935073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156123d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123f591906153d1565b156124e2575f61240d6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561245a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247e9190615327565b6002830154604051630cb9145560e41b81529192506001600160a01b03169063cb914550906124b39087908590600401615298565b5f604051808303815f87803b1580156124ca575f80fd5b505af11580156124dc573d5f803e3d5ffd5b50505050505b5050919050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015612539573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc09190615619565b33612566612e6c565b6001600160a01b0316816001600160a01b0316146125a15760405162d1953b60e31b81526001600160a01b0382166004820152602401610971565b816001600160a01b03163b5f036125d6576040516361798f2f60e11b81526001600160a01b0383166004820152602401610971565b61102882613fa2565b5f6125e861395d565b600301546001600160a01b0316919050565b5f61260361395d565b600401546001600160a01b0316919050565b5f805f8051602061597f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612681573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a591906153d1565b15612730576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612706573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272a9190615327565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061599f83398151915280545f9190600160a01b900460ff1661276d575f61272a565b638fb3603760e01b91505090565b612783614bb6565b61278b610edc565b1561279857610bc0614003565b610bc0612c6e565b6127a933610875565b6127b1612615565b6001600160a01b0316336001600160a01b0316146127e45760405163086391f760e31b8152336004820152602401610971565b505050565b6127f233610875565b6127fa612615565b6001600160a01b0316336001600160a01b03161461282d5760405163086391f760e31b8152336004820152602401610971565b5f8061283761395d565b6004908101546040516314d78f9760e31b81526001600160a01b039091169163a6bc7cb89161286c91899189918991016152fd565b60408051808303815f875af1158015612887573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ab91906152d0565b604080516001600160601b03891681526001600160a01b03808916602083015280881692820192909252908316606082015264ffffffffff8216608082015291935091507f519b91b3c7a09332814e208f4ff950747fd39d6aa537517322893c161f6ac9459060a0015b60405180910390a15050505050565b61292d33610875565b8161293981601f610884565b5f61294261395d565b6040516301f8588560e51b81526001600160601b03861660048201529091505f9073__$dacf551d137a232f87fa09e79113e25430$__90633f0b10a090602401602060405180830381865af415801561299d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129c1919061536f565b90506129ce828286613bc3565b60048083015460405163a71bfbb760e01b81526001600160a01b039091169163a71bfbb791612a01918991899101615298565b5f604051808303815f87803b158015612a18575f80fd5b505af1158015612a2a573d5f803e3d5ffd5b5050604080516001600160601b03808a168252851660208201526001600160a01b038816918101919091527f7a2e316a9c20094b9155914cb3caab21339f9fc6d45d341144e1c2501103132892506060019050612915565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ac9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aed9190615327565b6001600160a01b0316336001600160a01b031614612b1f5760405162f0630960e01b8152336004820152602401610971565b50505050565b612b2e33610875565b612b36612615565b6001600160a01b0316336001600160a01b031614612b695760405163086391f760e31b8152336004820152602401610971565b5f612b7261395d565b6004818101546005830154604051630345861d60e01b81529394505f9384936001600160a01b0390931692630345861d92612bc192600160a01b9091046001600160601b031691899101615298565b60408051808303815f875af1158015612bdc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c0091906152d0565b600585015460408051600160a01b9092046001600160601b031682526001600160a01b03888116602084015284169082015264ffffffffff8216606082015291935091507f089233199b2878dc789e4ec6789758b5d04a0df1cd1e2f75b8e1077b0ed7806b9060800161093a565b612c76614bb6565b610bc0614003565b612c8733610875565b612c8f612615565b6001600160a01b0316336001600160a01b031614612cc25760405163086391f760e31b8152336004820152602401610971565b5f612ccb61395d565b6004818101546005830154604051635ecf260f60e01b8152600160a01b9091046001600160601b03169281019290925264ffffffffff851660248301529192505f9182916001600160a01b0390911690635ecf260f9060440160408051808303815f875af1158015612d3f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d6391906155e1565b600585015460408051600160a01b9092046001600160601b0316825264ffffffffff8881166020840152848116918301919091528216606082015291935091507f4de81d4f6acfa293451d20e78b7ce05c2e9f676381b7e41b986c75e7ce10491c9060800161093a565b612dd633610875565b82612de281601f610d91565b5f612deb61395d565b60048181015460405163bac475b760e01b81526001600160601b03808a1693820193909352828816602482015291861660448301529192506001600160a01b039091169063bac475b7906064015f604051808303815f87803b158015612e4f575f80fd5b505af1158015612e61573d5f803e3d5ffd5b505050505050505050565b5f8051602061599f833981519152546001600160a01b031690565b612e9033610875565b612e98612615565b6001600160a01b0316336001600160a01b0316146110285760405163086391f760e31b8152336004820152602401610971565b5f612ed461395d565b546001600160a01b0316919050565b612eec33610875565b612ef4612615565b6001600160a01b0316336001600160a01b031614612f275760405163086391f760e31b8152336004820152602401610971565b5f612f3061395d565b60028101549091506001600160a01b031673__$f048dbd5170c0ac319fa0222065b281d84$__63cf7601bf612f6d6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260ff86166024820152604401602060405180830381865af4158015612fb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fdc9190615327565b6002830180546001600160a01b0319166001600160a01b039283169081179091556040805191825260ff86166020830152918316918101919091527f0d3c2937ad932ccd841592977cdeb6dabbfb6fc4df9d7569f35a84f0864ac3c5906060016113ea565b5f61304b33610875565b8361305781601f610884565b6112908585856140e7565b5f61306c33610875565b5f61307561395d565b60048181015460405163d44f8a4b60e01b81526001600160601b03808a16938201939093526001600160a01b0388811660248301529287166044820152929350169063d44f8a4b906064015b6020604051808303815f875af11580156130dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613101919061536f565b95945050505050565b5f61311433610875565b8261312081601f610884565b3361312c8585836140e7565b50505092915050565b5f61313f33610875565b8161314b81601e610d91565b5f61315461395d565b9050806004015f9054906101000a90046001600160a01b03166001600160a01b0316630ad044ce8560018073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156131c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131ea919061536f565b60405160e086901b6001600160e01b03191681526001600160601b039485166004820152921515602484015290151560448301529091166064820152608401612338565b5f61323833610875565b8261324481601f610884565b5f6132bf8561325b6001546001600160a01b031690565b6001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132ba919061536f565b614265565b156132fc576132cc612615565b9050336001600160a01b038216146132f757604051631928390360e21b815260040160405180910390fd5b613476565b60405163f2c821f760e01b81526001600160601b038616600482015273__$dacf551d137a232f87fa09e79113e25430$__9063f2c821f790602401602060405180830381865af4158015613352573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061337691906153d1565b1561342e576001546001600160a01b0316604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156133d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133f89190615327565b9050336001600160a01b038216146132f757604051635520388f60e01b81526001600160601b0386166004820152602401610971565b60405162461bcd60e51b815260206004820181905260248201527f43726f73732d636861696e20746172676574206e6f7420737570706f727465646044820152606401610971565b6131018585836142f0565b5f61348b33610875565b5f61349461395d565b60048181015460405163ea48ce9b60e01b81526001600160601b03808a16938201939093526001600160a01b0388811660248301529287166044820152929350169063ea48ce9b906064016130c1565b5f6134ee33610875565b836134fa81601f610884565b6135108561325b6001546001600160a01b031690565b1561354057604051632778739960e11b81526001600160601b038616600482015260016024820152604401610971565b5f6135536001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156135a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135c49190615327565b90506135d18686836142f0565b9250505b509392505050565b5f8051602061599f8339815191525f806136156135f8612e6c565b873061360760045f8a8c615634565b6136109161565b565b614439565b91509150816122445763ffffffff8116156136b057825460ff60a01b1916600160a01b178355613643612e6c565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161367293929190615693565b5f604051808303815f87803b158015613689575f80fd5b505af115801561369b573d5f803e3d5ffd5b5050845460ff60a01b19168555506122449050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610971565b5f6136dc61395d565b905060ff8316601e0361378c57600481810154604051634f9c1c0960e01b81526001600160601b038716928101929092526001600160a01b031690634f9c1c0990602401602060405180830381865afa15801561373b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061375f91906153d1565b61378757604051632ab4595b60e11b81526001600160601b0385166004820152602401610971565b61389b565b60ff8316601f0361389b5760048082015460408051633a208dc760e01b815290516001600160a01b0390921692633a208dc79282820192602092908290030181865afa1580156137de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138029190615327565b604051634f9c1c0960e01b81526001600160601b03861660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa15801561384f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061387391906153d1565b61389b576040516396cff01560e01b81526001600160601b0385166004820152602401610971565b8115612b1f575f6138b46001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613901573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139259190615327565b9050336001600160a01b0382161461395657848133604051630807d41d60e41b8152600401610971939291906152fd565b5050505050565b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0090565b5f805f8051602061597f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156139ed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a1191906153d1565b15613a3d5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610971565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613a8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ab391906153d1565b613adb5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610971565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613b2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b51919061536f565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490613b9d612615565b604051613bab929190615298565b60405180910390a1546001600160601b031692915050565b600480840154604051635809c85d60e01b81526001600160a01b0390911691635809c85d91613bf6918691869101615298565b6040805180830381865afa158015613c10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c3491906156d2565b6020015160405163790a38ad60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063790a38ad90602401602060405180830381865af4158015613c8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cb191906153d1565b156127e457600480840154604051631170b20360e11b81526001600160a01b03909116916322e1640691611ebe918691869101615298565b613cf1614541565b60405163502ec37160e01b815260040160405180910390fd5b613d12614541565b5f805f8084806020019051810190613d2a9190615730565b92965090945092509050835f613d3e61395d565b9050816001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da0919061536f565b6005820180546001600160601b0392909216600160a01b026001600160a01b039283161790556003820180548783166001600160a01b0319918216179091556004808401805493881693909216831790915560408051633148a11d60e11b81529051636291423a928281019260209291908290030181865afa158015613e28573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e4c9190615327565b6005820180546001600160a01b03199081166001600160a01b0393841617909155825416848216178255604080516307158bc560e51b81529051613f7f9285169163e2b178a09160048083019260209291908290030181865afa158015613eb5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ed99190615327565b83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f16573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f3a919061536f565b6040805180820190915260078152665374616b696e6760c81b602082015260035f8e60405180602001604052805f81525060405180602001604052805f81525061458c565b613f8881614668565b613f98632ea4539360e11b614803565b5050505050505050565b5f8051602061599f83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020015b60405180910390a15050565b61400b614bb6565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060600160405280825f0180546140489061538a565b80601f01602080910402602001604051908101604052809291908181526020018280546140749061538a565b80156140bf5780601f10614096576101008083540402835291602001916140bf565b820191905f5260205f20905b8154815290600101906020018083116140a257829003601f168201915b505050505081526020015f6001600160a01b03168152602001826002018054610cfa9061538a565b5f806140f161395d565b60048082015460405163de0eb85f60e01b81529293506001600160a01b03169163de0eb85f9161413a9189918991016001600160601b0392831681529116602082015260400190565b6020604051808303815f875af1158015614156573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061417a919061536f565b6040516330b8415f60e01b81526001600160601b038616600482015290925073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156141d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141f791906153d1565b156135d557600281015460405163f71c4cef60e01b81526001600160a01b039091169063f71c4cef906142309087908790600401615298565b5f604051808303815f87803b158015614247575f80fd5b505af1158015614259573d5f803e3d5ffd5b50505050509392505050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__9063c4cade9d90604401602060405180830381865af41580156142c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142e991906153d1565b9392505050565b5f806142fa61395d565b60048082015460405163e8ce883d60e01b81529293506001600160a01b03169163e8ce883d916143439189918991016001600160601b0392831681529116602082015260400190565b6020604051808303815f875af115801561435f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614383919061536f565b6040516330b8415f60e01b81526001600160601b038616600482015290925073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156143dc573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061440091906153d1565b156135d5576002810154604051630cb9145560e41b81526001600160a01b039091169063cb914550906142309087908790600401615298565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516144a79190615781565b5f60405180830381855afa9150503d805f81146144df576040519150601f19603f3d011682016040523d82523d5f602084013e6144e4565b606091505b50915091508115614536576040815110614516578080602001905181019061450c9190615797565b9094509250614536565b6020815110614536578080602001905181019061453391906153d1565b93505b505094509492505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661458a57604051631afcd79f60e31b815260040160405180910390fd5b565b614594614541565b85515f036145b55760405163591eebf360e11b815260040160405180910390fd5b6145c489898988888888614836565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806145f0888261580d565b5060018101805460ff19168615151790556002810161460f838261580d565b5061461a600b614973565b6003820180546001600160a01b0319166001600160a01b039290921691909117905561464c634a531f3360e01b614803565b61465c6306e9e5ff60e31b614803565b50505050505050505050565b600481810154600583015460405163153d412560e31b8152600160a01b9091046001600160601b0316928101929092525f916001600160a01b039091169063a9ea09289060240161012060405180830381865afa1580156146cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146ef91906158c7565b604080820151905163790a38ad60e01b815264ffffffffff909116600482015290915073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063790a38ad90602401602060405180830381865af415801561474c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061477091906153d1565b156147a557600582015460405163686c563560e11b8152600160a01b9091046001600160601b03166004820152602401610971565b7fc849e103742be0a3f6a0ce76fbdbf4c40caa5cd6eb6bdee9c12c925cff885fa58260050160149054906101000a90046001600160601b03168260c001518360a001518460e001518560800151604051613ff7959493929190615476565b61480b614541565b614833816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b61483e614541565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614894573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906148b891906153d1565b6148e05760405163cf6935e560e01b81526001600160a01b0388166004820152602401610971565b6148e987614a0a565b6148f38683614a1b565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101614962838261580d565b50613f98634a531f3360e01b614803565b5f6149866001546001600160a01b031690565b6001600160a01b031663d39e60438361499d6124e9565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156149e0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a049190615327565b92915050565b614a12614541565b61483381614a91565b614a23614541565b614a2b614aa2565b614a3482614aea565b6001600160a01b038116614a5b5760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061597f83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614a99614541565b61483381613fa2565b614aaa614541565b61458a6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614af2614541565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614b48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b6c91906153d1565b614b945760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610971565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060600160405280606081526020015f6001600160a01b03168152602001606081525090565b5f60208284031215614bef575f80fd5b81356001600160e01b0319811681146142e9575f80fd5b6001600160601b0381168114614833575f80fd5b8035614c2581614c06565b919050565b6001600160a01b0381168114614833575f80fd5b8035614c2581614c2a565b5f8060408385031215614c5a575f80fd5b8235614c6581614c06565b91506020830135614c7581614c2a565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614cf6608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614d3a610100840182614c80565b949350505050565b5f60208284031215614d52575f80fd5b81356142e981614c06565b602081525f6142e96020830184614c80565b5f805f60608486031215614d81575f80fd5b8335614d8c81614c06565b92506020840135614d9c81614c06565b91506040840135614dac81614c2a565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b60405161012081016001600160401b0381118282101715614dee57614dee614db7565b60405290565b60405160e081016001600160401b0381118282101715614dee57614dee614db7565b604051601f8201601f191681016001600160401b0381118282101715614e3e57614e3e614db7565b604052919050565b5f6001600160401b03821115614e5e57614e5e614db7565b50601f01601f191660200190565b5f82601f830112614e7b575f80fd5b8135614e8e614e8982614e46565b614e16565b818152846020838601011115614ea2575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614ece575f80fd5b81356001600160401b03811115614ee3575f80fd5b614d3a84828501614e6c565b5f8060408385031215614f00575f80fd5b8235614f0b81614c2a565b91506020830135614c7581614c06565b60ff81168114614833575f80fd5b8035614c2581614f1b565b64ffffffffff81168114614833575f80fd5b8035614c2581614f34565b5f805f8060808587031215614f64575f80fd5b8435614f6f81614c06565b93506020850135614f7f81614f1b565b92506040850135614f8f81614f34565b91506060850135614f9f81614c2a565b939692955090935050565b5f8060408385031215614fbb575f80fd5b8235614fc681614c2a565b915060208301356001600160401b03811115614fe0575f80fd5b614fec85828601614e6c565b9150509250929050565b5f8060408385031215615007575f80fd5b8235614f0b81614c06565b5f8060408385031215615023575f80fd5b823561502e81614c06565b91506020830135614c7581614f34565b5f6020828403121561504e575f80fd5b81356142e981614c2a565b602081525f8251606060208401526150746080840182614c80565b60208501516001600160a01b0316604085810191909152850151848203601f190160608601529091506131018282614c80565b5f805f606084860312156150b9575f80fd5b83356150c481614c06565b925060208401356150d481614c2a565b91506040840135614dac81614c06565b5f805f606084860312156150f6575f80fd5b833561510181614c06565b92506020840135614d9c81614c2a565b5f805f8060808587031215615124575f80fd5b843561512f81614c2a565b9350602085013561513f81614c2a565b9250604085013591506060850135614f9f81614c2a565b5f60208284031215615166575f80fd5b81356142e981614f34565b5f805f60608486031215615183575f80fd5b833561518e81614c06565b925060208401356150d481614c06565b5f808284036101408112156151b1575f80fd5b83356151bc81614c06565b9250610120601f19820112156151d0575f80fd5b506151d9614dcb565b6151e560208501614c1a565b81526151f360408501614c1a565b602082015261520460608501614f46565b604082015261521560808501614c1a565b606082015261522660a08501614c1a565b608082015261523760c08501614f46565b60a082015261524860e08501614f29565b60c082015261525a6101008501614c3e565b60e082015261526c6101208501614c1a565b610100820152809150509250929050565b5f6020828403121561528d575f80fd5b81356142e981614f1b565b6001600160601b039290921682526001600160a01b0316602082015260400190565b8051614c2581614c2a565b8051614c2581614f34565b5f80604083850312156152e1575f80fd5b82516152ec81614c2a565b6020840151909250614c7581614f34565b6001600160601b039390931683526001600160a01b03918216602084015216604082015260600190565b5f60208284031215615337575f80fd5b81516142e981614c2a565b5f60208284031215615352575f80fd5b815162ffffff811681146142e9575f80fd5b8051614c2581614c06565b5f6020828403121561537f575f80fd5b81516142e981614c06565b600181811c9082168061539e57607f821691505b6020821081036153bc57634e487b7160e01b5f52602260045260245ffd5b50919050565b80518015158114614c25575f80fd5b5f602082840312156153e1575f80fd5b6142e9826153c2565b6001600160601b03948516815292841660208401526001600160a01b03919091166040830152909116606082015260800190565b5f6020828403121561542e575f80fd5b81516142e981614f34565b5f60208284031215615449575f80fd5b81516001600160401b03811681146142e9575f80fd5b5f6020828403121561546f575f80fd5b5051919050565b6001600160601b03958616815260ff94909416602085015264ffffffffff9290921660408401526001600160a01b03166060830152909116608082015260a00190565b8051614c2581614f1b565b5f82601f8301126154d3575f80fd5b81516154e1614e8982614e46565b8181528460208386010111156154f5575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215615521575f80fd5b81516001600160401b03811115615536575f80fd5b820160e08185031215615547575f80fd5b61554f614df4565b61555882615364565b815261556660208301615364565b6020820152615577604083016154b9565b6040820152615588606083016153c2565b6060820152615599608083016152ba565b60808201526155aa60a083016152ba565b60a082015260c08201516001600160401b038111156155c7575f80fd5b6155d3868285016154c4565b60c083015250949350505050565b5f80604083850312156155f2575f80fd5b82516152ec81614f34565b5f806040838503121561560e575f80fd5b82516152ec81614c06565b5f60208284031215615629575f80fd5b81516142e981614f1b565b5f8085851115615642575f80fd5b8386111561564e575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561568c576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60408284031280156156e3575f80fd5b50604080519081016001600160401b038111828210171561570657615706614db7565b604052825161571481614c2a565b8152602083015161572481614f34565b60208201529392505050565b5f805f8060808587031215615743575f80fd5b845161574e81614c2a565b602086015190945061575f81614c2a565b604086015190935061577081614c2a565b6060860151909250614f9f81614c2a565b5f82518060208501845e5f920191825250919050565b5f80604083850312156157a8575f80fd5b6157b1836153c2565b9150602083015163ffffffff81168114614c75575f80fd5b601f8211156127e457805f5260205f20601f840160051c810160208510156157ee5750805b601f840160051c820191505b81811015613956575f81556001016157fa565b81516001600160401b0381111561582657615826614db7565b61583a81615834845461538a565b846157c9565b6020601f82116001811461586c575f83156158555750848201515b5f19600385901b1c1916600184901b178455613956565b5f84815260208120601f198516915b8281101561589b578785015182556020948501946001909201910161587b565b50848210156158b857868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6101208284031280156158d9575f80fd5b506158e2614dcb565b6158eb83615364565b81526158f960208401615364565b602082015261590a604084016152c5565b604082015261591b60608401615364565b606082015261592c60808401615364565b608082015261593d60a084016152c5565b60a082015261594e60c084016154b9565b60c082015261595f60e084016152ba565b60e08201526159716101008401615364565b610100820152939250505056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212205c81fb61b78925a359bc66e81aefea4b2b9dd0fc2874230358b28e0829ecdd4664736f6c634300081a0033",
2732
+ "linkReferences": {
2733
+ "contracts/shared/ContractLib.sol": {
2734
+ "ContractLib": [
2735
+ {
2736
+ "length": 20,
2737
+ "start": 18738
2738
+ },
2739
+ {
2740
+ "length": 20,
2741
+ "start": 19430
2742
+ }
2743
+ ]
2744
+ },
2745
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
2746
+ "TokenHandlerDeployerLib": [
2747
+ {
2748
+ "length": 20,
2749
+ "start": 2770
2750
+ }
2751
+ ]
2752
+ },
2753
+ "contracts/staking/StakingLib.sol": {
2754
+ "StakingLib": [
2755
+ {
2756
+ "length": 20,
2757
+ "start": 12313
2758
+ }
2759
+ ]
2760
+ },
2761
+ "contracts/type/Amount.sol": {
2762
+ "AmountLib": [
2763
+ {
2764
+ "length": 20,
2765
+ "start": 4771
2766
+ },
2767
+ {
2768
+ "length": 20,
2769
+ "start": 5449
2770
+ },
2771
+ {
2772
+ "length": 20,
2773
+ "start": 6050
2774
+ },
2775
+ {
2776
+ "length": 20,
2777
+ "start": 6713
2778
+ },
2779
+ {
2780
+ "length": 20,
2781
+ "start": 8481
2782
+ },
2783
+ {
2784
+ "length": 20,
2785
+ "start": 9069
2786
+ },
2787
+ {
2788
+ "length": 20,
2789
+ "start": 9327
2790
+ },
2791
+ {
2792
+ "length": 20,
2793
+ "start": 12887
2794
+ },
2795
+ {
2796
+ "length": 20,
2797
+ "start": 17009
2798
+ },
2799
+ {
2800
+ "length": 20,
2801
+ "start": 17530
2802
+ }
2803
+ ]
2804
+ },
2805
+ "contracts/type/Blocknumber.sol": {
2806
+ "BlocknumberLib": [
2807
+ {
2808
+ "length": 20,
2809
+ "start": 15659
2810
+ },
2811
+ {
2812
+ "length": 20,
2813
+ "start": 18410
2814
+ }
2815
+ ]
2816
+ },
2817
+ "contracts/type/ChainId.sol": {
2818
+ "ChainIdLib": [
2819
+ {
2820
+ "length": 20,
2821
+ "start": 10811
2822
+ },
2823
+ {
2824
+ "length": 20,
2825
+ "start": 13296
2826
+ }
2827
+ ]
2828
+ },
2829
+ "contracts/type/NftId.sol": {
2830
+ "NftIdLib": [
2831
+ {
2832
+ "length": 20,
2833
+ "start": 3330
2834
+ },
2835
+ {
2836
+ "length": 20,
2837
+ "start": 4172
2838
+ },
2839
+ {
2840
+ "length": 20,
2841
+ "start": 10015
2842
+ },
2843
+ {
2844
+ "length": 20,
2845
+ "start": 14987
2846
+ },
2847
+ {
2848
+ "length": 20,
2849
+ "start": 17251
2850
+ }
2851
+ ]
2852
+ },
2853
+ "contracts/type/Seconds.sol": {
2854
+ "SecondsLib": [
2855
+ {
2856
+ "length": 20,
2857
+ "start": 8228
2858
+ }
2859
+ ]
2860
+ },
2861
+ "contracts/type/Version.sol": {
2862
+ "VersionLib": [
2863
+ {
2864
+ "length": 20,
2865
+ "start": 3130
2866
+ },
2867
+ {
2868
+ "length": 20,
2869
+ "start": 4977
2870
+ }
2871
+ ],
2872
+ "VersionPartLib": [
2873
+ {
2874
+ "length": 20,
2875
+ "start": 9687
2876
+ }
2877
+ ]
2878
+ }
2879
+ },
2880
+ "deployedLinkReferences": {
2881
+ "contracts/shared/ContractLib.sol": {
2882
+ "ContractLib": [
2883
+ {
2884
+ "length": 20,
2885
+ "start": 18524
2886
+ },
2887
+ {
2888
+ "length": 20,
2889
+ "start": 19216
2890
+ }
2891
+ ]
2892
+ },
2893
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
2894
+ "TokenHandlerDeployerLib": [
2895
+ {
2896
+ "length": 20,
2897
+ "start": 2556
2898
+ }
2899
+ ]
2900
+ },
2901
+ "contracts/staking/StakingLib.sol": {
2902
+ "StakingLib": [
2903
+ {
2904
+ "length": 20,
2905
+ "start": 12099
2906
+ }
2907
+ ]
2908
+ },
2909
+ "contracts/type/Amount.sol": {
2910
+ "AmountLib": [
2911
+ {
2912
+ "length": 20,
2913
+ "start": 4557
2914
+ },
2915
+ {
2916
+ "length": 20,
2917
+ "start": 5235
2918
+ },
2919
+ {
2920
+ "length": 20,
2921
+ "start": 5836
2922
+ },
2923
+ {
2924
+ "length": 20,
2925
+ "start": 6499
2926
+ },
2927
+ {
2928
+ "length": 20,
2929
+ "start": 8267
2930
+ },
2931
+ {
2932
+ "length": 20,
2933
+ "start": 8855
2934
+ },
2935
+ {
2936
+ "length": 20,
2937
+ "start": 9113
2938
+ },
2939
+ {
2940
+ "length": 20,
2941
+ "start": 12673
2942
+ },
2943
+ {
2944
+ "length": 20,
2945
+ "start": 16795
2946
+ },
2947
+ {
2948
+ "length": 20,
2949
+ "start": 17316
2950
+ }
2951
+ ]
2952
+ },
2953
+ "contracts/type/Blocknumber.sol": {
2954
+ "BlocknumberLib": [
2955
+ {
2956
+ "length": 20,
2957
+ "start": 15445
2958
+ },
2959
+ {
2960
+ "length": 20,
2961
+ "start": 18196
2962
+ }
2963
+ ]
2964
+ },
2965
+ "contracts/type/ChainId.sol": {
2966
+ "ChainIdLib": [
2967
+ {
2968
+ "length": 20,
2969
+ "start": 10597
2970
+ },
2971
+ {
2972
+ "length": 20,
2973
+ "start": 13082
2974
+ }
2975
+ ]
2976
+ },
2977
+ "contracts/type/NftId.sol": {
2978
+ "NftIdLib": [
2979
+ {
2980
+ "length": 20,
2981
+ "start": 3116
2982
+ },
2983
+ {
2984
+ "length": 20,
2985
+ "start": 3958
2986
+ },
2987
+ {
2988
+ "length": 20,
2989
+ "start": 9801
2990
+ },
2991
+ {
2992
+ "length": 20,
2993
+ "start": 14773
2994
+ },
2995
+ {
2996
+ "length": 20,
2997
+ "start": 17037
2998
+ }
2999
+ ]
3000
+ },
3001
+ "contracts/type/Seconds.sol": {
3002
+ "SecondsLib": [
3003
+ {
3004
+ "length": 20,
3005
+ "start": 8014
3006
+ }
3007
+ ]
3008
+ },
3009
+ "contracts/type/Version.sol": {
3010
+ "VersionLib": [
3011
+ {
3012
+ "length": 20,
3013
+ "start": 2916
3014
+ },
3015
+ {
3016
+ "length": 20,
3017
+ "start": 4763
3018
+ }
3019
+ ],
3020
+ "VersionPartLib": [
3021
+ {
3022
+ "length": 20,
3023
+ "start": 9473
3024
+ }
3025
+ ]
3026
+ }
3027
+ }
3028
+ }