@etherisc/gif-next 0.0.2-f36fd21-685 → 0.0.2-f3b4c66-505

Sign up to get free protection for your applications and to get access to all the features.
Files changed (521) hide show
  1. package/README.md +46 -8
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +203 -77
  10. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +233 -5
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +200 -16
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
  17. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +142 -44
  19. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +107 -15
  21. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +19 -0
  23. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +68 -5
  25. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +165 -391
  27. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +206 -27
  29. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +103 -321
  31. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +378 -355
  33. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +133 -119
  35. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +115 -143
  37. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +248 -122
  39. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  41. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1475 -0
  43. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +589 -0
  45. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2032 -0
  47. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +589 -0
  49. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  51. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1523 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +589 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1655 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +589 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2432 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +589 -0
  65. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
  67. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +158 -57
  69. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +105 -103
  71. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  72. package/artifacts/contracts/instance/Instance.sol/Instance.json +194 -154
  73. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +446 -143
  75. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +150 -90
  77. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1031 -298
  79. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +131 -266
  81. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +102 -92
  83. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +668 -511
  85. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  87. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +2 -2
  89. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
  90. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
  91. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
  92. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
  93. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +46 -5
  94. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
  95. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
  96. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  98. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  99. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  100. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  102. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  103. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
  104. package/artifacts/contracts/mock/Dip.sol/Dip.json +2 -2
  105. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
  106. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +114 -340
  107. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
  108. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +180 -29
  109. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
  110. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
  111. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +102 -130
  112. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
  113. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +69 -11
  114. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
  115. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +90 -308
  116. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
  117. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +153 -190
  118. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
  119. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +122 -88
  120. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
  121. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +119 -387
  122. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
  123. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +206 -27
  124. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
  125. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +275 -314
  126. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  127. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +122 -108
  128. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
  129. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +172 -97
  130. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  131. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +124 -219
  132. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
  133. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +464 -312
  134. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
  135. package/artifacts/contracts/pool/Pool.sol/Pool.json +109 -394
  136. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  137. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
  138. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
  139. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +653 -532
  140. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  141. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +163 -97
  142. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  143. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +194 -178
  144. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  145. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +100 -90
  146. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
  147. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +243 -400
  148. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
  149. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +206 -27
  150. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
  151. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +415 -234
  152. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  153. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +140 -114
  154. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  155. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +136 -9
  156. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
  157. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +308 -16
  158. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  159. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +354 -106
  160. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
  161. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +157 -83
  162. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  163. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +235 -202
  164. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  165. package/artifacts/contracts/product/{IProductService.sol/IProductService.json → IRiskService.sol/IRiskService.json} +88 -8
  166. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
  167. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +441 -304
  168. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  169. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
  170. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  171. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +141 -99
  172. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
  173. package/artifacts/contracts/product/PricingService.sol/PricingService.json +247 -313
  174. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
  175. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +120 -122
  176. package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
  177. package/artifacts/contracts/product/Product.sol/Product.json +241 -398
  178. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  179. package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
  180. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  181. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
  182. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  183. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  184. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  185. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +334 -34
  186. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  187. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +144 -41
  188. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  189. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  190. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  191. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
  192. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  193. package/artifacts/contracts/registry/Registry.sol/Registry.json +540 -95
  194. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
  195. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +349 -167
  196. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  197. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +109 -292
  198. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  199. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +94 -80
  200. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  201. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1849 -0
  202. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
  203. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +47 -6
  204. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
  205. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +420 -246
  206. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
  207. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +66 -8
  208. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  209. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +4 -4
  210. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
  211. package/artifacts/contracts/shared/Component.sol/Component.json +76 -265
  212. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
  213. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +501 -626
  214. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
  215. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +136 -128
  216. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +1 -1
  217. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +57 -111
  218. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  219. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +541 -0
  220. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  221. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  222. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  226. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
  227. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +89 -88
  228. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
  229. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +446 -276
  230. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
  231. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +102 -130
  232. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  233. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +36 -0
  234. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  235. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +36 -0
  236. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  237. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +16 -0
  238. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  239. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +15 -47
  240. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  241. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +148 -0
  242. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  243. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  244. package/artifacts/contracts/shared/IService.sol/IService.json +55 -2
  245. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
  246. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -22
  247. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
  248. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +89 -307
  249. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  250. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +42 -1
  251. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  252. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +42 -1
  253. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
  254. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
  255. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  256. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +22 -57
  257. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  258. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +19 -141
  259. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  260. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +122 -97
  261. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  262. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
  263. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  264. package/artifacts/contracts/shared/Service.sol/Service.json +57 -111
  265. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  266. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +585 -12
  267. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  268. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  269. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  270. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  271. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
  272. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +134 -125
  273. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
  274. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +77 -16
  275. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +1 -1
  276. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +76 -106
  277. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
  278. package/artifacts/contracts/staking/Staking.sol/Staking.json +210 -366
  279. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +1 -1
  280. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +46 -5
  281. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
  282. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +122 -95
  283. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
  284. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +6 -11
  285. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
  286. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +122 -164
  287. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
  288. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +99 -85
  289. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
  290. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +149 -108
  291. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
  292. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +55 -24
  293. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  294. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
  295. package/artifacts/contracts/type/Amount.sol/AmountLib.json +33 -9
  296. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  297. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +2 -2
  298. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  299. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +28 -4
  300. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  301. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
  302. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
  303. package/artifacts/contracts/type/Fee.sol/FeeLib.json +3 -3
  304. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
  305. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
  306. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  307. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  308. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
  309. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
  310. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  311. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
  312. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  313. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +2 -2
  314. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  315. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +19 -19
  316. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
  317. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
  318. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
  319. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
  320. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
  321. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +125 -7
  322. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
  323. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +79 -15
  324. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
  325. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +50 -2
  326. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
  327. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
  328. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
  329. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
  330. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
  331. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +15 -2
  332. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
  333. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
  334. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +23 -4
  335. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
  336. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +16 -3
  337. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
  338. package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
  339. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
  340. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +47 -2
  341. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
  342. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  343. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +71 -70
  344. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  345. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
  346. package/contracts/accounting/AccountingService.sol +262 -0
  347. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  348. package/contracts/accounting/IAccountingService.sol +45 -0
  349. package/contracts/authorization/AccessAdmin.sol +232 -134
  350. package/contracts/authorization/AccessManagerCloneable.sol +136 -3
  351. package/contracts/authorization/Authorization.sol +321 -202
  352. package/contracts/authorization/IAccess.sol +1 -0
  353. package/contracts/authorization/IAccessAdmin.sol +17 -10
  354. package/contracts/authorization/IAuthorization.sol +27 -7
  355. package/contracts/authorization/IServiceAuthorization.sol +3 -1
  356. package/contracts/authorization/ServiceAuthorization.sol +26 -10
  357. package/contracts/distribution/BasicDistribution.sol +15 -12
  358. package/contracts/distribution/BasicDistributionAuthorization.sol +22 -9
  359. package/contracts/distribution/Distribution.sol +42 -48
  360. package/contracts/distribution/DistributionService.sol +152 -104
  361. package/contracts/distribution/DistributionServiceManager.sol +6 -6
  362. package/contracts/distribution/IDistributionComponent.sol +1 -1
  363. package/contracts/distribution/IDistributionService.sol +31 -25
  364. package/contracts/examples/fire/DamageLevel.sol +59 -0
  365. package/contracts/examples/fire/FirePool.sol +90 -0
  366. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  367. package/contracts/examples/fire/FireProduct.sol +437 -0
  368. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  369. package/contracts/examples/fire/FireUSD.sol +26 -0
  370. package/contracts/examples/unpermissioned/SimpleDistribution.sol +85 -0
  371. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  372. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  373. package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
  374. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  375. package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
  376. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  377. package/contracts/instance/BundleSet.sol +42 -38
  378. package/contracts/instance/IInstance.sol +21 -37
  379. package/contracts/instance/IInstanceService.sol +9 -29
  380. package/contracts/instance/Instance.sol +59 -66
  381. package/contracts/instance/InstanceAdmin.sol +256 -85
  382. package/contracts/instance/InstanceAuthorizationV3.sol +56 -47
  383. package/contracts/instance/InstanceReader.sol +288 -43
  384. package/contracts/instance/InstanceService.sol +125 -164
  385. package/contracts/instance/InstanceServiceManager.sol +6 -7
  386. package/contracts/instance/InstanceStore.sol +23 -2
  387. package/contracts/instance/RiskSet.sol +118 -0
  388. package/contracts/instance/base/ObjectCounter.sol +1 -2
  389. package/contracts/instance/base/ObjectLifecycle.sol +11 -4
  390. package/contracts/instance/base/ObjectSet.sol +31 -33
  391. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  392. package/contracts/instance/module/IBundle.sol +1 -1
  393. package/contracts/instance/module/IComponents.sol +14 -14
  394. package/contracts/instance/module/IDistribution.sol +5 -2
  395. package/contracts/instance/module/IPolicy.sol +26 -25
  396. package/contracts/instance/module/IRisk.sol +3 -0
  397. package/contracts/mock/Dip.sol +1 -1
  398. package/contracts/oracle/BasicOracle.sol +0 -1
  399. package/contracts/oracle/BasicOracleAuthorization.sol +3 -12
  400. package/contracts/oracle/IOracleService.sol +2 -1
  401. package/contracts/oracle/Oracle.sol +7 -17
  402. package/contracts/oracle/OracleService.sol +113 -81
  403. package/contracts/oracle/OracleServiceManager.sol +6 -6
  404. package/contracts/pool/BasicPool.sol +38 -27
  405. package/contracts/pool/BasicPoolAuthorization.sol +32 -11
  406. package/contracts/pool/BundleService.sol +179 -125
  407. package/contracts/pool/BundleServiceManager.sol +6 -6
  408. package/contracts/pool/IBundleService.sol +29 -34
  409. package/contracts/pool/IPoolComponent.sol +19 -15
  410. package/contracts/pool/IPoolService.sol +90 -75
  411. package/contracts/pool/Pool.sol +145 -128
  412. package/contracts/pool/PoolLib.sol +216 -0
  413. package/contracts/pool/PoolService.sol +540 -217
  414. package/contracts/pool/PoolServiceManager.sol +4 -4
  415. package/contracts/product/ApplicationService.sol +87 -43
  416. package/contracts/product/ApplicationServiceManager.sol +4 -4
  417. package/contracts/product/BasicProduct.sol +11 -12
  418. package/contracts/product/BasicProductAuthorization.sol +24 -11
  419. package/contracts/product/ClaimService.sol +368 -153
  420. package/contracts/product/ClaimServiceManager.sol +4 -4
  421. package/contracts/product/IApplicationService.sol +9 -2
  422. package/contracts/product/IClaimService.sol +44 -8
  423. package/contracts/product/IPolicyService.sol +53 -38
  424. package/contracts/product/IPricingService.sol +11 -10
  425. package/contracts/product/IProductComponent.sol +27 -5
  426. package/contracts/product/{IProductService.sol → IRiskService.sol} +8 -8
  427. package/contracts/product/PolicyService.sol +464 -281
  428. package/contracts/product/PolicyServiceLib.sol +65 -0
  429. package/contracts/product/PolicyServiceManager.sol +4 -4
  430. package/contracts/product/PricingService.sol +71 -62
  431. package/contracts/product/PricingServiceManager.sol +4 -4
  432. package/contracts/product/Product.sol +162 -94
  433. package/contracts/product/RiskService.sol +154 -0
  434. package/contracts/product/RiskServiceManager.sol +39 -0
  435. package/contracts/registry/ChainNft.sol +72 -40
  436. package/contracts/registry/IRegistry.sol +60 -28
  437. package/contracts/registry/IRegistryService.sol +5 -12
  438. package/contracts/registry/IRelease.sol +26 -0
  439. package/contracts/registry/ITransferInterceptor.sol +1 -2
  440. package/contracts/registry/Registry.sol +357 -203
  441. package/contracts/registry/RegistryAdmin.sol +171 -182
  442. package/contracts/registry/RegistryService.sol +37 -48
  443. package/contracts/registry/RegistryServiceManager.sol +3 -3
  444. package/contracts/registry/ReleaseAdmin.sol +245 -0
  445. package/contracts/registry/ReleaseLifecycle.sol +8 -3
  446. package/contracts/registry/ReleaseRegistry.sol +258 -232
  447. package/contracts/registry/ServiceAuthorizationV3.sol +99 -52
  448. package/contracts/registry/TokenRegistry.sol +6 -8
  449. package/contracts/shared/Component.sol +74 -127
  450. package/contracts/shared/ComponentService.sol +426 -385
  451. package/contracts/shared/ComponentServiceManager.sol +8 -5
  452. package/contracts/shared/ComponentVerifyingService.sol +28 -17
  453. package/contracts/shared/ContractLib.sol +253 -0
  454. package/contracts/shared/IComponent.sol +8 -17
  455. package/contracts/shared/IComponentService.sol +41 -37
  456. package/contracts/shared/IInstanceLinkedComponent.sol +6 -32
  457. package/contracts/shared/ILifecycle.sol +3 -1
  458. package/contracts/shared/INftOwnable.sol +2 -0
  459. package/contracts/shared/IPolicyHolder.sol +12 -22
  460. package/contracts/shared/IRegisterable.sol +23 -1
  461. package/contracts/shared/IService.sol +3 -5
  462. package/contracts/shared/InitializableERC165.sol +2 -2
  463. package/contracts/shared/InstanceLinkedComponent.sol +73 -48
  464. package/contracts/shared/KeyValueStore.sol +1 -1
  465. package/contracts/shared/Lifecycle.sol +15 -4
  466. package/contracts/shared/NftOwnable.sol +29 -9
  467. package/contracts/shared/PolicyHolder.sol +15 -52
  468. package/contracts/shared/Registerable.sol +55 -21
  469. package/contracts/shared/RegistryLinked.sol +9 -14
  470. package/contracts/shared/Service.sol +15 -32
  471. package/contracts/shared/TokenHandler.sol +309 -26
  472. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  473. package/contracts/staking/IStaking.sol +7 -9
  474. package/contracts/staking/IStakingService.sol +8 -3
  475. package/contracts/staking/StakeManagerLib.sol +19 -26
  476. package/contracts/staking/Staking.sol +71 -61
  477. package/contracts/staking/StakingManager.sol +8 -6
  478. package/contracts/staking/StakingReader.sol +13 -6
  479. package/contracts/staking/StakingService.sol +54 -35
  480. package/contracts/staking/StakingServiceManager.sol +6 -5
  481. package/contracts/staking/TargetManagerLib.sol +7 -3
  482. package/contracts/type/Amount.sol +15 -0
  483. package/contracts/type/Blocknumber.sol +7 -1
  484. package/contracts/type/ClaimId.sol +6 -1
  485. package/contracts/type/Key32.sol +2 -2
  486. package/contracts/type/Key32Set.sol +62 -0
  487. package/contracts/type/NftId.sol +7 -0
  488. package/contracts/type/ObjectType.sol +52 -20
  489. package/contracts/type/PayoutId.sol +10 -10
  490. package/contracts/type/RiskId.sol +38 -6
  491. package/contracts/type/RoleId.sol +23 -15
  492. package/contracts/type/Seconds.sol +21 -1
  493. package/contracts/type/Selector.sol +5 -0
  494. package/contracts/type/StateId.sol +15 -1
  495. package/contracts/type/Timestamp.sol +10 -5
  496. package/contracts/type/UFixed.sol +13 -119
  497. package/contracts/type/Version.sol +15 -5
  498. package/contracts/upgradeability/ProxyManager.sol +68 -34
  499. package/contracts/upgradeability/Versionable.sol +2 -2
  500. package/package.json +5 -4
  501. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +0 -4
  502. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +0 -290
  503. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +0 -4
  504. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +0 -390
  505. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  506. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
  507. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +0 -4
  508. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +0 -4
  509. package/artifacts/contracts/product/ProductService.sol/ProductService.json +0 -708
  510. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  511. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +0 -702
  512. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +0 -4
  513. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +0 -39
  514. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
  515. package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
  516. package/contracts/authorization/IModuleAuthorization.sol +0 -21
  517. package/contracts/authorization/ModuleAuthorization.sol +0 -78
  518. package/contracts/instance/module/IAccess.sol +0 -46
  519. package/contracts/product/ProductService.sol +0 -99
  520. package/contracts/product/ProductServiceManager.sol +0 -39
  521. package/contracts/shared/InitializableCustom.sol +0 -177
@@ -45,22 +45,11 @@
45
45
  "inputs": [
46
46
  {
47
47
  "internalType": "address",
48
- "name": "target",
49
- "type": "address"
50
- }
51
- ],
52
- "name": "AddressEmptyCode",
53
- "type": "error"
54
- },
55
- {
56
- "inputs": [
57
- {
58
- "internalType": "address",
59
- "name": "account",
48
+ "name": "authority",
60
49
  "type": "address"
61
50
  }
62
51
  ],
63
- "name": "AddressInsufficientBalance",
52
+ "name": "ErrorAuthorityInvalid",
64
53
  "type": "error"
65
54
  },
66
55
  {
@@ -80,76 +69,71 @@
80
69
  "type": "error"
81
70
  },
82
71
  {
83
- "inputs": [
84
- {
85
- "internalType": "NftId",
86
- "name": "instanceNftId",
87
- "type": "uint96"
88
- }
89
- ],
90
- "name": "ErrorComponentNotInstance",
72
+ "inputs": [],
73
+ "name": "ErrorComponentProductNftIdNonzero",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [],
78
+ "name": "ErrorComponentProductNftIdZero",
91
79
  "type": "error"
92
80
  },
93
81
  {
94
82
  "inputs": [
95
83
  {
96
84
  "internalType": "address",
97
- "name": "caller",
85
+ "name": "token",
98
86
  "type": "address"
99
87
  }
100
88
  ],
101
- "name": "ErrorComponentNotProductService",
102
- "type": "error"
103
- },
104
- {
105
- "inputs": [],
106
- "name": "ErrorComponentProductNftAlreadySet",
89
+ "name": "ErrorComponentTokenInvalid",
107
90
  "type": "error"
108
91
  },
109
92
  {
110
93
  "inputs": [],
111
- "name": "ErrorComponentTokenAddressZero",
94
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
112
95
  "type": "error"
113
96
  },
114
97
  {
115
98
  "inputs": [],
116
- "name": "ErrorComponentWalletAddressIsSameAsCurrent",
99
+ "name": "ErrorComponentWalletAddressZero",
117
100
  "type": "error"
118
101
  },
119
102
  {
120
103
  "inputs": [],
121
- "name": "ErrorComponentWalletAddressZero",
104
+ "name": "ErrorComponentWalletNotComponent",
122
105
  "type": "error"
123
106
  },
124
107
  {
125
108
  "inputs": [
126
109
  {
127
- "internalType": "address",
128
- "name": "oldWallet",
129
- "type": "address"
130
- },
131
- {
132
- "internalType": "address",
133
- "name": "newWallet",
134
- "type": "address"
135
- },
136
- {
137
- "internalType": "uint256",
138
- "name": "allowance",
139
- "type": "uint256"
110
+ "internalType": "NftId",
111
+ "name": "nftId",
112
+ "type": "uint96"
140
113
  },
141
114
  {
142
- "internalType": "uint256",
143
- "name": "balance",
144
- "type": "uint256"
115
+ "internalType": "ObjectType",
116
+ "name": "objectType",
117
+ "type": "uint8"
145
118
  }
146
119
  ],
147
- "name": "ErrorComponentWalletAllowanceTooSmall",
120
+ "name": "ErrorInstanceLinkedComponentNotProduct",
148
121
  "type": "error"
149
122
  },
150
123
  {
151
- "inputs": [],
152
- "name": "ErrorComponentWalletNotComponent",
124
+ "inputs": [
125
+ {
126
+ "internalType": "ObjectType",
127
+ "name": "requiredType",
128
+ "type": "uint8"
129
+ },
130
+ {
131
+ "internalType": "ObjectType",
132
+ "name": "objectType",
133
+ "type": "uint8"
134
+ }
135
+ ],
136
+ "name": "ErrorInstanceLinkedComponentTypeMismatch",
153
137
  "type": "error"
154
138
  },
155
139
  {
@@ -179,6 +163,22 @@
179
163
  "name": "ErrorNftOwnableInitialOwnerZero",
180
164
  "type": "error"
181
165
  },
166
+ {
167
+ "inputs": [
168
+ {
169
+ "internalType": "NftId",
170
+ "name": "nftId",
171
+ "type": "uint96"
172
+ },
173
+ {
174
+ "internalType": "ObjectType",
175
+ "name": "expectedObjectType",
176
+ "type": "uint8"
177
+ }
178
+ ],
179
+ "name": "ErrorNftOwnableInvalidType",
180
+ "type": "error"
181
+ },
182
182
  {
183
183
  "inputs": [
184
184
  {
@@ -214,7 +214,7 @@
214
214
  },
215
215
  {
216
216
  "inputs": [],
217
- "name": "FailedInnerCall",
217
+ "name": "ErrorRegisterableNotActive",
218
218
  "type": "error"
219
219
  },
220
220
  {
@@ -227,17 +227,6 @@
227
227
  "name": "NotInitializing",
228
228
  "type": "error"
229
229
  },
230
- {
231
- "inputs": [
232
- {
233
- "internalType": "address",
234
- "name": "token",
235
- "type": "address"
236
- }
237
- ],
238
- "name": "SafeERC20FailedOperation",
239
- "type": "error"
240
- },
241
230
  {
242
231
  "anonymous": false,
243
232
  "inputs": [
@@ -267,6 +256,12 @@
267
256
  {
268
257
  "anonymous": false,
269
258
  "inputs": [
259
+ {
260
+ "indexed": false,
261
+ "internalType": "address",
262
+ "name": "tokenHandler",
263
+ "type": "address"
264
+ },
270
265
  {
271
266
  "indexed": false,
272
267
  "internalType": "address",
@@ -278,6 +273,12 @@
278
273
  "internalType": "Amount",
279
274
  "name": "limit",
280
275
  "type": "uint96"
276
+ },
277
+ {
278
+ "indexed": false,
279
+ "internalType": "bool",
280
+ "name": "isMaxAmount",
281
+ "type": "bool"
281
282
  }
282
283
  ],
283
284
  "name": "LogComponentTokenHandlerApproved",
@@ -392,37 +393,6 @@
392
393
  "stateMutability": "view",
393
394
  "type": "function"
394
395
  },
395
- {
396
- "inputs": [
397
- {
398
- "internalType": "address",
399
- "name": "token",
400
- "type": "address"
401
- },
402
- {
403
- "internalType": "Amount",
404
- "name": "spendingLimitAmount",
405
- "type": "uint96"
406
- }
407
- ],
408
- "name": "approveTokenHandler",
409
- "outputs": [],
410
- "stateMutability": "nonpayable",
411
- "type": "function"
412
- },
413
- {
414
- "inputs": [
415
- {
416
- "internalType": "Amount",
417
- "name": "spendingLimitAmount",
418
- "type": "uint96"
419
- }
420
- ],
421
- "name": "approveTokenHandler",
422
- "outputs": [],
423
- "stateMutability": "nonpayable",
424
- "type": "function"
425
- },
426
396
  {
427
397
  "inputs": [],
428
398
  "name": "authority",
@@ -473,11 +443,6 @@
473
443
  "name": "name",
474
444
  "type": "string"
475
445
  },
476
- {
477
- "internalType": "NftId",
478
- "name": "productNftId",
479
- "type": "uint96"
480
- },
481
446
  {
482
447
  "internalType": "contract IERC20Metadata",
483
448
  "name": "token",
@@ -488,11 +453,6 @@
488
453
  "name": "tokenHandler",
489
454
  "type": "address"
490
455
  },
491
- {
492
- "internalType": "address",
493
- "name": "wallet",
494
- "type": "address"
495
- },
496
456
  {
497
457
  "internalType": "bytes",
498
458
  "name": "data",
@@ -518,11 +478,6 @@
518
478
  "name": "name",
519
479
  "type": "string"
520
480
  },
521
- {
522
- "internalType": "NftId",
523
- "name": "productNftId",
524
- "type": "uint96"
525
- },
526
481
  {
527
482
  "internalType": "contract IERC20Metadata",
528
483
  "name": "token",
@@ -533,11 +488,6 @@
533
488
  "name": "tokenHandler",
534
489
  "type": "address"
535
490
  },
536
- {
537
- "internalType": "address",
538
- "name": "wallet",
539
- "type": "address"
540
- },
541
491
  {
542
492
  "internalType": "bytes",
543
493
  "name": "data",
@@ -656,12 +606,12 @@
656
606
  },
657
607
  {
658
608
  "inputs": [],
659
- "name": "getProductNftId",
609
+ "name": "getRegistry",
660
610
  "outputs": [
661
611
  {
662
- "internalType": "NftId",
663
- "name": "productNftId",
664
- "type": "uint96"
612
+ "internalType": "contract IRegistry",
613
+ "name": "",
614
+ "type": "address"
665
615
  }
666
616
  ],
667
617
  "stateMutability": "view",
@@ -669,12 +619,12 @@
669
619
  },
670
620
  {
671
621
  "inputs": [],
672
- "name": "getRegistry",
622
+ "name": "getRelease",
673
623
  "outputs": [
674
624
  {
675
- "internalType": "contract IRegistry",
676
- "name": "",
677
- "type": "address"
625
+ "internalType": "VersionPart",
626
+ "name": "release",
627
+ "type": "uint8"
678
628
  }
679
629
  ],
680
630
  "stateMutability": "view",
@@ -708,149 +658,41 @@
708
658
  },
709
659
  {
710
660
  "inputs": [],
711
- "name": "getWallet",
661
+ "name": "getVersion",
712
662
  "outputs": [
713
663
  {
714
- "internalType": "address",
715
- "name": "walletAddress",
716
- "type": "address"
664
+ "internalType": "Version",
665
+ "name": "version",
666
+ "type": "uint24"
717
667
  }
718
668
  ],
719
669
  "stateMutability": "view",
720
670
  "type": "function"
721
671
  },
722
- {
723
- "inputs": [
724
- {
725
- "internalType": "address",
726
- "name": "authority",
727
- "type": "address"
728
- },
729
- {
730
- "internalType": "address",
731
- "name": "registry",
732
- "type": "address"
733
- },
734
- {
735
- "internalType": "NftId",
736
- "name": "parentNftId",
737
- "type": "uint96"
738
- },
739
- {
740
- "internalType": "string",
741
- "name": "name",
742
- "type": "string"
743
- },
744
- {
745
- "internalType": "address",
746
- "name": "token",
747
- "type": "address"
748
- },
749
- {
750
- "internalType": "ObjectType",
751
- "name": "componentType",
752
- "type": "uint8"
753
- },
754
- {
755
- "internalType": "bool",
756
- "name": "isInterceptor",
757
- "type": "bool"
758
- },
759
- {
760
- "internalType": "address",
761
- "name": "initialOwner",
762
- "type": "address"
763
- },
764
- {
765
- "internalType": "bytes",
766
- "name": "registryData",
767
- "type": "bytes"
768
- },
769
- {
770
- "internalType": "bytes",
771
- "name": "componentData",
772
- "type": "bytes"
773
- }
774
- ],
775
- "name": "initializeComponent",
776
- "outputs": [],
777
- "stateMutability": "nonpayable",
778
- "type": "function"
779
- },
780
672
  {
781
673
  "inputs": [],
782
- "name": "initializeERC165",
783
- "outputs": [],
784
- "stateMutability": "nonpayable",
785
- "type": "function"
786
- },
787
- {
788
- "inputs": [
789
- {
790
- "internalType": "address",
791
- "name": "initialOwner",
792
- "type": "address"
793
- },
674
+ "name": "getWallet",
675
+ "outputs": [
794
676
  {
795
677
  "internalType": "address",
796
- "name": "registryAddress",
678
+ "name": "walletAddress",
797
679
  "type": "address"
798
680
  }
799
681
  ],
800
- "name": "initializeNftOwnable",
801
- "outputs": [],
802
- "stateMutability": "nonpayable",
682
+ "stateMutability": "view",
803
683
  "type": "function"
804
684
  },
805
685
  {
806
- "inputs": [
807
- {
808
- "internalType": "address",
809
- "name": "registryAddress",
810
- "type": "address"
811
- },
812
- {
813
- "internalType": "NftId",
814
- "name": "parentNftId",
815
- "type": "uint96"
816
- },
817
- {
818
- "internalType": "ObjectType",
819
- "name": "objectType",
820
- "type": "uint8"
821
- },
686
+ "inputs": [],
687
+ "name": "isActive",
688
+ "outputs": [
822
689
  {
823
690
  "internalType": "bool",
824
- "name": "isInterceptor",
691
+ "name": "active",
825
692
  "type": "bool"
826
- },
827
- {
828
- "internalType": "address",
829
- "name": "initialOwner",
830
- "type": "address"
831
- },
832
- {
833
- "internalType": "bytes",
834
- "name": "registryData",
835
- "type": "bytes"
836
693
  }
837
694
  ],
838
- "name": "initializeRegisterable",
839
- "outputs": [],
840
- "stateMutability": "nonpayable",
841
- "type": "function"
842
- },
843
- {
844
- "inputs": [
845
- {
846
- "internalType": "address",
847
- "name": "registryAddress",
848
- "type": "address"
849
- }
850
- ],
851
- "name": "initializeRegistryLinked",
852
- "outputs": [],
853
- "stateMutability": "nonpayable",
695
+ "stateMutability": "view",
854
696
  "type": "function"
855
697
  },
856
698
  {
@@ -918,31 +760,6 @@
918
760
  "stateMutability": "nonpayable",
919
761
  "type": "function"
920
762
  },
921
- {
922
- "inputs": [],
923
- "name": "lock",
924
- "outputs": [],
925
- "stateMutability": "nonpayable",
926
- "type": "function"
927
- },
928
- {
929
- "inputs": [
930
- {
931
- "internalType": "address",
932
- "name": "to",
933
- "type": "address"
934
- },
935
- {
936
- "internalType": "uint256",
937
- "name": "tokenId",
938
- "type": "uint256"
939
- }
940
- ],
941
- "name": "nftMint",
942
- "outputs": [],
943
- "stateMutability": "nonpayable",
944
- "type": "function"
945
- },
946
763
  {
947
764
  "inputs": [
948
765
  {
@@ -959,29 +776,14 @@
959
776
  "internalType": "uint256",
960
777
  "name": "tokenId",
961
778
  "type": "uint256"
962
- }
963
- ],
964
- "name": "nftTransferFrom",
965
- "outputs": [],
966
- "stateMutability": "nonpayable",
967
- "type": "function"
968
- },
969
- {
970
- "inputs": [],
971
- "name": "register",
972
- "outputs": [],
973
- "stateMutability": "nonpayable",
974
- "type": "function"
975
- },
976
- {
977
- "inputs": [
779
+ },
978
780
  {
979
- "internalType": "bytes4",
980
- "name": "interfaceId",
981
- "type": "bytes4"
781
+ "internalType": "address",
782
+ "name": "operator",
783
+ "type": "address"
982
784
  }
983
785
  ],
984
- "name": "registerInterface",
786
+ "name": "nftTransferFrom",
985
787
  "outputs": [],
986
788
  "stateMutability": "nonpayable",
987
789
  "type": "function"
@@ -1045,19 +847,6 @@
1045
847
  "stateMutability": "nonpayable",
1046
848
  "type": "function"
1047
849
  },
1048
- {
1049
- "inputs": [
1050
- {
1051
- "internalType": "address",
1052
- "name": "newWallet",
1053
- "type": "address"
1054
- }
1055
- ],
1056
- "name": "setWallet",
1057
- "outputs": [],
1058
- "stateMutability": "nonpayable",
1059
- "type": "function"
1060
- },
1061
850
  {
1062
851
  "inputs": [
1063
852
  {
@@ -1077,13 +866,6 @@
1077
866
  "stateMutability": "view",
1078
867
  "type": "function"
1079
868
  },
1080
- {
1081
- "inputs": [],
1082
- "name": "unlock",
1083
- "outputs": [],
1084
- "stateMutability": "nonpayable",
1085
- "type": "function"
1086
- },
1087
869
  {
1088
870
  "inputs": [
1089
871
  {
@@ -1096,7 +878,7 @@
1096
878
  "outputs": [
1097
879
  {
1098
880
  "internalType": "Amount",
1099
- "name": "withdrawnAmount",
881
+ "name": "",
1100
882
  "type": "uint96"
1101
883
  }
1102
884
  ],
@@ -1104,80 +886,72 @@
1104
886
  "type": "function"
1105
887
  }
1106
888
  ],
1107
- "bytecode": "0x6080604052348015600e575f80fd5b506130948061001c5f395ff3fe608060405234801561000f575f80fd5b506004361061026a575f3560e01c8063644c45e01161014b578063bae99c99116100bf578063deaa59df11610084578063deaa59df146105a5578063e7f7fb86146105b8578063ea15869f146105cb578063f7c34ee0146105f2578063f83d08ba14610605578063f8bf0d9f1461060d575f80fd5b8063bae99c9914610534578063bb1e0e5914610547578063bf7e214f1461055a578063cf4ee77a14610562578063de7b5d1414610575575f80fd5b8063893d20e811610110578063893d20e8146104d25780638fb36037146104da57806390edbd35146104fb578063a69df4b514610510578063ada9652e14610518578063b423086c1461052c575f80fd5b8063644c45e014610459578063675393bf146104765780636bd1c0eb146104895780637a9e5e4b146104b957806387ef9ba0146104cc575f80fd5b806321df0da7116101e2578063419197fe116101a7578063419197fe146103eb57806343d752d3146103fe5780634bd100e4146104065780634c125e791461042d5780635741e5e9146104405780635ab1bd5314610448575f80fd5b806321df0da71461039957806322366844146103a157806327bb7a33146103a95780632eb3e6f4146103bc57806336fc697e146103e3575f80fd5b8063138461e011610233578063138461e01461031957806317d7de7c146103215780631aa3a008146103365780631c6b21901461033e5780631eff4b2214610351578063214cdb8014610386575f80fd5b806251884a1461026e57806301ffc9a7146102935780630b29e28e146102cf5780630fec111c146102e457806313299604146102f9575b5f80fd5b610276610620565b6040516001600160601b0390911681526020015b60405180910390f35b6102bf6102a1366004612476565b6001600160e01b0319165f9081526020819052604090205460ff1690565b604051901515815260200161028a565b6102e26102dd3660046124d7565b610632565b005b6102ec610645565b60405161028a91906125b1565b610301610803565b6040516001600160a01b03909116815260200161028a565b610276610815565b610329610824565b60405161028a9190612645565b6102e2610834565b61027661034c366004612657565b6108ef565b6103787f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161028a565b6102e2610394366004612476565b61096c565b610301610998565b6102bf6109aa565b6102e26103b73660046127ca565b610aa0565b6103787fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6102e2610b45565b6102e26103f936600461285d565b610b8a565b610301610d4a565b6103787faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f90081565b6102e261043b366004612894565b610d5c565b6102bf610d68565b6001546001600160a01b0316610301565b5f8051602061301f833981519152546001600160601b0316610276565b6102e26104843660046128ad565b610e1c565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b0316610301565b6102e26104c73660046128ad565b610f28565b5f6102bf565b610301610faa565b6104e26110db565b6040516001600160e01b0319909116815260200161028a565b610503611110565b60405161028a91906128c8565b6102e2611135565b6103785f8051602061301f83398151915281565b6105036111bb565b6102e2610542366004612657565b6111cb565b6102e261055536600461295b565b611217565b6103016112b4565b6102e2610570366004612985565b6112cf565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b0316610301565b6102e26105b33660046128ad565b6112e2565b6102e26105c63660046129cf565b611559565b6103787fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6102e2610600366004612a0d565b6115fb565b6102e2611671565b6102e261061b366004612a39565b6116e5565b5f610629611110565b60200151905090565b61063e335b5f366117f7565b5050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156106f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107199190612b43565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610761610faa565b6001600160a01b0316815260200182600101805461077e90612b5e565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa90612b5e565b80156107f55780601f106107cc576101008083540402835291602001916107f5565b820191905f5260205f20905b8154815290600101906020018083116107d857829003601f168201915b505050505081525091505090565b5f61080c611110565b60800151905090565b5f61081f306118f5565b905090565b606061082e611110565b51919050565b61083c610faa565b6001600160a01b0316336001600160a01b0316146108745760405163086391f760e31b81523360048201526024015b60405180910390fd5b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f9005460408051630339d25960e41b815290516001600160a01b039092169163339d2590916004808201925f9290919082900301818387803b1580156108d7575f80fd5b505af11580156108e9573d5f803e3d5ffd5b50505050565b5f6108f8610faa565b6001600160a01b0316336001600160a01b03161461092b5760405163086391f760e31b815233600482015260240161086b565b61093433610637565b60405163ca49882f60e01b815260206004820152600c60248201526b77697468647261774665657360a01b604482015260640161086b565b610974611aee565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f6109a1611110565b60400151905090565b5f6109bd6001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015610a01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a259190612b43565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610a7c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081f9190612ba1565b610aa8611aee565b610ab282876115fb565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610b3b8382612c00565b5050505050505050565b610b4d611aee565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610b92610faa565b6001600160a01b0316336001600160a01b031614610bc55760405163086391f760e31b815233600482015260240161086b565b30610bce610803565b6001600160a01b031614610bf55760405163b6d7537f60e01b815260040160405180910390fd5b816001600160a01b031663095ea7b3610c0c610d4a565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610c62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c869190612cba565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610cce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf29190612ba1565b507ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610d1c610d4a565b604080516001600160a01b0390921682526001600160601b0384166020830152015b60405180910390a15050565b5f610d53611110565b60600151905090565b610d6533610637565b50565b5f610d716109aa565b15610dec576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610dc5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d539190810190612d36565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b610e24611aee565b806001600160a01b03163b5f03610e595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610ed3575060408051601f3d908101601f19168201909252610ed091810190612ba1565b60015b610efb5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b80610f245760405163fdeac91f60e01b81526001600160a01b038316600482015260240161086b565b5050565b33610f316112b4565b6001600160a01b0316816001600160a01b031614610f6c5760405162d1953b60e31b81526001600160a01b038216600482015260240161086b565b816001600160a01b03163b5f03610fa1576040516361798f2f60e11b81526001600160a01b038316600482015260240161086b565b610f2482611b3e565b5f805f8051602061301f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611016573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103a9190612ba1565b156110c5576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561109b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bf9190612e06565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061303f83398151915280545f9190600160a01b900460ff16611102575f6110bf565b638fb3603760e01b91505090565b611118612420565b6111206109aa565b1561112d5761081f611b97565b61081f6111bb565b61113d610faa565b6001600160a01b0316336001600160a01b0316146111705760405163086391f760e31b815233600482015260240161086b565b61117a600a611d7d565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b1580156108d7575f80fd5b6111c3612420565b61081f611b97565b6111d3610faa565b6001600160a01b0316336001600160a01b0316146112065760405163086391f760e31b815233600482015260240161086b565b610d65611211610998565b82610b8a565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561125e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112829190612e06565b6001600160a01b0316336001600160a01b031614610f245760405162f0630960e01b815233600482015260240161086b565b5f8051602061303f833981519152546001600160a01b031690565b6112d833610637565b610f248282611e98565b6112ea610faa565b6001600160a01b0316336001600160a01b03161461131d5760405163086391f760e31b815233600482015260240161086b565b5f611326610803565b90505f611331610998565b6040516370a0823160e01b81526001600160a01b0384811660048301529192505f918316906370a0823190602401602060405180830381865afa15801561137a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139e9190612cba565b9050801561146d576001600160a01b038316301461146d57604051636eb1769f60e11b81526001600160a01b0384811660048301523060248301525f919084169063dd62ed3e90604401602060405180830381865afa158015611403573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114279190612cba565b90508181101561146b576040516372c963b360e11b81526001600160a01b03808616600483015286166024820152604481018290526064810183905260840161086b565b505b61147684611f29565b80156108e957306001600160a01b038416036114fc5760405163095ea7b360e01b8152306004820152602481018290526001600160a01b0383169063095ea7b3906044016020604051808303815f875af11580156114d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fa9190612ba1565b505b61150882848684611fc2565b604080516001600160a01b038086168252861660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a150505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c49190612e06565b6001600160a01b0316336001600160a01b0316146115f65760405162f0630960e01b815233600482015260240161086b565b505050565b611603611aee565b61160c81610e1c565b611614610b45565b6001600160a01b03821661163b5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061301f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b611679610faa565b6001600160a01b0316336001600160a01b0316146116ac5760405163086391f760e31b815233600482015260240161086b565b6116b6600a611d7d565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e906024016111a4565b6116ed611aee565b6116fb898987878787610aa0565b6117048a61201c565b6001600160a01b03861661172b576040516327eab2e360e11b815260040160405180910390fd5b86515f0361174c5760405163591eebf360e11b815260040160405180910390fd5b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806117788982612c00565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b87151502179055600381016117c98382612c00565b506117da634a531f3360e01b61096c565b6117ea632986755f60e11b61096c565b5050505050505050505050565b5f8051602061303f8339815191525f8061182f6118126112b4565b873061182160045f8a8c612e21565b61182a91612e48565b61202d565b91509150816118ed5763ffffffff8116156118ca57825460ff60a01b1916600160a01b17835561185d6112b4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161188c93929190612e80565b5f604051808303815f87803b1580156118a3575f80fd5b505af11580156118b5573d5f803e3d5ffd5b5050845460ff60a01b19168555506118ed9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161086b565b505050505050565b5f805f8051602061301f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611961573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119859190612ba1565b156119b15780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161086b565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611a03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a279190612ba1565b611a4f5760405163b9304b0d60e01b81526001600160a01b038416600482015260240161086b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611aa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac59190612b43565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16611b3c57604051631afcd79f60e31b815260040160405180910390fd5b565b5f8051602061303f83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001610d3e565b611b9f612420565b5f611bb26001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015611bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1a9190612b43565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611c73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c979190612ba1565b15611d75577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c3611cf35f8051602061301f833981519152546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015611d34573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d5b9190810190612ebf565b60808101519092506001600160a01b031615611d75575090565b6110bf612135565b5f807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f005460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015611de6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0a9190612f97565b9050611e1e6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa158015611e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e919190612e06565b9392505050565b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f901546040516367a773bd60e11b81526001600160a01b039091169063cf4ee77a90611ee99085908590600401612fb2565b6020604051808303815f875af1158015611f05573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115f69190612ba1565b611f31610faa565b6001600160a01b0316336001600160a01b031614611f645760405163086391f760e31b815233600482015260240161086b565b611f6e600b611d7d565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015611fb0575f80fd5b505af115801561063e573d5f803e3d5ffd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526108e99085906122ac565b612024611aee565b610d658161230d565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161209b9190612fd3565b5f60405180830381855afa9150503d805f81146120d3576040519150601f19603f3d011682016040523d82523d5f602084013e6120d8565b606091505b5091509150811561212a57604081511061210a57808060200190518101906121009190612fe9565b909450925061212a565b602081511061212a57808060200190518101906121279190612ba1565b93505b505094509492505050565b61213d612420565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060c00160405280825f01805461217a90612b5e565b80601f01602080910402602001604051908101604052809291908181526020018280546121a690612b5e565b80156121f15780601f106121c8576101008083540402835291602001916121f1565b820191905f5260205f20905b8154815290600101906020018083116121d457829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612242573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122669190612b43565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161077e90612b5e565b5f6122c06001600160a01b0384168361231e565b905080515f141580156122e45750808060200190518101906122e29190612ba1565b155b156115f657604051635274afe760e01b81526001600160a01b038416600482015260240161086b565b612315611aee565b610d6581611b3e565b6060611e9183835f845f80856001600160a01b031684866040516123429190612fd3565b5f6040518083038185875af1925050503d805f811461237c576040519150601f19603f3d011682016040523d82523d5f602084013e612381565b606091505b509150915061239186838361239b565b9695505050505050565b6060826123b0576123ab826123f7565b611e91565b81511580156123c757506001600160a01b0384163b155b156123f057604051639996b31560e01b81526001600160a01b038516600482015260240161086b565b5080611e91565b8051156124075780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215612486575f80fd5b81356001600160e01b031981168114611e91575f80fd5b80356001600160401b03811681146124b3575f80fd5b919050565b6001600160601b0381168114610d65575f80fd5b80356124b3816124b8565b5f805f805f608086880312156124eb575f80fd5b6124f48661249d565b94506020860135612504816124b8565b935060408601356001600160401b0381111561251e575f80fd5b8601601f8101881361252e575f80fd5b80356001600160401b03811115612543575f80fd5b886020828401011115612554575f80fd5b60209190910193509150606086013564ffffffffff81168114612575575f80fd5b809150509295509295909350565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516125f9608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261263d610100840182612583565b949350505050565b602081525f611e916020830184612583565b5f60208284031215612667575f80fd5b8135611e91816124b8565b6001600160a01b0381168114610d65575f80fd5b80356124b381612672565b60ff81168114610d65575f80fd5b80356124b381612691565b8015158114610d65575f80fd5b80356124b3816126aa565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156126f8576126f86126c2565b60405290565b60405160c081016001600160401b03811182821017156126f8576126f86126c2565b604051601f8201601f191681016001600160401b0381118282101715612748576127486126c2565b604052919050565b5f6001600160401b03821115612768576127686126c2565b50601f01601f191660200190565b5f82601f830112612785575f80fd5b8135602083015f61279d61279884612750565b612720565b90508281528583830111156127b0575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c087890312156127df575f80fd5b86356127ea81612672565b955060208701356127fa816124b8565b9450604087013561280a81612691565b9350606087013561281a816126aa565b9250608087013561282a81612672565b915060a08701356001600160401b03811115612844575f80fd5b61285089828a01612776565b9150509295509295509295565b5f806040838503121561286e575f80fd5b823561287981612672565b91506020830135612889816124b8565b809150509250929050565b5f602082840312156128a4575f80fd5b611e918261249d565b5f602082840312156128bd575f80fd5b8135611e9181612672565b602081525f825160c060208401526128e360e0840182612583565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161293660a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526129528282612583565b95945050505050565b5f806040838503121561296c575f80fd5b823561297781612672565b946020939093013593505050565b5f8060408385031215612996575f80fd5b61299f8361249d565b915060208301356001600160401b038111156129b9575f80fd5b6129c585828601612776565b9150509250929050565b5f805f606084860312156129e1575f80fd5b83356129ec81612672565b925060208401356129fc81612672565b929592945050506040919091013590565b5f8060408385031215612a1e575f80fd5b8235612a2981612672565b9150602083013561288981612672565b5f805f805f805f805f806101408b8d031215612a53575f80fd5b612a5c8b612686565b9950612a6a60208c01612686565b9850612a7860408c016124cc565b975060608b01356001600160401b03811115612a92575f80fd5b612a9e8d828e01612776565b975050612aad60808c01612686565b9550612abb60a08c0161269f565b9450612ac960c08c016126b7565b9350612ad760e08c01612686565b92506101008b01356001600160401b03811115612af2575f80fd5b612afe8d828e01612776565b9250506101208b01356001600160401b03811115612b1a575f80fd5b612b268d828e01612776565b9150509295989b9194979a5092959850565b80516124b3816124b8565b5f60208284031215612b53575f80fd5b8151611e91816124b8565b600181811c90821680612b7257607f821691505b602082108103612b9057634e487b7160e01b5f52602260045260245ffd5b50919050565b80516124b3816126aa565b5f60208284031215612bb1575f80fd5b8151611e91816126aa565b601f8211156115f657805f5260205f20601f840160051c81016020851015612be15750805b601f840160051c820191505b8181101561063e575f8155600101612bed565b81516001600160401b03811115612c1957612c196126c2565b612c2d81612c278454612b5e565b84612bbc565b6020601f821160018114612c5f575f8315612c485750848201515b5f19600385901b1c1916600184901b17845561063e565b5f84815260208120601f198516915b82811015612c8e5787850151825560209485019460019092019101612c6e565b5084821015612cab57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215612cca575f80fd5b5051919050565b80516124b381612691565b80516124b381612672565b5f82601f830112612cf6575f80fd5b8151602083015f612d0961279884612750565b9050828152858383011115612d1c575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215612d46575f80fd5b81516001600160401b03811115612d5b575f80fd5b820160e08185031215612d6c575f80fd5b612d746126d6565b612d7d82612b38565b8152612d8b60208301612b38565b6020820152612d9c60408301612cd1565b6040820152612dad60608301612b96565b6060820152612dbe60808301612cdc565b6080820152612dcf60a08301612cdc565b60a082015260c08201516001600160401b03811115612dec575f80fd5b612df886828501612ce7565b60c083015250949350505050565b5f60208284031215612e16575f80fd5b8151611e9181612672565b5f8085851115612e2f575f80fd5b83861115612e3b575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612e79576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215612ecf575f80fd5b81516001600160401b03811115612ee4575f80fd5b820160c08185031215612ef5575f80fd5b612efd6126fe565b81516001600160401b03811115612f12575f80fd5b612f1e86828501612ce7565b825250612f2d60208301612b38565b6020820152612f3e60408301612cdc565b6040820152612f4f60608301612cdc565b6060820152612f6060808301612cdc565b608082015260a08201516001600160401b03811115612f7d575f80fd5b612f8986828501612ce7565b60a083015250949350505050565b5f60208284031215612fa7575f80fd5b8151611e9181612691565b6001600160401b0383168152604060208201525f61263d6040830184612583565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612ffa575f80fd5b8251613005816126aa565b602084015190925063ffffffff81168114612889575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220f43bbd390e1477a311bfb06461d4cc329972dcd8ab5dfb0773ea4f27330e4e2564736f6c634300081a0033",
1108
- "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061026a575f3560e01c8063644c45e01161014b578063bae99c99116100bf578063deaa59df11610084578063deaa59df146105a5578063e7f7fb86146105b8578063ea15869f146105cb578063f7c34ee0146105f2578063f83d08ba14610605578063f8bf0d9f1461060d575f80fd5b8063bae99c9914610534578063bb1e0e5914610547578063bf7e214f1461055a578063cf4ee77a14610562578063de7b5d1414610575575f80fd5b8063893d20e811610110578063893d20e8146104d25780638fb36037146104da57806390edbd35146104fb578063a69df4b514610510578063ada9652e14610518578063b423086c1461052c575f80fd5b8063644c45e014610459578063675393bf146104765780636bd1c0eb146104895780637a9e5e4b146104b957806387ef9ba0146104cc575f80fd5b806321df0da7116101e2578063419197fe116101a7578063419197fe146103eb57806343d752d3146103fe5780634bd100e4146104065780634c125e791461042d5780635741e5e9146104405780635ab1bd5314610448575f80fd5b806321df0da71461039957806322366844146103a157806327bb7a33146103a95780632eb3e6f4146103bc57806336fc697e146103e3575f80fd5b8063138461e011610233578063138461e01461031957806317d7de7c146103215780631aa3a008146103365780631c6b21901461033e5780631eff4b2214610351578063214cdb8014610386575f80fd5b806251884a1461026e57806301ffc9a7146102935780630b29e28e146102cf5780630fec111c146102e457806313299604146102f9575b5f80fd5b610276610620565b6040516001600160601b0390911681526020015b60405180910390f35b6102bf6102a1366004612476565b6001600160e01b0319165f9081526020819052604090205460ff1690565b604051901515815260200161028a565b6102e26102dd3660046124d7565b610632565b005b6102ec610645565b60405161028a91906125b1565b610301610803565b6040516001600160a01b03909116815260200161028a565b610276610815565b610329610824565b60405161028a9190612645565b6102e2610834565b61027661034c366004612657565b6108ef565b6103787f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161028a565b6102e2610394366004612476565b61096c565b610301610998565b6102bf6109aa565b6102e26103b73660046127ca565b610aa0565b6103787fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6102e2610b45565b6102e26103f936600461285d565b610b8a565b610301610d4a565b6103787faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f90081565b6102e261043b366004612894565b610d5c565b6102bf610d68565b6001546001600160a01b0316610301565b5f8051602061301f833981519152546001600160601b0316610276565b6102e26104843660046128ad565b610e1c565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b0316610301565b6102e26104c73660046128ad565b610f28565b5f6102bf565b610301610faa565b6104e26110db565b6040516001600160e01b0319909116815260200161028a565b610503611110565b60405161028a91906128c8565b6102e2611135565b6103785f8051602061301f83398151915281565b6105036111bb565b6102e2610542366004612657565b6111cb565b6102e261055536600461295b565b611217565b6103016112b4565b6102e2610570366004612985565b6112cf565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b0316610301565b6102e26105b33660046128ad565b6112e2565b6102e26105c63660046129cf565b611559565b6103787fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6102e2610600366004612a0d565b6115fb565b6102e2611671565b6102e261061b366004612a39565b6116e5565b5f610629611110565b60200151905090565b61063e335b5f366117f7565b5050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156106f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107199190612b43565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610761610faa565b6001600160a01b0316815260200182600101805461077e90612b5e565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa90612b5e565b80156107f55780601f106107cc576101008083540402835291602001916107f5565b820191905f5260205f20905b8154815290600101906020018083116107d857829003601f168201915b505050505081525091505090565b5f61080c611110565b60800151905090565b5f61081f306118f5565b905090565b606061082e611110565b51919050565b61083c610faa565b6001600160a01b0316336001600160a01b0316146108745760405163086391f760e31b81523360048201526024015b60405180910390fd5b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f9005460408051630339d25960e41b815290516001600160a01b039092169163339d2590916004808201925f9290919082900301818387803b1580156108d7575f80fd5b505af11580156108e9573d5f803e3d5ffd5b50505050565b5f6108f8610faa565b6001600160a01b0316336001600160a01b03161461092b5760405163086391f760e31b815233600482015260240161086b565b61093433610637565b60405163ca49882f60e01b815260206004820152600c60248201526b77697468647261774665657360a01b604482015260640161086b565b610974611aee565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f6109a1611110565b60400151905090565b5f6109bd6001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015610a01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a259190612b43565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610a7c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081f9190612ba1565b610aa8611aee565b610ab282876115fb565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610b3b8382612c00565b5050505050505050565b610b4d611aee565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610b92610faa565b6001600160a01b0316336001600160a01b031614610bc55760405163086391f760e31b815233600482015260240161086b565b30610bce610803565b6001600160a01b031614610bf55760405163b6d7537f60e01b815260040160405180910390fd5b816001600160a01b031663095ea7b3610c0c610d4a565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610c62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c869190612cba565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af1158015610cce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf29190612ba1565b507ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610d1c610d4a565b604080516001600160a01b0390921682526001600160601b0384166020830152015b60405180910390a15050565b5f610d53611110565b60600151905090565b610d6533610637565b50565b5f610d716109aa565b15610dec576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610dc5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d539190810190612d36565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b610e24611aee565b806001600160a01b03163b5f03610e595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610ed3575060408051601f3d908101601f19168201909252610ed091810190612ba1565b60015b610efb5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b80610f245760405163fdeac91f60e01b81526001600160a01b038316600482015260240161086b565b5050565b33610f316112b4565b6001600160a01b0316816001600160a01b031614610f6c5760405162d1953b60e31b81526001600160a01b038216600482015260240161086b565b816001600160a01b03163b5f03610fa1576040516361798f2f60e11b81526001600160a01b038316600482015260240161086b565b610f2482611b3e565b5f805f8051602061301f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611016573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103a9190612ba1565b156110c5576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561109b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bf9190612e06565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061303f83398151915280545f9190600160a01b900460ff16611102575f6110bf565b638fb3603760e01b91505090565b611118612420565b6111206109aa565b1561112d5761081f611b97565b61081f6111bb565b61113d610faa565b6001600160a01b0316336001600160a01b0316146111705760405163086391f760e31b815233600482015260240161086b565b61117a600a611d7d565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b1580156108d7575f80fd5b6111c3612420565b61081f611b97565b6111d3610faa565b6001600160a01b0316336001600160a01b0316146112065760405163086391f760e31b815233600482015260240161086b565b610d65611211610998565b82610b8a565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561125e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112829190612e06565b6001600160a01b0316336001600160a01b031614610f245760405162f0630960e01b815233600482015260240161086b565b5f8051602061303f833981519152546001600160a01b031690565b6112d833610637565b610f248282611e98565b6112ea610faa565b6001600160a01b0316336001600160a01b03161461131d5760405163086391f760e31b815233600482015260240161086b565b5f611326610803565b90505f611331610998565b6040516370a0823160e01b81526001600160a01b0384811660048301529192505f918316906370a0823190602401602060405180830381865afa15801561137a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139e9190612cba565b9050801561146d576001600160a01b038316301461146d57604051636eb1769f60e11b81526001600160a01b0384811660048301523060248301525f919084169063dd62ed3e90604401602060405180830381865afa158015611403573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114279190612cba565b90508181101561146b576040516372c963b360e11b81526001600160a01b03808616600483015286166024820152604481018290526064810183905260840161086b565b505b61147684611f29565b80156108e957306001600160a01b038416036114fc5760405163095ea7b360e01b8152306004820152602481018290526001600160a01b0383169063095ea7b3906044016020604051808303815f875af11580156114d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fa9190612ba1565b505b61150882848684611fc2565b604080516001600160a01b038086168252861660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a150505050565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c49190612e06565b6001600160a01b0316336001600160a01b0316146115f65760405162f0630960e01b815233600482015260240161086b565b505050565b611603611aee565b61160c81610e1c565b611614610b45565b6001600160a01b03821661163b5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061301f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b611679610faa565b6001600160a01b0316336001600160a01b0316146116ac5760405163086391f760e31b815233600482015260240161086b565b6116b6600a611d7d565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e906024016111a4565b6116ed611aee565b6116fb898987878787610aa0565b6117048a61201c565b6001600160a01b03861661172b576040516327eab2e360e11b815260040160405180910390fd5b86515f0361174c5760405163591eebf360e11b815260040160405180910390fd5b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806117788982612c00565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b87151502179055600381016117c98382612c00565b506117da634a531f3360e01b61096c565b6117ea632986755f60e11b61096c565b5050505050505050505050565b5f8051602061303f8339815191525f8061182f6118126112b4565b873061182160045f8a8c612e21565b61182a91612e48565b61202d565b91509150816118ed5763ffffffff8116156118ca57825460ff60a01b1916600160a01b17835561185d6112b4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161188c93929190612e80565b5f604051808303815f87803b1580156118a3575f80fd5b505af11580156118b5573d5f803e3d5ffd5b5050845460ff60a01b19168555506118ed9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161086b565b505050505050565b5f805f8051602061301f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611961573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119859190612ba1565b156119b15780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161086b565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611a03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a279190612ba1565b611a4f5760405163b9304b0d60e01b81526001600160a01b038416600482015260240161086b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611aa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac59190612b43565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16611b3c57604051631afcd79f60e31b815260040160405180910390fd5b565b5f8051602061303f83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001610d3e565b611b9f612420565b5f611bb26001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015611bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1a9190612b43565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611c73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c979190612ba1565b15611d75577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c3611cf35f8051602061301f833981519152546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015611d34573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d5b9190810190612ebf565b60808101519092506001600160a01b031615611d75575090565b6110bf612135565b5f807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f005460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015611de6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0a9190612f97565b9050611e1e6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa158015611e6d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e919190612e06565b9392505050565b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f901546040516367a773bd60e11b81526001600160a01b039091169063cf4ee77a90611ee99085908590600401612fb2565b6020604051808303815f875af1158015611f05573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115f69190612ba1565b611f31610faa565b6001600160a01b0316336001600160a01b031614611f645760405163086391f760e31b815233600482015260240161086b565b611f6e600b611d7d565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015611fb0575f80fd5b505af115801561063e573d5f803e3d5ffd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526108e99085906122ac565b612024611aee565b610d658161230d565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161209b9190612fd3565b5f60405180830381855afa9150503d805f81146120d3576040519150601f19603f3d011682016040523d82523d5f602084013e6120d8565b606091505b5091509150811561212a57604081511061210a57808060200190518101906121009190612fe9565b909450925061212a565b602081511061212a57808060200190518101906121279190612ba1565b93505b505094509492505050565b61213d612420565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060c00160405280825f01805461217a90612b5e565b80601f01602080910402602001604051908101604052809291908181526020018280546121a690612b5e565b80156121f15780601f106121c8576101008083540402835291602001916121f1565b820191905f5260205f20905b8154815290600101906020018083116121d457829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612242573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122669190612b43565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161077e90612b5e565b5f6122c06001600160a01b0384168361231e565b905080515f141580156122e45750808060200190518101906122e29190612ba1565b155b156115f657604051635274afe760e01b81526001600160a01b038416600482015260240161086b565b612315611aee565b610d6581611b3e565b6060611e9183835f845f80856001600160a01b031684866040516123429190612fd3565b5f6040518083038185875af1925050503d805f811461237c576040519150601f19603f3d011682016040523d82523d5f602084013e612381565b606091505b509150915061239186838361239b565b9695505050505050565b6060826123b0576123ab826123f7565b611e91565b81511580156123c757506001600160a01b0384163b155b156123f057604051639996b31560e01b81526001600160a01b038516600482015260240161086b565b5080611e91565b8051156124075780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f60208284031215612486575f80fd5b81356001600160e01b031981168114611e91575f80fd5b80356001600160401b03811681146124b3575f80fd5b919050565b6001600160601b0381168114610d65575f80fd5b80356124b3816124b8565b5f805f805f608086880312156124eb575f80fd5b6124f48661249d565b94506020860135612504816124b8565b935060408601356001600160401b0381111561251e575f80fd5b8601601f8101881361252e575f80fd5b80356001600160401b03811115612543575f80fd5b886020828401011115612554575f80fd5b60209190910193509150606086013564ffffffffff81168114612575575f80fd5b809150509295509295909350565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516125f9608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261263d610100840182612583565b949350505050565b602081525f611e916020830184612583565b5f60208284031215612667575f80fd5b8135611e91816124b8565b6001600160a01b0381168114610d65575f80fd5b80356124b381612672565b60ff81168114610d65575f80fd5b80356124b381612691565b8015158114610d65575f80fd5b80356124b3816126aa565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156126f8576126f86126c2565b60405290565b60405160c081016001600160401b03811182821017156126f8576126f86126c2565b604051601f8201601f191681016001600160401b0381118282101715612748576127486126c2565b604052919050565b5f6001600160401b03821115612768576127686126c2565b50601f01601f191660200190565b5f82601f830112612785575f80fd5b8135602083015f61279d61279884612750565b612720565b90508281528583830111156127b0575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c087890312156127df575f80fd5b86356127ea81612672565b955060208701356127fa816124b8565b9450604087013561280a81612691565b9350606087013561281a816126aa565b9250608087013561282a81612672565b915060a08701356001600160401b03811115612844575f80fd5b61285089828a01612776565b9150509295509295509295565b5f806040838503121561286e575f80fd5b823561287981612672565b91506020830135612889816124b8565b809150509250929050565b5f602082840312156128a4575f80fd5b611e918261249d565b5f602082840312156128bd575f80fd5b8135611e9181612672565b602081525f825160c060208401526128e360e0840182612583565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161293660a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526129528282612583565b95945050505050565b5f806040838503121561296c575f80fd5b823561297781612672565b946020939093013593505050565b5f8060408385031215612996575f80fd5b61299f8361249d565b915060208301356001600160401b038111156129b9575f80fd5b6129c585828601612776565b9150509250929050565b5f805f606084860312156129e1575f80fd5b83356129ec81612672565b925060208401356129fc81612672565b929592945050506040919091013590565b5f8060408385031215612a1e575f80fd5b8235612a2981612672565b9150602083013561288981612672565b5f805f805f805f805f806101408b8d031215612a53575f80fd5b612a5c8b612686565b9950612a6a60208c01612686565b9850612a7860408c016124cc565b975060608b01356001600160401b03811115612a92575f80fd5b612a9e8d828e01612776565b975050612aad60808c01612686565b9550612abb60a08c0161269f565b9450612ac960c08c016126b7565b9350612ad760e08c01612686565b92506101008b01356001600160401b03811115612af2575f80fd5b612afe8d828e01612776565b9250506101208b01356001600160401b03811115612b1a575f80fd5b612b268d828e01612776565b9150509295989b9194979a5092959850565b80516124b3816124b8565b5f60208284031215612b53575f80fd5b8151611e91816124b8565b600181811c90821680612b7257607f821691505b602082108103612b9057634e487b7160e01b5f52602260045260245ffd5b50919050565b80516124b3816126aa565b5f60208284031215612bb1575f80fd5b8151611e91816126aa565b601f8211156115f657805f5260205f20601f840160051c81016020851015612be15750805b601f840160051c820191505b8181101561063e575f8155600101612bed565b81516001600160401b03811115612c1957612c196126c2565b612c2d81612c278454612b5e565b84612bbc565b6020601f821160018114612c5f575f8315612c485750848201515b5f19600385901b1c1916600184901b17845561063e565b5f84815260208120601f198516915b82811015612c8e5787850151825560209485019460019092019101612c6e565b5084821015612cab57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215612cca575f80fd5b5051919050565b80516124b381612691565b80516124b381612672565b5f82601f830112612cf6575f80fd5b8151602083015f612d0961279884612750565b9050828152858383011115612d1c575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215612d46575f80fd5b81516001600160401b03811115612d5b575f80fd5b820160e08185031215612d6c575f80fd5b612d746126d6565b612d7d82612b38565b8152612d8b60208301612b38565b6020820152612d9c60408301612cd1565b6040820152612dad60608301612b96565b6060820152612dbe60808301612cdc565b6080820152612dcf60a08301612cdc565b60a082015260c08201516001600160401b03811115612dec575f80fd5b612df886828501612ce7565b60c083015250949350505050565b5f60208284031215612e16575f80fd5b8151611e9181612672565b5f8085851115612e2f575f80fd5b83861115612e3b575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612e79576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215612ecf575f80fd5b81516001600160401b03811115612ee4575f80fd5b820160c08185031215612ef5575f80fd5b612efd6126fe565b81516001600160401b03811115612f12575f80fd5b612f1e86828501612ce7565b825250612f2d60208301612b38565b6020820152612f3e60408301612cdc565b6040820152612f4f60608301612cdc565b6060820152612f6060808301612cdc565b608082015260a08201516001600160401b03811115612f7d575f80fd5b612f8986828501612ce7565b60a083015250949350505050565b5f60208284031215612fa7575f80fd5b8151611e9181612691565b6001600160401b0383168152604060208201525f61263d6040830184612583565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612ffa575f80fd5b8251613005816126aa565b602084015190925063ffffffff81168114612889575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220f43bbd390e1477a311bfb06461d4cc329972dcd8ab5dfb0773ea4f27330e4e2564736f6c634300081a0033",
889
+ "bytecode": "0x6080604052348015600e575f80fd5b50611e678061001c5f395ff3fe608060405234801561000f575f80fd5b50600436106101f2575f3560e01c80635741e5e9116101145780638fb36037116100a9578063b423086c11610079578063b423086c146104bd578063bf7e214f146104c5578063cf4ee77a146104cd578063de7b5d14146104e0578063ea15869f14610510575f80fd5b80638fb360371461046057806390edbd3514610481578063ad12ad6014610496578063ada9652e146104a9575f80fd5b806376b707b7116100e457806376b707b7146104015780637a9e5e4b1461043f57806387ef9ba014610452578063893d20e814610458575f80fd5b80635741e5e91461039b5780635ab1bd53146103a3578063644c45e0146103b45780636bd1c0eb146103d1575f80fd5b80631eff4b221161018a5780632eb3e6f41161015a5780632eb3e6f41461033257806343d752d3146103595780634bd100e4146103615780634c125e7914610388575f80fd5b80631eff4b22146102e557806321df0da71461031a578063223668441461032257806322f3e2d41461032a575f80fd5b806313299604116101c5578063132996041461027d578063138461e01461029d57806317d7de7c146102bd5780631c6b2190146102d2575f80fd5b806301ffc9a7146101f65780630b29e28e146102375780630d8e6e2c1461024c5780630fec111c14610268575b5f80fd5b6102226102043660046115e0565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a61024536600461163d565b610537565b005b61025461054a565b60405162ffffff909116815260200161022e565b6102706105d1565b60405161022e9190611717565b61028561078b565b6040516001600160a01b03909116815260200161022e565b6102a56107f3565b6040516001600160601b03909116815260200161022e565b6102c56107fd565b60405161022e91906117ab565b6102a56102e03660046117bd565b61080d565b61030c7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b61028561088f565b6102226108a1565b610222610997565b61030c7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b610285610a0e565b61030c7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f90081565b61024a6103963660046117d8565b610a20565b610222610a2c565b6001546001600160a01b0316610285565b5f80516020611df2833981519152546001600160601b03166102a5565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b0316610285565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30054600160681b900460ff1660405160ff909116815260200161022e565b61024a61044d366004611805565b610ae9565b5f610222565b610285610b6f565b610468610ca0565b6040516001600160e01b0319909116815260200161022e565b610489610cd5565b60405161022e9190611820565b61024a6104a4366004611886565b610cfa565b61030c5f80516020611df283398151915281565b610489610d9d565b610285610dad565b61024a6104db36600461198a565b610dc8565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b0316610285565b61030c7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b610543335b5f36610ddb565b5050505050565b604051632efe011360e01b8152600160048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105cc9190611a14565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561067d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a19190611a41565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a0016106e9610b6f565b6001600160a01b0316815260200182600101805461070690611a5c565b80601f016020809104026020016040519081016040528092919081815260200182805461073290611a5c565b801561077d5780601f106107545761010080835404028352916020019161077d565b820191905f5260205f20905b81548152906001019060200180831161076057829003601f168201915b505050505081525091505090565b5f610794610a0e565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105cc9190611a9f565b5f6105cc30610ed9565b6060610807610cd5565b51919050565b5f610816610b6f565b6001600160a01b0316336001600160a01b03161461084e5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6108573361053c565b60405163ca49882f60e01b815260206004820152600c60248201526b77697468647261774665657360a01b6044820152606401610845565b5f610898610cd5565b60200151905090565b5f6108b46001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156108f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091c9190611a41565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610973573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105cc9190611ac9565b5f6109a0610dad565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156109e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a089190611ac9565b15905090565b5f610a17610cd5565b60400151905090565b610a293361053c565b50565b5f610a356108a1565b15610ab9576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610a89573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610ab09190810190611b46565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0154600160a01b900460ff1690565b33610af2610dad565b6001600160a01b0316816001600160a01b031614610b2d5760405162d1953b60e31b81526001600160a01b0382166004820152602401610845565b816001600160a01b03163b5f03610b62576040516361798f2f60e11b81526001600160a01b0383166004820152602401610845565b610b6b826110d2565b5050565b5f805f80516020611df283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610bdb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bff9190611ac9565b15610c8a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610c60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c849190611a9f565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020611e1283398151915280545f9190600160a01b900460ff16610cc7575f610c84565b638fb3603760e01b91505090565b610cdd6115a8565b610ce56108a1565b15610cf2576105cc611132565b6105cc610d9d565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d659190611a9f565b6001600160a01b0316336001600160a01b031614610d975760405162f0630960e01b8152336004820152602401610845565b50505050565b610da56115a8565b6105cc611132565b5f80516020611e12833981519152546001600160a01b031690565b610dd13361053c565b610b6b8282611318565b5f80516020611e128339815191525f80610e13610df6610dad565b8730610e0560045f8a8c611c16565b610e0e91611c3d565b6113ae565b9150915081610ed15763ffffffff811615610eae57825460ff60a01b1916600160a01b178355610e41610dad565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401610e7093929190611c75565b5f604051808303815f87803b158015610e87575f80fd5b505af1158015610e99573d5f803e3d5ffd5b5050845460ff60a01b1916855550610ed19050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610845565b505050505050565b5f805f80516020611df283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610f45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f699190611ac9565b15610f955780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610845565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015610fe7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061100b9190611ac9565b6110335760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610845565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611085573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a99190611a41565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020611e1283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61113a6115a8565b5f61114d6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611191573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b59190611a41565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561120e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112329190611ac9565b15611310577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c361128e5f80516020611df2833981519152546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa1580156112cf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112f69190810190611cb4565b60408101519092506001600160a01b031615611310575090565b610c846114b6565b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f901546040516367a773bd60e11b81526001600160a01b039091169063cf4ee77a906113699085908590600401611d7d565b6020604051808303815f875af1158015611385573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a99190611ac9565b505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161141c9190611d9e565b5f60405180830381855afa9150503d805f8114611454576040519150601f19603f3d011682016040523d82523d5f602084013e611459565b606091505b509150915081156114ab57604081511061148b57808060200190518101906114819190611db4565b90945092506114ab565b60208151106114ab57808060200190518101906114a89190611ac9565b93505b505094509492505050565b6114be6115a8565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060800160405280825f0180546114fb90611a5c565b80601f016020809104026020016040519081016040528092919081815260200182805461152790611a5c565b80156115725780601f1061154957610100808354040283529160200191611572565b820191905f5260205f20905b81548152906001019060200180831161155557829003601f168201915b505050918352505060018301546001600160a01b031660208201525f604082015260028301805460609092019161070690611a5c565b6040518060800160405280606081526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f602082840312156115f0575f80fd5b81356001600160e01b031981168114611607575f80fd5b9392505050565b80356001600160401b0381168114611624575f80fd5b919050565b6001600160601b0381168114610a29575f80fd5b5f805f805f60808688031215611651575f80fd5b61165a8661160e565b9450602086013561166a81611629565b935060408601356001600160401b03811115611684575f80fd5b8601601f81018813611694575f80fd5b80356001600160401b038111156116a9575f80fd5b8860208284010111156116ba575f80fd5b60209190910193509150606086013564ffffffffff811681146116db575f80fd5b809150509295509295909350565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161175f608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526117a36101008401826116e9565b949350505050565b602081525f61160760208301846116e9565b5f602082840312156117cd575f80fd5b813561160781611629565b5f602082840312156117e8575f80fd5b6116078261160e565b6001600160a01b0381168114610a29575f80fd5b5f60208284031215611815575f80fd5b8135611607816117f1565b602081525f82516080602084015261183b60a08401826116e9565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f1901608086015290915061187d82826116e9565b95945050505050565b5f805f8060808587031215611899575f80fd5b84356118a4816117f1565b935060208501356118b4816117f1565b92506040850135915060608501356118cb816117f1565b939692955090935050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561190c5761190c6118d6565b60405290565b604051608081016001600160401b038111828210171561190c5761190c6118d6565b604051601f8201601f191681016001600160401b038111828210171561195c5761195c6118d6565b604052919050565b5f6001600160401b0382111561197c5761197c6118d6565b50601f01601f191660200190565b5f806040838503121561199b575f80fd5b6119a48361160e565b915060208301356001600160401b038111156119be575f80fd5b8301601f810185136119ce575f80fd5b80356119e16119dc82611964565b611934565b8181528660208385010111156119f5575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f60208284031215611a24575f80fd5b815162ffffff81168114611607575f80fd5b805161162481611629565b5f60208284031215611a51575f80fd5b815161160781611629565b600181811c90821680611a7057607f821691505b602082108103611a8e57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051611624816117f1565b5f60208284031215611aaf575f80fd5b8151611607816117f1565b80518015158114611624575f80fd5b5f60208284031215611ad9575f80fd5b61160782611aba565b805160ff81168114611624575f80fd5b5f611aff6119dc84611964565b9050828152838383011115611b12575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112611b37575f80fd5b61160783835160208501611af2565b5f60208284031215611b56575f80fd5b81516001600160401b03811115611b6b575f80fd5b820160e08185031215611b7c575f80fd5b611b846118ea565b611b8d82611a36565b8152611b9b60208301611a36565b6020820152611bac60408301611ae2565b6040820152611bbd60608301611aba565b6060820152611bce60808301611a94565b6080820152611bdf60a08301611a94565b60a082015260c08201516001600160401b03811115611bfc575f80fd5b611c0886828501611b28565b60c083015250949350505050565b5f8085851115611c24575f80fd5b83861115611c30575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015611c6e576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215611cc4575f80fd5b81516001600160401b03811115611cd9575f80fd5b820160808185031215611cea575f80fd5b611cf2611912565b81516001600160401b03811115611d07575f80fd5b8201601f81018613611d17575f80fd5b611d2686825160208401611af2565b825250611d3560208301611a94565b6020820152611d4660408301611a94565b604082015260608201516001600160401b03811115611d63575f80fd5b611d6f86828501611b28565b606083015250949350505050565b6001600160401b0383168152604060208201525f6117a360408301846116e9565b5f82518060208501845e5f920191825250919050565b5f8060408385031215611dc5575f80fd5b611dce83611aba565b9150602083015163ffffffff81168114611de6575f80fd5b80915050925092905056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212200e486edaa6b49bba47881aec40adbf98b3eb3ac7651c770d0c24958aeee182a964736f6c634300081a0033",
890
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101f2575f3560e01c80635741e5e9116101145780638fb36037116100a9578063b423086c11610079578063b423086c146104bd578063bf7e214f146104c5578063cf4ee77a146104cd578063de7b5d14146104e0578063ea15869f14610510575f80fd5b80638fb360371461046057806390edbd3514610481578063ad12ad6014610496578063ada9652e146104a9575f80fd5b806376b707b7116100e457806376b707b7146104015780637a9e5e4b1461043f57806387ef9ba014610452578063893d20e814610458575f80fd5b80635741e5e91461039b5780635ab1bd53146103a3578063644c45e0146103b45780636bd1c0eb146103d1575f80fd5b80631eff4b221161018a5780632eb3e6f41161015a5780632eb3e6f41461033257806343d752d3146103595780634bd100e4146103615780634c125e7914610388575f80fd5b80631eff4b22146102e557806321df0da71461031a578063223668441461032257806322f3e2d41461032a575f80fd5b806313299604116101c5578063132996041461027d578063138461e01461029d57806317d7de7c146102bd5780631c6b2190146102d2575f80fd5b806301ffc9a7146101f65780630b29e28e146102375780630d8e6e2c1461024c5780630fec111c14610268575b5f80fd5b6102226102043660046115e0565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a61024536600461163d565b610537565b005b61025461054a565b60405162ffffff909116815260200161022e565b6102706105d1565b60405161022e9190611717565b61028561078b565b6040516001600160a01b03909116815260200161022e565b6102a56107f3565b6040516001600160601b03909116815260200161022e565b6102c56107fd565b60405161022e91906117ab565b6102a56102e03660046117bd565b61080d565b61030c7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b61028561088f565b6102226108a1565b610222610997565b61030c7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b610285610a0e565b61030c7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f90081565b61024a6103963660046117d8565b610a20565b610222610a2c565b6001546001600160a01b0316610285565b5f80516020611df2833981519152546001600160601b03166102a5565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b0316610285565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30054600160681b900460ff1660405160ff909116815260200161022e565b61024a61044d366004611805565b610ae9565b5f610222565b610285610b6f565b610468610ca0565b6040516001600160e01b0319909116815260200161022e565b610489610cd5565b60405161022e9190611820565b61024a6104a4366004611886565b610cfa565b61030c5f80516020611df283398151915281565b610489610d9d565b610285610dad565b61024a6104db36600461198a565b610dc8565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b0316610285565b61030c7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b610543335b5f36610ddb565b5050505050565b604051632efe011360e01b8152600160048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156105a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105cc9190611a14565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561067d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106a19190611a41565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a0016106e9610b6f565b6001600160a01b0316815260200182600101805461070690611a5c565b80601f016020809104026020016040519081016040528092919081815260200182805461073290611a5c565b801561077d5780601f106107545761010080835404028352916020019161077d565b820191905f5260205f20905b81548152906001019060200180831161076057829003601f168201915b505050505081525091505090565b5f610794610a0e565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105cc9190611a9f565b5f6105cc30610ed9565b6060610807610cd5565b51919050565b5f610816610b6f565b6001600160a01b0316336001600160a01b03161461084e5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6108573361053c565b60405163ca49882f60e01b815260206004820152600c60248201526b77697468647261774665657360a01b6044820152606401610845565b5f610898610cd5565b60200151905090565b5f6108b46001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa1580156108f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091c9190611a41565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610973573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105cc9190611ac9565b5f6109a0610dad565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156109e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a089190611ac9565b15905090565b5f610a17610cd5565b60400151905090565b610a293361053c565b50565b5f610a356108a1565b15610ab9576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610a89573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610ab09190810190611b46565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0154600160a01b900460ff1690565b33610af2610dad565b6001600160a01b0316816001600160a01b031614610b2d5760405162d1953b60e31b81526001600160a01b0382166004820152602401610845565b816001600160a01b03163b5f03610b62576040516361798f2f60e11b81526001600160a01b0383166004820152602401610845565b610b6b826110d2565b5050565b5f805f80516020611df283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610bdb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bff9190611ac9565b15610c8a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610c60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c849190611a9f565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020611e1283398151915280545f9190600160a01b900460ff16610cc7575f610c84565b638fb3603760e01b91505090565b610cdd6115a8565b610ce56108a1565b15610cf2576105cc611132565b6105cc610d9d565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d41573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d659190611a9f565b6001600160a01b0316336001600160a01b031614610d975760405162f0630960e01b8152336004820152602401610845565b50505050565b610da56115a8565b6105cc611132565b5f80516020611e12833981519152546001600160a01b031690565b610dd13361053c565b610b6b8282611318565b5f80516020611e128339815191525f80610e13610df6610dad565b8730610e0560045f8a8c611c16565b610e0e91611c3d565b6113ae565b9150915081610ed15763ffffffff811615610eae57825460ff60a01b1916600160a01b178355610e41610dad565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401610e7093929190611c75565b5f604051808303815f87803b158015610e87575f80fd5b505af1158015610e99573d5f803e3d5ffd5b5050845460ff60a01b1916855550610ed19050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610845565b505050505050565b5f805f80516020611df283398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610f45573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f699190611ac9565b15610f955780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610845565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015610fe7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061100b9190611ac9565b6110335760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610845565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611085573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a99190611a41565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020611e1283398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b61113a6115a8565b5f61114d6001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015611191573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b59190611a41565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561120e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112329190611ac9565b15611310577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c361128e5f80516020611df2833981519152546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa1580156112cf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112f69190810190611cb4565b60408101519092506001600160a01b031615611310575090565b610c846114b6565b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f901546040516367a773bd60e11b81526001600160a01b039091169063cf4ee77a906113699085908590600401611d7d565b6020604051808303815f875af1158015611385573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a99190611ac9565b505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161141c9190611d9e565b5f60405180830381855afa9150503d805f8114611454576040519150601f19603f3d011682016040523d82523d5f602084013e611459565b606091505b509150915081156114ab57604081511061148b57808060200190518101906114819190611db4565b90945092506114ab565b60208151106114ab57808060200190518101906114a89190611ac9565b93505b505094509492505050565b6114be6115a8565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060800160405280825f0180546114fb90611a5c565b80601f016020809104026020016040519081016040528092919081815260200182805461152790611a5c565b80156115725780601f1061154957610100808354040283529160200191611572565b820191905f5260205f20905b81548152906001019060200180831161155557829003601f168201915b505050918352505060018301546001600160a01b031660208201525f604082015260028301805460609092019161070690611a5c565b6040518060800160405280606081526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f602082840312156115f0575f80fd5b81356001600160e01b031981168114611607575f80fd5b9392505050565b80356001600160401b0381168114611624575f80fd5b919050565b6001600160601b0381168114610a29575f80fd5b5f805f805f60808688031215611651575f80fd5b61165a8661160e565b9450602086013561166a81611629565b935060408601356001600160401b03811115611684575f80fd5b8601601f81018813611694575f80fd5b80356001600160401b038111156116a9575f80fd5b8860208284010111156116ba575f80fd5b60209190910193509150606086013564ffffffffff811681146116db575f80fd5b809150509295509295909350565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f606083015161175f608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526117a36101008401826116e9565b949350505050565b602081525f61160760208301846116e9565b5f602082840312156117cd575f80fd5b813561160781611629565b5f602082840312156117e8575f80fd5b6116078261160e565b6001600160a01b0381168114610a29575f80fd5b5f60208284031215611815575f80fd5b8135611607816117f1565b602081525f82516080602084015261183b60a08401826116e9565b60208501516001600160a01b0390811660408681019190915286015116606080860191909152850151848203601f1901608086015290915061187d82826116e9565b95945050505050565b5f805f8060808587031215611899575f80fd5b84356118a4816117f1565b935060208501356118b4816117f1565b92506040850135915060608501356118cb816117f1565b939692955090935050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561190c5761190c6118d6565b60405290565b604051608081016001600160401b038111828210171561190c5761190c6118d6565b604051601f8201601f191681016001600160401b038111828210171561195c5761195c6118d6565b604052919050565b5f6001600160401b0382111561197c5761197c6118d6565b50601f01601f191660200190565b5f806040838503121561199b575f80fd5b6119a48361160e565b915060208301356001600160401b038111156119be575f80fd5b8301601f810185136119ce575f80fd5b80356119e16119dc82611964565b611934565b8181528660208385010111156119f5575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f60208284031215611a24575f80fd5b815162ffffff81168114611607575f80fd5b805161162481611629565b5f60208284031215611a51575f80fd5b815161160781611629565b600181811c90821680611a7057607f821691505b602082108103611a8e57634e487b7160e01b5f52602260045260245ffd5b50919050565b8051611624816117f1565b5f60208284031215611aaf575f80fd5b8151611607816117f1565b80518015158114611624575f80fd5b5f60208284031215611ad9575f80fd5b61160782611aba565b805160ff81168114611624575f80fd5b5f611aff6119dc84611964565b9050828152838383011115611b12575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112611b37575f80fd5b61160783835160208501611af2565b5f60208284031215611b56575f80fd5b81516001600160401b03811115611b6b575f80fd5b820160e08185031215611b7c575f80fd5b611b846118ea565b611b8d82611a36565b8152611b9b60208301611a36565b6020820152611bac60408301611ae2565b6040820152611bbd60608301611aba565b6060820152611bce60808301611a94565b6080820152611bdf60a08301611a94565b60a082015260c08201516001600160401b03811115611bfc575f80fd5b611c0886828501611b28565b60c083015250949350505050565b5f8085851115611c24575f80fd5b83861115611c30575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015611c6e576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215611cc4575f80fd5b81516001600160401b03811115611cd9575f80fd5b820160808185031215611cea575f80fd5b611cf2611912565b81516001600160401b03811115611d07575f80fd5b8201601f81018613611d17575f80fd5b611d2686825160208401611af2565b825250611d3560208301611a94565b6020820152611d4660408301611a94565b604082015260608201516001600160401b03811115611d63575f80fd5b611d6f86828501611b28565b606083015250949350505050565b6001600160401b0383168152604060208201525f6117a360408301846116e9565b5f82518060208501845e5f920191825250919050565b5f8060408385031215611dc5575f80fd5b611dce83611aba565b9150602083015163ffffffff81168114611de6575f80fd5b80915050925092905056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212200e486edaa6b49bba47881aec40adbf98b3eb3ac7651c770d0c24958aeee182a964736f6c634300081a0033",
1109
891
  "linkReferences": {
1110
- "contracts/type/Amount.sol": {
1111
- "AmountLib": [
1112
- {
1113
- "length": 20,
1114
- "start": 3142
1115
- }
1116
- ]
1117
- },
1118
892
  "contracts/type/NftId.sol": {
1119
893
  "NftIdLib": [
1120
894
  {
1121
895
  "length": 20,
1122
- "start": 1740
896
+ "start": 1620
1123
897
  },
1124
898
  {
1125
899
  "length": 20,
1126
- "start": 2656
900
+ "start": 2391
1127
901
  },
1128
902
  {
1129
903
  "length": 20,
1130
- "start": 4090
904
+ "start": 3007
1131
905
  },
1132
906
  {
1133
907
  "length": 20,
1134
- "start": 6469
908
+ "start": 3881
1135
909
  },
1136
910
  {
1137
911
  "length": 20,
1138
- "start": 7255
1139
- },
912
+ "start": 4594
913
+ }
914
+ ]
915
+ },
916
+ "contracts/type/Version.sol": {
917
+ "VersionLib": [
1140
918
  {
1141
919
  "length": 20,
1142
- "start": 8729
920
+ "start": 1420
1143
921
  }
1144
922
  ]
1145
923
  }
1146
924
  },
1147
925
  "deployedLinkReferences": {
1148
- "contracts/type/Amount.sol": {
1149
- "AmountLib": [
1150
- {
1151
- "length": 20,
1152
- "start": 3114
1153
- }
1154
- ]
1155
- },
1156
926
  "contracts/type/NftId.sol": {
1157
927
  "NftIdLib": [
1158
928
  {
1159
929
  "length": 20,
1160
- "start": 1712
930
+ "start": 1592
1161
931
  },
1162
932
  {
1163
933
  "length": 20,
1164
- "start": 2628
934
+ "start": 2363
1165
935
  },
1166
936
  {
1167
937
  "length": 20,
1168
- "start": 4062
938
+ "start": 2979
1169
939
  },
1170
940
  {
1171
941
  "length": 20,
1172
- "start": 6441
942
+ "start": 3853
1173
943
  },
1174
944
  {
1175
945
  "length": 20,
1176
- "start": 7227
1177
- },
946
+ "start": 4566
947
+ }
948
+ ]
949
+ },
950
+ "contracts/type/Version.sol": {
951
+ "VersionLib": [
1178
952
  {
1179
953
  "length": 20,
1180
- "start": 8701
954
+ "start": 1392
1181
955
  }
1182
956
  ]
1183
957
  }