@etherisc/gif-next 0.0.2-e510b92-393 → 0.0.2-e586bbf-616

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