@etherisc/gif-next 0.0.2-e9a637d-547 → 0.0.2-e9c25ee-730

Sign up to get free protection for your applications and to get access to all the features.
Files changed (728) hide show
  1. package/README.md +136 -22
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1672 -0
  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/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1255 -0
  14. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  16. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -0
  18. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  19. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  20. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1322 -0
  22. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
  24. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
  26. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  27. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
  28. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1209 -0
  30. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
  32. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  33. package/artifacts/contracts/{components/IDistributionComponent.sol/IDistributionComponent.json → distribution/Distribution.sol/Distribution.json} +285 -324
  34. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1633 -0
  36. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +896 -0
  38. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  39. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → distribution/IDistributionComponent.sol/IDistributionComponent.json} +274 -275
  40. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  41. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +339 -329
  42. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  44. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1445 -0
  46. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
  48. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2002 -0
  50. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
  52. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  53. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1388 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1612 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2389 -0
  66. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  67. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  68. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  69. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  70. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +596 -94
  72. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  73. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +367 -106
  74. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  75. package/artifacts/contracts/instance/Instance.sol/Instance.json +585 -207
  76. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2366 -0
  78. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
  80. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1985 -576
  82. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +378 -425
  84. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +163 -174
  86. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  87. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1927 -876
  88. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  89. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  90. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  92. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -54
  94. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  96. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  98. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  100. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  101. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  102. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  103. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  105. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  106. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  107. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  108. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  109. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  110. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +938 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  112. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
  113. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  114. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  115. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  116. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +753 -0
  117. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  118. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +302 -175
  119. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  120. package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +253 -241
  121. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  122. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
  123. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  124. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
  125. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  126. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +320 -465
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  128. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
  129. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  130. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
  131. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  132. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
  133. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  134. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +289 -68
  135. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  136. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +886 -0
  137. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  138. package/artifacts/contracts/{instance/service → pool}/IPoolService.sol/IPoolService.json +609 -223
  139. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  140. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +368 -426
  141. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  142. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  143. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  144. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
  145. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  146. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
  147. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  148. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +879 -0
  149. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  150. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +740 -0
  151. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  152. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +455 -482
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  154. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
  155. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  156. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
  157. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  158. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
  159. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  160. package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +180 -163
  161. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  162. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
  163. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  164. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
  165. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  166. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +623 -0
  167. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  168. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +997 -0
  169. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  170. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +95 -65
  171. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  172. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
  173. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  174. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +349 -0
  175. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  176. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
  177. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  178. package/artifacts/contracts/product/PricingService.sol/PricingService.json +911 -0
  179. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  180. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +764 -0
  181. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  182. package/artifacts/contracts/product/Product.sol/Product.json +1098 -0
  183. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  184. package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
  185. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  186. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
  187. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  188. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +59 -16
  189. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  190. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +483 -29
  191. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  192. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +286 -109
  193. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  194. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  195. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  196. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -18
  197. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  198. package/artifacts/contracts/registry/Registry.sol/Registry.json +982 -137
  199. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  200. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2195 -0
  201. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  202. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
  203. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  204. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +361 -250
  205. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  206. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +174 -109
  207. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  208. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2160 -0
  209. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  210. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  211. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  212. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1393 -0
  213. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  214. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
  215. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  216. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +317 -154
  217. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  218. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +265 -186
  219. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  220. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1556 -0
  221. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  222. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +816 -0
  223. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  224. package/artifacts/contracts/{instance/service/IClaimService.sol/IClaimService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +142 -132
  225. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +616 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  230. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  231. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  232. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  233. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  234. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +137 -131
  235. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  236. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1196 -0
  237. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  238. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +688 -0
  239. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  240. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  241. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  242. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  243. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  244. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -10
  245. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  246. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  247. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  248. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +144 -3
  249. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  250. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  251. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  252. package/artifacts/contracts/shared/IService.sol/IService.json +69 -5
  253. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  254. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  255. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  256. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +776 -0
  257. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  258. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  259. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  260. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  261. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  262. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  263. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  264. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -70
  265. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  266. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  267. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  268. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -100
  269. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  270. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  271. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  272. package/artifacts/contracts/shared/Service.sol/Service.json +66 -109
  273. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  274. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  275. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  276. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  277. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  278. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  279. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  280. package/artifacts/contracts/{components/Distribution.sol/Distribution.json → staking/IStaking.sol/IStaking.json} +749 -587
  281. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  282. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1167 -0
  283. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  284. package/artifacts/contracts/staking/Staking.sol/Staking.json +1888 -0
  285. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  286. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
  287. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  288. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  289. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  290. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +792 -0
  291. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  292. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +560 -0
  293. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  294. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1380 -0
  295. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  296. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +736 -0
  297. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  298. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
  299. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  300. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -0
  301. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  302. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  303. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  304. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  305. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  306. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  307. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  308. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  309. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  310. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  311. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  312. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  313. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  314. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  315. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  316. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  317. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  318. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  319. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  320. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  321. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  322. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  323. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  324. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  325. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  326. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  327. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  328. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  329. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  330. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  331. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  332. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  333. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  334. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  335. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  336. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  337. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  338. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  339. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  340. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  341. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  342. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  343. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  344. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  345. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  346. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  347. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  348. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  349. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  350. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  351. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  352. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  353. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  354. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  355. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  356. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  357. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  358. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  359. package/contracts/accounting/AccountingService.sol +262 -0
  360. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  361. package/contracts/accounting/IAccountingService.sol +45 -0
  362. package/contracts/authorization/AccessAdmin.sol +875 -0
  363. package/contracts/authorization/AccessAdminLib.sol +379 -0
  364. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  365. package/contracts/authorization/Authorization.sol +261 -0
  366. package/contracts/authorization/IAccess.sol +67 -0
  367. package/contracts/authorization/IAccessAdmin.sol +136 -0
  368. package/contracts/authorization/IAuthorization.sol +27 -0
  369. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  370. package/contracts/authorization/ServiceAuthorization.sol +320 -0
  371. package/contracts/distribution/BasicDistribution.sol +141 -0
  372. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  373. package/contracts/distribution/Distribution.sol +245 -0
  374. package/contracts/distribution/DistributionService.sol +440 -0
  375. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  376. package/contracts/distribution/IDistributionComponent.sol +50 -0
  377. package/contracts/distribution/IDistributionService.sol +109 -0
  378. package/contracts/examples/fire/DamageLevel.sol +59 -0
  379. package/contracts/examples/fire/FirePool.sol +86 -0
  380. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  381. package/contracts/examples/fire/FireProduct.sol +433 -0
  382. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  383. package/contracts/examples/fire/FireUSD.sol +26 -0
  384. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  385. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  386. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  387. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  388. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  389. package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
  390. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  391. package/contracts/instance/BundleSet.sol +130 -0
  392. package/contracts/instance/IInstance.sol +117 -38
  393. package/contracts/instance/IInstanceService.sol +71 -50
  394. package/contracts/instance/Instance.sol +252 -110
  395. package/contracts/instance/InstanceAdmin.sol +569 -0
  396. package/contracts/instance/InstanceAuthorizationV3.sol +262 -0
  397. package/contracts/instance/InstanceReader.sol +528 -82
  398. package/contracts/instance/InstanceService.sol +385 -391
  399. package/contracts/instance/InstanceServiceManager.sol +14 -29
  400. package/contracts/instance/InstanceStore.sol +174 -95
  401. package/contracts/instance/RiskSet.sol +118 -0
  402. package/contracts/instance/base/BalanceStore.sol +123 -0
  403. package/contracts/instance/base/Cloneable.sol +28 -0
  404. package/contracts/instance/base/ObjectCounter.sol +20 -0
  405. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  406. package/contracts/instance/base/ObjectSet.sol +77 -0
  407. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  408. package/contracts/instance/module/IBundle.sol +9 -11
  409. package/contracts/instance/module/IComponents.sol +44 -23
  410. package/contracts/instance/module/IDistribution.sol +25 -12
  411. package/contracts/instance/module/IPolicy.sol +71 -38
  412. package/contracts/instance/module/IRisk.sol +6 -1
  413. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  414. package/contracts/oracle/BasicOracle.sol +45 -0
  415. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  416. package/contracts/oracle/IOracle.sol +41 -0
  417. package/contracts/oracle/IOracleComponent.sol +33 -0
  418. package/contracts/oracle/IOracleService.sol +66 -0
  419. package/contracts/oracle/Oracle.sol +154 -0
  420. package/contracts/oracle/OracleService.sol +310 -0
  421. package/contracts/oracle/OracleServiceManager.sol +39 -0
  422. package/contracts/pool/BasicPool.sol +173 -0
  423. package/contracts/pool/BasicPoolAuthorization.sol +82 -0
  424. package/contracts/pool/BundleService.sol +395 -0
  425. package/contracts/pool/BundleServiceManager.sol +39 -0
  426. package/contracts/{instance/service → pool}/IBundleService.sol +52 -30
  427. package/contracts/pool/IPoolComponent.sol +62 -0
  428. package/contracts/pool/IPoolService.sol +165 -0
  429. package/contracts/pool/Pool.sol +343 -0
  430. package/contracts/pool/PoolLib.sol +260 -0
  431. package/contracts/pool/PoolService.sol +733 -0
  432. package/contracts/pool/PoolServiceManager.sol +39 -0
  433. package/contracts/product/ApplicationService.sol +274 -0
  434. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  435. package/contracts/product/BasicProduct.sol +49 -0
  436. package/contracts/product/BasicProductAuthorization.sol +61 -0
  437. package/contracts/product/ClaimService.sol +630 -0
  438. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  439. package/contracts/{instance/service → product}/IApplicationService.sol +22 -35
  440. package/contracts/product/IClaimService.sol +135 -0
  441. package/contracts/product/IPolicyService.sol +95 -0
  442. package/contracts/product/IPricingService.sol +40 -0
  443. package/contracts/product/IProductComponent.sol +62 -0
  444. package/contracts/product/IRiskService.sol +33 -0
  445. package/contracts/product/PolicyService.sol +664 -0
  446. package/contracts/product/PolicyServiceLib.sol +86 -0
  447. package/contracts/product/PolicyServiceManager.sol +39 -0
  448. package/contracts/product/PricingService.sol +309 -0
  449. package/contracts/product/PricingServiceManager.sol +39 -0
  450. package/contracts/product/Product.sol +467 -0
  451. package/contracts/product/RiskService.sol +154 -0
  452. package/contracts/product/RiskServiceManager.sol +39 -0
  453. package/contracts/registry/ChainNft.sol +79 -40
  454. package/contracts/registry/IRegistry.sol +99 -30
  455. package/contracts/registry/IRegistryService.sol +34 -40
  456. package/contracts/registry/IRelease.sol +29 -0
  457. package/contracts/registry/ITransferInterceptor.sol +1 -2
  458. package/contracts/registry/Registry.sol +460 -197
  459. package/contracts/registry/RegistryAdmin.sol +291 -0
  460. package/contracts/registry/RegistryAuthorization.sol +277 -0
  461. package/contracts/registry/RegistryService.sol +89 -130
  462. package/contracts/registry/RegistryServiceManager.sol +23 -32
  463. package/contracts/registry/ReleaseAdmin.sol +268 -0
  464. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  465. package/contracts/registry/ReleaseRegistry.sol +517 -0
  466. package/contracts/registry/ServiceAuthorizationV3.sol +341 -0
  467. package/contracts/registry/TokenRegistry.sol +264 -64
  468. package/contracts/shared/Component.sol +210 -0
  469. package/contracts/shared/ComponentService.sol +708 -0
  470. package/contracts/shared/ComponentServiceManager.sol +38 -0
  471. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  472. package/contracts/shared/ContractLib.sol +292 -0
  473. package/contracts/shared/IComponent.sol +58 -0
  474. package/contracts/shared/IComponentService.sol +112 -0
  475. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  476. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  477. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  478. package/contracts/shared/INftOwnable.sol +4 -2
  479. package/contracts/shared/IPolicyHolder.sol +23 -14
  480. package/contracts/shared/IRegisterable.sol +23 -1
  481. package/contracts/shared/IRegistryLinked.sol +0 -1
  482. package/contracts/shared/IService.sol +13 -5
  483. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +12 -4
  484. package/contracts/shared/InstanceLinkedComponent.sol +195 -0
  485. package/contracts/shared/KeyValueStore.sol +131 -0
  486. package/contracts/shared/Lifecycle.sol +88 -0
  487. package/contracts/shared/NftIdSet.sol +65 -0
  488. package/contracts/shared/NftOwnable.sol +34 -27
  489. package/contracts/shared/PolicyHolder.sol +22 -41
  490. package/contracts/shared/Registerable.sol +52 -20
  491. package/contracts/shared/RegistryLinked.sol +9 -19
  492. package/contracts/shared/Service.sol +34 -40
  493. package/contracts/shared/TokenHandler.sol +322 -13
  494. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  495. package/contracts/staking/IStaking.sol +179 -0
  496. package/contracts/staking/IStakingService.sol +172 -0
  497. package/contracts/staking/Staking.sol +546 -0
  498. package/contracts/staking/StakingLib.sol +281 -0
  499. package/contracts/staking/StakingLifecycle.sol +23 -0
  500. package/contracts/staking/StakingManager.sol +52 -0
  501. package/contracts/staking/StakingReader.sol +180 -0
  502. package/contracts/staking/StakingService.sol +464 -0
  503. package/contracts/staking/StakingServiceManager.sol +45 -0
  504. package/contracts/staking/StakingStore.sol +606 -0
  505. package/contracts/staking/TargetManagerLib.sol +211 -0
  506. package/contracts/{types → type}/AddressSet.sol +1 -1
  507. package/contracts/type/Amount.sol +150 -0
  508. package/contracts/{types → type}/Blocknumber.sol +26 -3
  509. package/contracts/{types → type}/ClaimId.sol +31 -3
  510. package/contracts/{types → type}/Fee.sol +28 -26
  511. package/contracts/{types → type}/Key32.sol +2 -2
  512. package/contracts/type/Key32Set.sol +62 -0
  513. package/contracts/{types → type}/NftId.sol +21 -16
  514. package/contracts/{types → type}/NftIdSet.sol +2 -2
  515. package/contracts/type/ObjectType.sol +307 -0
  516. package/contracts/type/PayoutId.sol +82 -0
  517. package/contracts/{types → type}/Referral.sol +2 -1
  518. package/contracts/type/RequestId.sol +75 -0
  519. package/contracts/type/RiskId.sol +75 -0
  520. package/contracts/type/RoleId.sol +180 -0
  521. package/contracts/type/Seconds.sol +101 -0
  522. package/contracts/type/Selector.sol +107 -0
  523. package/contracts/{types → type}/StateId.sol +47 -4
  524. package/contracts/type/String.sol +53 -0
  525. package/contracts/{types → type}/Timestamp.sol +20 -6
  526. package/contracts/type/UFixed.sol +262 -0
  527. package/contracts/{types → type}/Version.sol +58 -7
  528. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  529. package/contracts/{shared → upgradeability}/ProxyManager.sol +104 -39
  530. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  531. package/contracts/{shared → upgradeability}/Versionable.sol +7 -4
  532. package/package.json +12 -8
  533. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  534. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  535. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  536. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  537. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  538. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  539. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  540. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  541. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
  542. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +0 -1206
  543. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  544. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -778
  545. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  546. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  547. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1348
  548. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  549. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -256
  550. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  551. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  552. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  553. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  554. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  555. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  556. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  557. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  558. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -237
  559. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  560. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  561. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  562. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  563. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -1039
  564. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  565. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -673
  566. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  567. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1231
  568. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  569. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -721
  570. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  571. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -817
  572. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  573. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -641
  574. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  575. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1798
  576. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  577. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -805
  578. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  579. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  580. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  581. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  582. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  583. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  584. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  585. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  586. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1092
  587. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  588. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -697
  589. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  590. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -1237
  591. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  592. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -661
  593. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  594. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -840
  595. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  596. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -653
  597. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  598. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  599. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  600. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -559
  601. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  602. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  603. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  604. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  605. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  606. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  607. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  608. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  609. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  610. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  611. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  612. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  613. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  614. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  615. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  616. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  617. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  618. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -596
  619. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  620. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  621. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  622. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  623. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  624. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  625. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  626. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  627. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  628. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  629. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +0 -4
  630. package/artifacts/contracts/types/Amount.sol/AmountLib.json +0 -161
  631. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  632. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  633. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  634. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  635. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  636. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  637. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  638. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  639. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  640. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -288
  641. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  642. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  643. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  644. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  645. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  646. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  647. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  648. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  649. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  650. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  651. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  652. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  653. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  654. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  655. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  656. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  657. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  658. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  659. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  660. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  661. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  662. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  663. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  664. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  665. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  666. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  667. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  668. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  669. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  671. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  672. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  673. package/contracts/components/Component.sol +0 -253
  674. package/contracts/components/Distribution.sol +0 -280
  675. package/contracts/components/IComponent.sol +0 -76
  676. package/contracts/components/IDistributionComponent.sol +0 -71
  677. package/contracts/components/IPoolComponent.sol +0 -113
  678. package/contracts/components/IProductComponent.sol +0 -40
  679. package/contracts/components/Pool.sol +0 -303
  680. package/contracts/components/Product.sol +0 -293
  681. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +0 -13
  682. package/contracts/instance/BundleManager.sol +0 -127
  683. package/contracts/instance/Cloneable.sol +0 -51
  684. package/contracts/instance/InstanceAccessManager.sol +0 -540
  685. package/contracts/instance/ObjectManager.sol +0 -82
  686. package/contracts/instance/base/ComponentService.sol +0 -121
  687. package/contracts/instance/base/KeyValueStore.sol +0 -180
  688. package/contracts/instance/base/Lifecycle.sol +0 -109
  689. package/contracts/instance/module/IAccess.sol +0 -54
  690. package/contracts/instance/module/ISetup.sol +0 -33
  691. package/contracts/instance/module/ITreasury.sol +0 -23
  692. package/contracts/instance/service/ApplicationService.sol +0 -351
  693. package/contracts/instance/service/BundleService.sol +0 -431
  694. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  695. package/contracts/instance/service/ClaimService.sol +0 -151
  696. package/contracts/instance/service/DistributionService.sol +0 -437
  697. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  698. package/contracts/instance/service/IClaimService.sol +0 -61
  699. package/contracts/instance/service/IDistributionService.sol +0 -99
  700. package/contracts/instance/service/IPolicyService.sol +0 -72
  701. package/contracts/instance/service/IPoolService.sol +0 -99
  702. package/contracts/instance/service/IProductService.sol +0 -40
  703. package/contracts/instance/service/PolicyService.sol +0 -362
  704. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  705. package/contracts/instance/service/PoolService.sol +0 -303
  706. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  707. package/contracts/instance/service/ProductService.sol +0 -209
  708. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  709. package/contracts/registry/RegistryAccessManager.sol +0 -216
  710. package/contracts/registry/ReleaseManager.sol +0 -324
  711. package/contracts/shared/ContractDeployerLib.sol +0 -72
  712. package/contracts/test/TestFee.sol +0 -25
  713. package/contracts/test/TestRegisterable.sol +0 -18
  714. package/contracts/test/TestRoleId.sol +0 -14
  715. package/contracts/test/TestService.sol +0 -25
  716. package/contracts/test/TestToken.sol +0 -26
  717. package/contracts/test/TestVersion.sol +0 -44
  718. package/contracts/test/TestVersionable.sol +0 -17
  719. package/contracts/types/Amount.sol +0 -60
  720. package/contracts/types/ChainId.sol +0 -38
  721. package/contracts/types/NumberId.sol +0 -52
  722. package/contracts/types/ObjectType.sol +0 -157
  723. package/contracts/types/PayoutId.sol +0 -54
  724. package/contracts/types/RiskId.sol +0 -43
  725. package/contracts/types/RoleId.sol +0 -97
  726. package/contracts/types/Seconds.sol +0 -54
  727. package/contracts/types/UFixed.sol +0 -326
  728. /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -0,0 +1,808 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PolicyServiceManager",
4
+ "sourceName": "contracts/product/PolicyServiceManager.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "address",
15
+ "name": "registry",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "internalType": "bytes32",
20
+ "name": "salt",
21
+ "type": "bytes32"
22
+ }
23
+ ],
24
+ "stateMutability": "nonpayable",
25
+ "type": "constructor"
26
+ },
27
+ {
28
+ "inputs": [
29
+ {
30
+ "internalType": "NftId",
31
+ "name": "nftId",
32
+ "type": "uint96"
33
+ }
34
+ ],
35
+ "name": "ErrorNftOwnableAlreadyLinked",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [
40
+ {
41
+ "internalType": "address",
42
+ "name": "contractAddress",
43
+ "type": "address"
44
+ }
45
+ ],
46
+ "name": "ErrorNftOwnableContractNotRegistered",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [],
51
+ "name": "ErrorNftOwnableInitialOwnerZero",
52
+ "type": "error"
53
+ },
54
+ {
55
+ "inputs": [
56
+ {
57
+ "internalType": "NftId",
58
+ "name": "nftId",
59
+ "type": "uint96"
60
+ },
61
+ {
62
+ "internalType": "ObjectType",
63
+ "name": "expectedObjectType",
64
+ "type": "uint8"
65
+ }
66
+ ],
67
+ "name": "ErrorNftOwnableInvalidType",
68
+ "type": "error"
69
+ },
70
+ {
71
+ "inputs": [
72
+ {
73
+ "internalType": "address",
74
+ "name": "account",
75
+ "type": "address"
76
+ }
77
+ ],
78
+ "name": "ErrorNftOwnableNotOwner",
79
+ "type": "error"
80
+ },
81
+ {
82
+ "inputs": [
83
+ {
84
+ "internalType": "address",
85
+ "name": "registryAddress",
86
+ "type": "address"
87
+ }
88
+ ],
89
+ "name": "ErrorNotRegistry",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "ErrorProxyManagerAlreadyDeployed",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "Version",
101
+ "name": "nextVersion",
102
+ "type": "uint24"
103
+ }
104
+ ],
105
+ "name": "ErrorProxyManagerNextVersionNotIncreasing",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [],
110
+ "name": "ErrorProxyManagerNotYetDeployed",
111
+ "type": "error"
112
+ },
113
+ {
114
+ "inputs": [],
115
+ "name": "ErrorProxyManagerZeroVersion",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "InvalidInitialization",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "inputs": [],
125
+ "name": "NotInitializing",
126
+ "type": "error"
127
+ },
128
+ {
129
+ "anonymous": false,
130
+ "inputs": [
131
+ {
132
+ "indexed": false,
133
+ "internalType": "uint64",
134
+ "name": "version",
135
+ "type": "uint64"
136
+ }
137
+ ],
138
+ "name": "Initialized",
139
+ "type": "event"
140
+ },
141
+ {
142
+ "anonymous": false,
143
+ "inputs": [
144
+ {
145
+ "indexed": true,
146
+ "internalType": "address",
147
+ "name": "proxy",
148
+ "type": "address"
149
+ },
150
+ {
151
+ "indexed": false,
152
+ "internalType": "address",
153
+ "name": "initialImplementation",
154
+ "type": "address"
155
+ }
156
+ ],
157
+ "name": "LogProxyManagerVersionableDeployed",
158
+ "type": "event"
159
+ },
160
+ {
161
+ "anonymous": false,
162
+ "inputs": [
163
+ {
164
+ "indexed": true,
165
+ "internalType": "address",
166
+ "name": "proxy",
167
+ "type": "address"
168
+ },
169
+ {
170
+ "indexed": false,
171
+ "internalType": "address",
172
+ "name": "upgradedImplementation",
173
+ "type": "address"
174
+ }
175
+ ],
176
+ "name": "LogProxyManagerVersionableUpgraded",
177
+ "type": "event"
178
+ },
179
+ {
180
+ "inputs": [],
181
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
182
+ "outputs": [
183
+ {
184
+ "internalType": "bytes32",
185
+ "name": "",
186
+ "type": "bytes32"
187
+ }
188
+ ],
189
+ "stateMutability": "view",
190
+ "type": "function"
191
+ },
192
+ {
193
+ "inputs": [
194
+ {
195
+ "internalType": "address",
196
+ "name": "registry",
197
+ "type": "address"
198
+ },
199
+ {
200
+ "internalType": "address",
201
+ "name": "initialImplementation",
202
+ "type": "address"
203
+ },
204
+ {
205
+ "internalType": "bytes",
206
+ "name": "initializationData",
207
+ "type": "bytes"
208
+ }
209
+ ],
210
+ "name": "deploy",
211
+ "outputs": [
212
+ {
213
+ "internalType": "contract IVersionable",
214
+ "name": "versionable",
215
+ "type": "address"
216
+ }
217
+ ],
218
+ "stateMutability": "nonpayable",
219
+ "type": "function"
220
+ },
221
+ {
222
+ "inputs": [
223
+ {
224
+ "internalType": "address",
225
+ "name": "registry",
226
+ "type": "address"
227
+ },
228
+ {
229
+ "internalType": "address",
230
+ "name": "initialImplementation",
231
+ "type": "address"
232
+ },
233
+ {
234
+ "internalType": "bytes",
235
+ "name": "initializationData",
236
+ "type": "bytes"
237
+ },
238
+ {
239
+ "internalType": "bytes32",
240
+ "name": "salt",
241
+ "type": "bytes32"
242
+ }
243
+ ],
244
+ "name": "deployDetermenistic",
245
+ "outputs": [
246
+ {
247
+ "internalType": "contract IVersionable",
248
+ "name": "versionable",
249
+ "type": "address"
250
+ }
251
+ ],
252
+ "stateMutability": "nonpayable",
253
+ "type": "function"
254
+ },
255
+ {
256
+ "inputs": [
257
+ {
258
+ "internalType": "address",
259
+ "name": "proxyOwner",
260
+ "type": "address"
261
+ },
262
+ {
263
+ "internalType": "bytes",
264
+ "name": "deployData",
265
+ "type": "bytes"
266
+ }
267
+ ],
268
+ "name": "getDeployData",
269
+ "outputs": [
270
+ {
271
+ "internalType": "bytes",
272
+ "name": "data",
273
+ "type": "bytes"
274
+ }
275
+ ],
276
+ "stateMutability": "pure",
277
+ "type": "function"
278
+ },
279
+ {
280
+ "inputs": [],
281
+ "name": "getNftId",
282
+ "outputs": [
283
+ {
284
+ "internalType": "NftId",
285
+ "name": "",
286
+ "type": "uint96"
287
+ }
288
+ ],
289
+ "stateMutability": "view",
290
+ "type": "function"
291
+ },
292
+ {
293
+ "inputs": [],
294
+ "name": "getOwner",
295
+ "outputs": [
296
+ {
297
+ "internalType": "address",
298
+ "name": "",
299
+ "type": "address"
300
+ }
301
+ ],
302
+ "stateMutability": "view",
303
+ "type": "function"
304
+ },
305
+ {
306
+ "inputs": [],
307
+ "name": "getPolicyService",
308
+ "outputs": [
309
+ {
310
+ "internalType": "contract PolicyService",
311
+ "name": "policyService",
312
+ "type": "address"
313
+ }
314
+ ],
315
+ "stateMutability": "view",
316
+ "type": "function"
317
+ },
318
+ {
319
+ "inputs": [],
320
+ "name": "getProxy",
321
+ "outputs": [
322
+ {
323
+ "internalType": "contract UpgradableProxyWithAdmin",
324
+ "name": "",
325
+ "type": "address"
326
+ }
327
+ ],
328
+ "stateMutability": "view",
329
+ "type": "function"
330
+ },
331
+ {
332
+ "inputs": [],
333
+ "name": "getRegistry",
334
+ "outputs": [
335
+ {
336
+ "internalType": "contract IRegistry",
337
+ "name": "",
338
+ "type": "address"
339
+ }
340
+ ],
341
+ "stateMutability": "view",
342
+ "type": "function"
343
+ },
344
+ {
345
+ "inputs": [
346
+ {
347
+ "internalType": "bytes",
348
+ "name": "upgradeData",
349
+ "type": "bytes"
350
+ }
351
+ ],
352
+ "name": "getUpgradeData",
353
+ "outputs": [
354
+ {
355
+ "internalType": "bytes",
356
+ "name": "data",
357
+ "type": "bytes"
358
+ }
359
+ ],
360
+ "stateMutability": "pure",
361
+ "type": "function"
362
+ },
363
+ {
364
+ "inputs": [],
365
+ "name": "getVersion",
366
+ "outputs": [
367
+ {
368
+ "internalType": "Version",
369
+ "name": "",
370
+ "type": "uint24"
371
+ }
372
+ ],
373
+ "stateMutability": "view",
374
+ "type": "function"
375
+ },
376
+ {
377
+ "inputs": [
378
+ {
379
+ "internalType": "uint256",
380
+ "name": "idx",
381
+ "type": "uint256"
382
+ }
383
+ ],
384
+ "name": "getVersion",
385
+ "outputs": [
386
+ {
387
+ "internalType": "Version",
388
+ "name": "",
389
+ "type": "uint24"
390
+ }
391
+ ],
392
+ "stateMutability": "view",
393
+ "type": "function"
394
+ },
395
+ {
396
+ "inputs": [],
397
+ "name": "getVersionCount",
398
+ "outputs": [
399
+ {
400
+ "internalType": "uint256",
401
+ "name": "",
402
+ "type": "uint256"
403
+ }
404
+ ],
405
+ "stateMutability": "view",
406
+ "type": "function"
407
+ },
408
+ {
409
+ "inputs": [
410
+ {
411
+ "internalType": "Version",
412
+ "name": "_version",
413
+ "type": "uint24"
414
+ }
415
+ ],
416
+ "name": "getVersionInfo",
417
+ "outputs": [
418
+ {
419
+ "components": [
420
+ {
421
+ "internalType": "address",
422
+ "name": "implementation",
423
+ "type": "address"
424
+ },
425
+ {
426
+ "internalType": "Timestamp",
427
+ "name": "activatedAt",
428
+ "type": "uint40"
429
+ },
430
+ {
431
+ "internalType": "Blocknumber",
432
+ "name": "activatedIn",
433
+ "type": "uint32"
434
+ },
435
+ {
436
+ "internalType": "Version",
437
+ "name": "version",
438
+ "type": "uint24"
439
+ },
440
+ {
441
+ "internalType": "address",
442
+ "name": "activatedBy",
443
+ "type": "address"
444
+ }
445
+ ],
446
+ "internalType": "struct ProxyManager.VersionInfo",
447
+ "name": "",
448
+ "type": "tuple"
449
+ }
450
+ ],
451
+ "stateMutability": "view",
452
+ "type": "function"
453
+ },
454
+ {
455
+ "inputs": [
456
+ {
457
+ "internalType": "address",
458
+ "name": "registry",
459
+ "type": "address"
460
+ },
461
+ {
462
+ "internalType": "address",
463
+ "name": "implementation",
464
+ "type": "address"
465
+ },
466
+ {
467
+ "internalType": "bytes",
468
+ "name": "data",
469
+ "type": "bytes"
470
+ },
471
+ {
472
+ "internalType": "bytes32",
473
+ "name": "salt",
474
+ "type": "bytes32"
475
+ }
476
+ ],
477
+ "name": "initialize",
478
+ "outputs": [
479
+ {
480
+ "internalType": "contract IVersionable",
481
+ "name": "versionable",
482
+ "type": "address"
483
+ }
484
+ ],
485
+ "stateMutability": "nonpayable",
486
+ "type": "function"
487
+ },
488
+ {
489
+ "inputs": [],
490
+ "name": "linkToProxy",
491
+ "outputs": [
492
+ {
493
+ "internalType": "NftId",
494
+ "name": "",
495
+ "type": "uint96"
496
+ }
497
+ ],
498
+ "stateMutability": "nonpayable",
499
+ "type": "function"
500
+ },
501
+ {
502
+ "inputs": [],
503
+ "name": "linkToRegisteredNftId",
504
+ "outputs": [
505
+ {
506
+ "internalType": "NftId",
507
+ "name": "nftId",
508
+ "type": "uint96"
509
+ }
510
+ ],
511
+ "stateMutability": "nonpayable",
512
+ "type": "function"
513
+ },
514
+ {
515
+ "inputs": [
516
+ {
517
+ "internalType": "bytes4",
518
+ "name": "interfaceId",
519
+ "type": "bytes4"
520
+ }
521
+ ],
522
+ "name": "supportsInterface",
523
+ "outputs": [
524
+ {
525
+ "internalType": "bool",
526
+ "name": "",
527
+ "type": "bool"
528
+ }
529
+ ],
530
+ "stateMutability": "view",
531
+ "type": "function"
532
+ },
533
+ {
534
+ "inputs": [
535
+ {
536
+ "internalType": "address",
537
+ "name": "newImplementation",
538
+ "type": "address"
539
+ },
540
+ {
541
+ "internalType": "bytes",
542
+ "name": "upgradeData",
543
+ "type": "bytes"
544
+ }
545
+ ],
546
+ "name": "upgrade",
547
+ "outputs": [
548
+ {
549
+ "internalType": "contract IVersionable",
550
+ "name": "versionable",
551
+ "type": "address"
552
+ }
553
+ ],
554
+ "stateMutability": "nonpayable",
555
+ "type": "function"
556
+ }
557
+ ],
558
+ "bytecode": "0x608060405234801561000f575f80fd5b50604051619ee5380380619ee583398101604081905261002e91610af4565b5f8160405161003c90610abf565b8190604051809103905ff5905080158015610059573d5f803e3d5ffd5b5090505f84846040516020016100859291906001600160a01b0392831681529116602082015260400190565b60408051601f1981840301815291905290505f6100a4858484876100d0565b600580546001600160a01b0319166001600160a01b039290921691909117905550610c89945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0080545f919068010000000000000000810460ff1615906001600160401b0316838115801561011c5750825b90505f826001600160401b031660011480156101375750303b155b905081158015610145575080155b156101635760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561019157845460ff60401b1916680100000000000000001785555b61019d8a8a8a8a6101f2565b955083156101e557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050949350505050565b5f6101fb6102c6565b5f8061020687610316565b90925090508386826102188589610358565b60405161022490610acc565b61023093929190610b5b565b8190604051809103905ff590508015801561024d573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b039290921691909117905561027886836103b0565b6040516001600160a01b038881168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a25050949350505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661031457604051631afcd79f60e31b815260040160405180910390fd5b565b6004545f9081901561033b5760405163402b135f60e11b815260040160405180910390fd5b3361034684826107cc565b61034e61085e565b9430945092505050565b60606349bb9e4b60e01b8383604051602401610375929190610b8f565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b600254604080516303639b8b60e21b815290516001600160a01b03909216915f918391630d8e6e2c916004808201926020929091908290030181865afa1580156103fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104209190610bba565b905061049e8173__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af415801561046d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104919190610bba565b62ffffff90811691161490565b156104bc576040516348c618db60e01b815260040160405180910390fd5b6004541561061957600480546104d490600190610be3565b815481106104e4576104e4610c02565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610555573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105799190610c16565b604051635560100760e01b815262ffffff8316600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156105cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ef9190610c16565b1161061957604051633e614b6d60e11b815262ffffff821660048201526024015b60405180910390fd5b600480546001810182555f8290527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b600a808304919091018054919092066003026101000a62ffffff81810219909216918516021790556040805160a0810182526001600160a01b038716815281516356db0c1960e11b81529151909260208085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb618329382810193928290030181865af41580156106d4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106f89190610c2d565b64ffffffffff1681526020014363ffffffff908116825262ffffff93841660208084018290526001600160a01b039788166040948501525f91825260038152908390208451815492860151948601516060870151909716600160e81b026001600160e81b0397909416600160c81b02969096166001600160c81b0364ffffffffff909516600160a01b026001600160c81b0319909316968916969096179190911792909216939093179290921782556080015160019091018054919093166001600160a01b03199190911617909155919050565b6107d46102c6565b6107dc6109ab565b6107e5826109f3565b6001600160a01b03811661080c5760405163f17ef42d60e01b815260040160405180910390fd5b7f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b039093169290920291909117905550565b5f807f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156108dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109019190610c51565b1561098c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610962573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109869190610c70565b91505090565b546c0100000000000000000000000090046001600160a01b0316919050565b6109b36102c6565b6103146301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6109fb6102c6565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015610a51573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a759190610c51565b610a9d5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610610565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b615e558061324483390190565b610e4c8061909983390190565b80516001600160a01b0381168114610aef575f80fd5b919050565b5f805f60608486031215610b06575f80fd5b610b0f84610ad9565b9250610b1d60208501610ad9565b9150604084015190509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6001600160a01b038481168252831660208201526060604082018190525f90610b8690830184610b2d565b95945050505050565b6001600160a01b03831681526040602082018190525f90610bb290830184610b2d565b949350505050565b5f60208284031215610bca575f80fd5b815162ffffff81168114610bdc575f80fd5b9392505050565b818103818111156103aa57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610c26575f80fd5b5051919050565b5f60208284031215610c3d575f80fd5b815164ffffffffff81168114610bdc575f80fd5b5f60208284031215610c61575f80fd5b81518015158114610bdc575f80fd5b5f60208284031215610c80575f80fd5b610bdc82610ad9565b6125ae80610c965f395ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063893d20e8116100a9578063b88da7591161006e578063b88da75914610388578063c987336c1461039b578063e1033e7d146103ae578063f5c1b5a7146103bf578063fd0c63d9146103d2575f80fd5b8063893d20e8146103365780638e9afce61461033e578063933a9ce814610351578063946dfcfe14610362578063ada9652e14610374575f80fd5b80631775564d116100ef5780631775564d146101c85780632db5b86f146101e85780634d459c90146101fb5780635ab1bd5314610308578063644c45e014610319575f80fd5b806301ffc9a71461012057806304499582146101615780630d8e6e2c1461018c578063138461e0146101a8575b5f80fd5b61014c61012e36600461131b565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61017461016f3660046113ff565b6103da565b6040516001600160a01b039091168152602001610158565b6101946104ad565b60405162ffffff9091168152602001610158565b6101b061051d565b6040516001600160601b039091168152602001610158565b6101db6101d6366004611465565b610527565b60405161015891906114e0565b6101746101f63660046114f2565b61057f565b6102ad610209366004611560565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a08101845281546001600160a01b03808216835264ffffffffff600160a01b8304169483019490945263ffffffff600160c81b82041694820194909452600160e81b9093049093166060830152600190920154909116608082015290565b604051610158919081516001600160a01b03908116825260208084015164ffffffffff169083015260408084015163ffffffff169083015260608084015162ffffff1690830152608092830151169181019190915260a00190565b6001546001600160a01b0316610174565b5f80516020612559833981519152546001600160601b03166101b0565b61017461064c565b6101db61034c36600461157b565b61077d565b6002546001600160a01b0316610174565b6004545b604051908152602001610158565b6103665f8051602061255983398151915281565b6101946103963660046115b5565b6107d0565b6101746103a9366004611465565b61080e565b6005546001600160a01b0316610174565b6101746103cd3660046113ff565b6109b5565b6101b0610ad0565b5f6103e3610ae7565b5f806103ee87610b32565b915091508386826103ff8589610527565b60405161040b9061130e565b610417939291906115cc565b8190604051809103905ff5905080158015610434573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b039290921691909117905561045f8683610b74565b6040516001600160a01b038881168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a25050949350505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa1580156104f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105189190611600565b905090565b5f61051830610f8b565b60606349bb9e4b60e01b838360405160240161054492919061161b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b5f610588610ae7565b5f8061059386610b32565b9150915084816105a38487610527565b6040516105af9061130e565b6105bb939291906115cc565b604051809103905ff0801580156105d4573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169190911790556105ff8583610b74565b6040516001600160a01b038781168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b5f805f8051602061255983398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156106b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106dc919061163e565b15610767576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561073d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610761919061165d565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b8260405160240161079891906114e0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f600482815481106107e4576107e4611678565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f61081761064c565b6001600160a01b0316336001600160a01b03161461084f5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6004545f036108715760405163366dfd2160e21b815260040160405180910390fd5b5f61087a61064c565b90505f61088f6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156108cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ef919061165d565b6002549091506001600160a01b03908116908216639623609d82886109138961077d565b6040518463ffffffff1660e01b8152600401610931939291906115cc565b5f604051808303815f87803b158015610948575f80fd5b505af115801561095a573d5f803e3d5ffd5b505050506109688684610b74565b6040516001600160a01b038881168252919550908516907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0080545f9190600160401b810460ff16159067ffffffffffffffff1683811580156109fd5750825b90505f8267ffffffffffffffff166001148015610a195750303b155b905081158015610a27575080155b15610a455760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610a6f57845460ff60401b1916600160401b1785555b610a7b8a8a8a8a6103da565b95508315610ac357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050949350505050565b6002545f90610518906001600160a01b0316610f8b565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610b3057604051631afcd79f60e31b815260040160405180910390fd5b565b6004545f90819015610b575760405163402b135f60e11b815260040160405180910390fd5b33610b628482611184565b610b6a61064c565b9430945092505050565b600254604080516303639b8b60e21b815290516001600160a01b03909216915f918391630d8e6e2c916004808201926020929091908290030181865afa158015610bc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be49190611600565b9050610c628173__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c559190611600565b62ffffff90811691161490565b15610c80576040516348c618db60e01b815260040160405180910390fd5b60045415610dd85760048054610c989060019061168c565b81548110610ca857610ca8611678565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610d19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3d91906116ab565b604051635560100760e01b815262ffffff8316600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610d8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db391906116ab565b11610dd857604051633e614b6d60e11b815262ffffff82166004820152602401610846565b600480546001810182555f8290527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b600a808304919091018054919092066003026101000a62ffffff81810219909216918516021790556040805160a0810182526001600160a01b038716815281516356db0c1960e11b81529151909260208085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb618329382810193928290030181865af4158015610e93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eb791906116c2565b64ffffffffff1681526020014363ffffffff908116825262ffffff93841660208084018290526001600160a01b039788166040948501525f91825260038152908390208451815492860151948601516060870151909716600160e81b026001600160e81b0397909416600160c81b02969096166001600160c81b0364ffffffffff909516600160a01b026001600160c81b0319909316968916969096179190911792909216939093179290921782556080015160019091018054919093166001600160a01b03199190911617909155919050565b5f805f8051602061255983398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610ff7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101b919061163e565b156110475780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610846565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611099573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bd919061163e565b6110e55760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610846565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611137573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115b91906116e6565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b61118c610ae7565b6111946111fa565b61119d82611242565b6001600160a01b0381166111c45760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061255983398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b611202610ae7565b610b306301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61124a610ae7565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156112a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112c4919061163e565b6112ec5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610846565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610e4c8061170d83390190565b5f6020828403121561132b575f80fd5b81356001600160e01b031981168114611342575f80fd5b9392505050565b6001600160a01b038116811461135d575f80fd5b50565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611383575f80fd5b813567ffffffffffffffff81111561139d5761139d611360565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156113cc576113cc611360565b6040528181528382016020018510156113e3575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f8060808587031215611412575f80fd5b843561141d81611349565b9350602085013561142d81611349565b9250604085013567ffffffffffffffff811115611448575f80fd5b61145487828801611374565b949793965093946060013593505050565b5f8060408385031215611476575f80fd5b823561148181611349565b9150602083013567ffffffffffffffff81111561149c575f80fd5b6114a885828601611374565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61134260208301846114b2565b5f805f60608486031215611504575f80fd5b833561150f81611349565b9250602084013561151f81611349565b9150604084013567ffffffffffffffff81111561153a575f80fd5b61154686828701611374565b9150509250925092565b62ffffff8116811461135d575f80fd5b5f60208284031215611570575f80fd5b813561134281611550565b5f6020828403121561158b575f80fd5b813567ffffffffffffffff8111156115a1575f80fd5b6115ad84828501611374565b949350505050565b5f602082840312156115c5575f80fd5b5035919050565b6001600160a01b038481168252831660208201526060604082018190525f906115f7908301846114b2565b95945050505050565b5f60208284031215611610575f80fd5b815161134281611550565b6001600160a01b03831681526040602082018190525f906115ad908301846114b2565b5f6020828403121561164e575f80fd5b81518015158114611342575f80fd5b5f6020828403121561166d575f80fd5b815161134281611349565b634e487b7160e01b5f52603260045260245ffd5b8181038181111561057957634e487b7160e01b5f52601160045260245ffd5b5f602082840312156116bb575f80fd5b5051919050565b5f602082840312156116d2575f80fd5b815164ffffffffff81168114611342575f80fd5b5f602082840312156116f6575f80fd5b81516001600160601b0381168114611342575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a26469706673582212200c3362a94d45f3789e5e072df222a7314eae72d6b1eb5930bdfbad02b3cbbe4764736f6c634300081a00336080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615d7f806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610187575f3560e01c806376b707b7116100d9578063aa5ae5aa11610093578063bbfbbfba1161006e578063bbfbbfba146103ca578063bc4a1c35146103dd578063bf7e214f146103f0578063d3220051146103f8575f80fd5b8063aa5ae5aa1461039c578063ada9652e146103af578063b68d1809146103c3575f80fd5b806376b707b71461030a5780637a9e5e4b146103245780637baa9a0b14610337578063893d20e8146103605780638fb36037146103685780639ffcede914610389575f80fd5b806322f3e2d4116101445780634d5e16a91161011f5780634d5e16a9146102955780635ab1bd53146102a8578063644c45e0146102cd5780636c741e78146102ea575f80fd5b806322f3e2d414610267578063329d6e741461026f57806349bb9e4b14610282575f80fd5b806301ffc9a71461018b5780630aaba8e8146101cc5780630d8e6e2c146101e15780630fec111c146101fd578063138461e0146102125780631eff4b2214610232575b5f80fd5b6101b761019936600461494f565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101df6101da36600461498a565b61040b565b005b6101e96109ff565b60405162ffffff90911681526020016101c3565b610205610a86565b6040516101c391906149d3565b61021a610c40565b6040516001600160601b0390911681526020016101c3565b6102597f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101c3565b6101b7610c4a565b6101df61027d366004614bce565b610cc1565b6101df610290366004614c13565b610e0b565b6101df6102a3366004614c71565b610f07565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101c3565b5f80516020615cea833981519152546001600160601b031661021a565b6102f2611059565b6040516001600160401b0390911681526020016101c3565b6103126110e5565b60405160ff90911681526020016101c3565b6101df610332366004614ca8565b61114d565b61034a610345366004614c71565b6111cf565b60405164ffffffffff90911681526020016101c3565b6102b5611214565b610370611345565b6040516001600160e01b031990911681526020016101c3565b6101df61039736600461498a565b61138d565b61021a6103aa366004614c71565b6115c9565b6102595f80516020615cea83398151915281565b6015610312565b6101df6103d8366004614c71565b611e14565b61034a6103eb366004614cc3565b6124b7565b6102b56125cd565b6101df610406366004614c71565b6125fb565b610413612954565b5f805f61041f8461298b565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610462573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104869190614d0b565b604051637017c97760e11b815290915073__$d4f8ac2ac7f53dfb2fb9ff92adbd6d29df$__9063e02f92ee906104c29084908990600401614d26565b602060405180830381865af41580156104dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105019190614d5c565b61052e5760405163b6e77a0960e01b81526001600160601b03861660048201526024015b60405180910390fd5b604082810151602084015191516309c5844f60e01b81526001600160601b03881660048201529091906105bd906001600160a01b038516906309c5844f90602401602060405180830381865afa15801561058a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ae9190614d8e565b60dc5b60ff9081169116141590565b156105f4576080840151604051635567446960e11b81526001600160601b03808a1660048301529091166024820152604401610525565b60055460405163750787f560e01b81526001600160a01b039091169063750787f5906106289089908b908990600401614f53565b5f604051808303815f87803b15801561063f575f80fd5b505af1158015610651573d5f803e3d5ffd5b5050505073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561069c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c09190614f90565b64ffffffffff166101a085015260408051631a99b41b60e31b815290516001600160a01b0388169163d4cda0d89160048083019260209291908290030181865afa158015610710573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107349190614d0b565b6001600160a01b031663036b1ffb888660c86040518463ffffffff1660e01b815260040161076493929190614fab565b5f604051808303815f87803b15801561077b575f80fd5b505af115801561078d573d5f803e3d5ffd5b505050505f6107a46001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03841660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa1580156107f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108159190614fea565b9050866001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610853573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108779190614d0b565b6001600160a01b031663903a264b87858b6040518463ffffffff1660e01b81526004016108a693929190615005565b5f604051808303815f87803b1580156108bd575f80fd5b505af11580156108cf573d5f803e3d5ffd5b50505050866001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561090f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109339190614d0b565b60405163752723bf60e11b81526001600160601b03808416600483015280851660248301528a1660448201526001600160a01b03919091169063ea4e477e906064015f604051808303815f87803b15801561098c575f80fd5b505af115801561099e573d5f803e3d5ffd5b50506040516001600160601b038b1681527f549ae8b6fdcdbc1ee634d00b432905175415ba23ee737dac1d99b6ef540afc719250602001905060405180910390a1505050505050506109fc60015f80516020615d0a83398151915255565b50565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610a5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a819190615032565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b569190614fea565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610b9e611214565b6001600160a01b03168152602001826001018054610bbb90615054565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790615054565b8015610c325780601f10610c0957610100808354040283529160200191610c32565b820191905f5260205f20905b815481529060010190602001808311610c1557829003601f168201915b505050505081525091505090565b5f610a8130612b8d565b5f610c536125cd565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610c97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cbb9190614d5c565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610ce36109ff565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d45919061509a565b5f80516020615d2a8339815191528054600160401b900460ff1680610d77575080546001600160401b03808416911610155b15610d955760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610dbf83612d86565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80516020615d2a8339815191528054600160401b810460ff1615906001600160401b03165f81158015610e3c5750825b90505f826001600160401b03166001148015610e575750303b155b905081158015610e65575080155b15610e835760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ead57845460ff60401b1916600160401b1785555b610eb78787612d8e565b8315610efe57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610f0f612954565b5f80610f1a8461298b565b9250509150610f2a848285613236565b9050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8c9190614d0b565b6001600160a01b031663036b1ffb858360ff6040518463ffffffff1660e01b8152600401610fbc93929190614fab565b5f604051808303815f87803b158015610fd3575f80fd5b505af1158015610fe5573d5f803e3d5ffd5b5050604080516001600160601b038816815264ffffffffff871660208201527f0fb266de81849f168e7cbd8db91f5efc1e79dd85e672e18e6fdb84e86c42cc6c93500190505b60405180910390a161103d84846133c6565b505061105560015f80516020615d0a83398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe601561107e6110e5565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156110c1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a81919061509a565b5f6110ee6125cd565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611129573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a819190614d8e565b336111566125cd565b6001600160a01b0316816001600160a01b0316146111915760405162d1953b60e31b81526001600160a01b0382166004820152602401610525565b816001600160a01b03163b5f036111c6576040516361798f2f60e11b81526001600160a01b0383166004820152602401610525565b611055826134ce565b5f6111d8612954565b5f806111e38561298b565b92505091506111f482868387613541565b9250505061120e60015f80516020615d0a83398151915255565b92915050565b5f805f80516020615cea83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611280573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112a49190614d5c565b1561132f576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611305573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113299190614d0b565b91505090565b54600160601b90046001600160a01b0316919050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080545f9190600160a01b900460ff1661137f575f611329565b638fb3603760e01b91505090565b611395612954565b5f61139f8261298b565b5050905061147f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113e2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114069190614d0b565b604051639096a1f360e01b81526001600160601b03851660048201526001600160a01b039190911690639096a1f3906024015b602060405180830381865afa158015611454573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114789190614d8e565b600a6105b1565b156114a857604051631130ddad60e21b81526001600160601b0383166004820152602401610525565b806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115089190614d0b565b6001600160a01b0316635d4345cc83601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b15801561155f575f80fd5b505af1158015611571573d5f803e3d5ffd5b50506040516001600160601b03851681527fa9d1c49a019bf7dc62cfada9540cd302c4fc54f6ed05d99b581074ed70441fae9250602001905060405180910390a1506109fc60015f80516020615d0a83398151915255565b5f6115d2612954565b5f805f6115de8661298b565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611621573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116459190614d0b565b604051639096a1f360e01b81526001600160601b0389166004820152909150611681906001600160a01b03831690639096a1f390602401611439565b156116aa57604051631130ddad60e21b81526001600160601b0388166004820152602401610525565b60055460405163037efc5960e61b81526001600160601b03851660048201526001600160a01b03918216916384d1f7cf91879185169063dfbf164090602401602060405180830381865afa158015611704573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117289190614d0b565b6020860151606087015160405160e086901b6001600160e01b03191681526001600160a01b0394851660048201529390921660248401526001600160601b038089166044850152808d16606485015290811660848401521660a482015260c40160408051808303815f875af11580156117a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117c791906150c0565b5050604051638d38cd4b60e01b815264ffffffffff8716600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af415801561181d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118419190614d5c565b1561185457611851878388613236565b91505b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611890573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118b49190614d0b565b6001600160a01b031663036b1ffb888460286040518463ffffffff1660e01b81526004016118e493929190614fab565b5f604051808303815f87803b1580156118fb575f80fd5b505af115801561190d573d5f803e3d5ffd5b505050604080840151602085015160065460608701516101608801516101c089015160a08a01519651637a5ff29d60e11b815295975093955f956001600160a01b039094169463f4bfe53a94611971948d948b949193909290918b916004016150ed565b61024060405180830381865afa15801561198d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119b1919061516a565b905080608001519750866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119f6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a1a9190614d0b565b6001600160a01b0316634d4a7ae98b836040518363ffffffff1660e01b8152600401611a479291906154b7565b5f604051808303815f87803b158015611a5e575f80fd5b505af1158015611a70573d5f803e3d5ffd5b50506040516302d764c760e21b81526001600160601b03891660048201525f92506001600160a01b0387169150630b5d931c906024015f60405180830381865afa158015611ac0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611ae7919081019061555d565b9050806040015115611b72576004805460c083015160a089015160405163038f0f2560e11b81526001600160601b03909216938201939093526001600160c01b031990921660248301526001600160a01b03169063071e1e4a906044015f604051808303815f87803b158015611b5b575f80fd5b505af1158015611b6d573d5f803e3d5ffd5b505050505b505f611b866001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015611bd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bf79190614fea565b9050876001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c599190614d0b565b6001600160a01b0316639ad7533f88868e6040518463ffffffff1660e01b8152600401611c8893929190615005565b5f604051808303815f87803b158015611c9f575f80fd5b505af1158015611cb1573d5f803e3d5ffd5b50505050876001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cf1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d159190614d0b565b6040516001622c076960e21b031981526001600160601b03808416600483015280861660248301528d1660448201526001600160a01b03919091169063ff4fe25c906064015f604051808303815f87803b158015611d71575f80fd5b505af1158015611d83573d5f803e3d5ffd5b505050507f2e8d9b075b0da8e4e0de386a81c149b1f6fb08eb063859bb0802de4d3261249b8b8360a001518c604051611de4939291906001600160601b03938416815291909216602082015264ffffffffff91909116604082015260600190565b60405180910390a1611df68b8b6133c6565b505050505050505061120e60015f80516020615d0a83398151915255565b611e1c612954565b5f805f611e288561298b565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e8f9190614d0b565b604051639096a1f360e01b81526001600160601b0388166004820152909150611f0c906001600160a01b03831690639096a1f390602401602060405180830381865afa158015611ee1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f059190614d8e565b60286105b1565b15611f355760405163904913a960e01b81526001600160601b0387166004820152602401610525565b6040516309c5844f60e01b81526001600160601b0387166004820152611fb1906001600160a01b038316906309c5844f90602401602060405180830381865afa158015611f84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa89190614d8e565b60ff1660dc1490565b15611fda57604051635b7a826360e01b81526001600160601b0387166004820152602401610525565b60405163e444c3df60e01b81526001600160601b03871660048201525f906001600160a01b0383169063e444c3df9060240161024060405180830381865afa158015612028573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204c919061516a565b60405163a310e2a360e01b81526001600160601b03861660048201529091506001600160a01b0383169063a310e2a390602401602060405180830381865afa15801561209a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120be9190614d0b565b6001600160a01b031663f14ac2b96120de6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038b1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561212b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061214f9190614d0b565b60a08401516040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526001600160601b031660248201525f60448201526064015f6040518083038186803b1580156121a5575f80fd5b505afa1580156121b7573d5f803e3d5ffd5b5050505061223082866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061221f9190614d0b565b8686602001518760a00151866138af565b604051638d38cd4b60e01b815264ffffffffff8716600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015612284573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122a89190614d5c565b156122bb576122b8878488613236565b92505b846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061231b9190614d0b565b6001600160a01b031663036b1ffb888560ff6040518463ffffffff1660e01b815260040161234b93929190614fab565b5f604051808303815f87803b158015612362575f80fd5b505af1158015612374573d5f803e3d5ffd5b50505050846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123d89190614d0b565b6001600160a01b0316632ae5819d8860dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b15801561242f575f80fd5b505af1158015612441573d5f803e3d5ffd5b50505060a0820151604080516001600160601b03808c16825290921660208301527ea0c8fe3b5b724e2059f6961117d71cb0d74006490b63aa1e51f89d050e1b3b92500160405180910390a161249c8288855f015184613aa8565b505050505061105560015f80516020615d0a83398151915255565b5f6124c0612954565b6124cb836015613dea565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612508573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252c9190614d0b565b60405163bd7d9d8560e01b81526001600160601b03861660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa158015612578573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261259f91908101906156bb565b90506125ad85858386613541565b9150506125c660015f80516020615d0a83398151915255565b9392505050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00546001600160a01b031690565b612603612954565b5f8061260e8461298b565b61014081015160405163790a38ad60e01b815264ffffffffff9091166004820152929450925073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9163790a38ad9150602401602060405180830381865af415801561266f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126939190614d5c565b156126bc5760405163358702ab60e11b81526001600160601b0385166004820152602401610525565b61273a8373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612707573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061272b9190614f90565b64ffffffffff90811691161090565b156127e4578373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612787573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127ab9190614f90565b604051620ee96f60ec1b81526001600160601b03909216600483015264ffffffffff908116602483015284166044820152606401610525565b61018081015164ffffffffff908116908416111561283c5761018081015160405163b3be080560e01b81526001600160601b038616600482015264ffffffffff91821660248201529084166044820152606401610525565b64ffffffffff831661014082015260408051631a99b41b60e31b815290516001600160a01b0384169163d4cda0d89160048083019260209291908290030181865afa15801561288d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128b19190614d0b565b6001600160a01b031663036b1ffb858360ff6040518463ffffffff1660e01b81526004016128e193929190614fab565b5f604051808303815f87803b1580156128f8575f80fd5b505af115801561290a573d5f803e3d5ffd5b5050604080516001600160601b038816815264ffffffffff871660208201527f984dda4d8ee0bb327632ff3d6032e400bd617a855444711be74d56cb26ed66b7935001905061102b565b5f80516020615d0a83398151915280546001190161298557604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f806129956148ca565b5f8073__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36129c36001546001600160a01b031690565b33600c6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260ff166044820152600160648201526084015f60405180830381865af4158015612a1f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a46919081019061584e565b91509150815f01519350809450846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab39190614d0b565b60405163bd7d9d8560e01b81526001600160601b03881660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa158015612aff573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b2691908101906156bb565b9250612b35835f015185613ea1565b15612b71578251604051631a06208360e01b81526001600160601b03808916600483015280871660248301529091166044820152606401610525565b50509193909250565b60015f80516020615d0a83398151915255565b5f805f80516020615cea83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612bf9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c1d9190614d5c565b15612c495780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610525565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612c9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cbf9190614d5c565b612ce75760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610525565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612d39573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d5d9190614fea565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b610187613f25565b5f80516020615d2a8339815191528054600160401b810460ff1615906001600160401b03165f81158015612dbf5750825b90505f826001600160401b03166001148015612dda5750303b155b905081158015612de8575080155b15612e065760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612e3057845460ff60401b1916600160401b1785555b5f8087806020019051810190612e469190615930565b91509150612e5582828b613f5d565b5f612e5e6109ff565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015612eb1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ed59190614d8e565b9050612ee96001546001600160a01b031690565b6001600160a01b031663d39e604360286040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612f3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f619190614d0b565b600280546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600b6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015612fd5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ff99190614d0b565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561306d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130919190614d0b565b600580546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613105573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131299190614d0b565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043602a6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa15801561319d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131c19190614d0b565b600680546001600160a01b0319166001600160a01b03929092169190911790556131f163dd6a8fd760e01b613ff6565b5050508315610efe57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610ef5565b61323e6148ca565b61014083015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015613299573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132bd9190614d5c565b1580156132d9575061014083015164ffffffffff808416911614155b156133025760405163f95747d360e01b81526001600160601b0385166004820152602401610525565b61014083015164ffffffffff83811691160361331f5750816125c6565b64ffffffffff82811661014085018190526101608501516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af415801561338d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133b19190614f90565b64ffffffffff16610180840152509092915050565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561341a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061343e9190614d5c565b15613447575050565b5f61345183614026565b90506001600160a01b038116156134c957604051630be6b84560e21b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b03821690632f9ae114906044015b5f604051808303815f87803b1580156134b7575f80fd5b505af1158015610efe573d5f803e3d5ffd5b505050565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f73__$d4f8ac2ac7f53dfb2fb9ff92adbd6d29df$__63fb77bafc8386886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561359a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135be9190614d0b565b604051639096a1f360e01b81526001600160601b038a1660048201526001600160a01b039190911690639096a1f390602401602060405180830381865afa15801561360b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061362f9190614d8e565b876040518563ffffffff1660e01b815260040161364f949392919061595d565b5f6040518083038186803b158015613665575f80fd5b505af4158015613677573d5f803e3d5ffd5b5050604051638d38cd4b60e01b815264ffffffffff8516600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9250638d38cd4b9150602401602060405180830381865af41580156136cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136f39190614d5c565b1561370b5764ffffffffff8216610180840152613784565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613752573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137769190614f90565b64ffffffffff166101808401525b846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137e49190614d0b565b6001600160a01b031663036b1ffb858560ff6040518463ffffffff1660e01b815260040161381493929190614fab565b5f604051808303815f87803b15801561382b575f80fd5b505af115801561383d573d5f803e3d5ffd5b505050610180840151604080516001600160601b038816815264ffffffffff90921660208301527f78c7b2401beaecd3c89e9a37210cba72e9f33e125194b23cb6c42a6d07c4fe1492500160405180910390a161389f84846101800151614139565b506101808201515b949350505050565b5f6138ba8786614217565b505050905060025f9054906101000a90046001600160a01b03166001600160a01b03166367438c5087876138f78661014001518760c0015161453b565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160601b0391821660248401521660448201526064015f604051808303815f87803b15801561394b575f80fd5b505af115801561395d573d5f803e3d5ffd5b5050604051630a4d29dd60e31b81526001600160601b038416600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__92506352694ee89150602401602060405180830381865af41580156139b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139db9190614d5c565b613a405760048054604051633ca8687160e11b81526001600160a01b0390911691637950d0e291613a129185918891889101615afc565b5f604051808303815f87803b158015613a29575f80fd5b505af1158015613a3b573d5f803e3d5ffd5b505050505b60055460405163fb3bcd1f60e01b81526001600160a01b039091169063fb3bcd1f90613a7290879086906004016154b7565b5f604051808303815f87803b158015613a89575f80fd5b505af1158015613a9b573d5f803e3d5ffd5b5050505050505050505050565b5f613abb6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613b08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b2c9190614d0b565b90505f805f613b3b8887614217565b60405163a310e2a360e01b81526001600160601b038b16600482015292965090945092505f91506001600160a01b038a169063a310e2a390602401602060405180830381865afa158015613b91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bb59190614d0b565b60a0870151604051630f3f86bd60e31b81529192506001600160a01b038316916379fc35e891613bea91899190600401614d26565b5f604051808303815f87803b158015613c01575f80fd5b505af1158015613c13573d5f803e3d5ffd5b5050505060208601516040516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015613c73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c979190614d5c565b15613cfb5760208601516040516333f6af9b60e11b81526001600160a01b038316916367ed5f3691613ccd918891600401614d26565b5f604051808303815f87803b158015613ce4575f80fd5b505af1158015613cf6573d5f803e3d5ffd5b505050505b60408681015190516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015613d57573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d7b9190614d5c565b15613ddf5760408087015190516333f6af9b60e11b81526001600160a01b038316916367ed5f3691613db1918791600401614d26565b5f604051808303815f87803b158015613dc8575f80fd5b505af1158015613dda573d5f803e3d5ffd5b505050505b505050505050505050565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613e4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e709190614d5c565b6110555760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610525565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af4158015613f01573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125c69190614d5c565b5f80516020615d2a83398151915254600160401b900460ff16613f5b57604051631afcd79f60e31b815260040160405180910390fd5b565b613f65613f25565b613f6d6145bf565b613fea8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fd29190614fea565b60085f8660405180602001604052805f8152506145cf565b6134c963daf9067160e01b5b613ffe613f25565b6109fc816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f8061403a6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03851660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015614087573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140ab9190614d0b565b604051635b5dd68960e11b81526001600160a01b038216600482015290925082915073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063b6bbad1290602401602060405180830381865af4158015614107573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061412b9190614d5c565b614133575f91505b50919050565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561418d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141b19190614d5c565b156141ba575050565b5f6141c483614026565b90506001600160a01b038116156134c9576040516362782d9f60e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b038216906362782d9f906044016134a0565b6040516302d764c760e21b81526001600160601b03821660048201525f9081908190819081906001600160a01b03881690630b5d931c906024015f60405180830381865afa15801561426b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052614292919081019061555d565b60405163f0ea17c360e01b81526001600160601b03881660048201529091506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa1580156142df573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526143069190810190615b2a565b602001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015614345573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143699190614d0b565b60a082015160405163f0ea17c360e01b81526001600160601b0390911660048201529092506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa1580156143bc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526143e39190810190615b2a565b602001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015614422573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144469190614d0b565b92508060400151156145315760c081015160405163f0ea17c360e01b81526001600160601b03821660048201529095506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa1580156144a4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526144cb9190810190615b2a565b602001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa15801561450a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061452e9190614d0b565b93505b5092959194509250565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801561459b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125c69190614fea565b6145c7613f25565b613f5b614716565b6145d7613f25565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af415801561462d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146519190614d5c565b6146795760405163cf6935e560e01b81526001600160a01b0388166004820152602401610525565b6146828761471e565b61468c868361472f565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016146fb8382615c2f565b5061470c634a531f3360e01b613ff6565b5050505050505050565b612b7a613f25565b614726613f25565b6109fc816147a5565b614737613f25565b61473f6147b6565b614748826147fe565b6001600160a01b03811661476f5760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615cea83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6147ad613f25565b6109fc816134ce565b6147be613f25565b613f5b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614806613f25565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af415801561485c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906148809190614d5c565b6148a85760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610525565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201839052610100820183905261012082018390526101408201839052610160820183905261018082018390526101a08201929092526101c081018290526101e081019190915290565b5f6020828403121561495f575f80fd5b81356001600160e01b0319811681146125c6575f80fd5b6001600160601b03811681146109fc575f80fd5b5f6020828403121561499a575f80fd5b81356125c681614976565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614a1b608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526138a76101008401826149a5565b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b0381118282101715614a9657614a96614a5f565b60405290565b60405161010081016001600160401b0381118282101715614a9657614a96614a5f565b60405161020081016001600160401b0381118282101715614a9657614a96614a5f565b60405160e081016001600160401b0381118282101715614a9657614a96614a5f565b604051606081016001600160401b0381118282101715614a9657614a96614a5f565b604051601f8201601f191681016001600160401b0381118282101715614b4e57614b4e614a5f565b604052919050565b5f6001600160401b03821115614b6e57614b6e614a5f565b50601f01601f191660200190565b5f82601f830112614b8b575f80fd5b8135614b9e614b9982614b56565b614b26565b818152846020838601011115614bb2575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614bde575f80fd5b81356001600160401b03811115614bf3575f80fd5b6138a784828501614b7c565b6001600160a01b03811681146109fc575f80fd5b5f8060408385031215614c24575f80fd5b8235614c2f81614bff565b915060208301356001600160401b03811115614c49575f80fd5b614c5585828601614b7c565b9150509250929050565b64ffffffffff811681146109fc575f80fd5b5f8060408385031215614c82575f80fd5b8235614c8d81614976565b91506020830135614c9d81614c5f565b809150509250929050565b5f60208284031215614cb8575f80fd5b81356125c681614bff565b5f805f60608486031215614cd5575f80fd5b8335614ce081614bff565b92506020840135614cf081614976565b91506040840135614d0081614c5f565b809150509250925092565b5f60208284031215614d1b575f80fd5b81516125c681614bff565b6001600160a01b039290921682526001600160601b0316602082015260400190565b80518015158114614d57575f80fd5b919050565b5f60208284031215614d6c575f80fd5b6125c682614d48565b60ff811681146109fc575f80fd5b8051614d5781614d75565b5f60208284031215614d9e575f80fd5b81516125c681614d75565b80516001600160601b031682525f6020820151614dd160208501826001600160601b03169052565b506040820151614ded60408501826001600160c01b0319169052565b506060820151614e0860608501826001600160601b03169052565b506080820151614e2360808501826001600160601b03169052565b5060a0820151614e3f60a08501826001600160c01b0319169052565b5060c0820151614e5560c085018261ffff169052565b5060e0820151614e6b60e085018261ffff169052565b50610100820151614e886101008501826001600160601b03169052565b50610120820151614ea56101208501826001600160601b03169052565b50610140820151614ec061014085018264ffffffffff169052565b50610160820151614edb61016085018264ffffffffff169052565b50610180820151614ef661018085018264ffffffffff169052565b506101a0820151614f116101a085018264ffffffffff169052565b506101c08201516102006101c0850152614f2f6102008501826149a5565b90506101e08301518482036101e0860152614f4a82826149a5565b95945050505050565b6001600160a01b03841681526001600160601b03831660208201526060604082018190525f90614f4a90830184614da9565b8051614d5781614c5f565b5f60208284031215614fa0575f80fd5b81516125c681614c5f565b6001600160601b0384168152606060208201525f614fcc6060830185614da9565b905060ff83166040830152949350505050565b8051614d5781614976565b5f60208284031215614ffa575f80fd5b81516125c681614976565b6001600160601b0393841681526001600160c01b0319929092166020830152909116604082015260600190565b5f60208284031215615042575f80fd5b815162ffffff811681146125c6575f80fd5b600181811c9082168061506857607f821691505b60208210810361413357634e487b7160e01b5f52602260045260245ffd5b6001600160401b03811681146109fc575f80fd5b5f602082840312156150aa575f80fd5b81516125c681615086565b8051614d5781614bff565b5f80604083850312156150d1575f80fd5b82516150dc81614976565b6020840151909250614c9d81614976565b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f61513c60e08301866149a5565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f61024082840312801561517c575f80fd5b50615185614a73565b61518e83614fdf565b815261519c60208401614fdf565b60208201526151ad60408401614fdf565b60408201526151be60608401614fdf565b60608201526151cf60808401614fdf565b60808201526151e060a08401614fdf565b60a08201526151f160c08401614fdf565b60c082015261520260e08401614fdf565b60e08201526152146101008401614fdf565b6101008201526152276101208401614fdf565b61012082015261523a6101408401614fdf565b61014082015261524d6101608401614fdf565b6101608201526152606101808401614fdf565b6101808201526152736101a08401614fdf565b6101a08201526152866101c08401614fdf565b6101c08201526152996101e08401614fdf565b6101e08201526152ac6102008401614fdf565b6102008201526152bf6102208401614fdf565b6102208201529392505050565b80516001600160601b0316825260208101516152f360208401826001600160601b03169052565b50604081015161530e60408401826001600160601b03169052565b50606081015161532960608401826001600160601b03169052565b50608081015161534460808401826001600160601b03169052565b5060a081015161535f60a08401826001600160601b03169052565b5060c081015161537a60c08401826001600160601b03169052565b5060e081015161539560e08401826001600160601b03169052565b506101008101516153b26101008401826001600160601b03169052565b506101208101516153cf6101208401826001600160601b03169052565b506101408101516153ec6101408401826001600160601b03169052565b506101608101516154096101608401826001600160601b03169052565b506101808101516154266101808401826001600160601b03169052565b506101a08101516154436101a08401826001600160601b03169052565b506101c08101516154606101c08401826001600160601b03169052565b506101e081015161547d6101e08401826001600160601b03169052565b5061020081015161549a6102008401826001600160601b03169052565b506102208101516134c96102208401826001600160601b03169052565b6001600160601b038316815261026081016125c660208301846152cc565b5f82601f8301126154e4575f80fd5b81516001600160401b038111156154fd576154fd614a5f565b8060051b61550d60208201614b26565b91825260208185018101929081019086841115615528575f80fd5b6020860192505b8383101561555357825161554281614976565b82526020928301929091019061552f565b9695505050505050565b5f6020828403121561556d575f80fd5b81516001600160401b03811115615582575f80fd5b82016101008185031215615594575f80fd5b61559c614a9c565b6155a582614d48565b81526155b360208301614d48565b60208201526155c460408301614d48565b60408201526155d560608301614d83565b60608201526155e660808301614d83565b60808201526155f760a08301614fdf565b60a082015261560860c08301614fdf565b60c082015260e08201516001600160401b03811115615625575f80fd5b615631868285016154d5565b60e083015250949350505050565b80516001600160c01b031981168114614d57575f80fd5b805161ffff81168114614d57575f80fd5b5f615674614b9984614b56565b9050828152838383011115615687575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f8301126156ac575f80fd5b6125c683835160208501615667565b5f602082840312156156cb575f80fd5b81516001600160401b038111156156e0575f80fd5b820161020081850312156156f2575f80fd5b6156fa614abf565b61570382614fdf565b815261571160208301614fdf565b60208201526157226040830161563f565b604082015261573360608301614fdf565b606082015261574460808301614fdf565b608082015261575560a0830161563f565b60a082015261576660c08301615656565b60c082015261577760e08301615656565b60e08201526157896101008301614fdf565b61010082015261579c6101208301614fdf565b6101208201526157af6101408301614f85565b6101408201526157c26101608301614f85565b6101608201526157d56101808301614f85565b6101808201526157e86101a08301614f85565b6101a08201526101c08201516001600160401b03811115615807575f80fd5b6158138682850161569d565b6101c0830152506101e08201516001600160401b03811115615833575f80fd5b61583f8682850161569d565b6101e083015250949350505050565b5f806040838503121561585f575f80fd5b82516001600160401b03811115615874575f80fd5b830160e08186031215615885575f80fd5b61588d614ae2565b61589682614fdf565b81526158a460208301614fdf565b60208201526158b560408301614d83565b60408201526158c660608301614d48565b60608201526158d7608083016150b5565b60808201526158e860a083016150b5565b60a082015260c08201516001600160401b03811115615905575f80fd5b6159118782850161569d565b60c08301525092506159279050602084016150b5565b90509250929050565b5f8060408385031215615941575f80fd5b825161594c81614bff565b6020840151909250614c9d81614bff565b64ffffffffff851681526001600160601b038416602082015260ff831660408201526080606082015261599c6080820183516001600160601b03169052565b5f60208301516159b760a08401826001600160601b03169052565b5060408301516001600160c01b0319811660c08401525060608301516001600160601b03811660e08401525060808301516001600160601b0381166101008401525060a08301516001600160c01b031981166101208401525060c083015161ffff81166101408401525060e083015161ffff8116610160840152506101008301516001600160601b038116610180840152506101208301516001600160601b0381166101a08401525061014083015164ffffffffff81166101c08401525061016083015164ffffffffff81166101e08401525061018083015164ffffffffff8116610200840152506101a083015164ffffffffff8116610220840152506101c0830151610200610240840152615ad16102808401826149a5565b90506101e0840151607f1984830301610260850152615af082826149a5565b98975050505050505050565b6001600160601b03841681526001600160c01b03198316602082015261028081016138a760408301846152cc565b5f60208284031215615b3a575f80fd5b81516001600160401b03811115615b4f575f80fd5b820160608185031215615b60575f80fd5b615b68614b04565b81516001600160401b03811115615b7d575f80fd5b8201601f81018613615b8d575f80fd5b615b9c86825160208401615667565b8252506020820151615bad81614bff565b602082015260408201516001600160401b03811115615bca575f80fd5b615bd68682850161569d565b604083015250949350505050565b601f8211156134c957805f5260205f20601f840160051c81016020851015615c095750805b601f840160051c820191505b81811015615c28575f8155600101615c15565b5050505050565b81516001600160401b03811115615c4857615c48614a5f565b615c5c81615c568454615054565b84615be4565b6020601f821160018114615c8e575f8315615c775750848201515b5f19600385901b1c1916600184901b178455615c28565b5f84815260208120601f198516915b82811015615cbd5787850151825560209485019460019092019101615c9d565b5084821015615cda57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220e164a47d884e5a0cc198f64c29f6458d779e0580342fc21c00f0ea48a2105ae064736f6c634300081a003360a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
559
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063893d20e8116100a9578063b88da7591161006e578063b88da75914610388578063c987336c1461039b578063e1033e7d146103ae578063f5c1b5a7146103bf578063fd0c63d9146103d2575f80fd5b8063893d20e8146103365780638e9afce61461033e578063933a9ce814610351578063946dfcfe14610362578063ada9652e14610374575f80fd5b80631775564d116100ef5780631775564d146101c85780632db5b86f146101e85780634d459c90146101fb5780635ab1bd5314610308578063644c45e014610319575f80fd5b806301ffc9a71461012057806304499582146101615780630d8e6e2c1461018c578063138461e0146101a8575b5f80fd5b61014c61012e36600461131b565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61017461016f3660046113ff565b6103da565b6040516001600160a01b039091168152602001610158565b6101946104ad565b60405162ffffff9091168152602001610158565b6101b061051d565b6040516001600160601b039091168152602001610158565b6101db6101d6366004611465565b610527565b60405161015891906114e0565b6101746101f63660046114f2565b61057f565b6102ad610209366004611560565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a08101845281546001600160a01b03808216835264ffffffffff600160a01b8304169483019490945263ffffffff600160c81b82041694820194909452600160e81b9093049093166060830152600190920154909116608082015290565b604051610158919081516001600160a01b03908116825260208084015164ffffffffff169083015260408084015163ffffffff169083015260608084015162ffffff1690830152608092830151169181019190915260a00190565b6001546001600160a01b0316610174565b5f80516020612559833981519152546001600160601b03166101b0565b61017461064c565b6101db61034c36600461157b565b61077d565b6002546001600160a01b0316610174565b6004545b604051908152602001610158565b6103665f8051602061255983398151915281565b6101946103963660046115b5565b6107d0565b6101746103a9366004611465565b61080e565b6005546001600160a01b0316610174565b6101746103cd3660046113ff565b6109b5565b6101b0610ad0565b5f6103e3610ae7565b5f806103ee87610b32565b915091508386826103ff8589610527565b60405161040b9061130e565b610417939291906115cc565b8190604051809103905ff5905080158015610434573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b039290921691909117905561045f8683610b74565b6040516001600160a01b038881168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a25050949350505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa1580156104f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105189190611600565b905090565b5f61051830610f8b565b60606349bb9e4b60e01b838360405160240161054492919061161b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b5f610588610ae7565b5f8061059386610b32565b9150915084816105a38487610527565b6040516105af9061130e565b6105bb939291906115cc565b604051809103905ff0801580156105d4573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169190911790556105ff8583610b74565b6040516001600160a01b038781168252919450908416907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b5f805f8051602061255983398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156106b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106dc919061163e565b15610767576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561073d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610761919061165d565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b8260405160240161079891906114e0565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f600482815481106107e4576107e4611678565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f61081761064c565b6001600160a01b0316336001600160a01b03161461084f5760405163086391f760e31b81523360048201526024015b60405180910390fd5b6004545f036108715760405163366dfd2160e21b815260040160405180910390fd5b5f61087a61064c565b90505f61088f6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af11580156108cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ef919061165d565b6002549091506001600160a01b03908116908216639623609d82886109138961077d565b6040518463ffffffff1660e01b8152600401610931939291906115cc565b5f604051808303815f87803b158015610948575f80fd5b505af115801561095a573d5f803e3d5ffd5b505050506109688684610b74565b6040516001600160a01b038881168252919550908516907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0080545f9190600160401b810460ff16159067ffffffffffffffff1683811580156109fd5750825b90505f8267ffffffffffffffff166001148015610a195750303b155b905081158015610a27575080155b15610a455760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610a6f57845460ff60401b1916600160401b1785555b610a7b8a8a8a8a6103da565b95508315610ac357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050949350505050565b6002545f90610518906001600160a01b0316610f8b565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16610b3057604051631afcd79f60e31b815260040160405180910390fd5b565b6004545f90819015610b575760405163402b135f60e11b815260040160405180910390fd5b33610b628482611184565b610b6a61064c565b9430945092505050565b600254604080516303639b8b60e21b815290516001600160a01b03909216915f918391630d8e6e2c916004808201926020929091908290030181865afa158015610bc0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be49190611600565b9050610c628173__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c559190611600565b62ffffff90811691161490565b15610c80576040516348c618db60e01b815260040160405180910390fd5b60045415610dd85760048054610c989060019061168c565b81548110610ca857610ca8611678565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610d19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3d91906116ab565b604051635560100760e01b815262ffffff8316600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015610d8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db391906116ab565b11610dd857604051633e614b6d60e11b815262ffffff82166004820152602401610846565b600480546001810182555f8290527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b600a808304919091018054919092066003026101000a62ffffff81810219909216918516021790556040805160a0810182526001600160a01b038716815281516356db0c1960e11b81529151909260208085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb618329382810193928290030181865af4158015610e93573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eb791906116c2565b64ffffffffff1681526020014363ffffffff908116825262ffffff93841660208084018290526001600160a01b039788166040948501525f91825260038152908390208451815492860151948601516060870151909716600160e81b026001600160e81b0397909416600160c81b02969096166001600160c81b0364ffffffffff909516600160a01b026001600160c81b0319909316968916969096179190911792909216939093179290921782556080015160019091018054919093166001600160a01b03199190911617909155919050565b5f805f8051602061255983398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610ff7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101b919061163e565b156110475780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610846565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611099573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bd919061163e565b6110e55760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610846565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015611137573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115b91906116e6565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b61118c610ae7565b6111946111fa565b61119d82611242565b6001600160a01b0381166111c45760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061255983398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b611202610ae7565b610b306301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61124a610ae7565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156112a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112c4919061163e565b6112ec5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610846565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b610e4c8061170d83390190565b5f6020828403121561132b575f80fd5b81356001600160e01b031981168114611342575f80fd5b9392505050565b6001600160a01b038116811461135d575f80fd5b50565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112611383575f80fd5b813567ffffffffffffffff81111561139d5761139d611360565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156113cc576113cc611360565b6040528181528382016020018510156113e3575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f8060808587031215611412575f80fd5b843561141d81611349565b9350602085013561142d81611349565b9250604085013567ffffffffffffffff811115611448575f80fd5b61145487828801611374565b949793965093946060013593505050565b5f8060408385031215611476575f80fd5b823561148181611349565b9150602083013567ffffffffffffffff81111561149c575f80fd5b6114a885828601611374565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61134260208301846114b2565b5f805f60608486031215611504575f80fd5b833561150f81611349565b9250602084013561151f81611349565b9150604084013567ffffffffffffffff81111561153a575f80fd5b61154686828701611374565b9150509250925092565b62ffffff8116811461135d575f80fd5b5f60208284031215611570575f80fd5b813561134281611550565b5f6020828403121561158b575f80fd5b813567ffffffffffffffff8111156115a1575f80fd5b6115ad84828501611374565b949350505050565b5f602082840312156115c5575f80fd5b5035919050565b6001600160a01b038481168252831660208201526060604082018190525f906115f7908301846114b2565b95945050505050565b5f60208284031215611610575f80fd5b815161134281611550565b6001600160a01b03831681526040602082018190525f906115ad908301846114b2565b5f6020828403121561164e575f80fd5b81518015158114611342575f80fd5b5f6020828403121561166d575f80fd5b815161134281611349565b634e487b7160e01b5f52603260045260245ffd5b8181038181111561057957634e487b7160e01b5f52601160045260245ffd5b5f602082840312156116bb575f80fd5b5051919050565b5f602082840312156116d2575f80fd5b815164ffffffffff81168114611342575f80fd5b5f602082840312156116f6575f80fd5b81516001600160601b0381168114611342575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212205f12e4d638be8d591db7c67d942f3e9eeb14e9e44f78ba8cddaca37631bdc49764736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a26469706673582212200c3362a94d45f3789e5e072df222a7314eae72d6b1eb5930bdfbad02b3cbbe4764736f6c634300081a0033",
560
+ "linkReferences": {
561
+ "contracts/product/PolicyServiceLib.sol": {
562
+ "PolicyServiceLib": [
563
+ {
564
+ "length": 20,
565
+ "start": 14258
566
+ },
567
+ {
568
+ "length": 20,
569
+ "start": 26718
570
+ }
571
+ ]
572
+ },
573
+ "contracts/shared/ContractLib.sol": {
574
+ "ContractLib": [
575
+ {
576
+ "length": 20,
577
+ "start": 2585
578
+ },
579
+ {
580
+ "length": 20,
581
+ "start": 7934
582
+ },
583
+ {
584
+ "length": 20,
585
+ "start": 23731
586
+ },
587
+ {
588
+ "length": 20,
589
+ "start": 29673
590
+ },
591
+ {
592
+ "length": 20,
593
+ "start": 30991
594
+ },
595
+ {
596
+ "length": 20,
597
+ "start": 31550
598
+ }
599
+ ]
600
+ },
601
+ "contracts/type/Amount.sol": {
602
+ "AmountLib": [
603
+ {
604
+ "length": 20,
605
+ "start": 28501
606
+ },
607
+ {
608
+ "length": 20,
609
+ "start": 28729
610
+ },
611
+ {
612
+ "length": 20,
613
+ "start": 30845
614
+ }
615
+ ]
616
+ },
617
+ "contracts/type/NftId.sol": {
618
+ "NftIdLib": [
619
+ {
620
+ "length": 20,
621
+ "start": 2213
622
+ },
623
+ {
624
+ "length": 20,
625
+ "start": 4886
626
+ },
627
+ {
628
+ "length": 20,
629
+ "start": 7253
630
+ },
631
+ {
632
+ "length": 20,
633
+ "start": 15879
634
+ },
635
+ {
636
+ "length": 20,
637
+ "start": 17762
638
+ },
639
+ {
640
+ "length": 20,
641
+ "start": 24283
642
+ },
643
+ {
644
+ "length": 20,
645
+ "start": 27799
646
+ },
647
+ {
648
+ "length": 20,
649
+ "start": 29155
650
+ }
651
+ ]
652
+ },
653
+ "contracts/type/RoleId.sol": {
654
+ "RoleIdLib": [
655
+ {
656
+ "length": 20,
657
+ "start": 17270
658
+ }
659
+ ]
660
+ },
661
+ "contracts/type/Timestamp.sol": {
662
+ "TimestampLib": [
663
+ {
664
+ "length": 20,
665
+ "start": 1694
666
+ },
667
+ {
668
+ "length": 20,
669
+ "start": 6899
670
+ },
671
+ {
672
+ "length": 20,
673
+ "start": 14705
674
+ },
675
+ {
676
+ "length": 20,
677
+ "start": 19199
678
+ },
679
+ {
680
+ "length": 20,
681
+ "start": 21862
682
+ },
683
+ {
684
+ "length": 20,
685
+ "start": 22864
686
+ },
687
+ {
688
+ "length": 20,
689
+ "start": 23004
690
+ },
691
+ {
692
+ "length": 20,
693
+ "start": 23132
694
+ },
695
+ {
696
+ "length": 20,
697
+ "start": 25979
698
+ },
699
+ {
700
+ "length": 20,
701
+ "start": 26223
702
+ },
703
+ {
704
+ "length": 20,
705
+ "start": 26364
706
+ },
707
+ {
708
+ "length": 20,
709
+ "start": 27055
710
+ },
711
+ {
712
+ "length": 20,
713
+ "start": 27175
714
+ },
715
+ {
716
+ "length": 20,
717
+ "start": 29807
718
+ }
719
+ ]
720
+ },
721
+ "contracts/type/Version.sol": {
722
+ "VersionLib": [
723
+ {
724
+ "length": 20,
725
+ "start": 1064
726
+ },
727
+ {
728
+ "length": 20,
729
+ "start": 1309
730
+ },
731
+ {
732
+ "length": 20,
733
+ "start": 1427
734
+ },
735
+ {
736
+ "length": 20,
737
+ "start": 6274
738
+ },
739
+ {
740
+ "length": 20,
741
+ "start": 6519
742
+ },
743
+ {
744
+ "length": 20,
745
+ "start": 6637
746
+ },
747
+ {
748
+ "length": 20,
749
+ "start": 15679
750
+ },
751
+ {
752
+ "length": 20,
753
+ "start": 16349
754
+ },
755
+ {
756
+ "length": 20,
757
+ "start": 24979
758
+ }
759
+ ]
760
+ }
761
+ },
762
+ "deployedLinkReferences": {
763
+ "contracts/shared/ContractLib.sol": {
764
+ "ContractLib": [
765
+ {
766
+ "length": 20,
767
+ "start": 4712
768
+ }
769
+ ]
770
+ },
771
+ "contracts/type/NftId.sol": {
772
+ "NftIdLib": [
773
+ {
774
+ "length": 20,
775
+ "start": 1664
776
+ },
777
+ {
778
+ "length": 20,
779
+ "start": 4031
780
+ }
781
+ ]
782
+ },
783
+ "contracts/type/Timestamp.sol": {
784
+ "TimestampLib": [
785
+ {
786
+ "length": 20,
787
+ "start": 3677
788
+ }
789
+ ]
790
+ },
791
+ "contracts/type/Version.sol": {
792
+ "VersionLib": [
793
+ {
794
+ "length": 20,
795
+ "start": 3052
796
+ },
797
+ {
798
+ "length": 20,
799
+ "start": 3297
800
+ },
801
+ {
802
+ "length": 20,
803
+ "start": 3415
804
+ }
805
+ ]
806
+ }
807
+ }
808
+ }