@etherisc/gif-next 0.0.2-9b97b55 → 0.0.2-9badda4-428

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