@etherisc/gif-next 0.0.2-f831797-539 → 0.0.2-f946ccd-184

Sign up to get free protection for your applications and to get access to all the features.
Files changed (667) hide show
  1. package/README.md +57 -88
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1234 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1013 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1342 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +220 -509
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1405 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +282 -227
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +254 -335
  36. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  37. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1463 -0
  38. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  39. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +410 -0
  40. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1712 -0
  42. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +414 -0
  44. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  46. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1411 -0
  48. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  49. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
  50. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1517 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +1978 -0
  54. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  55. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  56. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  57. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +278 -1906
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +318 -70
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +335 -2711
  62. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1623 -0
  64. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  66. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  67. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +904 -338
  68. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  69. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +350 -343
  70. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  71. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +132 -111
  72. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  73. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3587 -0
  74. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  76. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  78. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  80. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  82. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  83. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  84. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  85. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  86. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  87. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  88. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  89. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  90. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  91. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  92. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  93. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  94. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +979 -0
  95. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  96. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  97. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  98. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  99. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  100. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +765 -0
  101. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  102. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +305 -170
  103. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  104. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +871 -0
  105. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  106. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +927 -0
  107. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  108. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +710 -0
  109. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  110. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +293 -383
  111. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  113. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  114. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1367 -0
  115. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  116. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +802 -0
  117. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +412 -135
  119. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  120. package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +297 -324
  121. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  122. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1198 -0
  123. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  124. package/artifacts/contracts/pool/Pool.sol/Pool.json +1034 -0
  125. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  126. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1474 -0
  127. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  128. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +726 -0
  129. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  130. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +737 -0
  131. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +698 -0
  133. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  134. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +354 -397
  135. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  136. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  137. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  138. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1346 -0
  139. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  140. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +814 -0
  141. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  142. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +129 -168
  143. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  144. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +886 -0
  145. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  146. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +867 -0
  147. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  148. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → product/IPricingService.sol/IPricingService.json} +214 -217
  149. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  150. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +948 -0
  151. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  152. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +81 -65
  153. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  154. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1239 -0
  155. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  156. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +770 -0
  157. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  158. package/artifacts/contracts/product/PricingService.sol/PricingService.json +865 -0
  159. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  160. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +746 -0
  161. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  162. package/artifacts/contracts/product/Product.sol/Product.json +1054 -0
  163. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  164. package/artifacts/contracts/product/RiskService.sol/RiskService.json +588 -0
  165. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  166. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +682 -0
  167. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  168. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  169. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  170. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +394 -21
  171. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  172. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
  173. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  174. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  175. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  176. package/artifacts/contracts/registry/Registry.sol/Registry.json +793 -37
  177. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  178. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1858 -0
  179. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  180. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -204
  181. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  182. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +126 -95
  183. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  184. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  185. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  186. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1169 -0
  187. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  188. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  189. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  190. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  191. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  192. package/artifacts/contracts/shared/Component.sol/Component.json +685 -0
  193. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  194. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1573 -0
  195. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  196. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +794 -0
  197. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  198. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +146 -142
  199. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  200. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +92 -0
  201. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  202. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +193 -75
  203. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  204. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  205. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  206. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +215 -227
  207. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  208. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
  209. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  210. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  211. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  212. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
  213. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  214. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  215. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  216. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
  217. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  218. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  219. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  220. package/artifacts/contracts/shared/IService.sol/IService.json +96 -19
  221. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  222. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  223. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  224. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  225. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  226. package/artifacts/contracts/{components/Component.sol/Component.json → shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json} +194 -215
  227. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  228. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  229. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  230. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
  231. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  232. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  233. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  234. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +12 -70
  235. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  236. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  237. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  238. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +18 -106
  239. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  240. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  241. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  242. package/artifacts/contracts/shared/Service.sol/Service.json +88 -113
  243. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  244. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +382 -9
  245. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  246. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  247. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  248. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  249. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  250. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  251. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  252. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  253. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  254. package/artifacts/contracts/staking/Staking.sol/Staking.json +1828 -0
  255. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  256. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  257. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  258. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +750 -0
  259. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  260. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  261. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  262. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1236 -0
  263. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  264. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +698 -0
  265. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  266. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  267. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  268. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  269. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  270. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  271. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  272. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  273. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  274. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  275. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  276. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  277. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  278. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  279. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  280. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  281. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  282. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  283. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  284. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  285. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  286. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  287. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  288. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  289. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  290. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  291. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  292. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  293. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  294. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  295. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  296. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +142 -0
  297. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  298. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  299. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  300. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  301. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  302. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  303. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  305. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  306. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  307. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  308. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  309. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  310. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  311. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  312. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  313. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  314. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  315. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  316. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  317. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  318. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  319. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  320. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  321. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  322. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +586 -0
  323. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  324. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  325. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  326. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  327. package/contracts/authorization/AccessAdmin.sol +592 -0
  328. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  329. package/contracts/authorization/Authorization.sol +217 -0
  330. package/contracts/authorization/IAccess.sol +48 -0
  331. package/contracts/authorization/IAccessAdmin.sol +135 -0
  332. package/contracts/authorization/IAuthorization.sol +54 -0
  333. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  334. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  335. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  336. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  337. package/contracts/distribution/BasicDistribution.sol +138 -0
  338. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  339. package/contracts/{components → distribution}/Distribution.sol +178 -163
  340. package/contracts/distribution/DistributionService.sol +336 -0
  341. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  342. package/contracts/distribution/IDistributionComponent.sol +52 -0
  343. package/contracts/{instance/service → distribution}/IDistributionService.sol +41 -38
  344. package/contracts/examples/fire/FirePool.sol +75 -0
  345. package/contracts/examples/fire/FirePoolAuthorization.sol +34 -0
  346. package/contracts/examples/fire/FireProduct.sol +324 -0
  347. package/contracts/examples/fire/FireProductAuthorization.sol +35 -0
  348. package/contracts/examples/fire/FireUSD.sol +26 -0
  349. package/contracts/examples/unpermissioned/SimpleDistribution.sol +50 -0
  350. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  351. package/contracts/examples/unpermissioned/SimplePool.sol +76 -0
  352. package/contracts/examples/unpermissioned/SimpleProduct.sol +351 -0
  353. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
  354. package/contracts/instance/IInstance.sol +43 -73
  355. package/contracts/instance/IInstanceService.sol +56 -24
  356. package/contracts/instance/Instance.sol +160 -226
  357. package/contracts/instance/InstanceAdmin.sol +285 -0
  358. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  359. package/contracts/instance/InstanceReader.sol +201 -65
  360. package/contracts/instance/InstanceService.sol +333 -356
  361. package/contracts/instance/InstanceServiceManager.sol +14 -29
  362. package/contracts/instance/InstanceStore.sol +287 -0
  363. package/contracts/instance/base/BalanceStore.sol +123 -0
  364. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  365. package/contracts/instance/base/ObjectCounter.sol +21 -0
  366. package/contracts/instance/base/ObjectLifecycle.sol +111 -0
  367. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +19 -24
  368. package/contracts/instance/module/IAccess.sol +19 -20
  369. package/contracts/instance/module/IBundle.sol +8 -9
  370. package/contracts/instance/module/IComponents.sol +20 -9
  371. package/contracts/instance/module/IDistribution.sol +6 -6
  372. package/contracts/instance/module/IPolicy.sol +47 -35
  373. package/contracts/instance/module/IRisk.sol +1 -1
  374. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  375. package/contracts/oracle/BasicOracle.sol +48 -0
  376. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  377. package/contracts/oracle/IOracle.sol +36 -0
  378. package/contracts/oracle/IOracleComponent.sol +33 -0
  379. package/contracts/oracle/IOracleService.sol +65 -0
  380. package/contracts/oracle/Oracle.sol +167 -0
  381. package/contracts/oracle/OracleService.sol +281 -0
  382. package/contracts/oracle/OracleServiceManager.sol +39 -0
  383. package/contracts/pool/BasicPool.sol +166 -0
  384. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  385. package/contracts/pool/BundleService.sol +438 -0
  386. package/contracts/pool/BundleServiceManager.sol +39 -0
  387. package/contracts/pool/IBundleService.sol +134 -0
  388. package/contracts/pool/IPoolComponent.sol +58 -0
  389. package/contracts/pool/IPoolService.sol +160 -0
  390. package/contracts/pool/Pool.sol +326 -0
  391. package/contracts/pool/PoolService.sol +508 -0
  392. package/contracts/pool/PoolServiceManager.sol +39 -0
  393. package/contracts/product/ApplicationService.sol +247 -0
  394. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  395. package/contracts/product/BasicProduct.sol +53 -0
  396. package/contracts/product/BasicProductAuthorization.sol +43 -0
  397. package/contracts/product/ClaimService.sol +546 -0
  398. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  399. package/contracts/{instance/service → product}/IApplicationService.sol +16 -35
  400. package/contracts/product/IClaimService.sol +122 -0
  401. package/contracts/product/IPolicyService.sol +77 -0
  402. package/contracts/product/IPricingService.sol +39 -0
  403. package/contracts/product/IProductComponent.sol +39 -0
  404. package/contracts/product/IRiskService.sol +33 -0
  405. package/contracts/product/PolicyService.sol +651 -0
  406. package/contracts/product/PolicyServiceManager.sol +39 -0
  407. package/contracts/product/PricingService.sol +300 -0
  408. package/contracts/product/PricingServiceManager.sol +39 -0
  409. package/contracts/product/Product.sol +425 -0
  410. package/contracts/product/RiskService.sol +96 -0
  411. package/contracts/product/RiskServiceManager.sol +39 -0
  412. package/contracts/registry/ChainNft.sol +80 -32
  413. package/contracts/registry/IRegistry.sol +94 -25
  414. package/contracts/registry/IRegistryService.sol +44 -42
  415. package/contracts/registry/ITransferInterceptor.sol +1 -0
  416. package/contracts/registry/Registry.sol +439 -201
  417. package/contracts/registry/RegistryAdmin.sol +464 -0
  418. package/contracts/registry/RegistryService.sol +70 -101
  419. package/contracts/registry/RegistryServiceManager.sol +23 -32
  420. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  421. package/contracts/registry/ReleaseRegistry.sol +491 -0
  422. package/contracts/registry/ServiceAuthorizationV3.sol +199 -0
  423. package/contracts/registry/TokenRegistry.sol +261 -62
  424. package/contracts/shared/Component.sol +268 -0
  425. package/contracts/shared/ComponentService.sol +641 -0
  426. package/contracts/shared/ComponentServiceManager.sol +38 -0
  427. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  428. package/contracts/shared/ContractLib.sol +38 -0
  429. package/contracts/shared/IComponent.sol +70 -0
  430. package/contracts/shared/IComponentService.sol +108 -0
  431. package/contracts/shared/IInstanceLinkedComponent.sol +49 -0
  432. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  433. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  434. package/contracts/shared/INftOwnable.sol +2 -2
  435. package/contracts/shared/IPolicyHolder.sol +23 -14
  436. package/contracts/shared/IRegistryLinked.sol +0 -1
  437. package/contracts/shared/IService.sol +15 -8
  438. package/contracts/shared/InitializableCustom.sol +177 -0
  439. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +4 -4
  440. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  441. package/contracts/shared/KeyValueStore.sol +131 -0
  442. package/contracts/shared/Lifecycle.sol +77 -0
  443. package/contracts/shared/NftIdSet.sol +65 -0
  444. package/contracts/shared/NftOwnable.sol +10 -23
  445. package/contracts/shared/PolicyHolder.sol +19 -42
  446. package/contracts/shared/Registerable.sol +17 -16
  447. package/contracts/shared/RegistryLinked.sol +3 -7
  448. package/contracts/shared/Service.sol +56 -27
  449. package/contracts/shared/TokenHandler.sol +115 -9
  450. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  451. package/contracts/staking/IStaking.sol +168 -0
  452. package/contracts/staking/IStakingService.sol +160 -0
  453. package/contracts/staking/StakeManagerLib.sol +224 -0
  454. package/contracts/staking/Staking.sol +498 -0
  455. package/contracts/staking/StakingLifecycle.sol +23 -0
  456. package/contracts/staking/StakingManager.sol +52 -0
  457. package/contracts/staking/StakingReader.sol +183 -0
  458. package/contracts/staking/StakingService.sol +407 -0
  459. package/contracts/staking/StakingServiceManager.sol +44 -0
  460. package/contracts/staking/StakingStore.sol +605 -0
  461. package/contracts/staking/TargetManagerLib.sol +211 -0
  462. package/contracts/{types → type}/AddressSet.sol +1 -1
  463. package/contracts/type/Amount.sol +135 -0
  464. package/contracts/{types → type}/Blocknumber.sol +26 -3
  465. package/contracts/{types → type}/ClaimId.sol +25 -2
  466. package/contracts/{types → type}/Fee.sol +33 -24
  467. package/contracts/{types → type}/NftId.sol +15 -16
  468. package/contracts/{types → type}/NftIdSet.sol +2 -2
  469. package/contracts/type/ObjectType.sol +275 -0
  470. package/contracts/{types → type}/PayoutId.sol +33 -5
  471. package/contracts/{types → type}/Referral.sol +2 -1
  472. package/contracts/type/RequestId.sol +75 -0
  473. package/contracts/{types → type}/RiskId.sol +16 -2
  474. package/contracts/type/RoleId.sol +174 -0
  475. package/contracts/type/Seconds.sol +101 -0
  476. package/contracts/type/Selector.sol +102 -0
  477. package/contracts/{types → type}/StateId.sol +34 -4
  478. package/contracts/type/String.sol +53 -0
  479. package/contracts/{types → type}/Timestamp.sol +21 -2
  480. package/contracts/{types → type}/UFixed.sol +34 -9
  481. package/contracts/{types → type}/Version.sol +4 -2
  482. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  483. package/contracts/{shared → upgradeability}/ProxyManager.sol +92 -30
  484. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  485. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  486. package/package.json +8 -5
  487. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  488. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  489. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  490. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  491. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  492. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  493. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  494. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  495. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  496. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -783
  497. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  498. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  499. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
  500. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  501. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  502. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  503. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  504. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  505. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  506. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  507. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  508. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  509. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  511. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  512. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  513. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -968
  514. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  515. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
  516. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  517. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1093
  518. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  519. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
  520. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  521. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
  522. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  523. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
  524. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  525. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1724
  526. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  527. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -801
  528. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  529. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  530. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  531. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -409
  532. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  533. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  534. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  535. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  537. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1021
  538. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
  540. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -816
  542. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  543. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -653
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  545. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
  546. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  547. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
  548. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  549. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  550. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  551. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  552. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  553. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  554. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  555. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  556. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  557. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  558. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  559. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  560. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  561. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  563. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  564. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  565. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  566. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  567. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  568. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  569. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -521
  570. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  571. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  572. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  573. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  574. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  575. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  576. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  577. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  578. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  579. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  580. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  581. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  582. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  583. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  584. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  585. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  586. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  588. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  590. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  591. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  592. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  593. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  594. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  595. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  596. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  597. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  598. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  599. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  600. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  601. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  602. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  603. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  604. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  605. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  606. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  607. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  608. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  609. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  610. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  611. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  613. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  614. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  615. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  617. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  619. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  621. package/contracts/components/Component.sol +0 -241
  622. package/contracts/components/IComponent.sol +0 -74
  623. package/contracts/components/IDistributionComponent.sol +0 -71
  624. package/contracts/components/IPoolComponent.sol +0 -113
  625. package/contracts/components/IProductComponent.sol +0 -40
  626. package/contracts/components/Pool.sol +0 -299
  627. package/contracts/components/Product.sol +0 -293
  628. package/contracts/instance/InstanceAccessManager.sol +0 -297
  629. package/contracts/instance/base/ComponentService.sol +0 -134
  630. package/contracts/instance/base/KeyValueStore.sol +0 -175
  631. package/contracts/instance/base/Lifecycle.sol +0 -109
  632. package/contracts/instance/module/ISetup.sol +0 -33
  633. package/contracts/instance/module/ITreasury.sol +0 -23
  634. package/contracts/instance/service/ApplicationService.sol +0 -350
  635. package/contracts/instance/service/BundleService.sol +0 -336
  636. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  637. package/contracts/instance/service/ClaimService.sol +0 -151
  638. package/contracts/instance/service/DistributionService.sol +0 -450
  639. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  640. package/contracts/instance/service/IBundleService.sol +0 -62
  641. package/contracts/instance/service/IClaimService.sol +0 -61
  642. package/contracts/instance/service/IPolicyService.sol +0 -72
  643. package/contracts/instance/service/IPoolService.sol +0 -35
  644. package/contracts/instance/service/IProductService.sol +0 -40
  645. package/contracts/instance/service/PolicyService.sol +0 -403
  646. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  647. package/contracts/instance/service/PoolService.sol +0 -163
  648. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  649. package/contracts/instance/service/ProductService.sol +0 -233
  650. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  651. package/contracts/registry/RegistryAccessManager.sol +0 -216
  652. package/contracts/registry/ReleaseManager.sol +0 -322
  653. package/contracts/shared/ContractDeployerLib.sol +0 -72
  654. package/contracts/test/TestFee.sol +0 -25
  655. package/contracts/test/TestRegisterable.sol +0 -18
  656. package/contracts/test/TestRoleId.sol +0 -14
  657. package/contracts/test/TestService.sol +0 -25
  658. package/contracts/test/TestToken.sol +0 -26
  659. package/contracts/test/TestVersion.sol +0 -44
  660. package/contracts/test/TestVersionable.sol +0 -17
  661. package/contracts/types/ChainId.sol +0 -38
  662. package/contracts/types/NumberId.sol +0 -52
  663. package/contracts/types/ObjectType.sol +0 -157
  664. package/contracts/types/RoleId.sol +0 -95
  665. package/contracts/types/Seconds.sol +0 -54
  666. /package/contracts/{types → type}/DistributorType.sol +0 -0
  667. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -0,0 +1,1828 @@
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
+ "name": "ErrorComponentNameLengthZero",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [
51
+ {
52
+ "internalType": "address",
53
+ "name": "caller",
54
+ "type": "address"
55
+ }
56
+ ],
57
+ "name": "ErrorComponentNotChainNft",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [],
62
+ "name": "ErrorComponentTokenAddressZero",
63
+ "type": "error"
64
+ },
65
+ {
66
+ "inputs": [],
67
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
68
+ "type": "error"
69
+ },
70
+ {
71
+ "inputs": [],
72
+ "name": "ErrorComponentWalletAddressZero",
73
+ "type": "error"
74
+ },
75
+ {
76
+ "inputs": [],
77
+ "name": "ErrorComponentWalletNotComponent",
78
+ "type": "error"
79
+ },
80
+ {
81
+ "inputs": [
82
+ {
83
+ "internalType": "NftId",
84
+ "name": "nftId",
85
+ "type": "uint96"
86
+ }
87
+ ],
88
+ "name": "ErrorNftOwnableAlreadyLinked",
89
+ "type": "error"
90
+ },
91
+ {
92
+ "inputs": [
93
+ {
94
+ "internalType": "address",
95
+ "name": "contractAddress",
96
+ "type": "address"
97
+ }
98
+ ],
99
+ "name": "ErrorNftOwnableContractNotRegistered",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [],
104
+ "name": "ErrorNftOwnableInitialOwnerZero",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "address",
111
+ "name": "account",
112
+ "type": "address"
113
+ }
114
+ ],
115
+ "name": "ErrorNftOwnableNotOwner",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [
120
+ {
121
+ "internalType": "address",
122
+ "name": "registryAddress",
123
+ "type": "address"
124
+ }
125
+ ],
126
+ "name": "ErrorNotRegistry",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [
131
+ {
132
+ "internalType": "address",
133
+ "name": "owner",
134
+ "type": "address"
135
+ },
136
+ {
137
+ "internalType": "address",
138
+ "name": "tokenHandler",
139
+ "type": "address"
140
+ },
141
+ {
142
+ "internalType": "uint256",
143
+ "name": "amount",
144
+ "type": "uint256"
145
+ },
146
+ {
147
+ "internalType": "uint256",
148
+ "name": "dipAllowance",
149
+ "type": "uint256"
150
+ }
151
+ ],
152
+ "name": "ErrorStakingDipAllowanceInsufficient",
153
+ "type": "error"
154
+ },
155
+ {
156
+ "inputs": [
157
+ {
158
+ "internalType": "address",
159
+ "name": "owner",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "internalType": "uint256",
164
+ "name": "amount",
165
+ "type": "uint256"
166
+ },
167
+ {
168
+ "internalType": "uint256",
169
+ "name": "dipBalance",
170
+ "type": "uint256"
171
+ }
172
+ ],
173
+ "name": "ErrorStakingDipBalanceInsufficient",
174
+ "type": "error"
175
+ },
176
+ {
177
+ "inputs": [
178
+ {
179
+ "internalType": "NftId",
180
+ "name": "targetNftId",
181
+ "type": "uint96"
182
+ },
183
+ {
184
+ "internalType": "Seconds",
185
+ "name": "maxLockingPeriod",
186
+ "type": "uint40"
187
+ },
188
+ {
189
+ "internalType": "Seconds",
190
+ "name": "lockingPeriod",
191
+ "type": "uint40"
192
+ }
193
+ ],
194
+ "name": "ErrorStakingLockingPeriodTooLong",
195
+ "type": "error"
196
+ },
197
+ {
198
+ "inputs": [
199
+ {
200
+ "internalType": "NftId",
201
+ "name": "targetNftId",
202
+ "type": "uint96"
203
+ },
204
+ {
205
+ "internalType": "Seconds",
206
+ "name": "minLockingPeriod",
207
+ "type": "uint40"
208
+ },
209
+ {
210
+ "internalType": "Seconds",
211
+ "name": "lockingPeriod",
212
+ "type": "uint40"
213
+ }
214
+ ],
215
+ "name": "ErrorStakingLockingPeriodTooShort",
216
+ "type": "error"
217
+ },
218
+ {
219
+ "inputs": [
220
+ {
221
+ "internalType": "NftId",
222
+ "name": "nftId",
223
+ "type": "uint96"
224
+ }
225
+ ],
226
+ "name": "ErrorStakingNotNftOwner",
227
+ "type": "error"
228
+ },
229
+ {
230
+ "inputs": [
231
+ {
232
+ "internalType": "NftId",
233
+ "name": "stakeNftId",
234
+ "type": "uint96"
235
+ }
236
+ ],
237
+ "name": "ErrorStakingNotStake",
238
+ "type": "error"
239
+ },
240
+ {
241
+ "inputs": [],
242
+ "name": "ErrorStakingNotStakingOwner",
243
+ "type": "error"
244
+ },
245
+ {
246
+ "inputs": [
247
+ {
248
+ "internalType": "NftId",
249
+ "name": "targetNftId",
250
+ "type": "uint96"
251
+ }
252
+ ],
253
+ "name": "ErrorStakingNotTarget",
254
+ "type": "error"
255
+ },
256
+ {
257
+ "inputs": [
258
+ {
259
+ "internalType": "NftId",
260
+ "name": "targetNftId",
261
+ "type": "uint96"
262
+ },
263
+ {
264
+ "internalType": "UFixed",
265
+ "name": "maxRewardRate",
266
+ "type": "uint256"
267
+ },
268
+ {
269
+ "internalType": "UFixed",
270
+ "name": "rewardRate",
271
+ "type": "uint256"
272
+ }
273
+ ],
274
+ "name": "ErrorStakingRewardRateTooHigh",
275
+ "type": "error"
276
+ },
277
+ {
278
+ "inputs": [
279
+ {
280
+ "internalType": "NftId",
281
+ "name": "targetNftId",
282
+ "type": "uint96"
283
+ }
284
+ ],
285
+ "name": "ErrorStakingStakeAmountZero",
286
+ "type": "error"
287
+ },
288
+ {
289
+ "inputs": [
290
+ {
291
+ "internalType": "NftId",
292
+ "name": "stakeNftId",
293
+ "type": "uint96"
294
+ },
295
+ {
296
+ "internalType": "Timestamp",
297
+ "name": "lockedUntil",
298
+ "type": "uint40"
299
+ }
300
+ ],
301
+ "name": "ErrorStakingStakeLocked",
302
+ "type": "error"
303
+ },
304
+ {
305
+ "inputs": [
306
+ {
307
+ "internalType": "address",
308
+ "name": "stakingByStakingReader",
309
+ "type": "address"
310
+ }
311
+ ],
312
+ "name": "ErrorStakingStakingReaderStakingMismatch",
313
+ "type": "error"
314
+ },
315
+ {
316
+ "inputs": [
317
+ {
318
+ "internalType": "NftId",
319
+ "name": "targetNftId",
320
+ "type": "uint96"
321
+ }
322
+ ],
323
+ "name": "ErrorStakingTargetAlreadyRegistered",
324
+ "type": "error"
325
+ },
326
+ {
327
+ "inputs": [],
328
+ "name": "ErrorStakingTargetNftIdZero",
329
+ "type": "error"
330
+ },
331
+ {
332
+ "inputs": [
333
+ {
334
+ "internalType": "NftId",
335
+ "name": "targetNftId",
336
+ "type": "uint96"
337
+ }
338
+ ],
339
+ "name": "ErrorStakingTargetNotActive",
340
+ "type": "error"
341
+ },
342
+ {
343
+ "inputs": [
344
+ {
345
+ "internalType": "NftId",
346
+ "name": "targetNftId",
347
+ "type": "uint96"
348
+ }
349
+ ],
350
+ "name": "ErrorStakingTargetNotFound",
351
+ "type": "error"
352
+ },
353
+ {
354
+ "inputs": [
355
+ {
356
+ "internalType": "NftId",
357
+ "name": "targetNftId",
358
+ "type": "uint96"
359
+ },
360
+ {
361
+ "internalType": "uint256",
362
+ "name": "chainId",
363
+ "type": "uint256"
364
+ },
365
+ {
366
+ "internalType": "address",
367
+ "name": "token",
368
+ "type": "address"
369
+ }
370
+ ],
371
+ "name": "ErrorStakingTargetTokenNotFound",
372
+ "type": "error"
373
+ },
374
+ {
375
+ "inputs": [
376
+ {
377
+ "internalType": "NftId",
378
+ "name": "targetNftId",
379
+ "type": "uint96"
380
+ },
381
+ {
382
+ "internalType": "ObjectType",
383
+ "name": "objectType",
384
+ "type": "uint8"
385
+ }
386
+ ],
387
+ "name": "ErrorStakingTargetTypeNotSupported",
388
+ "type": "error"
389
+ },
390
+ {
391
+ "inputs": [
392
+ {
393
+ "internalType": "NftId",
394
+ "name": "targetNftId",
395
+ "type": "uint96"
396
+ },
397
+ {
398
+ "internalType": "ObjectType",
399
+ "name": "expectedObjectType",
400
+ "type": "uint8"
401
+ },
402
+ {
403
+ "internalType": "ObjectType",
404
+ "name": "actualObjectType",
405
+ "type": "uint8"
406
+ }
407
+ ],
408
+ "name": "ErrorStakingTargetUnexpectedObjectType",
409
+ "type": "error"
410
+ },
411
+ {
412
+ "inputs": [
413
+ {
414
+ "internalType": "uint256",
415
+ "name": "chainId",
416
+ "type": "uint256"
417
+ },
418
+ {
419
+ "internalType": "address",
420
+ "name": "token",
421
+ "type": "address"
422
+ }
423
+ ],
424
+ "name": "ErrorStakingTokenNotRegistered",
425
+ "type": "error"
426
+ },
427
+ {
428
+ "inputs": [],
429
+ "name": "InvalidInitialization",
430
+ "type": "error"
431
+ },
432
+ {
433
+ "inputs": [],
434
+ "name": "NotInitializing",
435
+ "type": "error"
436
+ },
437
+ {
438
+ "anonymous": false,
439
+ "inputs": [
440
+ {
441
+ "indexed": false,
442
+ "internalType": "address",
443
+ "name": "authority",
444
+ "type": "address"
445
+ }
446
+ ],
447
+ "name": "AuthorityUpdated",
448
+ "type": "event"
449
+ },
450
+ {
451
+ "anonymous": false,
452
+ "inputs": [
453
+ {
454
+ "indexed": false,
455
+ "internalType": "uint64",
456
+ "name": "version",
457
+ "type": "uint64"
458
+ }
459
+ ],
460
+ "name": "Initialized",
461
+ "type": "event"
462
+ },
463
+ {
464
+ "anonymous": false,
465
+ "inputs": [
466
+ {
467
+ "indexed": false,
468
+ "internalType": "address",
469
+ "name": "token",
470
+ "type": "address"
471
+ },
472
+ {
473
+ "indexed": false,
474
+ "internalType": "Amount",
475
+ "name": "limit",
476
+ "type": "uint96"
477
+ }
478
+ ],
479
+ "name": "LogComponentTokenHandlerApproved",
480
+ "type": "event"
481
+ },
482
+ {
483
+ "anonymous": false,
484
+ "inputs": [
485
+ {
486
+ "indexed": false,
487
+ "internalType": "address",
488
+ "name": "oldWallet",
489
+ "type": "address"
490
+ },
491
+ {
492
+ "indexed": false,
493
+ "internalType": "address",
494
+ "name": "newWallet",
495
+ "type": "address"
496
+ }
497
+ ],
498
+ "name": "LogComponentWalletAddressChanged",
499
+ "type": "event"
500
+ },
501
+ {
502
+ "anonymous": false,
503
+ "inputs": [
504
+ {
505
+ "indexed": false,
506
+ "internalType": "address",
507
+ "name": "from",
508
+ "type": "address"
509
+ },
510
+ {
511
+ "indexed": false,
512
+ "internalType": "address",
513
+ "name": "to",
514
+ "type": "address"
515
+ },
516
+ {
517
+ "indexed": false,
518
+ "internalType": "uint256",
519
+ "name": "amount",
520
+ "type": "uint256"
521
+ }
522
+ ],
523
+ "name": "LogComponentWalletTokensTransferred",
524
+ "type": "event"
525
+ },
526
+ {
527
+ "anonymous": false,
528
+ "inputs": [
529
+ {
530
+ "indexed": false,
531
+ "internalType": "NftId",
532
+ "name": "targetNftId",
533
+ "type": "uint96"
534
+ },
535
+ {
536
+ "indexed": false,
537
+ "internalType": "Seconds",
538
+ "name": "oldLockingPeriod",
539
+ "type": "uint40"
540
+ },
541
+ {
542
+ "indexed": false,
543
+ "internalType": "Seconds",
544
+ "name": "lockingPeriod",
545
+ "type": "uint40"
546
+ }
547
+ ],
548
+ "name": "LogStakingLockingPeriodSet",
549
+ "type": "event"
550
+ },
551
+ {
552
+ "anonymous": false,
553
+ "inputs": [
554
+ {
555
+ "indexed": false,
556
+ "internalType": "NftId",
557
+ "name": "targetNftId",
558
+ "type": "uint96"
559
+ },
560
+ {
561
+ "indexed": false,
562
+ "internalType": "UFixed",
563
+ "name": "oldRewardRate",
564
+ "type": "uint256"
565
+ },
566
+ {
567
+ "indexed": false,
568
+ "internalType": "UFixed",
569
+ "name": "rewardRate",
570
+ "type": "uint256"
571
+ }
572
+ ],
573
+ "name": "LogStakingRewardRateSet",
574
+ "type": "event"
575
+ },
576
+ {
577
+ "anonymous": false,
578
+ "inputs": [
579
+ {
580
+ "indexed": false,
581
+ "internalType": "uint256",
582
+ "name": "chainId",
583
+ "type": "uint256"
584
+ },
585
+ {
586
+ "indexed": false,
587
+ "internalType": "address",
588
+ "name": "token",
589
+ "type": "address"
590
+ },
591
+ {
592
+ "indexed": false,
593
+ "internalType": "UFixed",
594
+ "name": "oldStakingRate",
595
+ "type": "uint256"
596
+ },
597
+ {
598
+ "indexed": false,
599
+ "internalType": "UFixed",
600
+ "name": "newStakingRate",
601
+ "type": "uint256"
602
+ }
603
+ ],
604
+ "name": "LogStakingStakingRateSet",
605
+ "type": "event"
606
+ },
607
+ {
608
+ "inputs": [],
609
+ "name": "COMPONENT_LOCATION_V1",
610
+ "outputs": [
611
+ {
612
+ "internalType": "bytes32",
613
+ "name": "",
614
+ "type": "bytes32"
615
+ }
616
+ ],
617
+ "stateMutability": "view",
618
+ "type": "function"
619
+ },
620
+ {
621
+ "inputs": [],
622
+ "name": "CONTRACT_NAME",
623
+ "outputs": [
624
+ {
625
+ "internalType": "string",
626
+ "name": "",
627
+ "type": "string"
628
+ }
629
+ ],
630
+ "stateMutability": "view",
631
+ "type": "function"
632
+ },
633
+ {
634
+ "inputs": [],
635
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
636
+ "outputs": [
637
+ {
638
+ "internalType": "bytes32",
639
+ "name": "",
640
+ "type": "bytes32"
641
+ }
642
+ ],
643
+ "stateMutability": "view",
644
+ "type": "function"
645
+ },
646
+ {
647
+ "inputs": [],
648
+ "name": "REGISTERABLE_LOCATION_V1",
649
+ "outputs": [
650
+ {
651
+ "internalType": "bytes32",
652
+ "name": "",
653
+ "type": "bytes32"
654
+ }
655
+ ],
656
+ "stateMutability": "view",
657
+ "type": "function"
658
+ },
659
+ {
660
+ "inputs": [],
661
+ "name": "STAKING_LOCATION_V1",
662
+ "outputs": [
663
+ {
664
+ "internalType": "bytes32",
665
+ "name": "",
666
+ "type": "bytes32"
667
+ }
668
+ ],
669
+ "stateMutability": "view",
670
+ "type": "function"
671
+ },
672
+ {
673
+ "inputs": [
674
+ {
675
+ "internalType": "address",
676
+ "name": "token",
677
+ "type": "address"
678
+ },
679
+ {
680
+ "internalType": "Amount",
681
+ "name": "spendingLimitAmount",
682
+ "type": "uint96"
683
+ }
684
+ ],
685
+ "name": "approveTokenHandler",
686
+ "outputs": [],
687
+ "stateMutability": "nonpayable",
688
+ "type": "function"
689
+ },
690
+ {
691
+ "inputs": [
692
+ {
693
+ "internalType": "Amount",
694
+ "name": "spendingLimitAmount",
695
+ "type": "uint96"
696
+ }
697
+ ],
698
+ "name": "approveTokenHandler",
699
+ "outputs": [],
700
+ "stateMutability": "nonpayable",
701
+ "type": "function"
702
+ },
703
+ {
704
+ "inputs": [],
705
+ "name": "authority",
706
+ "outputs": [
707
+ {
708
+ "internalType": "address",
709
+ "name": "",
710
+ "type": "address"
711
+ }
712
+ ],
713
+ "stateMutability": "view",
714
+ "type": "function"
715
+ },
716
+ {
717
+ "inputs": [
718
+ {
719
+ "internalType": "NftId",
720
+ "name": "stakeNftId",
721
+ "type": "uint96"
722
+ }
723
+ ],
724
+ "name": "claimRewards",
725
+ "outputs": [
726
+ {
727
+ "internalType": "Amount",
728
+ "name": "rewardsClaimedAmount",
729
+ "type": "uint96"
730
+ }
731
+ ],
732
+ "stateMutability": "nonpayable",
733
+ "type": "function"
734
+ },
735
+ {
736
+ "inputs": [
737
+ {
738
+ "internalType": "address",
739
+ "name": "from",
740
+ "type": "address"
741
+ },
742
+ {
743
+ "internalType": "Amount",
744
+ "name": "dipAmount",
745
+ "type": "uint96"
746
+ }
747
+ ],
748
+ "name": "collectDipAmount",
749
+ "outputs": [],
750
+ "stateMutability": "nonpayable",
751
+ "type": "function"
752
+ },
753
+ {
754
+ "inputs": [
755
+ {
756
+ "internalType": "NftId",
757
+ "name": "stakeNftId",
758
+ "type": "uint96"
759
+ },
760
+ {
761
+ "internalType": "NftId",
762
+ "name": "targetNftId",
763
+ "type": "uint96"
764
+ },
765
+ {
766
+ "internalType": "Amount",
767
+ "name": "stakeAmount",
768
+ "type": "uint96"
769
+ }
770
+ ],
771
+ "name": "createStake",
772
+ "outputs": [],
773
+ "stateMutability": "nonpayable",
774
+ "type": "function"
775
+ },
776
+ {
777
+ "inputs": [
778
+ {
779
+ "internalType": "NftId",
780
+ "name": "targetNftId",
781
+ "type": "uint96"
782
+ },
783
+ {
784
+ "internalType": "address",
785
+ "name": "token",
786
+ "type": "address"
787
+ },
788
+ {
789
+ "internalType": "Amount",
790
+ "name": "amount",
791
+ "type": "uint96"
792
+ }
793
+ ],
794
+ "name": "decreaseTotalValueLocked",
795
+ "outputs": [
796
+ {
797
+ "internalType": "Amount",
798
+ "name": "newBalance",
799
+ "type": "uint96"
800
+ }
801
+ ],
802
+ "stateMutability": "nonpayable",
803
+ "type": "function"
804
+ },
805
+ {
806
+ "inputs": [],
807
+ "name": "getComponentInfo",
808
+ "outputs": [
809
+ {
810
+ "components": [
811
+ {
812
+ "internalType": "string",
813
+ "name": "name",
814
+ "type": "string"
815
+ },
816
+ {
817
+ "internalType": "NftId",
818
+ "name": "productNftId",
819
+ "type": "uint96"
820
+ },
821
+ {
822
+ "internalType": "contract IERC20Metadata",
823
+ "name": "token",
824
+ "type": "address"
825
+ },
826
+ {
827
+ "internalType": "contract TokenHandler",
828
+ "name": "tokenHandler",
829
+ "type": "address"
830
+ },
831
+ {
832
+ "internalType": "address",
833
+ "name": "wallet",
834
+ "type": "address"
835
+ },
836
+ {
837
+ "internalType": "bytes",
838
+ "name": "data",
839
+ "type": "bytes"
840
+ }
841
+ ],
842
+ "internalType": "struct IComponents.ComponentInfo",
843
+ "name": "info",
844
+ "type": "tuple"
845
+ }
846
+ ],
847
+ "stateMutability": "view",
848
+ "type": "function"
849
+ },
850
+ {
851
+ "inputs": [],
852
+ "name": "getInitialComponentInfo",
853
+ "outputs": [
854
+ {
855
+ "components": [
856
+ {
857
+ "internalType": "string",
858
+ "name": "name",
859
+ "type": "string"
860
+ },
861
+ {
862
+ "internalType": "NftId",
863
+ "name": "productNftId",
864
+ "type": "uint96"
865
+ },
866
+ {
867
+ "internalType": "contract IERC20Metadata",
868
+ "name": "token",
869
+ "type": "address"
870
+ },
871
+ {
872
+ "internalType": "contract TokenHandler",
873
+ "name": "tokenHandler",
874
+ "type": "address"
875
+ },
876
+ {
877
+ "internalType": "address",
878
+ "name": "wallet",
879
+ "type": "address"
880
+ },
881
+ {
882
+ "internalType": "bytes",
883
+ "name": "data",
884
+ "type": "bytes"
885
+ }
886
+ ],
887
+ "internalType": "struct IComponents.ComponentInfo",
888
+ "name": "info",
889
+ "type": "tuple"
890
+ }
891
+ ],
892
+ "stateMutability": "view",
893
+ "type": "function"
894
+ },
895
+ {
896
+ "inputs": [],
897
+ "name": "getInitialInfo",
898
+ "outputs": [
899
+ {
900
+ "components": [
901
+ {
902
+ "internalType": "NftId",
903
+ "name": "nftId",
904
+ "type": "uint96"
905
+ },
906
+ {
907
+ "internalType": "NftId",
908
+ "name": "parentNftId",
909
+ "type": "uint96"
910
+ },
911
+ {
912
+ "internalType": "ObjectType",
913
+ "name": "objectType",
914
+ "type": "uint8"
915
+ },
916
+ {
917
+ "internalType": "bool",
918
+ "name": "isInterceptor",
919
+ "type": "bool"
920
+ },
921
+ {
922
+ "internalType": "address",
923
+ "name": "objectAddress",
924
+ "type": "address"
925
+ },
926
+ {
927
+ "internalType": "address",
928
+ "name": "initialOwner",
929
+ "type": "address"
930
+ },
931
+ {
932
+ "internalType": "bytes",
933
+ "name": "data",
934
+ "type": "bytes"
935
+ }
936
+ ],
937
+ "internalType": "struct IRegistry.ObjectInfo",
938
+ "name": "info",
939
+ "type": "tuple"
940
+ }
941
+ ],
942
+ "stateMutability": "view",
943
+ "type": "function"
944
+ },
945
+ {
946
+ "inputs": [],
947
+ "name": "getName",
948
+ "outputs": [
949
+ {
950
+ "internalType": "string",
951
+ "name": "name",
952
+ "type": "string"
953
+ }
954
+ ],
955
+ "stateMutability": "view",
956
+ "type": "function"
957
+ },
958
+ {
959
+ "inputs": [],
960
+ "name": "getNftId",
961
+ "outputs": [
962
+ {
963
+ "internalType": "NftId",
964
+ "name": "",
965
+ "type": "uint96"
966
+ }
967
+ ],
968
+ "stateMutability": "view",
969
+ "type": "function"
970
+ },
971
+ {
972
+ "inputs": [],
973
+ "name": "getOwner",
974
+ "outputs": [
975
+ {
976
+ "internalType": "address",
977
+ "name": "",
978
+ "type": "address"
979
+ }
980
+ ],
981
+ "stateMutability": "view",
982
+ "type": "function"
983
+ },
984
+ {
985
+ "inputs": [],
986
+ "name": "getRegistry",
987
+ "outputs": [
988
+ {
989
+ "internalType": "contract IRegistry",
990
+ "name": "",
991
+ "type": "address"
992
+ }
993
+ ],
994
+ "stateMutability": "view",
995
+ "type": "function"
996
+ },
997
+ {
998
+ "inputs": [],
999
+ "name": "getStakingReader",
1000
+ "outputs": [
1001
+ {
1002
+ "internalType": "contract StakingReader",
1003
+ "name": "reader",
1004
+ "type": "address"
1005
+ }
1006
+ ],
1007
+ "stateMutability": "view",
1008
+ "type": "function"
1009
+ },
1010
+ {
1011
+ "inputs": [],
1012
+ "name": "getStakingStore",
1013
+ "outputs": [
1014
+ {
1015
+ "internalType": "contract StakingStore",
1016
+ "name": "stakingStore",
1017
+ "type": "address"
1018
+ }
1019
+ ],
1020
+ "stateMutability": "view",
1021
+ "type": "function"
1022
+ },
1023
+ {
1024
+ "inputs": [],
1025
+ "name": "getToken",
1026
+ "outputs": [
1027
+ {
1028
+ "internalType": "contract IERC20Metadata",
1029
+ "name": "token",
1030
+ "type": "address"
1031
+ }
1032
+ ],
1033
+ "stateMutability": "view",
1034
+ "type": "function"
1035
+ },
1036
+ {
1037
+ "inputs": [],
1038
+ "name": "getTokenHandler",
1039
+ "outputs": [
1040
+ {
1041
+ "internalType": "contract TokenHandler",
1042
+ "name": "tokenHandler",
1043
+ "type": "address"
1044
+ }
1045
+ ],
1046
+ "stateMutability": "view",
1047
+ "type": "function"
1048
+ },
1049
+ {
1050
+ "inputs": [],
1051
+ "name": "getTokenRegistryAddress",
1052
+ "outputs": [
1053
+ {
1054
+ "internalType": "address",
1055
+ "name": "tokenRegistry",
1056
+ "type": "address"
1057
+ }
1058
+ ],
1059
+ "stateMutability": "view",
1060
+ "type": "function"
1061
+ },
1062
+ {
1063
+ "inputs": [],
1064
+ "name": "getVersion",
1065
+ "outputs": [
1066
+ {
1067
+ "internalType": "Version",
1068
+ "name": "",
1069
+ "type": "uint24"
1070
+ }
1071
+ ],
1072
+ "stateMutability": "pure",
1073
+ "type": "function"
1074
+ },
1075
+ {
1076
+ "inputs": [],
1077
+ "name": "getWallet",
1078
+ "outputs": [
1079
+ {
1080
+ "internalType": "address",
1081
+ "name": "walletAddress",
1082
+ "type": "address"
1083
+ }
1084
+ ],
1085
+ "stateMutability": "view",
1086
+ "type": "function"
1087
+ },
1088
+ {
1089
+ "inputs": [
1090
+ {
1091
+ "internalType": "NftId",
1092
+ "name": "targetNftId",
1093
+ "type": "uint96"
1094
+ },
1095
+ {
1096
+ "internalType": "address",
1097
+ "name": "token",
1098
+ "type": "address"
1099
+ },
1100
+ {
1101
+ "internalType": "Amount",
1102
+ "name": "amount",
1103
+ "type": "uint96"
1104
+ }
1105
+ ],
1106
+ "name": "increaseTotalValueLocked",
1107
+ "outputs": [
1108
+ {
1109
+ "internalType": "Amount",
1110
+ "name": "newBalance",
1111
+ "type": "uint96"
1112
+ }
1113
+ ],
1114
+ "stateMutability": "nonpayable",
1115
+ "type": "function"
1116
+ },
1117
+ {
1118
+ "inputs": [
1119
+ {
1120
+ "internalType": "address",
1121
+ "name": "activatedBy",
1122
+ "type": "address"
1123
+ },
1124
+ {
1125
+ "internalType": "bytes",
1126
+ "name": "data",
1127
+ "type": "bytes"
1128
+ }
1129
+ ],
1130
+ "name": "initializeVersionable",
1131
+ "outputs": [],
1132
+ "stateMutability": "nonpayable",
1133
+ "type": "function"
1134
+ },
1135
+ {
1136
+ "inputs": [],
1137
+ "name": "isConsumingScheduledOp",
1138
+ "outputs": [
1139
+ {
1140
+ "internalType": "bytes4",
1141
+ "name": "",
1142
+ "type": "bytes4"
1143
+ }
1144
+ ],
1145
+ "stateMutability": "view",
1146
+ "type": "function"
1147
+ },
1148
+ {
1149
+ "inputs": [],
1150
+ "name": "isNftInterceptor",
1151
+ "outputs": [
1152
+ {
1153
+ "internalType": "bool",
1154
+ "name": "isInterceptor",
1155
+ "type": "bool"
1156
+ }
1157
+ ],
1158
+ "stateMutability": "view",
1159
+ "type": "function"
1160
+ },
1161
+ {
1162
+ "inputs": [],
1163
+ "name": "isRegistered",
1164
+ "outputs": [
1165
+ {
1166
+ "internalType": "bool",
1167
+ "name": "",
1168
+ "type": "bool"
1169
+ }
1170
+ ],
1171
+ "stateMutability": "view",
1172
+ "type": "function"
1173
+ },
1174
+ {
1175
+ "inputs": [],
1176
+ "name": "linkToRegisteredNftId",
1177
+ "outputs": [
1178
+ {
1179
+ "internalType": "NftId",
1180
+ "name": "nftId",
1181
+ "type": "uint96"
1182
+ }
1183
+ ],
1184
+ "stateMutability": "nonpayable",
1185
+ "type": "function"
1186
+ },
1187
+ {
1188
+ "inputs": [
1189
+ {
1190
+ "internalType": "address",
1191
+ "name": "to",
1192
+ "type": "address"
1193
+ },
1194
+ {
1195
+ "internalType": "uint256",
1196
+ "name": "tokenId",
1197
+ "type": "uint256"
1198
+ }
1199
+ ],
1200
+ "name": "nftMint",
1201
+ "outputs": [],
1202
+ "stateMutability": "nonpayable",
1203
+ "type": "function"
1204
+ },
1205
+ {
1206
+ "inputs": [
1207
+ {
1208
+ "internalType": "address",
1209
+ "name": "from",
1210
+ "type": "address"
1211
+ },
1212
+ {
1213
+ "internalType": "address",
1214
+ "name": "to",
1215
+ "type": "address"
1216
+ },
1217
+ {
1218
+ "internalType": "uint256",
1219
+ "name": "tokenId",
1220
+ "type": "uint256"
1221
+ }
1222
+ ],
1223
+ "name": "nftTransferFrom",
1224
+ "outputs": [],
1225
+ "stateMutability": "nonpayable",
1226
+ "type": "function"
1227
+ },
1228
+ {
1229
+ "inputs": [
1230
+ {
1231
+ "internalType": "NftId",
1232
+ "name": "targetNftId",
1233
+ "type": "uint96"
1234
+ },
1235
+ {
1236
+ "internalType": "Amount",
1237
+ "name": "dipAmount",
1238
+ "type": "uint96"
1239
+ }
1240
+ ],
1241
+ "name": "refillRewardReserves",
1242
+ "outputs": [
1243
+ {
1244
+ "internalType": "Amount",
1245
+ "name": "newBalance",
1246
+ "type": "uint96"
1247
+ }
1248
+ ],
1249
+ "stateMutability": "nonpayable",
1250
+ "type": "function"
1251
+ },
1252
+ {
1253
+ "inputs": [
1254
+ {
1255
+ "internalType": "NftId",
1256
+ "name": "targetNftId",
1257
+ "type": "uint96"
1258
+ },
1259
+ {
1260
+ "components": [
1261
+ {
1262
+ "internalType": "ObjectType",
1263
+ "name": "objectType",
1264
+ "type": "uint8"
1265
+ },
1266
+ {
1267
+ "internalType": "uint256",
1268
+ "name": "chainId",
1269
+ "type": "uint256"
1270
+ },
1271
+ {
1272
+ "internalType": "Seconds",
1273
+ "name": "lockingPeriod",
1274
+ "type": "uint40"
1275
+ },
1276
+ {
1277
+ "internalType": "UFixed",
1278
+ "name": "rewardRate",
1279
+ "type": "uint256"
1280
+ }
1281
+ ],
1282
+ "internalType": "struct IStaking.TargetInfo",
1283
+ "name": "targetInfo",
1284
+ "type": "tuple"
1285
+ }
1286
+ ],
1287
+ "name": "registerRemoteTarget",
1288
+ "outputs": [],
1289
+ "stateMutability": "nonpayable",
1290
+ "type": "function"
1291
+ },
1292
+ {
1293
+ "inputs": [
1294
+ {
1295
+ "internalType": "NftId",
1296
+ "name": "targetNftId",
1297
+ "type": "uint96"
1298
+ },
1299
+ {
1300
+ "internalType": "ObjectType",
1301
+ "name": "expectedObjectType",
1302
+ "type": "uint8"
1303
+ },
1304
+ {
1305
+ "internalType": "uint256",
1306
+ "name": "chainId",
1307
+ "type": "uint256"
1308
+ },
1309
+ {
1310
+ "internalType": "Seconds",
1311
+ "name": "initialLockingPeriod",
1312
+ "type": "uint40"
1313
+ },
1314
+ {
1315
+ "internalType": "UFixed",
1316
+ "name": "initialRewardRate",
1317
+ "type": "uint256"
1318
+ }
1319
+ ],
1320
+ "name": "registerTarget",
1321
+ "outputs": [],
1322
+ "stateMutability": "nonpayable",
1323
+ "type": "function"
1324
+ },
1325
+ {
1326
+ "inputs": [
1327
+ {
1328
+ "internalType": "NftId",
1329
+ "name": "stakeNftId",
1330
+ "type": "uint96"
1331
+ },
1332
+ {
1333
+ "internalType": "NftId",
1334
+ "name": "newTargetNftId",
1335
+ "type": "uint96"
1336
+ }
1337
+ ],
1338
+ "name": "restake",
1339
+ "outputs": [
1340
+ {
1341
+ "internalType": "NftId",
1342
+ "name": "newStakeNftId",
1343
+ "type": "uint96"
1344
+ }
1345
+ ],
1346
+ "stateMutability": "nonpayable",
1347
+ "type": "function"
1348
+ },
1349
+ {
1350
+ "inputs": [
1351
+ {
1352
+ "internalType": "address",
1353
+ "name": "newAuthority",
1354
+ "type": "address"
1355
+ }
1356
+ ],
1357
+ "name": "setAuthority",
1358
+ "outputs": [],
1359
+ "stateMutability": "nonpayable",
1360
+ "type": "function"
1361
+ },
1362
+ {
1363
+ "inputs": [
1364
+ {
1365
+ "internalType": "NftId",
1366
+ "name": "targetNftId",
1367
+ "type": "uint96"
1368
+ },
1369
+ {
1370
+ "internalType": "Seconds",
1371
+ "name": "lockingPeriod",
1372
+ "type": "uint40"
1373
+ }
1374
+ ],
1375
+ "name": "setLockingPeriod",
1376
+ "outputs": [],
1377
+ "stateMutability": "nonpayable",
1378
+ "type": "function"
1379
+ },
1380
+ {
1381
+ "inputs": [
1382
+ {
1383
+ "internalType": "NftId",
1384
+ "name": "targetNftId",
1385
+ "type": "uint96"
1386
+ },
1387
+ {
1388
+ "internalType": "UFixed",
1389
+ "name": "rewardRate",
1390
+ "type": "uint256"
1391
+ }
1392
+ ],
1393
+ "name": "setRewardRate",
1394
+ "outputs": [],
1395
+ "stateMutability": "nonpayable",
1396
+ "type": "function"
1397
+ },
1398
+ {
1399
+ "inputs": [
1400
+ {
1401
+ "internalType": "uint256",
1402
+ "name": "chainId",
1403
+ "type": "uint256"
1404
+ },
1405
+ {
1406
+ "internalType": "address",
1407
+ "name": "token",
1408
+ "type": "address"
1409
+ },
1410
+ {
1411
+ "internalType": "UFixed",
1412
+ "name": "stakingRate",
1413
+ "type": "uint256"
1414
+ }
1415
+ ],
1416
+ "name": "setStakingRate",
1417
+ "outputs": [],
1418
+ "stateMutability": "nonpayable",
1419
+ "type": "function"
1420
+ },
1421
+ {
1422
+ "inputs": [
1423
+ {
1424
+ "internalType": "contract StakingReader",
1425
+ "name": "stakingReader",
1426
+ "type": "address"
1427
+ }
1428
+ ],
1429
+ "name": "setStakingReader",
1430
+ "outputs": [],
1431
+ "stateMutability": "nonpayable",
1432
+ "type": "function"
1433
+ },
1434
+ {
1435
+ "inputs": [
1436
+ {
1437
+ "internalType": "address",
1438
+ "name": "newWallet",
1439
+ "type": "address"
1440
+ }
1441
+ ],
1442
+ "name": "setWallet",
1443
+ "outputs": [],
1444
+ "stateMutability": "nonpayable",
1445
+ "type": "function"
1446
+ },
1447
+ {
1448
+ "inputs": [
1449
+ {
1450
+ "internalType": "NftId",
1451
+ "name": "stakeNftId",
1452
+ "type": "uint96"
1453
+ },
1454
+ {
1455
+ "internalType": "Amount",
1456
+ "name": "stakeAmount",
1457
+ "type": "uint96"
1458
+ }
1459
+ ],
1460
+ "name": "stake",
1461
+ "outputs": [
1462
+ {
1463
+ "internalType": "Amount",
1464
+ "name": "stakeBalance",
1465
+ "type": "uint96"
1466
+ }
1467
+ ],
1468
+ "stateMutability": "nonpayable",
1469
+ "type": "function"
1470
+ },
1471
+ {
1472
+ "inputs": [
1473
+ {
1474
+ "internalType": "bytes4",
1475
+ "name": "interfaceId",
1476
+ "type": "bytes4"
1477
+ }
1478
+ ],
1479
+ "name": "supportsInterface",
1480
+ "outputs": [
1481
+ {
1482
+ "internalType": "bool",
1483
+ "name": "",
1484
+ "type": "bool"
1485
+ }
1486
+ ],
1487
+ "stateMutability": "view",
1488
+ "type": "function"
1489
+ },
1490
+ {
1491
+ "inputs": [
1492
+ {
1493
+ "internalType": "address",
1494
+ "name": "to",
1495
+ "type": "address"
1496
+ },
1497
+ {
1498
+ "internalType": "Amount",
1499
+ "name": "dipAmount",
1500
+ "type": "uint96"
1501
+ }
1502
+ ],
1503
+ "name": "transferDipAmount",
1504
+ "outputs": [],
1505
+ "stateMutability": "nonpayable",
1506
+ "type": "function"
1507
+ },
1508
+ {
1509
+ "inputs": [
1510
+ {
1511
+ "internalType": "NftId",
1512
+ "name": "stakeNftId",
1513
+ "type": "uint96"
1514
+ }
1515
+ ],
1516
+ "name": "unstake",
1517
+ "outputs": [
1518
+ {
1519
+ "internalType": "Amount",
1520
+ "name": "unstakedAmount",
1521
+ "type": "uint96"
1522
+ },
1523
+ {
1524
+ "internalType": "Amount",
1525
+ "name": "rewardsClaimedAmount",
1526
+ "type": "uint96"
1527
+ }
1528
+ ],
1529
+ "stateMutability": "nonpayable",
1530
+ "type": "function"
1531
+ },
1532
+ {
1533
+ "inputs": [
1534
+ {
1535
+ "internalType": "NftId",
1536
+ "name": "targetNftId",
1537
+ "type": "uint96"
1538
+ },
1539
+ {
1540
+ "internalType": "address",
1541
+ "name": "token",
1542
+ "type": "address"
1543
+ },
1544
+ {
1545
+ "internalType": "Amount",
1546
+ "name": "amount",
1547
+ "type": "uint96"
1548
+ }
1549
+ ],
1550
+ "name": "updateRemoteTvl",
1551
+ "outputs": [],
1552
+ "stateMutability": "nonpayable",
1553
+ "type": "function"
1554
+ },
1555
+ {
1556
+ "inputs": [
1557
+ {
1558
+ "internalType": "NftId",
1559
+ "name": "stakeNftId",
1560
+ "type": "uint96"
1561
+ }
1562
+ ],
1563
+ "name": "updateRewards",
1564
+ "outputs": [],
1565
+ "stateMutability": "nonpayable",
1566
+ "type": "function"
1567
+ },
1568
+ {
1569
+ "inputs": [
1570
+ {
1571
+ "internalType": "bytes",
1572
+ "name": "data",
1573
+ "type": "bytes"
1574
+ }
1575
+ ],
1576
+ "name": "upgradeVersionable",
1577
+ "outputs": [],
1578
+ "stateMutability": "nonpayable",
1579
+ "type": "function"
1580
+ },
1581
+ {
1582
+ "inputs": [
1583
+ {
1584
+ "internalType": "NftId",
1585
+ "name": "targetNftId",
1586
+ "type": "uint96"
1587
+ },
1588
+ {
1589
+ "internalType": "Amount",
1590
+ "name": "dipAmount",
1591
+ "type": "uint96"
1592
+ }
1593
+ ],
1594
+ "name": "withdrawRewardReserves",
1595
+ "outputs": [
1596
+ {
1597
+ "internalType": "Amount",
1598
+ "name": "newBalance",
1599
+ "type": "uint96"
1600
+ }
1601
+ ],
1602
+ "stateMutability": "nonpayable",
1603
+ "type": "function"
1604
+ }
1605
+ ],
1606
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b614da2806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106102ff575f3560e01c80636291423a11610195578063bae99c99116100e4578063dea4ccf21161009e578063e7f7fb8611610079578063e7f7fb86146106fe578063e8ce883d14610711578063ea15869f14610724578063ea48ce9b14610738575f80fd5b8063dea4ccf2146106a5578063deaa59df146106d8578063e3a817cd146106eb575f80fd5b8063bae99c9914610649578063bb1e0e591461065c578063bf7e214f1461066f578063caed989714610677578063d44f8a4b1461067f578063de0eb85f14610692575f80fd5b8063893d20e81161014f578063958697a01161012a578063958697a0146106075780639a7263641461061a578063ada9652e1461062d578063b423086c14610641575f80fd5b8063893d20e8146105c95780638fb36037146105d157806390edbd35146105f2575f80fd5b80636291423a14610563578063644c45e01461056b5780636c1e9dff14610588578063719f761a1461059b5780637a9e5e4b146105ae57806386c75754146105c1575f80fd5b8063329d6e74116102515780635741e5e91161020b5780635ecf260f116101e65780635ecf260f146105045780635fd1efec14610517578063614d08f81461052a578063628937d214610550575f80fd5b80635741e5e9146104d85780635ab1bd53146104e05780635cbb7d85146104f1575f80fd5b8063329d6e741461047157806336644da614610484578063419197fe1461049757806343d752d3146104aa57806349bb9e4b146104b2578063562119ee146104c5575f80fd5b8063138461e0116102bc57806321df0da71161029757806321df0da71461043b57806322366844146104435780632a80f6731461044b57806331ecc5cc1461045e575f80fd5b8063138461e0146103df57806317d7de7c146103ff5780631eff4b2214610414575f80fd5b806301ffc9a714610303578063062c9cdf146103445780630d8e6e2c146103795780630fec111c1461039557806310a0638a146103aa57806313299604146103bf575b5f80fd5b61032f610311366004614075565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61036b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0081565b60405190815260200161033b565b61038161074b565b60405162ffffff909116815260200161033b565b61039d6107d2565b60405161033b91906140d1565b6103bd6103b8366004614171565b610990565b005b6103c7610a79565b6040516001600160a01b03909116815260200161033b565b6103e7610a8b565b6040516001600160601b03909116815260200161033b565b610407610a95565b60405161033b919061418c565b61036b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6103c7610aa5565b61032f610ab7565b6103bd61045936600461419e565b610bad565b6103bd61046c3660046141c8565b610e17565b6103bd61047f366004614316565b610fc5565b6103bd610492366004614367565b611110565b6103bd6104a53660046143f4565b611158565b6103c7611317565b6103bd6104c036600461442b565b611332565b6103bd6104d3366004614477565b61142e565b61032f61155e565b6001546001600160a01b03166103c7565b6103e76104ff3660046144ce565b61161b565b6103bd6105123660046144ea565b6116dd565b6103bd610525366004614516565b61194c565b610407604051806040016040528060078152602001665374616b696e6760c81b81525081565b6103bd61055e3660046143f4565b611ab1565b6103c7611b29565b5f80516020614ced833981519152546001600160601b03166103e7565b6103e76105963660046144ce565b611b44565b6103e76105a9366004614171565b611cce565b6103bd6105bc366004614516565b611f3f565b6103c7611fc1565b6103c7611fdc565b6105d961210d565b6040516001600160e01b0319909116815260200161033b565b6105fa612142565b60405161033b9190614531565b6103bd6106153660046145bb565b612167565b6103bd6106283660046145e8565b6121ab565b61036b5f80516020614ced83398151915281565b6105fa6123c4565b6103bd610657366004614171565b6123d4565b6103bd61066a36600461461d565b612423565b6103c76124c0565b6103c76124db565b6103e761068d3660046145bb565b6124f6565b6103e76106a03660046144ce565b612684565b6106b86106b3366004614171565b61271f565b604080516001600160601b0393841681529290911660208301520161033b565b6103bd6106e6366004614516565b612a99565b6103bd6106f93660046143f4565b612ce6565b6103bd61070c366004614639565b612d2d565b6103e761071f3660046144ce565b612dca565b61036b5f80516020614d0d83398151915281565b6103e76107463660046145bb565b612e21565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156107a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107cd9190614666565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610882573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a69190614698565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016108ee611fdc565b6001600160a01b0316815260200182600101805461090b906146b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610937906146b3565b80156109825780601f1061095957610100808354040283529160200191610982565b820191905f5260205f20905b81548152906001019060200180831161096557829003601f168201915b505050505081525091505090565b61099c335b5f36612f64565b806109a561305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa1580156109f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1991906146fa565b610a4657604051632ab4595b60e11b81526001600160601b03821660048201526024015b60405180910390fd5b5f610a4f61305a565b60048101546003820154919250610a73916001600160a01b0391821691168561307e565b50505050565b5f610a82612142565b60800151905090565b5f6107cd30613200565b6060610a9f612142565b51919050565b5f610aae612142565b60400151905090565b5f610aca6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610b0e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b329190614698565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610b89573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107cd91906146fa565b610bb633610995565b81610bbf61305a565b6003015f9054906101000a90046001600160a01b03166001600160a01b0316635cce3fa16040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c349190614713565b604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa158015610c81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca591906146fa565b610ccd576040516396cff01560e01b81526001600160601b0382166004820152602401610a3d565b604051633a39e8ad60e21b81523060048201526001600160601b0384166024820152604481018390525f90819073__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__9063e8e7a2b49060640160a060405180830381865af4158015610d34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d58919061478f565b91509150610d6461305a565b60030154604051630300f49160e31b81526001600160a01b0390911690631807a48890610d9790889085906004016147ba565b5f604051808303815f87803b158015610dae575f80fd5b505af1158015610dc0573d5f803e3d5ffd5b5050604080516001600160601b0389168152602081018690529081018790527f3e76c26439d1ec3386e26dfeebf955ea11f5f5f30459052b70e061ade8c9554f925060600190505b60405180910390a15050505050565b610e2033610995565b5f610e2961305a565b600481810154604051630e8d845760e31b81526001600160a01b03909116918101919091526001600160601b038086166024830152841660448201529091505f9073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063746c22b890606401602060405180830381865af4158015610ea4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ec89190614803565b60038301546040805160208101825264ffffffffff848116825291516331420df160e11b81526001600160601b038a166004820152905190911660248201529192506001600160a01b0316906362841be2906044015f604051808303815f87803b158015610f34575f80fd5b505af1158015610f46573d5f803e3d5ffd5b505050506003820154604051633861317f60e01b81526001600160601b0380881660048301528087166024830152851660448201526001600160a01b0390911690633861317f906064015b5f604051808303815f87803b158015610fa8575f80fd5b505af1158015610fba573d5f803e3d5ffd5b505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610fe761074b565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611025573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611049919061481e565b5f80516020614d4d8339815191528054600160401b900460ff168061107b575080546001600160401b03808416911610155b156110995760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556110c3836133f9565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b61111933610995565b611121611fdc565b6001600160a01b0316336001600160a01b0316146111545760405163086391f760e31b8152336004820152602401610a3d565b5050565b611160611fdc565b6001600160a01b0316336001600160a01b0316146111935760405163086391f760e31b8152336004820152602401610a3d565b3061119c610a79565b6001600160a01b0316146111c35760405163b6d7537f60e01b815260040160405180910390fd5b7ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e6111ec611317565b604080516001600160a01b0390921682526001600160601b03841660208301520160405180910390a1816001600160a01b031663095ea7b361122c611317565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611282573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a69190614844565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af11580156112ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131291906146fa565b505050565b5f61132061305a565b600201546001600160a01b0316919050565b5f80516020614d4d8339815191528054600160401b810460ff1615906001600160401b03165f811580156113635750825b90505f826001600160401b0316600114801561137e5750303b155b90508115801561138c575080155b156113aa5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113d457845460ff60401b1916600160401b1785555b6113de8787613401565b831561142557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61143733610995565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__639ed616cd6114636001546001600160a01b031690565b61146b61305a565b60049081015460405160e085901b6001600160e01b03191681526001600160a01b03938416928101929092529190911660248201526001600160601b038816604482015260ff8716606482015264ffffffffff8516608482015260a4810184905260c4015f6040518083038186803b1580156114e5575f80fd5b505af41580156114f7573d5f803e3d5ffd5b5050505061150361305a565b600301546040805160808101825260ff871681526020810186905264ffffffffff851681830152606081018490529051632df8be9b60e01b81526001600160a01b0390921691632df8be9b91610f91918991906004016147ba565b5f611567610ab7565b156115eb576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156115bb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526115e291908101906148b3565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b5f61162533610995565b8261162e61305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa15801561167e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a291906146fa565b6116ca57604051632ab4595b60e11b81526001600160601b0382166004820152602401610a3d565b5f6116d361305a565b9050505092915050565b6116e633610995565b816116ef61305a565b6003015f9054906101000a90046001600160a01b03166001600160a01b0316635cce3fa16040518163ffffffff1660e01b8152600401602060405180830381865afa158015611740573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117649190614713565b604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa1580156117b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117d591906146fa565b6117fd576040516396cff01560e01b81526001600160601b0382166004820152602401610a3d565b604051635f9c0df360e11b81523060048201526001600160601b038416602482015264ffffffffff831660448201525f90819073__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__9063bf381be69060640160a060405180830381865af415801561186a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188e9190614983565b9150915061189a61305a565b60030154604051630300f49160e31b81526001600160a01b0390911690631807a488906118cd90889085906004016147ba565b5f604051808303815f87803b1580156118e4575f80fd5b505af11580156118f6573d5f803e3d5ffd5b5050604080516001600160601b038916815264ffffffffff80871660208301528816918101919091527fb847665302c1d8b6f507e07b17145514cea04af84e1665d629d82246992311e792506060019050610e08565b611954611fdc565b6001600160a01b0316336001600160a01b0316146119875760405163086391f760e31b8152336004820152602401610a3d565b306001600160a01b0316816001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f19190614713565b6001600160a01b031614611a8457806001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a5f9190614713565b604051631641c88f60e11b81526001600160a01b039091166004820152602401610a3d565b80611a8d61305a565b60040180546001600160a01b0319166001600160a01b039290921691909117905550565b611aba33610995565b611ac2611317565b6001600160a01b03166354f0d84c611ad8610a79565b84846040518463ffffffff1660e01b8152600401611af8939291906149ae565b5f604051808303815f87803b158015611b0f575f80fd5b505af1158015611b21573d5f803e3d5ffd5b505050505050565b5f611b3261305a565b600401546001600160a01b0316919050565b5f611b4e33610995565b82611b5761305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015611ba7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bcb91906146fa565b611bf357604051632ab4595b60e11b81526001600160601b0382166004820152602401610a3d565b5f611bfc61305a565b905073__$dbe4bf03c942dc0574f54ee579c90d56ef$__630fcf5d08611c2a6001546001600160a01b031690565b600484810154600386015460405160e086901b6001600160e01b03191681526001600160a01b039485169381019390935290831660248301529190911660448201526001600160601b0380891660648301528716608482015260a401602060405180830381865af4158015611ca1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cc59190614698565b95945050505050565b5f611cd833610995565b81611ce161305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015611d31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d5591906146fa565b611d7d57604051632ab4595b60e11b81526001600160601b0382166004820152602401610a3d565b5f611d8661305a565b600481015460038201549192505f91611dac916001600160a01b0390811691168761307e565b9050816003015f9054906101000a90046001600160a01b03166001600160a01b0316633fbdfe32868373__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611e1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e409190614698565b60405160e085901b6001600160e01b03191681526001600160601b039384166004820152918316602483015290911660448201526064016020604051808303815f875af1158015611e93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb79190614698565b600383015460405163136cfef760e01b81526001600160601b038085166004830152831660248201529195506001600160a01b03169063136cfef7906044016020604051808303815f875af1158015611f12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f369190614698565b50505050919050565b33611f486124c0565b6001600160a01b0316816001600160a01b031614611f835760405162d1953b60e31b81526001600160a01b0382166004820152602401610a3d565b816001600160a01b03163b5f03611fb8576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a3d565b6111548261387e565b5f611fca61305a565b600301546001600160a01b0316919050565b5f805f80516020614ced83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612048573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061206c91906146fa565b156120f7576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156120cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120f19190614713565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020614d2d83398151915280545f9190600160a01b900460ff16612134575f6120f1565b638fb3603760e01b91505090565b61214a61401f565b612152610ab7565b1561215f576107cd6138de565b6107cd6123c4565b61217033610995565b612178611fdc565b6001600160a01b0316336001600160a01b0316146113125760405163086391f760e31b8152336004820152602401610a3d565b6121b3611fdc565b6001600160a01b0316336001600160a01b0316146121e65760405163086391f760e31b8152336004820152602401610a3d565b5f6121ef61305a565b6001810154604051631703edc360e31b8152600481018790526001600160a01b03868116602483015292935091169063b81f6e1890604401602060405180830381865afa158015612242573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226691906146fa565b612295576040516374ddbd6960e01b8152600481018590526001600160a01b0384166024820152604401610a3d565b6003810154604051637b21556160e01b8152600481018690526001600160a01b0385811660248301525f921690637b21556190604401602060405180830381865afa1580156122e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230a9190614844565b600383015460405163269c98d960e21b8152600481018890526001600160a01b03878116602483015260448201879052929350911690639a726364906064015f604051808303815f87803b158015612360575f80fd5b505af1158015612372573d5f803e3d5ffd5b5050604080518881526001600160a01b0388166020820152908101849052606081018690527f8075f599388073d04550222731e9c7e00c284a4f858d8a0ffc0657164981c76e92506080019050610e08565b6123cc61401f565b6107cd6138de565b6123dc611fdc565b6001600160a01b0316336001600160a01b03161461240f5760405163086391f760e31b8152336004820152602401610a3d565b61242061241a610aa5565b82611158565b50565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561246a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061248e9190614713565b6001600160a01b0316336001600160a01b0316146111545760405162f0630960e01b8152336004820152602401610a3d565b5f80516020614d2d833981519152546001600160a01b031690565b5f6124e461305a565b600101546001600160a01b0316919050565b5f61250033610995565b5f61250961305a565b60048181015460405163153d412560e31b81526001600160601b038916928101929092529192505f916001600160a01b03169063a9ea092890602401608060405180830381865afa158015612560573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061258491906149da565b60200151600483810154604051637b21556160e01b81529182018390526001600160a01b0388811660248401529293505f921690637b21556190604401602060405180830381865afa1580156125dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126009190614844565b6003840154604051633ece552760e21b81529192506001600160a01b03169063fb39549c90612639908a9085908b908b906004016149f4565b6020604051808303815f875af1158015612655573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126799190614698565b979650505050505050565b5f61268e33610995565b5f61269761305a565b600381015460405163d7537c3760e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063d7537c37906044015b6020604051808303815f875af11580156126f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127179190614698565b949350505050565b5f8061272a33610995565b8261273361305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015612783573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127a791906146fa565b6127cf57604051632ab4595b60e11b81526001600160601b0382166004820152602401610a3d565b5f6127d861305a565b60048181015460405163b3eff9e160e01b81526001600160a01b03909116918101919091526001600160601b038716602482015290915073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063b3eff9e1906044016040805180830381865af4158015612848573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061286c9190614a28565b5050600481015460038201545f91612891916001600160a01b0391821691168861307e565b9050816003015f9054906101000a90046001600160a01b03166001600160a01b031663eb98e8a0878373__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015612901573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129259190614698565b73__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561296c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129909190614698565b60405160e086901b6001600160e01b03191681526001600160601b03948516600482015292841660248401529083166044830152909116606482015260840160408051808303815f875af11580156129ea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a0e9190614a4c565b600384015460405163136cfef760e01b81526001600160601b038086166004830152831660248201529297509095506001600160a01b03169063136cfef7906044016020604051808303815f875af1158015612a6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a909190614698565b50505050915091565b612aa1611fdc565b6001600160a01b0316336001600160a01b031614612ad45760405163086391f760e31b8152336004820152602401610a3d565b5f612add610a79565b90505f612ae8610aa5565b6040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa158015612b2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b529190614844565b9050612b5d83613a42565b801561131257604080516001600160a01b038085168252851660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a1306001600160a01b03831603612c9557612bc6611317565b6001600160a01b03166354f0d84c838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b8152600401612c0f91815260200190565b602060405180830381865af4158015612c2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c4e9190614698565b6040518463ffffffff1660e01b8152600401612c6c939291906149ae565b5f604051808303815f87803b158015612c83575f80fd5b505af1158015611425573d5f803e3d5ffd5b612c9d611317565b6001600160a01b031663c7d63d57838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b8152600401612c0f91815260200190565b612cef33610995565b612cf7611317565b6001600160a01b031663c7d63d5783612d0e610a79565b846040518463ffffffff1660e01b8152600401611af8939291906149ae565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d989190614713565b6001600160a01b0316336001600160a01b0316146113125760405162f0630960e01b8152336004820152602401610a3d565b5f612dd433610995565b5f612ddd61305a565b600381015460405163136cfef760e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063136cfef7906044016126d7565b5f612e2b33610995565b5f612e3461305a565b60048181015460405163153d412560e31b81526001600160601b038916928101929092529192505f916001600160a01b03169063a9ea092890602401608060405180830381865afa158015612e8b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eaf91906149da565b60200151600483810154604051637b21556160e01b81529182018390526001600160a01b0388811660248401529293505f921690637b21556190604401602060405180830381865afa158015612f07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f2b9190614844565b60038401546040516377f9185160e01b81529192506001600160a01b0316906377f9185190612639908a9085908b908b906004016149f4565b5f80516020614d2d8339815191525f80612f9c612f7f6124c0565b8730612f8e60045f8a8c614a79565b612f9791614aa0565b613b2a565b9150915081611b215763ffffffff81161561303757825460ff60a01b1916600160a01b178355612fca6124c0565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612ff993929190614ad8565b5f604051808303815f87803b158015613010575f80fd5b505af1158015613022573d5f803e3d5ffd5b5050845460ff60a01b1916855550611b219050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a3d565b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0090565b6040516312b9a5c960e01b81526001600160601b03821660048201525f9081906001600160a01b038616906312b9a5c9906024016040805180830381865afa1580156130cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130f09190614b17565b60405163e048754d60e01b81526001600160a01b03881660048201526001600160601b03861660248201526044810182905291935091505f9073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063e048754d906064016040805180830381865af4158015613162573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131869190614a4c565b50604051634a2101d160e01b81526001600160601b0380871660048301528086166024830152821660448201529091506001600160a01b03861690634a2101d1906064015f604051808303815f87803b1580156131e1575f80fd5b505af11580156131f3573d5f803e3d5ffd5b5050505050509392505050565b5f805f80516020614ced83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561326c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061329091906146fa565b156132bc5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610a3d565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561330e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061333291906146fa565b61335a5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610a3d565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156133ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133d09190614698565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6102ff613c32565b5f80516020614d4d8339815191528054600160401b810460ff1615906001600160401b03165f811580156134325750825b90505f826001600160401b0316600114801561344d5750303b155b90508115801561345b575080155b156134795760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156134a357845460ff60401b1916600160401b1785555b5f805f80898060200190518101906134bb9190614b43565b93509350935093505f8490505f816001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613504573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135289190614713565b90505f8590505f816001600160a01b031663b201f7096040518163ffffffff1660e01b8152600401602060405180830381865afa15801561356b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358f9190614713565b905061363c8389866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135f69190614698565b6040805180820190915260078152665374616b696e6760c81b60208201528560035f8c60405180602001604052805f81525060405180602001604052805f815250613c6a565b5f61364561305a565b90506136596001546001600160a01b031690565b6001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613694573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136b89190614698565b600480830180546001600160601b0393909316600160a01b026001600160a01b03938416179055600383018054928a166001600160a01b0319939093168317905560408051633148a11d60e11b81529051636291423a928281019260209291908290030181865afa15801561372f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137539190614713565b600482810180546001600160a01b03199081166001600160a01b03948516179091556001840180549091168b841617905560405163825e727960e01b815284831691810191909152908516602482015273__$51089c37ca0df1177a910c640c8c5f8165$__9063825e727990604401602060405180830381865af41580156137dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138019190614713565b6002820180546001600160a01b0319166001600160a01b039290921691909117905561383363fef8804160e01b613d69565b505050505050505050831561142557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161141c565b5f80516020614d2d83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6138e661401f565b5f5f80516020614d0d83398151915290506040518060c00160405280825f018054613910906146b3565b80601f016020809104026020016040519081016040528092919081815260200182805461393c906146b3565b80156139875780601f1061395e57610100808354040283529160200191613987565b820191905f5260205f20905b81548152906001019060200180831161396a57829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156139d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139fc9190614698565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161090b906146b3565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f02545f80516020614d0d833981519152906001600160a01b03908116908316613a9e5760405163185a690f60e11b815260040160405180910390fd5b806001600160a01b0316836001600160a01b031603613ad05760405163ade4578160e01b815260040160405180910390fd5b6002820180546001600160a01b0319166001600160a01b0385811691821790925560408051928416835260208301919091527f610ad1290dceadae2c5ce18bae2eb495be595083a257fac7414e50686f7c26509101611103565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613b989190614b9f565b5f60405180830381855afa9150503d805f8114613bd0576040519150601f19603f3d011682016040523d82523d5f602084013e613bd5565b606091505b50915091508115613c27576040815110613c075780806020019051810190613bfd9190614bb5565b9094509250613c27565b6020815110613c275780806020019051810190613c2491906146fa565b93505b505094509492505050565b5f80516020614d4d83398151915254600160401b900460ff16613c6857604051631afcd79f60e31b815260040160405180910390fd5b565b613c72613c32565b613c80898987878787613d95565b613c898a613e3a565b6001600160a01b038616613cb0576040516327eab2e360e11b815260040160405180910390fd5b86515f03613cd15760405163591eebf360e11b815260040160405180910390fd5b5f80516020614d0d83398151915280613cea8982614c32565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b8715150217905560038101613d3b8382614c32565b50613d4c634a531f3360e01b613d69565b613d5c632986755f60e11b613d69565b5050505050505050505050565b613d71613c32565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b613d9d613c32565b613da78287613e4b565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301613e308382614c32565b5050505050505050565b613e42613c32565b61242081613ec1565b613e53613c32565b613e5c81613ed2565b613e64613fda565b6001600160a01b038216613e8b5760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020614ced83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b613ec9613c32565b6124208161387e565b613eda613c32565b806001600160a01b03163b5f03613f0f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a3d565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015613f89575060408051601f3d908101601f19168201909252613f86918101906146fa565b60015b613fb15760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a3d565b806111545760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610a3d565b613fe2613c32565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215614085575f80fd5b81356001600160e01b03198116811461409c575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614119608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526127176101008401826140a3565b6001600160601b0381168114612420575f80fd5b5f60208284031215614181575f80fd5b813561409c8161415d565b602081525f61409c60208301846140a3565b5f80604083850312156141af575f80fd5b82356141ba8161415d565b946020939093013593505050565b5f805f606084860312156141da575f80fd5b83356141e58161415d565b925060208401356141f58161415d565b915060408401356142058161415d565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b038111828210171561424657614246614210565b60405290565b60405160e081016001600160401b038111828210171561424657614246614210565b604051601f8201601f191681016001600160401b038111828210171561429657614296614210565b604052919050565b5f6001600160401b038211156142b6576142b6614210565b50601f01601f191660200190565b5f82601f8301126142d3575f80fd5b81356142e66142e18261429e565b61426e565b8181528460208386010111156142fa575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614326575f80fd5b81356001600160401b0381111561433b575f80fd5b612717848285016142c4565b60ff81168114612420575f80fd5b64ffffffffff81168114612420575f80fd5b5f8082840360a0811215614379575f80fd5b83356143848161415d565b92506080601f1982011215614397575f80fd5b506143a0614224565b60208401356143ae81614347565b81526040840135602082015260608401356143c881614355565b60408201526080939093013560608401525092909150565b6001600160a01b0381168114612420575f80fd5b5f8060408385031215614405575f80fd5b8235614410816143e0565b915060208301356144208161415d565b809150509250929050565b5f806040838503121561443c575f80fd5b8235614447816143e0565b915060208301356001600160401b03811115614461575f80fd5b61446d858286016142c4565b9150509250929050565b5f805f805f60a0868803121561448b575f80fd5b85356144968161415d565b945060208601356144a681614347565b93506040860135925060608601356144bd81614355565b949793965091946080013592915050565b5f80604083850312156144df575f80fd5b82356144108161415d565b5f80604083850312156144fb575f80fd5b82356145068161415d565b9150602083013561442081614355565b5f60208284031215614526575f80fd5b813561409c816143e0565b602081525f825160c0602084015261454c60e08401826140a3565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161459f60a08501826001600160a01b03169052565b5060a0840151838203601f190160c0850152611cc582826140a3565b5f805f606084860312156145cd575f80fd5b83356145d88161415d565b925060208401356141f5816143e0565b5f805f606084860312156145fa575f80fd5b83359250602084013561460c816143e0565b929592945050506040919091013590565b5f806040838503121561462e575f80fd5b82356141ba816143e0565b5f805f6060848603121561464b575f80fd5b8335614656816143e0565b9250602084013561460c816143e0565b5f60208284031215614676575f80fd5b815162ffffff8116811461409c575f80fd5b80516146938161415d565b919050565b5f602082840312156146a8575f80fd5b815161409c8161415d565b600181811c908216806146c757607f821691505b6020821081036146e557634e487b7160e01b5f52602260045260245ffd5b50919050565b80518015158114614693575f80fd5b5f6020828403121561470a575f80fd5b61409c826146eb565b5f60208284031215614723575f80fd5b815161409c816143e0565b805161469381614347565b5f60808284031215614749575f80fd5b614751614224565b9050815161475e81614347565b815260208281015190820152604082015161477881614355565b604082015260609182015191810191909152919050565b5f8060a083850312156147a0575f80fd5b825191506147b18460208501614739565b90509250929050565b5f60a0820190506001600160601b038416825260ff83511660208301526020830151604083015264ffffffffff6040840151166060830152606083015160808301529392505050565b5f60208284031215614813575f80fd5b815161409c81614355565b5f6020828403121561482e575f80fd5b81516001600160401b038116811461409c575f80fd5b5f60208284031215614854575f80fd5b5051919050565b8051614693816143e0565b5f82601f830112614875575f80fd5b81516148836142e18261429e565b818152846020838601011115614897575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156148c3575f80fd5b81516001600160401b038111156148d8575f80fd5b820160e081850312156148e9575f80fd5b6148f161424c565b6148fa82614688565b815261490860208301614688565b60208201526149196040830161472e565b604082015261492a606083016146eb565b606082015261493b6080830161485b565b608082015261494c60a0830161485b565b60a082015260c08201516001600160401b03811115614969575f80fd5b61497586828501614866565b60c083015250949350505050565b5f8060a08385031215614994575f80fd5b825161499f81614355565b91506147b18460208501614739565b6001600160a01b0393841681529190921660208201526001600160601b03909116604082015260600190565b5f608082840312156149ea575f80fd5b61409c8383614739565b6001600160601b03948516815260208101939093526001600160a01b03919091166040830152909116606082015260800190565b5f8060408385031215614a39575f80fd5b8251602084015190925061442081614355565b5f8060408385031215614a5d575f80fd5b8251614a688161415d565b60208401519092506144208161415d565b5f8085851115614a87575f80fd5b83861115614a93575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015614ad1576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215614b28575f80fd5b8251614b338161415d565b6020939093015192949293505050565b5f805f8060808587031215614b56575f80fd5b8451614b61816143e0565b6020860151909450614b72816143e0565b6040860151909350614b83816143e0565b6060860151909250614b94816143e0565b939692955090935050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215614bc6575f80fd5b614bcf836146eb565b9150602083015163ffffffff81168114614420575f80fd5b601f82111561131257805f5260205f20601f840160051c81016020851015614c0c5750805b601f840160051c820191505b81811015614c2b575f8155600101614c18565b5050505050565b81516001600160401b03811115614c4b57614c4b614210565b614c5f81614c5984546146b3565b84614be7565b6020601f821160018114614c91575f8315614c7a5750848201515b5f19600385901b1c1916600184901b178455614c2b565b5f84815260208120601f198516915b82811015614cc05787850151825560209485019460019092019101614ca0565b5084821015614cdd57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00ffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122051caeda7c9d1db594d16b8315963428faf45db3085c3fc86c43b4ed311c63cdc64736f6c634300081a0033",
1607
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106102ff575f3560e01c80636291423a11610195578063bae99c99116100e4578063dea4ccf21161009e578063e7f7fb8611610079578063e7f7fb86146106fe578063e8ce883d14610711578063ea15869f14610724578063ea48ce9b14610738575f80fd5b8063dea4ccf2146106a5578063deaa59df146106d8578063e3a817cd146106eb575f80fd5b8063bae99c9914610649578063bb1e0e591461065c578063bf7e214f1461066f578063caed989714610677578063d44f8a4b1461067f578063de0eb85f14610692575f80fd5b8063893d20e81161014f578063958697a01161012a578063958697a0146106075780639a7263641461061a578063ada9652e1461062d578063b423086c14610641575f80fd5b8063893d20e8146105c95780638fb36037146105d157806390edbd35146105f2575f80fd5b80636291423a14610563578063644c45e01461056b5780636c1e9dff14610588578063719f761a1461059b5780637a9e5e4b146105ae57806386c75754146105c1575f80fd5b8063329d6e74116102515780635741e5e91161020b5780635ecf260f116101e65780635ecf260f146105045780635fd1efec14610517578063614d08f81461052a578063628937d214610550575f80fd5b80635741e5e9146104d85780635ab1bd53146104e05780635cbb7d85146104f1575f80fd5b8063329d6e741461047157806336644da614610484578063419197fe1461049757806343d752d3146104aa57806349bb9e4b146104b2578063562119ee146104c5575f80fd5b8063138461e0116102bc57806321df0da71161029757806321df0da71461043b57806322366844146104435780632a80f6731461044b57806331ecc5cc1461045e575f80fd5b8063138461e0146103df57806317d7de7c146103ff5780631eff4b2214610414575f80fd5b806301ffc9a714610303578063062c9cdf146103445780630d8e6e2c146103795780630fec111c1461039557806310a0638a146103aa57806313299604146103bf575b5f80fd5b61032f610311366004614075565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61036b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0081565b60405190815260200161033b565b61038161074b565b60405162ffffff909116815260200161033b565b61039d6107d2565b60405161033b91906140d1565b6103bd6103b8366004614171565b610990565b005b6103c7610a79565b6040516001600160a01b03909116815260200161033b565b6103e7610a8b565b6040516001600160601b03909116815260200161033b565b610407610a95565b60405161033b919061418c565b61036b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6103c7610aa5565b61032f610ab7565b6103bd61045936600461419e565b610bad565b6103bd61046c3660046141c8565b610e17565b6103bd61047f366004614316565b610fc5565b6103bd610492366004614367565b611110565b6103bd6104a53660046143f4565b611158565b6103c7611317565b6103bd6104c036600461442b565b611332565b6103bd6104d3366004614477565b61142e565b61032f61155e565b6001546001600160a01b03166103c7565b6103e76104ff3660046144ce565b61161b565b6103bd6105123660046144ea565b6116dd565b6103bd610525366004614516565b61194c565b610407604051806040016040528060078152602001665374616b696e6760c81b81525081565b6103bd61055e3660046143f4565b611ab1565b6103c7611b29565b5f80516020614ced833981519152546001600160601b03166103e7565b6103e76105963660046144ce565b611b44565b6103e76105a9366004614171565b611cce565b6103bd6105bc366004614516565b611f3f565b6103c7611fc1565b6103c7611fdc565b6105d961210d565b6040516001600160e01b0319909116815260200161033b565b6105fa612142565b60405161033b9190614531565b6103bd6106153660046145bb565b612167565b6103bd6106283660046145e8565b6121ab565b61036b5f80516020614ced83398151915281565b6105fa6123c4565b6103bd610657366004614171565b6123d4565b6103bd61066a36600461461d565b612423565b6103c76124c0565b6103c76124db565b6103e761068d3660046145bb565b6124f6565b6103e76106a03660046144ce565b612684565b6106b86106b3366004614171565b61271f565b604080516001600160601b0393841681529290911660208301520161033b565b6103bd6106e6366004614516565b612a99565b6103bd6106f93660046143f4565b612ce6565b6103bd61070c366004614639565b612d2d565b6103e761071f3660046144ce565b612dca565b61036b5f80516020614d0d83398151915281565b6103e76107463660046145bb565b612e21565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156107a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107cd9190614666565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610882573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a69190614698565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016108ee611fdc565b6001600160a01b0316815260200182600101805461090b906146b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610937906146b3565b80156109825780601f1061095957610100808354040283529160200191610982565b820191905f5260205f20905b81548152906001019060200180831161096557829003601f168201915b505050505081525091505090565b61099c335b5f36612f64565b806109a561305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa1580156109f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a1991906146fa565b610a4657604051632ab4595b60e11b81526001600160601b03821660048201526024015b60405180910390fd5b5f610a4f61305a565b60048101546003820154919250610a73916001600160a01b0391821691168561307e565b50505050565b5f610a82612142565b60800151905090565b5f6107cd30613200565b6060610a9f612142565b51919050565b5f610aae612142565b60400151905090565b5f610aca6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610b0e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b329190614698565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610b89573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107cd91906146fa565b610bb633610995565b81610bbf61305a565b6003015f9054906101000a90046001600160a01b03166001600160a01b0316635cce3fa16040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c10573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c349190614713565b604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa158015610c81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca591906146fa565b610ccd576040516396cff01560e01b81526001600160601b0382166004820152602401610a3d565b604051633a39e8ad60e21b81523060048201526001600160601b0384166024820152604481018390525f90819073__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__9063e8e7a2b49060640160a060405180830381865af4158015610d34573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d58919061478f565b91509150610d6461305a565b60030154604051630300f49160e31b81526001600160a01b0390911690631807a48890610d9790889085906004016147ba565b5f604051808303815f87803b158015610dae575f80fd5b505af1158015610dc0573d5f803e3d5ffd5b5050604080516001600160601b0389168152602081018690529081018790527f3e76c26439d1ec3386e26dfeebf955ea11f5f5f30459052b70e061ade8c9554f925060600190505b60405180910390a15050505050565b610e2033610995565b5f610e2961305a565b600481810154604051630e8d845760e31b81526001600160a01b03909116918101919091526001600160601b038086166024830152841660448201529091505f9073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063746c22b890606401602060405180830381865af4158015610ea4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ec89190614803565b60038301546040805160208101825264ffffffffff848116825291516331420df160e11b81526001600160601b038a166004820152905190911660248201529192506001600160a01b0316906362841be2906044015f604051808303815f87803b158015610f34575f80fd5b505af1158015610f46573d5f803e3d5ffd5b505050506003820154604051633861317f60e01b81526001600160601b0380881660048301528087166024830152851660448201526001600160a01b0390911690633861317f906064015b5f604051808303815f87803b158015610fa8575f80fd5b505af1158015610fba573d5f803e3d5ffd5b505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610fe761074b565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611025573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611049919061481e565b5f80516020614d4d8339815191528054600160401b900460ff168061107b575080546001600160401b03808416911610155b156110995760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556110c3836133f9565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b61111933610995565b611121611fdc565b6001600160a01b0316336001600160a01b0316146111545760405163086391f760e31b8152336004820152602401610a3d565b5050565b611160611fdc565b6001600160a01b0316336001600160a01b0316146111935760405163086391f760e31b8152336004820152602401610a3d565b3061119c610a79565b6001600160a01b0316146111c35760405163b6d7537f60e01b815260040160405180910390fd5b7ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e6111ec611317565b604080516001600160a01b0390921682526001600160601b03841660208301520160405180910390a1816001600160a01b031663095ea7b361122c611317565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611282573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a69190614844565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af11580156112ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131291906146fa565b505050565b5f61132061305a565b600201546001600160a01b0316919050565b5f80516020614d4d8339815191528054600160401b810460ff1615906001600160401b03165f811580156113635750825b90505f826001600160401b0316600114801561137e5750303b155b90508115801561138c575080155b156113aa5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113d457845460ff60401b1916600160401b1785555b6113de8787613401565b831561142557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61143733610995565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__639ed616cd6114636001546001600160a01b031690565b61146b61305a565b60049081015460405160e085901b6001600160e01b03191681526001600160a01b03938416928101929092529190911660248201526001600160601b038816604482015260ff8716606482015264ffffffffff8516608482015260a4810184905260c4015f6040518083038186803b1580156114e5575f80fd5b505af41580156114f7573d5f803e3d5ffd5b5050505061150361305a565b600301546040805160808101825260ff871681526020810186905264ffffffffff851681830152606081018490529051632df8be9b60e01b81526001600160a01b0390921691632df8be9b91610f91918991906004016147ba565b5f611567610ab7565b156115eb576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa1580156115bb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526115e291908101906148b3565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b5f61162533610995565b8261162e61305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa15801561167e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a291906146fa565b6116ca57604051632ab4595b60e11b81526001600160601b0382166004820152602401610a3d565b5f6116d361305a565b9050505092915050565b6116e633610995565b816116ef61305a565b6003015f9054906101000a90046001600160a01b03166001600160a01b0316635cce3fa16040518163ffffffff1660e01b8152600401602060405180830381865afa158015611740573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117649190614713565b604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa1580156117b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117d591906146fa565b6117fd576040516396cff01560e01b81526001600160601b0382166004820152602401610a3d565b604051635f9c0df360e11b81523060048201526001600160601b038416602482015264ffffffffff831660448201525f90819073__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__9063bf381be69060640160a060405180830381865af415801561186a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188e9190614983565b9150915061189a61305a565b60030154604051630300f49160e31b81526001600160a01b0390911690631807a488906118cd90889085906004016147ba565b5f604051808303815f87803b1580156118e4575f80fd5b505af11580156118f6573d5f803e3d5ffd5b5050604080516001600160601b038916815264ffffffffff80871660208301528816918101919091527fb847665302c1d8b6f507e07b17145514cea04af84e1665d629d82246992311e792506060019050610e08565b611954611fdc565b6001600160a01b0316336001600160a01b0316146119875760405163086391f760e31b8152336004820152602401610a3d565b306001600160a01b0316816001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f19190614713565b6001600160a01b031614611a8457806001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a5f9190614713565b604051631641c88f60e11b81526001600160a01b039091166004820152602401610a3d565b80611a8d61305a565b60040180546001600160a01b0319166001600160a01b039290921691909117905550565b611aba33610995565b611ac2611317565b6001600160a01b03166354f0d84c611ad8610a79565b84846040518463ffffffff1660e01b8152600401611af8939291906149ae565b5f604051808303815f87803b158015611b0f575f80fd5b505af1158015611b21573d5f803e3d5ffd5b505050505050565b5f611b3261305a565b600401546001600160a01b0316919050565b5f611b4e33610995565b82611b5761305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015611ba7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bcb91906146fa565b611bf357604051632ab4595b60e11b81526001600160601b0382166004820152602401610a3d565b5f611bfc61305a565b905073__$dbe4bf03c942dc0574f54ee579c90d56ef$__630fcf5d08611c2a6001546001600160a01b031690565b600484810154600386015460405160e086901b6001600160e01b03191681526001600160a01b039485169381019390935290831660248301529190911660448201526001600160601b0380891660648301528716608482015260a401602060405180830381865af4158015611ca1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cc59190614698565b95945050505050565b5f611cd833610995565b81611ce161305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015611d31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d5591906146fa565b611d7d57604051632ab4595b60e11b81526001600160601b0382166004820152602401610a3d565b5f611d8661305a565b600481015460038201549192505f91611dac916001600160a01b0390811691168761307e565b9050816003015f9054906101000a90046001600160a01b03166001600160a01b0316633fbdfe32868373__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611e1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e409190614698565b60405160e085901b6001600160e01b03191681526001600160601b039384166004820152918316602483015290911660448201526064016020604051808303815f875af1158015611e93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb79190614698565b600383015460405163136cfef760e01b81526001600160601b038085166004830152831660248201529195506001600160a01b03169063136cfef7906044016020604051808303815f875af1158015611f12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f369190614698565b50505050919050565b33611f486124c0565b6001600160a01b0316816001600160a01b031614611f835760405162d1953b60e31b81526001600160a01b0382166004820152602401610a3d565b816001600160a01b03163b5f03611fb8576040516361798f2f60e11b81526001600160a01b0383166004820152602401610a3d565b6111548261387e565b5f611fca61305a565b600301546001600160a01b0316919050565b5f805f80516020614ced83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612048573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061206c91906146fa565b156120f7576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156120cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120f19190614713565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020614d2d83398151915280545f9190600160a01b900460ff16612134575f6120f1565b638fb3603760e01b91505090565b61214a61401f565b612152610ab7565b1561215f576107cd6138de565b6107cd6123c4565b61217033610995565b612178611fdc565b6001600160a01b0316336001600160a01b0316146113125760405163086391f760e31b8152336004820152602401610a3d565b6121b3611fdc565b6001600160a01b0316336001600160a01b0316146121e65760405163086391f760e31b8152336004820152602401610a3d565b5f6121ef61305a565b6001810154604051631703edc360e31b8152600481018790526001600160a01b03868116602483015292935091169063b81f6e1890604401602060405180830381865afa158015612242573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226691906146fa565b612295576040516374ddbd6960e01b8152600481018590526001600160a01b0384166024820152604401610a3d565b6003810154604051637b21556160e01b8152600481018690526001600160a01b0385811660248301525f921690637b21556190604401602060405180830381865afa1580156122e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230a9190614844565b600383015460405163269c98d960e21b8152600481018890526001600160a01b03878116602483015260448201879052929350911690639a726364906064015f604051808303815f87803b158015612360575f80fd5b505af1158015612372573d5f803e3d5ffd5b5050604080518881526001600160a01b0388166020820152908101849052606081018690527f8075f599388073d04550222731e9c7e00c284a4f858d8a0ffc0657164981c76e92506080019050610e08565b6123cc61401f565b6107cd6138de565b6123dc611fdc565b6001600160a01b0316336001600160a01b03161461240f5760405163086391f760e31b8152336004820152602401610a3d565b61242061241a610aa5565b82611158565b50565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561246a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061248e9190614713565b6001600160a01b0316336001600160a01b0316146111545760405162f0630960e01b8152336004820152602401610a3d565b5f80516020614d2d833981519152546001600160a01b031690565b5f6124e461305a565b600101546001600160a01b0316919050565b5f61250033610995565b5f61250961305a565b60048181015460405163153d412560e31b81526001600160601b038916928101929092529192505f916001600160a01b03169063a9ea092890602401608060405180830381865afa158015612560573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061258491906149da565b60200151600483810154604051637b21556160e01b81529182018390526001600160a01b0388811660248401529293505f921690637b21556190604401602060405180830381865afa1580156125dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126009190614844565b6003840154604051633ece552760e21b81529192506001600160a01b03169063fb39549c90612639908a9085908b908b906004016149f4565b6020604051808303815f875af1158015612655573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126799190614698565b979650505050505050565b5f61268e33610995565b5f61269761305a565b600381015460405163d7537c3760e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063d7537c37906044015b6020604051808303815f875af11580156126f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127179190614698565b949350505050565b5f8061272a33610995565b8261273361305a565b60030154604051634f9c1c0960e01b81526001600160601b03831660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015612783573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127a791906146fa565b6127cf57604051632ab4595b60e11b81526001600160601b0382166004820152602401610a3d565b5f6127d861305a565b60048181015460405163b3eff9e160e01b81526001600160a01b03909116918101919091526001600160601b038716602482015290915073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063b3eff9e1906044016040805180830381865af4158015612848573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061286c9190614a28565b5050600481015460038201545f91612891916001600160a01b0391821691168861307e565b9050816003015f9054906101000a90046001600160a01b03166001600160a01b031663eb98e8a0878373__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015612901573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129259190614698565b73__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561296c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129909190614698565b60405160e086901b6001600160e01b03191681526001600160601b03948516600482015292841660248401529083166044830152909116606482015260840160408051808303815f875af11580156129ea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a0e9190614a4c565b600384015460405163136cfef760e01b81526001600160601b038086166004830152831660248201529297509095506001600160a01b03169063136cfef7906044016020604051808303815f875af1158015612a6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a909190614698565b50505050915091565b612aa1611fdc565b6001600160a01b0316336001600160a01b031614612ad45760405163086391f760e31b8152336004820152602401610a3d565b5f612add610a79565b90505f612ae8610aa5565b6040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa158015612b2e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b529190614844565b9050612b5d83613a42565b801561131257604080516001600160a01b038085168252851660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a1306001600160a01b03831603612c9557612bc6611317565b6001600160a01b03166354f0d84c838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b8152600401612c0f91815260200190565b602060405180830381865af4158015612c2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c4e9190614698565b6040518463ffffffff1660e01b8152600401612c6c939291906149ae565b5f604051808303815f87803b158015612c83575f80fd5b505af1158015611425573d5f803e3d5ffd5b612c9d611317565b6001600160a01b031663c7d63d57838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b8152600401612c0f91815260200190565b612cef33610995565b612cf7611317565b6001600160a01b031663c7d63d5783612d0e610a79565b846040518463ffffffff1660e01b8152600401611af8939291906149ae565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d989190614713565b6001600160a01b0316336001600160a01b0316146113125760405162f0630960e01b8152336004820152602401610a3d565b5f612dd433610995565b5f612ddd61305a565b600381015460405163136cfef760e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063136cfef7906044016126d7565b5f612e2b33610995565b5f612e3461305a565b60048181015460405163153d412560e31b81526001600160601b038916928101929092529192505f916001600160a01b03169063a9ea092890602401608060405180830381865afa158015612e8b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eaf91906149da565b60200151600483810154604051637b21556160e01b81529182018390526001600160a01b0388811660248401529293505f921690637b21556190604401602060405180830381865afa158015612f07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f2b9190614844565b60038401546040516377f9185160e01b81529192506001600160a01b0316906377f9185190612639908a9085908b908b906004016149f4565b5f80516020614d2d8339815191525f80612f9c612f7f6124c0565b8730612f8e60045f8a8c614a79565b612f9791614aa0565b613b2a565b9150915081611b215763ffffffff81161561303757825460ff60a01b1916600160a01b178355612fca6124c0565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612ff993929190614ad8565b5f604051808303815f87803b158015613010575f80fd5b505af1158015613022573d5f803e3d5ffd5b5050845460ff60a01b1916855550611b219050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610a3d565b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0090565b6040516312b9a5c960e01b81526001600160601b03821660048201525f9081906001600160a01b038616906312b9a5c9906024016040805180830381865afa1580156130cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130f09190614b17565b60405163e048754d60e01b81526001600160a01b03881660048201526001600160601b03861660248201526044810182905291935091505f9073__$dbe4bf03c942dc0574f54ee579c90d56ef$__9063e048754d906064016040805180830381865af4158015613162573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131869190614a4c565b50604051634a2101d160e01b81526001600160601b0380871660048301528086166024830152821660448201529091506001600160a01b03861690634a2101d1906064015f604051808303815f87803b1580156131e1575f80fd5b505af11580156131f3573d5f803e3d5ffd5b5050505050509392505050565b5f805f80516020614ced83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561326c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061329091906146fa565b156132bc5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610a3d565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561330e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061333291906146fa565b61335a5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610a3d565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156133ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133d09190614698565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6102ff613c32565b5f80516020614d4d8339815191528054600160401b810460ff1615906001600160401b03165f811580156134325750825b90505f826001600160401b0316600114801561344d5750303b155b90508115801561345b575080155b156134795760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156134a357845460ff60401b1916600160401b1785555b5f805f80898060200190518101906134bb9190614b43565b93509350935093505f8490505f816001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613504573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135289190614713565b90505f8590505f816001600160a01b031663b201f7096040518163ffffffff1660e01b8152600401602060405180830381865afa15801561356b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358f9190614713565b905061363c8389866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135f69190614698565b6040805180820190915260078152665374616b696e6760c81b60208201528560035f8c60405180602001604052805f81525060405180602001604052805f815250613c6a565b5f61364561305a565b90506136596001546001600160a01b031690565b6001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613694573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136b89190614698565b600480830180546001600160601b0393909316600160a01b026001600160a01b03938416179055600383018054928a166001600160a01b0319939093168317905560408051633148a11d60e11b81529051636291423a928281019260209291908290030181865afa15801561372f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137539190614713565b600482810180546001600160a01b03199081166001600160a01b03948516179091556001840180549091168b841617905560405163825e727960e01b815284831691810191909152908516602482015273__$51089c37ca0df1177a910c640c8c5f8165$__9063825e727990604401602060405180830381865af41580156137dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138019190614713565b6002820180546001600160a01b0319166001600160a01b039290921691909117905561383363fef8804160e01b613d69565b505050505050505050831561142557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161141c565b5f80516020614d2d83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6138e661401f565b5f5f80516020614d0d83398151915290506040518060c00160405280825f018054613910906146b3565b80601f016020809104026020016040519081016040528092919081815260200182805461393c906146b3565b80156139875780601f1061395e57610100808354040283529160200191613987565b820191905f5260205f20905b81548152906001019060200180831161396a57829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156139d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139fc9190614698565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161090b906146b3565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f02545f80516020614d0d833981519152906001600160a01b03908116908316613a9e5760405163185a690f60e11b815260040160405180910390fd5b806001600160a01b0316836001600160a01b031603613ad05760405163ade4578160e01b815260040160405180910390fd5b6002820180546001600160a01b0319166001600160a01b0385811691821790925560408051928416835260208301919091527f610ad1290dceadae2c5ce18bae2eb495be595083a257fac7414e50686f7c26509101611103565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613b989190614b9f565b5f60405180830381855afa9150503d805f8114613bd0576040519150601f19603f3d011682016040523d82523d5f602084013e613bd5565b606091505b50915091508115613c27576040815110613c075780806020019051810190613bfd9190614bb5565b9094509250613c27565b6020815110613c275780806020019051810190613c2491906146fa565b93505b505094509492505050565b5f80516020614d4d83398151915254600160401b900460ff16613c6857604051631afcd79f60e31b815260040160405180910390fd5b565b613c72613c32565b613c80898987878787613d95565b613c898a613e3a565b6001600160a01b038616613cb0576040516327eab2e360e11b815260040160405180910390fd5b86515f03613cd15760405163591eebf360e11b815260040160405180910390fd5b5f80516020614d0d83398151915280613cea8982614c32565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b8715150217905560038101613d3b8382614c32565b50613d4c634a531f3360e01b613d69565b613d5c632986755f60e11b613d69565b5050505050505050505050565b613d71613c32565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b613d9d613c32565b613da78287613e4b565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301613e308382614c32565b5050505050505050565b613e42613c32565b61242081613ec1565b613e53613c32565b613e5c81613ed2565b613e64613fda565b6001600160a01b038216613e8b5760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020614ced83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b613ec9613c32565b6124208161387e565b613eda613c32565b806001600160a01b03163b5f03613f0f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a3d565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632f6da6f960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015613f89575060408051601f3d908101601f19168201909252613f86918101906146fa565b60015b613fb15760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610a3d565b806111545760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610a3d565b613fe2613c32565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215614085575f80fd5b81356001600160e01b03198116811461409c575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614119608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526127176101008401826140a3565b6001600160601b0381168114612420575f80fd5b5f60208284031215614181575f80fd5b813561409c8161415d565b602081525f61409c60208301846140a3565b5f80604083850312156141af575f80fd5b82356141ba8161415d565b946020939093013593505050565b5f805f606084860312156141da575f80fd5b83356141e58161415d565b925060208401356141f58161415d565b915060408401356142058161415d565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b038111828210171561424657614246614210565b60405290565b60405160e081016001600160401b038111828210171561424657614246614210565b604051601f8201601f191681016001600160401b038111828210171561429657614296614210565b604052919050565b5f6001600160401b038211156142b6576142b6614210565b50601f01601f191660200190565b5f82601f8301126142d3575f80fd5b81356142e66142e18261429e565b61426e565b8181528460208386010111156142fa575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614326575f80fd5b81356001600160401b0381111561433b575f80fd5b612717848285016142c4565b60ff81168114612420575f80fd5b64ffffffffff81168114612420575f80fd5b5f8082840360a0811215614379575f80fd5b83356143848161415d565b92506080601f1982011215614397575f80fd5b506143a0614224565b60208401356143ae81614347565b81526040840135602082015260608401356143c881614355565b60408201526080939093013560608401525092909150565b6001600160a01b0381168114612420575f80fd5b5f8060408385031215614405575f80fd5b8235614410816143e0565b915060208301356144208161415d565b809150509250929050565b5f806040838503121561443c575f80fd5b8235614447816143e0565b915060208301356001600160401b03811115614461575f80fd5b61446d858286016142c4565b9150509250929050565b5f805f805f60a0868803121561448b575f80fd5b85356144968161415d565b945060208601356144a681614347565b93506040860135925060608601356144bd81614355565b949793965091946080013592915050565b5f80604083850312156144df575f80fd5b82356144108161415d565b5f80604083850312156144fb575f80fd5b82356145068161415d565b9150602083013561442081614355565b5f60208284031215614526575f80fd5b813561409c816143e0565b602081525f825160c0602084015261454c60e08401826140a3565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161459f60a08501826001600160a01b03169052565b5060a0840151838203601f190160c0850152611cc582826140a3565b5f805f606084860312156145cd575f80fd5b83356145d88161415d565b925060208401356141f5816143e0565b5f805f606084860312156145fa575f80fd5b83359250602084013561460c816143e0565b929592945050506040919091013590565b5f806040838503121561462e575f80fd5b82356141ba816143e0565b5f805f6060848603121561464b575f80fd5b8335614656816143e0565b9250602084013561460c816143e0565b5f60208284031215614676575f80fd5b815162ffffff8116811461409c575f80fd5b80516146938161415d565b919050565b5f602082840312156146a8575f80fd5b815161409c8161415d565b600181811c908216806146c757607f821691505b6020821081036146e557634e487b7160e01b5f52602260045260245ffd5b50919050565b80518015158114614693575f80fd5b5f6020828403121561470a575f80fd5b61409c826146eb565b5f60208284031215614723575f80fd5b815161409c816143e0565b805161469381614347565b5f60808284031215614749575f80fd5b614751614224565b9050815161475e81614347565b815260208281015190820152604082015161477881614355565b604082015260609182015191810191909152919050565b5f8060a083850312156147a0575f80fd5b825191506147b18460208501614739565b90509250929050565b5f60a0820190506001600160601b038416825260ff83511660208301526020830151604083015264ffffffffff6040840151166060830152606083015160808301529392505050565b5f60208284031215614813575f80fd5b815161409c81614355565b5f6020828403121561482e575f80fd5b81516001600160401b038116811461409c575f80fd5b5f60208284031215614854575f80fd5b5051919050565b8051614693816143e0565b5f82601f830112614875575f80fd5b81516148836142e18261429e565b818152846020838601011115614897575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156148c3575f80fd5b81516001600160401b038111156148d8575f80fd5b820160e081850312156148e9575f80fd5b6148f161424c565b6148fa82614688565b815261490860208301614688565b60208201526149196040830161472e565b604082015261492a606083016146eb565b606082015261493b6080830161485b565b608082015261494c60a0830161485b565b60a082015260c08201516001600160401b03811115614969575f80fd5b61497586828501614866565b60c083015250949350505050565b5f8060a08385031215614994575f80fd5b825161499f81614355565b91506147b18460208501614739565b6001600160a01b0393841681529190921660208201526001600160601b03909116604082015260600190565b5f608082840312156149ea575f80fd5b61409c8383614739565b6001600160601b03948516815260208101939093526001600160a01b03919091166040830152909116606082015260800190565b5f8060408385031215614a39575f80fd5b8251602084015190925061442081614355565b5f8060408385031215614a5d575f80fd5b8251614a688161415d565b60208401519092506144208161415d565b5f8085851115614a87575f80fd5b83861115614a93575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015614ad1576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215614b28575f80fd5b8251614b338161415d565b6020939093015192949293505050565b5f805f8060808587031215614b56575f80fd5b8451614b61816143e0565b6020860151909450614b72816143e0565b6040860151909350614b83816143e0565b6060860151909250614b94816143e0565b939692955090935050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215614bc6575f80fd5b614bcf836146eb565b9150602083015163ffffffff81168114614420575f80fd5b601f82111561131257805f5260205f20601f840160051c81016020851015614c0c5750805b601f840160051c820191505b81811015614c2b575f8155600101614c18565b5050505050565b81516001600160401b03811115614c4b57614c4b614210565b614c5f81614c5984546146b3565b84614be7565b6020601f821160018114614c91575f8315614c7a5750848201515b5f19600385901b1c1916600184901b178455614c2b565b5f84815260208120601f198516915b82811015614cc05787850151825560209485019460019092019101614ca0565b5084821015614cdd57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00ffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122051caeda7c9d1db594d16b8315963428faf45db3085c3fc86c43b4ed311c63cdc64736f6c634300081a0033",
1608
+ "linkReferences": {
1609
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1610
+ "TokenHandlerDeployerLib": [
1611
+ {
1612
+ "length": 20,
1613
+ "start": 14459
1614
+ }
1615
+ ]
1616
+ },
1617
+ "contracts/staking/StakeManagerLib.sol": {
1618
+ "StakeManagerLib": [
1619
+ {
1620
+ "length": 20,
1621
+ "start": 3906
1622
+ },
1623
+ {
1624
+ "length": 20,
1625
+ "start": 7382
1626
+ },
1627
+ {
1628
+ "length": 20,
1629
+ "start": 10471
1630
+ },
1631
+ {
1632
+ "length": 20,
1633
+ "start": 12801
1634
+ }
1635
+ ]
1636
+ },
1637
+ "contracts/staking/TargetManagerLib.sol": {
1638
+ "TargetManagerLib": [
1639
+ {
1640
+ "length": 20,
1641
+ "start": 3538
1642
+ },
1643
+ {
1644
+ "length": 20,
1645
+ "start": 5391
1646
+ },
1647
+ {
1648
+ "length": 20,
1649
+ "start": 6408
1650
+ }
1651
+ ]
1652
+ },
1653
+ "contracts/type/Amount.sol": {
1654
+ "AmountLib": [
1655
+ {
1656
+ "length": 20,
1657
+ "start": 4896
1658
+ },
1659
+ {
1660
+ "length": 20,
1661
+ "start": 7853
1662
+ },
1663
+ {
1664
+ "length": 20,
1665
+ "start": 10642
1666
+ },
1667
+ {
1668
+ "length": 20,
1669
+ "start": 10749
1670
+ },
1671
+ {
1672
+ "length": 20,
1673
+ "start": 11438
1674
+ },
1675
+ {
1676
+ "length": 20,
1677
+ "start": 11653
1678
+ }
1679
+ ]
1680
+ },
1681
+ "contracts/type/NftId.sol": {
1682
+ "NftIdLib": [
1683
+ {
1684
+ "length": 20,
1685
+ "start": 2323
1686
+ },
1687
+ {
1688
+ "length": 20,
1689
+ "start": 3111
1690
+ },
1691
+ {
1692
+ "length": 20,
1693
+ "start": 8422
1694
+ },
1695
+ {
1696
+ "length": 20,
1697
+ "start": 13066
1698
+ },
1699
+ {
1700
+ "length": 20,
1701
+ "start": 14953
1702
+ }
1703
+ ]
1704
+ },
1705
+ "contracts/type/Version.sol": {
1706
+ "VersionLib": [
1707
+ {
1708
+ "length": 20,
1709
+ "start": 2119
1710
+ },
1711
+ {
1712
+ "length": 20,
1713
+ "start": 4253
1714
+ }
1715
+ ]
1716
+ }
1717
+ },
1718
+ "deployedLinkReferences": {
1719
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1720
+ "TokenHandlerDeployerLib": [
1721
+ {
1722
+ "length": 20,
1723
+ "start": 14245
1724
+ }
1725
+ ]
1726
+ },
1727
+ "contracts/staking/StakeManagerLib.sol": {
1728
+ "StakeManagerLib": [
1729
+ {
1730
+ "length": 20,
1731
+ "start": 3692
1732
+ },
1733
+ {
1734
+ "length": 20,
1735
+ "start": 7168
1736
+ },
1737
+ {
1738
+ "length": 20,
1739
+ "start": 10257
1740
+ },
1741
+ {
1742
+ "length": 20,
1743
+ "start": 12587
1744
+ }
1745
+ ]
1746
+ },
1747
+ "contracts/staking/TargetManagerLib.sol": {
1748
+ "TargetManagerLib": [
1749
+ {
1750
+ "length": 20,
1751
+ "start": 3324
1752
+ },
1753
+ {
1754
+ "length": 20,
1755
+ "start": 5177
1756
+ },
1757
+ {
1758
+ "length": 20,
1759
+ "start": 6194
1760
+ }
1761
+ ]
1762
+ },
1763
+ "contracts/type/Amount.sol": {
1764
+ "AmountLib": [
1765
+ {
1766
+ "length": 20,
1767
+ "start": 4682
1768
+ },
1769
+ {
1770
+ "length": 20,
1771
+ "start": 7639
1772
+ },
1773
+ {
1774
+ "length": 20,
1775
+ "start": 10428
1776
+ },
1777
+ {
1778
+ "length": 20,
1779
+ "start": 10535
1780
+ },
1781
+ {
1782
+ "length": 20,
1783
+ "start": 11224
1784
+ },
1785
+ {
1786
+ "length": 20,
1787
+ "start": 11439
1788
+ }
1789
+ ]
1790
+ },
1791
+ "contracts/type/NftId.sol": {
1792
+ "NftIdLib": [
1793
+ {
1794
+ "length": 20,
1795
+ "start": 2109
1796
+ },
1797
+ {
1798
+ "length": 20,
1799
+ "start": 2897
1800
+ },
1801
+ {
1802
+ "length": 20,
1803
+ "start": 8208
1804
+ },
1805
+ {
1806
+ "length": 20,
1807
+ "start": 12852
1808
+ },
1809
+ {
1810
+ "length": 20,
1811
+ "start": 14739
1812
+ }
1813
+ ]
1814
+ },
1815
+ "contracts/type/Version.sol": {
1816
+ "VersionLib": [
1817
+ {
1818
+ "length": 20,
1819
+ "start": 1905
1820
+ },
1821
+ {
1822
+ "length": 20,
1823
+ "start": 4039
1824
+ }
1825
+ ]
1826
+ }
1827
+ }
1828
+ }