@etherisc/gif-next 0.0.2-accfb48-991 → 0.0.2-ad346f1-601

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