@etherisc/gif-next 0.0.2-91f98cf-477 → 0.0.2-92c50c2-136

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (711) hide show
  1. package/README.md +237 -41
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1378 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +826 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +827 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +709 -0
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +266 -1608
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +769 -0
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +538 -1958
  20. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +228 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1701 -0
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1220 -0
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +758 -0
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3597 -0
  32. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  34. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  35. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  36. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  37. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  38. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  40. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  41. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
  42. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  43. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  44. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  45. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  46. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  47. package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
  48. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  49. package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
  50. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  51. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  52. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  53. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  54. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  55. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  56. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  57. package/artifacts/contracts/{instance/base/ModuleBase.sol/ModuleBase.json → oracle/IOracle.sol/IOracle.json} +2 -2
  58. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  59. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
  60. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  61. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
  62. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  63. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
  64. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  65. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
  66. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  67. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
  68. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  69. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1134 -0
  70. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  71. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +754 -0
  72. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  73. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → pool/IBundleService.sol/IBundleService.json} +380 -307
  74. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  75. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
  76. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  77. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
  78. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  79. package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
  80. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  81. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
  82. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  83. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
  84. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  85. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
  86. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  87. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
  88. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  89. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
  90. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  91. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
  92. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  93. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +512 -0
  94. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  95. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
  96. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  97. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
  98. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  99. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
  100. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  101. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
  102. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  103. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → product/IProductService.sol/IProductService.json} +195 -171
  104. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  105. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
  106. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  107. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
  108. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  109. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1012 -0
  110. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  112. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  113. package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
  114. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  115. package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
  116. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  117. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
  118. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  119. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  120. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  121. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +678 -77
  122. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  123. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1123 -0
  124. package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  125. package/artifacts/contracts/registry/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  126. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  127. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  128. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  129. package/artifacts/contracts/registry/Registry.sol/Registry.json +865 -107
  130. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1901 -0
  132. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  133. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
  134. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  135. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
  136. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  137. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  138. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  139. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1177 -0
  140. package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  141. package/artifacts/contracts/registry/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  142. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  143. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +206 -0
  144. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  145. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  146. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  147. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1559 -0
  148. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
  149. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
  150. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
  151. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
  152. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
  153. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
  154. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
  155. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
  156. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
  157. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
  158. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  159. package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
  160. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  161. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1511 -0
  162. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  163. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +796 -0
  164. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  165. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
  166. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  167. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  168. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  169. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1189 -0
  170. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
  171. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
  172. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
  173. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
  174. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  175. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
  176. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  177. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +880 -0
  178. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  179. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
  180. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  181. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
  182. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  183. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  184. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  185. package/artifacts/contracts/{instance/module/component/IComponent.sol/IComponentModule.json → shared/INftOwnable.sol/INftOwnable.json} +66 -52
  186. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  187. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  188. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  189. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
  190. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  191. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  192. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  193. package/artifacts/contracts/{instance/service/IDistributionService.sol/IDistributionService.json → shared/IService.sol/IService.json} +171 -150
  194. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  195. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
  196. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  197. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  198. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  199. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
  200. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  201. package/artifacts/contracts/{instance/base/IKeyValueStore.sol/IKeyValueStore.json → shared/KeyValueStore.sol/KeyValueStore.json} +102 -165
  202. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  203. package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/Lifecycle.sol/Lifecycle.json} +54 -45
  204. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
  205. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
  206. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  207. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  208. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  209. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  210. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  211. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
  212. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  213. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
  214. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  215. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  216. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  217. package/artifacts/contracts/shared/Service.sol/Service.json +507 -0
  218. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  219. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  220. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  221. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  222. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  223. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
  224. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  225. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  226. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  227. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  228. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  229. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +460 -0
  230. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  231. package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
  232. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  234. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  235. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
  236. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  237. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  238. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  239. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
  240. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  241. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
  242. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  243. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2237 -0
  244. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  245. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
  246. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  247. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  248. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  249. package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
  250. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  251. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  252. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  253. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  254. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  256. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  258. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  260. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  262. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  263. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  264. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +186 -0
  266. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  268. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  270. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  272. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  274. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +266 -0
  276. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
  278. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  280. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  282. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  283. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  284. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  286. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  287. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
  288. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  289. package/artifacts/contracts/type/UFixed.sol/MathLib.json +10 -0
  290. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  291. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
  292. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  294. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
  296. package/contracts/distribution/Distribution.sol +261 -0
  297. package/contracts/distribution/DistributionService.sol +297 -0
  298. package/contracts/distribution/DistributionServiceManager.sol +42 -0
  299. package/contracts/distribution/IDistributionComponent.sol +66 -0
  300. package/contracts/distribution/IDistributionService.sol +81 -0
  301. package/contracts/instance/BundleManager.sol +126 -0
  302. package/contracts/instance/IInstance.sol +80 -46
  303. package/contracts/instance/IInstanceService.sol +97 -0
  304. package/contracts/instance/Instance.sol +248 -59
  305. package/contracts/instance/InstanceAdmin.sol +331 -0
  306. package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
  307. package/contracts/instance/InstanceReader.sol +392 -0
  308. package/contracts/instance/InstanceService.sol +439 -0
  309. package/contracts/instance/InstanceServiceManager.sol +44 -0
  310. package/contracts/instance/InstanceStore.sol +272 -0
  311. package/contracts/instance/base/BalanceStore.sol +123 -0
  312. package/contracts/instance/base/Cloneable.sol +28 -0
  313. package/contracts/instance/base/ObjectCounter.sol +21 -0
  314. package/contracts/instance/base/ObjectLifecycle.sol +106 -0
  315. package/contracts/instance/base/ObjectManager.sol +80 -0
  316. package/contracts/instance/module/IAccess.sol +46 -0
  317. package/contracts/instance/module/IBundle.sol +20 -0
  318. package/contracts/instance/module/IComponents.sol +52 -0
  319. package/contracts/instance/module/IDistribution.sol +42 -0
  320. package/contracts/instance/module/IPolicy.sol +84 -0
  321. package/contracts/instance/module/IRisk.sol +11 -0
  322. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  323. package/contracts/oracle/IOracle.sol +20 -0
  324. package/contracts/oracle/IOracleComponent.sol +32 -0
  325. package/contracts/oracle/IOracleService.sol +65 -0
  326. package/contracts/oracle/Oracle.sol +145 -0
  327. package/contracts/oracle/OracleService.sol +278 -0
  328. package/contracts/oracle/OracleServiceManager.sol +42 -0
  329. package/contracts/pool/BundleService.sol +296 -0
  330. package/contracts/pool/BundleServiceManager.sol +42 -0
  331. package/contracts/pool/IBundleService.sol +106 -0
  332. package/contracts/pool/IPoolComponent.sol +112 -0
  333. package/contracts/pool/IPoolService.sol +150 -0
  334. package/contracts/pool/Pool.sol +299 -0
  335. package/contracts/pool/PoolService.sol +452 -0
  336. package/contracts/pool/PoolServiceManager.sol +42 -0
  337. package/contracts/product/ApplicationService.sol +254 -0
  338. package/contracts/product/ApplicationServiceManager.sol +38 -0
  339. package/contracts/product/ClaimService.sol +442 -0
  340. package/contracts/product/ClaimServiceManager.sol +38 -0
  341. package/contracts/product/IApplicationService.sol +62 -0
  342. package/contracts/product/IClaimService.sol +99 -0
  343. package/contracts/product/IPolicyService.sol +78 -0
  344. package/contracts/product/IPricingService.sol +39 -0
  345. package/contracts/product/IProductComponent.sol +42 -0
  346. package/contracts/product/IProductService.sol +33 -0
  347. package/contracts/product/PolicyService.sol +475 -0
  348. package/contracts/product/PolicyServiceManager.sol +42 -0
  349. package/contracts/product/PricingService.sol +300 -0
  350. package/contracts/product/PricingServiceManager.sol +42 -0
  351. package/contracts/product/Product.sol +377 -0
  352. package/contracts/product/ProductService.sol +124 -0
  353. package/contracts/product/ProductServiceManager.sol +42 -0
  354. package/contracts/registry/ChainNft.sol +95 -37
  355. package/contracts/registry/IRegistry.sol +95 -28
  356. package/contracts/registry/IRegistryService.sol +69 -0
  357. package/contracts/registry/IServiceAuthorization.sol +38 -0
  358. package/contracts/registry/ITransferInterceptor.sol +7 -0
  359. package/contracts/registry/Registry.sol +482 -281
  360. package/contracts/registry/RegistryAdmin.sol +335 -0
  361. package/contracts/registry/RegistryService.sol +266 -0
  362. package/contracts/registry/RegistryServiceManager.sol +53 -0
  363. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  364. package/contracts/registry/ReleaseManager.sol +503 -0
  365. package/contracts/registry/ServiceAuthorization.sol +90 -0
  366. package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
  367. package/contracts/registry/TokenRegistry.sol +315 -0
  368. package/contracts/shared/AccessAdmin.sol +759 -0
  369. package/contracts/shared/AccessManagerCustom.sol +741 -0
  370. package/contracts/shared/AccessManagerExtended.sol +481 -0
  371. package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
  372. package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
  373. package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
  374. package/contracts/shared/Component.sol +281 -0
  375. package/contracts/shared/ComponentService.sol +620 -0
  376. package/contracts/shared/ComponentServiceManager.sol +35 -0
  377. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  378. package/contracts/shared/ERC165.sol +15 -9
  379. package/contracts/shared/IAccessAdmin.sol +168 -0
  380. package/contracts/shared/IAccessManagerExtended.sol +74 -0
  381. package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
  382. package/contracts/shared/IComponent.sol +70 -0
  383. package/contracts/shared/IComponentService.sol +102 -0
  384. package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
  385. package/contracts/shared/IKeyValueStore.sol +54 -0
  386. package/contracts/{instance/base → shared}/ILifecycle.sol +4 -5
  387. package/contracts/shared/INftOwnable.sol +23 -0
  388. package/contracts/shared/IPolicyHolder.sol +45 -0
  389. package/contracts/shared/IRegisterable.sol +10 -19
  390. package/contracts/shared/IRegistryLinked.sol +11 -0
  391. package/contracts/shared/IService.sol +25 -0
  392. package/contracts/shared/IVersionable.sol +38 -37
  393. package/contracts/shared/InitializableCustom.sol +177 -0
  394. package/contracts/shared/InstanceLinkedComponent.sol +144 -0
  395. package/contracts/shared/KeyValueStore.sol +131 -0
  396. package/contracts/shared/Lifecycle.sol +77 -0
  397. package/contracts/shared/NftIdSetManager.sol +65 -0
  398. package/contracts/shared/NftOwnable.sol +107 -0
  399. package/contracts/shared/PolicyHolder.sol +102 -0
  400. package/contracts/shared/ProxyManager.sol +199 -0
  401. package/contracts/shared/Registerable.sol +54 -65
  402. package/contracts/shared/RegistryLinked.sol +43 -0
  403. package/contracts/shared/Service.sol +83 -0
  404. package/contracts/shared/TokenHandler.sol +58 -0
  405. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  406. package/contracts/shared/Versionable.sol +38 -68
  407. package/contracts/staking/IStaking.sol +168 -0
  408. package/contracts/staking/IStakingService.sol +153 -0
  409. package/contracts/staking/StakeManagerLib.sol +231 -0
  410. package/contracts/staking/Staking.sol +513 -0
  411. package/contracts/staking/StakingLifecycle.sol +23 -0
  412. package/contracts/staking/StakingManager.sol +54 -0
  413. package/contracts/staking/StakingReader.sol +187 -0
  414. package/contracts/staking/StakingService.sol +411 -0
  415. package/contracts/staking/StakingServiceManager.sol +44 -0
  416. package/contracts/staking/StakingStore.sol +615 -0
  417. package/contracts/staking/TargetManagerLib.sol +207 -0
  418. package/contracts/{types → type}/AddressSet.sol +1 -1
  419. package/contracts/type/Amount.sol +128 -0
  420. package/contracts/{types → type}/Blocknumber.sol +21 -3
  421. package/contracts/type/ClaimId.sol +75 -0
  422. package/contracts/type/DistributorType.sol +55 -0
  423. package/contracts/type/Fee.sol +66 -0
  424. package/contracts/{types → type}/Key32.sol +8 -3
  425. package/contracts/{types → type}/NftId.sol +21 -15
  426. package/contracts/type/NftIdSet.sol +62 -0
  427. package/contracts/type/ObjectType.sol +241 -0
  428. package/contracts/type/PayoutId.sol +82 -0
  429. package/contracts/type/Referral.sol +89 -0
  430. package/contracts/type/RequestId.sol +75 -0
  431. package/contracts/{types → type}/RiskId.sol +1 -1
  432. package/contracts/type/RoleId.sol +201 -0
  433. package/contracts/type/Seconds.sol +81 -0
  434. package/contracts/type/Selector.sol +102 -0
  435. package/contracts/{types → type}/StateId.sol +39 -5
  436. package/contracts/type/String.sol +53 -0
  437. package/contracts/{types → type}/Timestamp.sol +27 -14
  438. package/contracts/{types → type}/UFixed.sol +129 -12
  439. package/contracts/{types → type}/Version.sol +15 -2
  440. package/package.json +11 -7
  441. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  442. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  443. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  444. package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -405
  445. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  446. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -174
  447. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  448. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -340
  449. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  450. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -487
  451. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  452. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -370
  453. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  454. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -578
  455. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  456. package/artifacts/contracts/components/Product.sol/Product.json +0 -444
  457. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  458. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  459. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  460. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  461. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  462. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  463. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  464. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  465. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  466. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  467. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  468. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  469. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  470. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  471. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  472. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  473. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  474. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  475. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  476. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  477. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  478. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  479. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  480. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  481. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  482. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  483. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  484. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  485. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  486. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  487. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  488. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  489. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  490. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  491. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  492. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  493. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  494. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  495. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
  496. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  497. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  498. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  499. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  500. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  501. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  502. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -710
  503. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  504. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  505. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  506. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  507. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  508. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  509. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  510. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  511. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  512. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  513. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  514. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
  515. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  516. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  517. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
  518. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  519. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
  520. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  521. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  522. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  523. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
  524. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
  525. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
  526. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
  527. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
  528. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  529. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  530. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -284
  531. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  532. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -284
  533. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  534. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  535. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  536. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -144
  537. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  538. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -144
  539. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  540. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  541. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
  542. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  543. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
  544. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  545. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  546. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  547. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -511
  548. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  549. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  550. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  551. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -511
  552. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  553. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -531
  554. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  555. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -420
  556. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  557. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +0 -364
  558. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  559. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  560. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -440
  561. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  562. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  563. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -543
  564. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  565. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -858
  566. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  567. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  568. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  569. package/artifacts/contracts/registry/RegistryUpgradeable.sol/Registry.dbg.json +0 -4
  570. package/artifacts/contracts/registry/RegistryUpgradeable.sol/Registry.json +0 -495
  571. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  572. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  573. package/artifacts/contracts/shared/Proxy.sol/Proxy.dbg.json +0 -4
  574. package/artifacts/contracts/shared/Proxy.sol/Proxy.json +0 -178
  575. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +0 -4
  576. package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.json +0 -129
  577. package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.dbg.json +0 -4
  578. package/artifacts/contracts/shared/VersionableUpgradeable.sol/VersionableUpgradeable.json +0 -187
  579. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
  580. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -405
  581. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  582. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  583. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  584. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -578
  585. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  586. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -575
  587. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  588. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  589. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  590. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  591. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  592. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  593. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  594. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  595. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  596. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  597. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  598. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  599. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  600. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  601. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  602. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  603. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  604. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  605. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  606. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  607. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  608. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  609. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  610. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  611. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  612. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  613. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  614. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  615. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  616. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  617. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
  618. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
  619. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  620. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  621. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  622. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  623. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  624. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  625. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  626. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  627. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  628. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  629. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  630. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  631. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  632. package/contracts/components/BaseComponent.sol +0 -94
  633. package/contracts/components/Distribution.sol +0 -132
  634. package/contracts/components/IBaseComponent.sol +0 -19
  635. package/contracts/components/IDistributionComponent.sol +0 -47
  636. package/contracts/components/IPoolComponent.sol +0 -71
  637. package/contracts/components/IProductComponent.sol +0 -38
  638. package/contracts/components/Pool.sol +0 -235
  639. package/contracts/components/Product.sol +0 -227
  640. package/contracts/experiment/errors/Require.sol +0 -38
  641. package/contracts/experiment/errors/Revert.sol +0 -44
  642. package/contracts/experiment/inheritance/A.sol +0 -53
  643. package/contracts/experiment/inheritance/B.sol +0 -28
  644. package/contracts/experiment/inheritance/C.sol +0 -34
  645. package/contracts/experiment/inheritance/IA.sol +0 -13
  646. package/contracts/experiment/inheritance/IB.sol +0 -10
  647. package/contracts/experiment/inheritance/IC.sol +0 -12
  648. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  649. package/contracts/experiment/statemachine/ISM.sol +0 -25
  650. package/contracts/experiment/statemachine/README.md +0 -112
  651. package/contracts/experiment/statemachine/SM.sol +0 -57
  652. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  653. package/contracts/experiment/types/TypeA.sol +0 -47
  654. package/contracts/experiment/types/TypeB.sol +0 -29
  655. package/contracts/instance/IInstanceLinked.sol +0 -8
  656. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  657. package/contracts/instance/base/IInstanceBase.sol +0 -22
  658. package/contracts/instance/base/IKeyValueStore.sol +0 -50
  659. package/contracts/instance/base/IService.sol +0 -15
  660. package/contracts/instance/base/InstanceBase.sol +0 -91
  661. package/contracts/instance/base/KeyValueStore.sol +0 -161
  662. package/contracts/instance/base/Lifecycle.sol +0 -100
  663. package/contracts/instance/base/ModuleBase.sol +0 -57
  664. package/contracts/instance/base/ServiceBase.sol +0 -37
  665. package/contracts/instance/module/access/Access.sol +0 -149
  666. package/contracts/instance/module/access/IAccess.sol +0 -53
  667. package/contracts/instance/module/bundle/BundleModule.sol +0 -134
  668. package/contracts/instance/module/bundle/IBundle.sol +0 -53
  669. package/contracts/instance/module/component/ComponentModule.sol +0 -70
  670. package/contracts/instance/module/component/IComponent.sol +0 -28
  671. package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
  672. package/contracts/instance/module/distribution/IDistribution.sol +0 -10
  673. package/contracts/instance/module/policy/IPolicy.sol +0 -63
  674. package/contracts/instance/module/policy/PolicyModule.sol +0 -91
  675. package/contracts/instance/module/pool/IPoolModule.sol +0 -40
  676. package/contracts/instance/module/pool/PoolModule.sol +0 -90
  677. package/contracts/instance/module/risk/IRisk.sol +0 -26
  678. package/contracts/instance/module/risk/RiskModule.sol +0 -62
  679. package/contracts/instance/module/treasury/ITreasury.sol +0 -82
  680. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  681. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -138
  682. package/contracts/instance/service/ComponentOwnerService.sol +0 -157
  683. package/contracts/instance/service/DistributionService.sol +0 -59
  684. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  685. package/contracts/instance/service/IDistributionService.sol +0 -12
  686. package/contracts/instance/service/IPoolService.sol +0 -37
  687. package/contracts/instance/service/IProductService.sol +0 -107
  688. package/contracts/instance/service/PoolService.sol +0 -149
  689. package/contracts/instance/service/ProductService.sol +0 -509
  690. package/contracts/registry/IChainNft.sol +0 -21
  691. package/contracts/registry/IRegistryLinked.sol +0 -8
  692. package/contracts/registry/RegistryUpgradeable.sol +0 -415
  693. package/contracts/shared/IOwnable.sol +0 -6
  694. package/contracts/shared/Proxy.sol +0 -83
  695. package/contracts/shared/VersionableUpgradeable.sol +0 -108
  696. package/contracts/test/TestDistribution.sol +0 -21
  697. package/contracts/test/TestFee.sol +0 -25
  698. package/contracts/test/TestPool.sol +0 -25
  699. package/contracts/test/TestProduct.sol +0 -72
  700. package/contracts/test/TestRegisterable.sol +0 -19
  701. package/contracts/test/TestRoleId.sol +0 -14
  702. package/contracts/test/TestService.sol +0 -32
  703. package/contracts/test/TestToken.sol +0 -26
  704. package/contracts/test/TestVersion.sol +0 -44
  705. package/contracts/test/TestVersionable.sol +0 -17
  706. package/contracts/types/ChainId.sol +0 -38
  707. package/contracts/types/Fee.sol +0 -56
  708. package/contracts/types/NftIdSet.sol +0 -60
  709. package/contracts/types/ObjectType.sol +0 -131
  710. package/contracts/types/ReferralId.sol +0 -48
  711. package/contracts/types/RoleId.sol +0 -38
@@ -0,0 +1,1177 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ReleaseManager",
4
+ "sourceName": "contracts/registry/ReleaseManager.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "contract Registry",
10
+ "name": "registry",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "stateMutability": "nonpayable",
15
+ "type": "constructor"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "authority",
22
+ "type": "address"
23
+ }
24
+ ],
25
+ "name": "AccessManagedInvalidAuthority",
26
+ "type": "error"
27
+ },
28
+ {
29
+ "inputs": [
30
+ {
31
+ "internalType": "address",
32
+ "name": "caller",
33
+ "type": "address"
34
+ },
35
+ {
36
+ "internalType": "uint32",
37
+ "name": "delay",
38
+ "type": "uint32"
39
+ }
40
+ ],
41
+ "name": "AccessManagedRequiredDelay",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "caller",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "AccessManagedUnauthorized",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "ObjectType",
59
+ "name": "objectType",
60
+ "type": "uint8"
61
+ },
62
+ {
63
+ "internalType": "StateId",
64
+ "name": "fromStateId",
65
+ "type": "uint8"
66
+ },
67
+ {
68
+ "internalType": "StateId",
69
+ "name": "toStateId",
70
+ "type": "uint8"
71
+ }
72
+ ],
73
+ "name": "ErrorInvalidStateTransition",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "ObjectType",
80
+ "name": "objectType",
81
+ "type": "uint8"
82
+ }
83
+ ],
84
+ "name": "ErrorNoLifecycle",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "registryAddress",
92
+ "type": "address"
93
+ }
94
+ ],
95
+ "name": "ErrorNotRegistry",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [
100
+ {
101
+ "internalType": "VersionPart",
102
+ "name": "version",
103
+ "type": "uint8"
104
+ }
105
+ ],
106
+ "name": "ErrorReleaseManagerNoDomains",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [],
111
+ "name": "ErrorReleaseManagerNoServiceRegistrationExpected",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "contract Registry",
118
+ "name": "registry",
119
+ "type": "address"
120
+ }
121
+ ],
122
+ "name": "ErrorReleaseManagerNotRegistry",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "address",
129
+ "name": "notService",
130
+ "type": "address"
131
+ }
132
+ ],
133
+ "name": "ErrorReleaseManagerNotService",
134
+ "type": "error"
135
+ },
136
+ {
137
+ "inputs": [
138
+ {
139
+ "internalType": "VersionPart",
140
+ "name": "releaseVersion",
141
+ "type": "uint8"
142
+ },
143
+ {
144
+ "internalType": "StateId",
145
+ "name": "currentStateId",
146
+ "type": "uint8"
147
+ }
148
+ ],
149
+ "name": "ErrorReleaseManagerReleaseActivationDisallowed",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "inputs": [
154
+ {
155
+ "internalType": "VersionPart",
156
+ "name": "releaseVersion",
157
+ "type": "uint8"
158
+ }
159
+ ],
160
+ "name": "ErrorReleaseManagerReleaseAlreadyActivated",
161
+ "type": "error"
162
+ },
163
+ {
164
+ "inputs": [
165
+ {
166
+ "internalType": "VersionPart",
167
+ "name": "releaseVersion",
168
+ "type": "uint8"
169
+ }
170
+ ],
171
+ "name": "ErrorReleaseManagerReleaseAlreadyDisabled",
172
+ "type": "error"
173
+ },
174
+ {
175
+ "inputs": [
176
+ {
177
+ "internalType": "VersionPart",
178
+ "name": "version",
179
+ "type": "uint8"
180
+ },
181
+ {
182
+ "internalType": "StateId",
183
+ "name": "currentStateId",
184
+ "type": "uint8"
185
+ }
186
+ ],
187
+ "name": "ErrorReleaseManagerReleaseAlreadyPrepared",
188
+ "type": "error"
189
+ },
190
+ {
191
+ "inputs": [
192
+ {
193
+ "internalType": "VersionPart",
194
+ "name": "version",
195
+ "type": "uint8"
196
+ },
197
+ {
198
+ "internalType": "StateId",
199
+ "name": "currentStateId",
200
+ "type": "uint8"
201
+ }
202
+ ],
203
+ "name": "ErrorReleaseManagerReleaseCreationDisallowed",
204
+ "type": "error"
205
+ },
206
+ {
207
+ "inputs": [
208
+ {
209
+ "internalType": "VersionPart",
210
+ "name": "releaseVersion",
211
+ "type": "uint8"
212
+ }
213
+ ],
214
+ "name": "ErrorReleaseManagerReleaseNotActivated",
215
+ "type": "error"
216
+ },
217
+ {
218
+ "inputs": [
219
+ {
220
+ "internalType": "VersionPart",
221
+ "name": "releaseVersion",
222
+ "type": "uint8"
223
+ }
224
+ ],
225
+ "name": "ErrorReleaseManagerReleaseNotCreated",
226
+ "type": "error"
227
+ },
228
+ {
229
+ "inputs": [
230
+ {
231
+ "internalType": "VersionPart",
232
+ "name": "version",
233
+ "type": "uint8"
234
+ },
235
+ {
236
+ "internalType": "StateId",
237
+ "name": "currentStateId",
238
+ "type": "uint8"
239
+ }
240
+ ],
241
+ "name": "ErrorReleaseManagerReleasePreparationDisallowed",
242
+ "type": "error"
243
+ },
244
+ {
245
+ "inputs": [
246
+ {
247
+ "internalType": "VersionPart",
248
+ "name": "releaseVersion",
249
+ "type": "uint8"
250
+ },
251
+ {
252
+ "internalType": "uint256",
253
+ "name": "awaitingRegistration",
254
+ "type": "uint256"
255
+ }
256
+ ],
257
+ "name": "ErrorReleaseManagerReleaseRegistrationNotFinished",
258
+ "type": "error"
259
+ },
260
+ {
261
+ "inputs": [
262
+ {
263
+ "internalType": "address",
264
+ "name": "expected",
265
+ "type": "address"
266
+ },
267
+ {
268
+ "internalType": "address",
269
+ "name": "actual",
270
+ "type": "address"
271
+ }
272
+ ],
273
+ "name": "ErrorReleaseManagerServiceAddressMismatch",
274
+ "type": "error"
275
+ },
276
+ {
277
+ "inputs": [
278
+ {
279
+ "internalType": "ObjectType",
280
+ "name": "expectedDomain",
281
+ "type": "uint8"
282
+ },
283
+ {
284
+ "internalType": "ObjectType",
285
+ "name": "actualDomain",
286
+ "type": "uint8"
287
+ }
288
+ ],
289
+ "name": "ErrorReleaseManagerServiceDomainMismatch",
290
+ "type": "error"
291
+ },
292
+ {
293
+ "inputs": [
294
+ {
295
+ "internalType": "contract IService",
296
+ "name": "service",
297
+ "type": "address"
298
+ },
299
+ {
300
+ "internalType": "address",
301
+ "name": "expected",
302
+ "type": "address"
303
+ }
304
+ ],
305
+ "name": "ErrorReleaseManagerServiceInfoAddressInvalid",
306
+ "type": "error"
307
+ },
308
+ {
309
+ "inputs": [
310
+ {
311
+ "internalType": "contract IService",
312
+ "name": "service",
313
+ "type": "address"
314
+ },
315
+ {
316
+ "internalType": "bool",
317
+ "name": "isInterceptor",
318
+ "type": "bool"
319
+ }
320
+ ],
321
+ "name": "ErrorReleaseManagerServiceInfoInterceptorInvalid",
322
+ "type": "error"
323
+ },
324
+ {
325
+ "inputs": [
326
+ {
327
+ "internalType": "contract IService",
328
+ "name": "service",
329
+ "type": "address"
330
+ },
331
+ {
332
+ "internalType": "address",
333
+ "name": "expected",
334
+ "type": "address"
335
+ },
336
+ {
337
+ "internalType": "address",
338
+ "name": "found",
339
+ "type": "address"
340
+ }
341
+ ],
342
+ "name": "ErrorReleaseManagerServiceInfoOwnerInvalid",
343
+ "type": "error"
344
+ },
345
+ {
346
+ "inputs": [
347
+ {
348
+ "internalType": "contract IService",
349
+ "name": "service",
350
+ "type": "address"
351
+ },
352
+ {
353
+ "internalType": "ObjectType",
354
+ "name": "expected",
355
+ "type": "uint8"
356
+ },
357
+ {
358
+ "internalType": "ObjectType",
359
+ "name": "found",
360
+ "type": "uint8"
361
+ }
362
+ ],
363
+ "name": "ErrorReleaseManagerServiceInfoTypeInvalid",
364
+ "type": "error"
365
+ },
366
+ {
367
+ "inputs": [
368
+ {
369
+ "internalType": "contract IService",
370
+ "name": "service",
371
+ "type": "address"
372
+ },
373
+ {
374
+ "internalType": "address",
375
+ "name": "owner",
376
+ "type": "address"
377
+ }
378
+ ],
379
+ "name": "ErrorReleaseManagerServiceOwnerRegistered",
380
+ "type": "error"
381
+ },
382
+ {
383
+ "inputs": [
384
+ {
385
+ "internalType": "StateId",
386
+ "name": "currentStateId",
387
+ "type": "uint8"
388
+ }
389
+ ],
390
+ "name": "ErrorReleaseManagerServiceRegistrationDisallowed",
391
+ "type": "error"
392
+ },
393
+ {
394
+ "inputs": [
395
+ {
396
+ "internalType": "contract IService",
397
+ "name": "service",
398
+ "type": "address"
399
+ },
400
+ {
401
+ "internalType": "address",
402
+ "name": "serviceAuthority",
403
+ "type": "address"
404
+ },
405
+ {
406
+ "internalType": "address",
407
+ "name": "releaseAuthority",
408
+ "type": "address"
409
+ }
410
+ ],
411
+ "name": "ErrorReleaseManagerServiceReleaseAuthorityMismatch",
412
+ "type": "error"
413
+ },
414
+ {
415
+ "inputs": [
416
+ {
417
+ "internalType": "contract IService",
418
+ "name": "service",
419
+ "type": "address"
420
+ },
421
+ {
422
+ "internalType": "VersionPart",
423
+ "name": "serviceVersion",
424
+ "type": "uint8"
425
+ },
426
+ {
427
+ "internalType": "VersionPart",
428
+ "name": "releaseVersion",
429
+ "type": "uint8"
430
+ }
431
+ ],
432
+ "name": "ErrorReleaseManagerServiceReleaseVersionMismatch",
433
+ "type": "error"
434
+ },
435
+ {
436
+ "inputs": [
437
+ {
438
+ "internalType": "contract IService",
439
+ "name": "service",
440
+ "type": "address"
441
+ }
442
+ ],
443
+ "name": "ErrorReleaseManagerServiceSelfRegistration",
444
+ "type": "error"
445
+ },
446
+ {
447
+ "inputs": [
448
+ {
449
+ "internalType": "VersionPart",
450
+ "name": "expected",
451
+ "type": "uint8"
452
+ },
453
+ {
454
+ "internalType": "VersionPart",
455
+ "name": "actual",
456
+ "type": "uint8"
457
+ }
458
+ ],
459
+ "name": "ErrorReleaseManagerVersionMismatch",
460
+ "type": "error"
461
+ },
462
+ {
463
+ "anonymous": false,
464
+ "inputs": [
465
+ {
466
+ "indexed": false,
467
+ "internalType": "address",
468
+ "name": "authority",
469
+ "type": "address"
470
+ }
471
+ ],
472
+ "name": "AuthorityUpdated",
473
+ "type": "event"
474
+ },
475
+ {
476
+ "anonymous": false,
477
+ "inputs": [
478
+ {
479
+ "indexed": false,
480
+ "internalType": "VersionPart",
481
+ "name": "version",
482
+ "type": "uint8"
483
+ }
484
+ ],
485
+ "name": "LogReleaseActivation",
486
+ "type": "event"
487
+ },
488
+ {
489
+ "anonymous": false,
490
+ "inputs": [
491
+ {
492
+ "indexed": false,
493
+ "internalType": "VersionPart",
494
+ "name": "version",
495
+ "type": "uint8"
496
+ },
497
+ {
498
+ "indexed": false,
499
+ "internalType": "bytes32",
500
+ "name": "salt",
501
+ "type": "bytes32"
502
+ },
503
+ {
504
+ "indexed": false,
505
+ "internalType": "address",
506
+ "name": "authority",
507
+ "type": "address"
508
+ }
509
+ ],
510
+ "name": "LogReleaseCreation",
511
+ "type": "event"
512
+ },
513
+ {
514
+ "anonymous": false,
515
+ "inputs": [
516
+ {
517
+ "indexed": false,
518
+ "internalType": "VersionPart",
519
+ "name": "version",
520
+ "type": "uint8"
521
+ }
522
+ ],
523
+ "name": "LogReleaseDisabled",
524
+ "type": "event"
525
+ },
526
+ {
527
+ "anonymous": false,
528
+ "inputs": [
529
+ {
530
+ "indexed": false,
531
+ "internalType": "VersionPart",
532
+ "name": "version",
533
+ "type": "uint8"
534
+ }
535
+ ],
536
+ "name": "LogReleaseEnabled",
537
+ "type": "event"
538
+ },
539
+ {
540
+ "inputs": [],
541
+ "name": "INITIAL_GIF_VERSION",
542
+ "outputs": [
543
+ {
544
+ "internalType": "uint256",
545
+ "name": "",
546
+ "type": "uint256"
547
+ }
548
+ ],
549
+ "stateMutability": "view",
550
+ "type": "function"
551
+ },
552
+ {
553
+ "inputs": [],
554
+ "name": "MIN_DISABLE_DELAY",
555
+ "outputs": [
556
+ {
557
+ "internalType": "Seconds",
558
+ "name": "",
559
+ "type": "uint40"
560
+ }
561
+ ],
562
+ "stateMutability": "view",
563
+ "type": "function"
564
+ },
565
+ {
566
+ "inputs": [],
567
+ "name": "_releaseAccessManagerCodeAddress",
568
+ "outputs": [
569
+ {
570
+ "internalType": "address",
571
+ "name": "",
572
+ "type": "address"
573
+ }
574
+ ],
575
+ "stateMutability": "view",
576
+ "type": "function"
577
+ },
578
+ {
579
+ "inputs": [],
580
+ "name": "activateNextRelease",
581
+ "outputs": [],
582
+ "stateMutability": "nonpayable",
583
+ "type": "function"
584
+ },
585
+ {
586
+ "inputs": [],
587
+ "name": "authority",
588
+ "outputs": [
589
+ {
590
+ "internalType": "address",
591
+ "name": "",
592
+ "type": "address"
593
+ }
594
+ ],
595
+ "stateMutability": "view",
596
+ "type": "function"
597
+ },
598
+ {
599
+ "inputs": [
600
+ {
601
+ "internalType": "ObjectType",
602
+ "name": "objectType",
603
+ "type": "uint8"
604
+ },
605
+ {
606
+ "internalType": "StateId",
607
+ "name": "fromId",
608
+ "type": "uint8"
609
+ },
610
+ {
611
+ "internalType": "StateId",
612
+ "name": "toId",
613
+ "type": "uint8"
614
+ }
615
+ ],
616
+ "name": "checkTransition",
617
+ "outputs": [],
618
+ "stateMutability": "view",
619
+ "type": "function"
620
+ },
621
+ {
622
+ "inputs": [],
623
+ "name": "createNextRelease",
624
+ "outputs": [
625
+ {
626
+ "internalType": "VersionPart",
627
+ "name": "",
628
+ "type": "uint8"
629
+ }
630
+ ],
631
+ "stateMutability": "nonpayable",
632
+ "type": "function"
633
+ },
634
+ {
635
+ "inputs": [
636
+ {
637
+ "internalType": "ObjectType",
638
+ "name": "objectType",
639
+ "type": "uint8"
640
+ }
641
+ ],
642
+ "name": "getInitialState",
643
+ "outputs": [
644
+ {
645
+ "internalType": "StateId",
646
+ "name": "",
647
+ "type": "uint8"
648
+ }
649
+ ],
650
+ "stateMutability": "view",
651
+ "type": "function"
652
+ },
653
+ {
654
+ "inputs": [],
655
+ "name": "getInitialVersion",
656
+ "outputs": [
657
+ {
658
+ "internalType": "VersionPart",
659
+ "name": "",
660
+ "type": "uint8"
661
+ }
662
+ ],
663
+ "stateMutability": "view",
664
+ "type": "function"
665
+ },
666
+ {
667
+ "inputs": [],
668
+ "name": "getLatestVersion",
669
+ "outputs": [
670
+ {
671
+ "internalType": "VersionPart",
672
+ "name": "",
673
+ "type": "uint8"
674
+ }
675
+ ],
676
+ "stateMutability": "view",
677
+ "type": "function"
678
+ },
679
+ {
680
+ "inputs": [],
681
+ "name": "getNextVersion",
682
+ "outputs": [
683
+ {
684
+ "internalType": "VersionPart",
685
+ "name": "",
686
+ "type": "uint8"
687
+ }
688
+ ],
689
+ "stateMutability": "view",
690
+ "type": "function"
691
+ },
692
+ {
693
+ "inputs": [],
694
+ "name": "getRegistry",
695
+ "outputs": [
696
+ {
697
+ "internalType": "contract IRegistry",
698
+ "name": "",
699
+ "type": "address"
700
+ }
701
+ ],
702
+ "stateMutability": "view",
703
+ "type": "function"
704
+ },
705
+ {
706
+ "inputs": [],
707
+ "name": "getRegistryAdmin",
708
+ "outputs": [
709
+ {
710
+ "internalType": "address",
711
+ "name": "",
712
+ "type": "address"
713
+ }
714
+ ],
715
+ "stateMutability": "view",
716
+ "type": "function"
717
+ },
718
+ {
719
+ "inputs": [
720
+ {
721
+ "internalType": "VersionPart",
722
+ "name": "version",
723
+ "type": "uint8"
724
+ }
725
+ ],
726
+ "name": "getReleaseAccessManager",
727
+ "outputs": [
728
+ {
729
+ "internalType": "address",
730
+ "name": "",
731
+ "type": "address"
732
+ }
733
+ ],
734
+ "stateMutability": "view",
735
+ "type": "function"
736
+ },
737
+ {
738
+ "inputs": [
739
+ {
740
+ "internalType": "VersionPart",
741
+ "name": "version",
742
+ "type": "uint8"
743
+ }
744
+ ],
745
+ "name": "getReleaseInfo",
746
+ "outputs": [
747
+ {
748
+ "components": [
749
+ {
750
+ "internalType": "VersionPart",
751
+ "name": "version",
752
+ "type": "uint8"
753
+ },
754
+ {
755
+ "internalType": "bytes32",
756
+ "name": "salt",
757
+ "type": "bytes32"
758
+ },
759
+ {
760
+ "internalType": "address[]",
761
+ "name": "addresses",
762
+ "type": "address[]"
763
+ },
764
+ {
765
+ "internalType": "string[]",
766
+ "name": "names",
767
+ "type": "string[]"
768
+ },
769
+ {
770
+ "internalType": "RoleId[][]",
771
+ "name": "serviceRoles",
772
+ "type": "uint64[][]"
773
+ },
774
+ {
775
+ "internalType": "string[][]",
776
+ "name": "serviceRoleNames",
777
+ "type": "string[][]"
778
+ },
779
+ {
780
+ "internalType": "RoleId[][]",
781
+ "name": "functionRoles",
782
+ "type": "uint64[][]"
783
+ },
784
+ {
785
+ "internalType": "string[][]",
786
+ "name": "functionRoleNames",
787
+ "type": "string[][]"
788
+ },
789
+ {
790
+ "internalType": "bytes4[][][]",
791
+ "name": "selectors",
792
+ "type": "bytes4[][][]"
793
+ },
794
+ {
795
+ "internalType": "ObjectType[]",
796
+ "name": "domains",
797
+ "type": "uint8[]"
798
+ },
799
+ {
800
+ "internalType": "Timestamp",
801
+ "name": "activatedAt",
802
+ "type": "uint40"
803
+ },
804
+ {
805
+ "internalType": "Timestamp",
806
+ "name": "disabledAt",
807
+ "type": "uint40"
808
+ }
809
+ ],
810
+ "internalType": "struct IRegistry.ReleaseInfo",
811
+ "name": "",
812
+ "type": "tuple"
813
+ }
814
+ ],
815
+ "stateMutability": "view",
816
+ "type": "function"
817
+ },
818
+ {
819
+ "inputs": [],
820
+ "name": "getRemainingServicesToRegister",
821
+ "outputs": [
822
+ {
823
+ "internalType": "uint256",
824
+ "name": "services",
825
+ "type": "uint256"
826
+ }
827
+ ],
828
+ "stateMutability": "view",
829
+ "type": "function"
830
+ },
831
+ {
832
+ "inputs": [
833
+ {
834
+ "internalType": "VersionPart",
835
+ "name": "version",
836
+ "type": "uint8"
837
+ }
838
+ ],
839
+ "name": "getState",
840
+ "outputs": [
841
+ {
842
+ "internalType": "StateId",
843
+ "name": "stateId",
844
+ "type": "uint8"
845
+ }
846
+ ],
847
+ "stateMutability": "view",
848
+ "type": "function"
849
+ },
850
+ {
851
+ "inputs": [
852
+ {
853
+ "internalType": "ObjectType",
854
+ "name": "objectType",
855
+ "type": "uint8"
856
+ }
857
+ ],
858
+ "name": "hasLifecycle",
859
+ "outputs": [
860
+ {
861
+ "internalType": "bool",
862
+ "name": "",
863
+ "type": "bool"
864
+ }
865
+ ],
866
+ "stateMutability": "view",
867
+ "type": "function"
868
+ },
869
+ {
870
+ "inputs": [
871
+ {
872
+ "internalType": "address",
873
+ "name": "service",
874
+ "type": "address"
875
+ }
876
+ ],
877
+ "name": "isActiveRegistryService",
878
+ "outputs": [
879
+ {
880
+ "internalType": "bool",
881
+ "name": "",
882
+ "type": "bool"
883
+ }
884
+ ],
885
+ "stateMutability": "view",
886
+ "type": "function"
887
+ },
888
+ {
889
+ "inputs": [
890
+ {
891
+ "internalType": "VersionPart",
892
+ "name": "version",
893
+ "type": "uint8"
894
+ }
895
+ ],
896
+ "name": "isActiveRelease",
897
+ "outputs": [
898
+ {
899
+ "internalType": "bool",
900
+ "name": "",
901
+ "type": "bool"
902
+ }
903
+ ],
904
+ "stateMutability": "view",
905
+ "type": "function"
906
+ },
907
+ {
908
+ "inputs": [],
909
+ "name": "isConsumingScheduledOp",
910
+ "outputs": [
911
+ {
912
+ "internalType": "bytes4",
913
+ "name": "",
914
+ "type": "bytes4"
915
+ }
916
+ ],
917
+ "stateMutability": "view",
918
+ "type": "function"
919
+ },
920
+ {
921
+ "inputs": [
922
+ {
923
+ "internalType": "ObjectType",
924
+ "name": "objectType",
925
+ "type": "uint8"
926
+ },
927
+ {
928
+ "internalType": "StateId",
929
+ "name": "fromId",
930
+ "type": "uint8"
931
+ },
932
+ {
933
+ "internalType": "StateId",
934
+ "name": "toId",
935
+ "type": "uint8"
936
+ }
937
+ ],
938
+ "name": "isValidTransition",
939
+ "outputs": [
940
+ {
941
+ "internalType": "bool",
942
+ "name": "",
943
+ "type": "bool"
944
+ }
945
+ ],
946
+ "stateMutability": "view",
947
+ "type": "function"
948
+ },
949
+ {
950
+ "inputs": [
951
+ {
952
+ "internalType": "VersionPart",
953
+ "name": "version",
954
+ "type": "uint8"
955
+ }
956
+ ],
957
+ "name": "pauseRelease",
958
+ "outputs": [],
959
+ "stateMutability": "nonpayable",
960
+ "type": "function"
961
+ },
962
+ {
963
+ "inputs": [
964
+ {
965
+ "internalType": "address",
966
+ "name": "implementation",
967
+ "type": "address"
968
+ },
969
+ {
970
+ "internalType": "bytes32",
971
+ "name": "salt",
972
+ "type": "bytes32"
973
+ },
974
+ {
975
+ "internalType": "address",
976
+ "name": "deployer",
977
+ "type": "address"
978
+ }
979
+ ],
980
+ "name": "predictDeterministicAddress",
981
+ "outputs": [
982
+ {
983
+ "internalType": "address",
984
+ "name": "predicted",
985
+ "type": "address"
986
+ }
987
+ ],
988
+ "stateMutability": "pure",
989
+ "type": "function"
990
+ },
991
+ {
992
+ "inputs": [
993
+ {
994
+ "internalType": "contract IServiceAuthorization",
995
+ "name": "serviceAuthorization",
996
+ "type": "address"
997
+ },
998
+ {
999
+ "internalType": "bytes32",
1000
+ "name": "salt",
1001
+ "type": "bytes32"
1002
+ }
1003
+ ],
1004
+ "name": "prepareNextRelease",
1005
+ "outputs": [
1006
+ {
1007
+ "internalType": "address",
1008
+ "name": "authority",
1009
+ "type": "address"
1010
+ },
1011
+ {
1012
+ "internalType": "VersionPart",
1013
+ "name": "version",
1014
+ "type": "uint8"
1015
+ },
1016
+ {
1017
+ "internalType": "bytes32",
1018
+ "name": "releaseSalt",
1019
+ "type": "bytes32"
1020
+ }
1021
+ ],
1022
+ "stateMutability": "nonpayable",
1023
+ "type": "function"
1024
+ },
1025
+ {
1026
+ "inputs": [
1027
+ {
1028
+ "internalType": "contract IService",
1029
+ "name": "service",
1030
+ "type": "address"
1031
+ }
1032
+ ],
1033
+ "name": "registerService",
1034
+ "outputs": [
1035
+ {
1036
+ "internalType": "NftId",
1037
+ "name": "nftId",
1038
+ "type": "uint96"
1039
+ }
1040
+ ],
1041
+ "stateMutability": "nonpayable",
1042
+ "type": "function"
1043
+ },
1044
+ {
1045
+ "inputs": [
1046
+ {
1047
+ "internalType": "address",
1048
+ "name": "newAuthority",
1049
+ "type": "address"
1050
+ }
1051
+ ],
1052
+ "name": "setAuthority",
1053
+ "outputs": [],
1054
+ "stateMutability": "nonpayable",
1055
+ "type": "function"
1056
+ },
1057
+ {
1058
+ "inputs": [
1059
+ {
1060
+ "internalType": "VersionPart",
1061
+ "name": "version",
1062
+ "type": "uint8"
1063
+ }
1064
+ ],
1065
+ "name": "unpauseRelease",
1066
+ "outputs": [],
1067
+ "stateMutability": "nonpayable",
1068
+ "type": "function"
1069
+ }
1070
+ ],
1071
+ "bytecode": "0x608060405234801561000f575f80fd5b5060405161349238038061349283398101604081905261002e916105ae565b33610038816102a4565b506100416102f7565b61004a81610349565b610077576040516358374b4160e11b81526001600160a01b03821660048201526024015b60405180910390fd5b6100df816001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100da91906105ae565b610455565b600580546001600160a01b0319166001600160a01b0383169081179091556040805163016f41bf60e51b81529051632de837e0916004808201926020929091908290030181865afa158015610136573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061015a91906105ae565b600380546001600160a01b0319166001600160a01b0392909216919091178155604051632392b61b60e21b8152600481019190915273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156101c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101ed91906105d0565b600a805460ff191660ff9290921691909117905573__$b659da7d8a6d2d32aa6c1e17da23dc2174$__638e4ad86c610227600160036105f0565b6040518263ffffffff1660e01b815260040161024591815260200190565b602060405180830381865af4158015610260573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028491906105d0565b600a60026101000a81548160ff021916908360ff16021790555050610668565b5f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b610303600760026104cd565b610312600760025b6003610518565b61031e6007600361030b565b61032d600760035b6004610518565b61033b60076004606e610518565b6103476007606e610326565b565b5f6001600160a01b03821661035f57505f919050565b604051636939560f60e11b81526001600160a01b038316600482018190529063d272ac1e90602401602060405180830381865afa1580156103a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103c6919061060f565b604051630a4d29dd60e31b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af415801561041d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104419190610635565b1561044d57505f919050565b506001919050565b5f5433906001600160a01b0316811461048b5760405162d1953b60e31b81526001600160a01b038216600482015260240161006e565b816001600160a01b03163b5f036104c0576040516361798f2f60e11b81526001600160a01b038316600482015260240161006e565b6104c9826102a4565b5050565b60ff8281165f908152600160205260408120546104eb921690610587565b6104f7576104f7610654565b60ff9182165f908152600160205260409020805460ff191691909216179055565b60ff8084165f908152600260209081526040808320868516845282528083208585168452909152902054161561055057610550610654565b60ff9283165f908152600260209081526040808320948616835293815283822092909416815292529020805460ff19166001179055565b60ff828116908216145b92915050565b6001600160a01b03811681146105ab575f80fd5b50565b5f602082840312156105be575f80fd5b81516105c981610597565b9392505050565b5f602082840312156105e0575f80fd5b815160ff811681146105c9575f80fd5b8181038181111561059157634e487b7160e01b5f52601160045260245ffd5b5f6020828403121561061f575f80fd5b81516001600160601b03811681146105c9575f80fd5b5f60208284031215610645575f80fd5b815180151581146105c9575f80fd5b634e487b7160e01b5f52600160045260245ffd5b612e1d806106755f395ff3fe608060405234801561000f575f80fd5b50600436106101ba575f3560e01c80637a9e5e4b116100f3578063bf1db3f911610093578063dde4fd8a1161006e578063dde4fd8a1461047b578063e9e96c701461048c578063f40d7c30146104c9578063fdd9ec7d146104da575f80fd5b8063bf1db3f914610438578063bf7e214f1461044b578063d2213b5b1461045b575f80fd5b806399a228e5116100ce57806399a228e5146104025780639ef6ddc91461040a578063a28448241461041d578063a898967514610425575f80fd5b80637a9e5e4b146103645780638fb360371461037757806393a7e71114610398575f80fd5b806319d1478b1161015e5780633a6c2125116101395780633a6c2125146103175780635ab1bd531461032a5780636428e2631461033b57806371ed16e41461034e575f80fd5b806319d1478b1461028557806330ac5bf2146102c857806331d53763146102dd575f80fd5b80630d358181116101995780630d358181146102225780630e41142e146102475780630e6d1de91461025257806311edceaa14610262575f80fd5b8062d19f30146101be57806305c937ed146101fa5780630af43fe11461021a575b5f80fd5b6101e36101cc366004612423565b60ff9081165f908152600b60205260409020541690565b60405160ff90911681526020015b60405180910390f35b6102046208052081565b60405164ffffffffff90911681526020016101f1565b6101e3610505565b6101e3610230366004612423565b60ff9081165f908152600160205260409020541690565b600a5460ff166101e3565b600a54610100900460ff166101e3565b610275610270366004612423565b610667565b60405190151581526020016101f1565b6102b0610293366004612423565b60ff165f908152600660205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016101f1565b6102db6102d6366004612423565b610695565b005b6102f06102eb366004612452565b61078e565b604080516001600160a01b03909416845260ff9092166020840152908201526060016101f1565b6004546102b0906001600160a01b031681565b6005546001600160a01b03166102b0565b6102db610349366004612423565b610b2d565b610356610c80565b6040519081526020016101f1565b6102db61037236600461247c565b610c96565b61037f610d0e565b6040516001600160e01b031990911681526020016101f1565b6102b06103a6366004612497565b60405160388101919091526f5af43d82803e903d91602b57fd5bf3ff60248201526014810192909252733d602d80600a3d3981f3363d3d373d3d3d363d73825260588201526037600c8201206078820152605560439091012090565b610356600381565b61027561041836600461247c565b610d30565b6102db610d5b565b6102db6104333660046124d6565b610fd3565b610275610446366004612423565b6110de565b5f546001600160a01b03166102b0565b61046e610469366004612423565b611164565b6040516101f191906127a5565b6003546001600160a01b03166102b0565b61027561049a3660046124d6565b60ff9283165f908152600260209081526040808320948616835293815283822092851682529190915220541690565b600a5462010000900460ff166101e3565b6104ed6104e836600461247c565b611897565b6040516001600160601b0390911681526020016101f1565b5f610512335b5f36611c28565b600a54604051632b10f60d60e21b81526201000090910460ff16600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90829063ac43d83490602401602060405180830381865af4158015610573573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061059791906128ef565b6105a290600161291a565b6040518263ffffffff1660e01b81526004016105c091815260200190565b602060405180830381865af41580156105db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ff919061293d565b600a805460ff92909216620100000262ff0000199092169190911790555f600d819055600c55610630610230600790565b600a8054620100009081900460ff9081165f908152600b60205260409020805460ff19169482169490941790935590540416919050565b60ff8181165f908152600b6020526040812054909161068f911660045b60ff90811691161490565b92915050565b61069e3361050b565b60ff8181165f908152600b60205260409020541660046106e860075b60ff9081165f9081526002602090815260408083208488168452825280832084871684529091529020541690565b610717576040516331ec295f60e01b815260ff8085166004830152831660248201526044015b60405180910390fd5b60ff8381165f818152600b60209081526040808320805460ff1916958716959095179094556007815290839020600a01805469ffffffffff00000000001916905591519081527f8c9377f44d861d9abb7de1a880bb234de50528f98b5e198945cb16818bbbb99291015b60405180910390a1505050565b5f808061079a3361050b565b5f80866001600160a01b03166376b707b76040518163ffffffff1660e01b81526004016040805180830381865afa1580156107d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107fb9190612958565b600a54919350915060ff80841662010000909204161461084457600a5460405162c866d560e21b81526201000090910460ff90811660048301528316602482015260440161070e565b805f0361087257600a54604051635302597d60e01b81526201000090910460ff16600482015260240161070e565b600a5460ff6201000090910481165f818152600b602052604090205490955016600361089e60076106ba565b6108c85760405163c717747960e01b815260ff80881660048301528316602482015260440161070e565b600d54156108f65760405163c238a09360e01b815260ff80881660048301528316602482015260440161070e565b604051632b10f60d60e21b815260ff8716600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af4158015610946573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061096a91906128ef565b604080516020810192909252810189905260600160408051601f19818403018152828252805160209182012060035463bf7e214f60e01b855292519098506001600160a01b039092169263bf7e214f92600480830193928290030181865afa1580156109d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fc919061298f565b96508860095f600a60029054906101000a900460ff1660ff1660ff1681526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508660065f600a60029054906101000a900460ff1660ff1660ff1681526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600d8190555080600b5f8860ff1660ff1681526020019081526020015f205f6101000a81548160ff021916908360ff1602179055507f6529cb4b9a24b8de97cbd0802b1c3d02a8c8aed37388204e2f5bc3013793977e868689604051610b1a9392919060ff93909316835260208301919091526001600160a01b0316604082015260600190565b60405180910390a1505050509250925092565b610b363361050b565b60ff8181165f908152600b602052604090205416606e610b5660076106ba565b610b80576040516331ec295f60e01b815260ff80851660048301528316602482015260440161070e565b60ff8381165f908152600b6020908152604091829020805460ff19169385169390931790925580516356db0c1960e11b8152905173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb6183292600480820193918290030181865af4158015610bee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1291906129aa565b60ff84165f81815260076020908152604091829020600a01805464ffffffffff95909516650100000000000269ffffffffff00000000001990951694909417909355519081527f332d7fb458421533fc26f5789a63f5b7538fc95dd42452533aff2b353c57e8269101610781565b5f600c54600d54610c9191906129ce565b905090565b5f5433906001600160a01b03168114610ccc5760405162d1953b60e31b81526001600160a01b038216600482015260240161070e565b816001600160a01b03163b5f03610d01576040516361798f2f60e11b81526001600160a01b038316600482015260240161070e565b610d0a82611d1e565b5050565b5f8054600160a01b900460ff16610d2457505f90565b50638fb3603760e01b90565b6001600160a01b0381165f9081526008602052604081205460ff16610d5481610667565b9392505050565b610d643361050b565b600a5460ff6201000090910481165f818152600b60205260409020549091166004610d8f60076106ba565b610db9576040516331ec295f60e01b815260ff80851660048301528316602482015260440161070e565b600d54600c541015610dfa5782600c54600d54610dd691906129ce565b60405163c90aac6160e01b815260ff9092166004830152602482015260440161070e565b6005545f906001600160a01b031663d39e604360026040516001600160e01b031960e084901b16815260ff91821660048201529087166024820152604401602060405180830381865afa158015610e53573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e77919061298f565b90506001600160a01b038116610ea557604051638047661960e01b815260ff8516600482015260240161070e565b600a805460ff808716610100810261ff0019909316929092179092555f818152600b60209081526040808320805495881660ff199687161790556001600160a01b03861683526008825291829020805490941690921790925581516356db0c1960e11b8152915173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb618329260048083019391928290030181865af4158015610f47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f6b91906129aa565b60ff85165f81815260076020908152604091829020600a01805464ffffffffff191664ffffffffff9590951694909417909355519081527fb7defc6b4b34e4db6f0265bb8cc2606e513beda1e68095b668932471417561d4910160405180910390a150505050565b60ff8381165f908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015611035573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061105991906129f0565b1561107c576040516321b9f44760e01b815260ff8416600482015260240161070e565b60ff8084165f908152600260209081526040808320868516845282528083208585168452909152902054166110d957604051636bb20ea760e01b815260ff808516600483015280841660248301528216604482015260640161070e565b505050565b60ff8181165f9081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611140573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068f91906129f0565b6111d86040518061018001604052805f60ff1681526020015f801916815260200160608152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b60ff8083165f90815260076020908152604091829020825161018081018452815490941684526001810154848301526002810180548451818502810185018652818152929486019383018282801561125757602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311611239575b5050505050815260200160038201805480602002602001604051908101604052809291908181526020015f905b8282101561132c578382905f5260205f200180546112a190612a09565b80601f01602080910402602001604051908101604052809291908181526020018280546112cd90612a09565b80156113185780601f106112ef57610100808354040283529160200191611318565b820191905f5260205f20905b8154815290600101906020018083116112fb57829003601f168201915b505050505081526020019060010190611284565b50505050815260200160048201805480602002602001604051908101604052809291908181526020015f905b828210156113f4575f848152602090819020830180546040805182850281018501909152818152928301828280156113e057602002820191905f5260205f20905f905b82829054906101000a900467ffffffffffffffff1667ffffffffffffffff168152602001906008019060208260070104928301926001038202915080841161139b5790505b505050505081526020019060010190611358565b50505050815260200160058201805480602002602001604051908101604052809291908181526020015f905b8282101561150c578382905f5260205f2001805480602002602001604051908101604052809291908181526020015f905b828210156114f9578382905f5260205f2001805461146e90612a09565b80601f016020809104026020016040519081016040528092919081815260200182805461149a90612a09565b80156114e55780601f106114bc576101008083540402835291602001916114e5565b820191905f5260205f20905b8154815290600101906020018083116114c857829003601f168201915b505050505081526020019060010190611451565b5050505081526020019060010190611420565b50505050815260200160068201805480602002602001604051908101604052809291908181526020015f905b828210156115d4575f848152602090819020830180546040805182850281018501909152818152928301828280156115c057602002820191905f5260205f20905f905b82829054906101000a900467ffffffffffffffff1667ffffffffffffffff168152602001906008019060208260070104928301926001038202915080841161157b5790505b505050505081526020019060010190611538565b50505050815260200160078201805480602002602001604051908101604052809291908181526020015f905b828210156116ec578382905f5260205f2001805480602002602001604051908101604052809291908181526020015f905b828210156116d9578382905f5260205f2001805461164e90612a09565b80601f016020809104026020016040519081016040528092919081815260200182805461167a90612a09565b80156116c55780601f1061169c576101008083540402835291602001916116c5565b820191905f5260205f20905b8154815290600101906020018083116116a857829003601f168201915b505050505081526020019060010190611631565b5050505081526020019060010190611600565b50505050815260200160088201805480602002602001604051908101604052809291908181526020015f905b828210156117f1578382905f5260205f2001805480602002602001604051908101604052809291908181526020015f905b828210156117de575f848152602090819020830180546040805182850281018501909152818152928301828280156117ca57602002820191905f5260205f20905f905b82829054906101000a900460e01b6001600160e01b0319168152602001906004019060208260030104928301926001038202915080841161178c5790505b505050505081526020019060010190611749565b5050505081526020019060010190611718565b5050505081526020016009820180548060200260200160405190810160405280929190818152602001828054801561186357602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116118345790505b5050509183525050600a919091015464ffffffffff8082166020840152650100000000009091041660409091015292915050565b5f6118a13361050b565b600a5460ff6201000090910481165f818152600b602052604090205490911660036118cc60076106ba565b6118ee576040516316997edd60e11b815260ff8316600482015260240161070e565b600c54600d540361191257604051630a7d531760e31b815260040160405180910390fd5b5f805f61191e88611d71565b60ff89165f9081526009602052604080822054600c54915162212fa360ea1b81526004810192909252949750929550909350916001600160a01b0316906384be8c0090602401602060405180830381865afa15801561197f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119a3919061293d565b905060ff808416908216146119d8576040516331ca5aff60e11b815260ff80831660048301528416602482015260440161070e565b60ff8088165f81815260076020908152604080832060090180546001810182559084528284208382040180548a8816601f9093166101000a9283029288021916919091179055928252600b9052908120805492881660ff1990931692909217909155600c805491611a4883612a41565b909155505060035460ff88165f908152600960205260409081902054905163122beb2560e11b81526001600160a01b0391821660048201528b82166024820152911690632457d64a906044015f604051808303815f87803b158015611aab575f80fd5b505af1158015611abd573d5f803e3d5ffd5b50505050611acd83610684600390565b80611adb575060ff8316600f145b15611b445760035460405163420e0b3560e01b81526001600160a01b038b8116600483015260ff861660248301529091169063420e0b35906044015f604051808303815f87803b158015611b2d575f80fd5b505af1158015611b3f573d5f803e3d5ffd5b505050505b600554604051635382852b60e11b81526001600160a01b039091169063a7050a5690611b7890879086908890600401612a59565b6020604051808303815f875af1158015611b94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bb89190612b21565b9750886001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015611bf7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1b9190612b21565b5050505050505050919050565b5f80611c5b611c3e5f546001600160a01b031690565b8630611c4d60045f898b612b3a565b611c5691612b61565b612100565b9150915081611d175763ffffffff811615611cf4575f805460ff60a01b198116600160a01b17909155604051634a63ebf760e11b81526001600160a01b03909116906394c7d7ee90611cb590889088908890600401612b99565b5f604051808303815f87803b158015611ccc575f80fd5b505af1158015611cde573d5f803e3d5ffd5b50505f805460ff60a01b1916905550611d179050565b60405162d1953b60e31b81526001600160a01b038616600482015260240161070e565b5050505050565b5f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b6040805160e0810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c083015291516301ffc9a760e01b815263daf9067160e01b600482015290919081906001600160a01b038516906301ffc9a790602401602060405180830381865afa158015611df4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e1891906129f0565b611e4057604051631fdf992160e01b81526001600160a01b038516600482015260240161070e565b5f3390505f856001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea5919061298f565b9050856001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ee3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f079190612bd8565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015611f5a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7e919061293d565b9250856001600160a01b031663b68d18096040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fe0919061293d565b9350856001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561201d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120449190810190612cc2565b9450612051868684612208565b600a5462010000900460ff165f818152600660205260409020546001600160a01b0390811690831681146120b35760405163179dce5160e11b81526001600160a01b03808a16600483015280851660248301528216604482015260640161070e565b60ff808616908316146120f557604051632dd6635560e21b81526001600160a01b038916600482015260ff80871660248301528316604482015260640161070e565b505050509193909250565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161216e9190612d94565b5f60405180830381855afa9150503d805f81146121a6576040519150601f19603f3d011682016040523d82523d5f602084013e6121ab565b606091505b509150915081156121fd5760408151106121dd57808060200190518101906121d39190612daa565b90945092506121fd565b60208151106121fd57808060200190518101906121fa91906129f0565b93505b505094509492505050565b826001600160a01b031682608001516001600160a01b0316146122505760405163396d48c960e11b81526001600160a01b03841660048201819052602482015260440161070e565b60608201511561228b5760608201516040516376d381b160e01b81526001600160a01b0385166004820152901515602482015260440161070e565b6122a7826040015161229b600990565b60ff9081169116141590565b156122e6576040828101519051630c6c87c560e41b81526001600160a01b03851660048201526009602482015260ff909116604482015260640161070e565b60a08201516001600160a01b0380821690831614612332576040516314cc941d60e01b81526001600160a01b03808616600483015280841660248301528216604482015260640161070e565b836001600160a01b0316816001600160a01b03160361236f5760405163f80468a760e01b81526001600160a01b038516600482015260240161070e565b60055460405163c3c5a54760e01b81526001600160a01b0383811660048301529091169063c3c5a54790602401602060405180830381865afa1580156123b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123db91906129f0565b1561240c5760405163976310fb60e01b81526001600160a01b0380861660048301528216602482015260440161070e565b50505050565b60ff81168114612420575f80fd5b50565b5f60208284031215612433575f80fd5b8135610d5481612412565b6001600160a01b0381168114612420575f80fd5b5f8060408385031215612463575f80fd5b823561246e8161243e565b946020939093013593505050565b5f6020828403121561248c575f80fd5b8135610d548161243e565b5f805f606084860312156124a9575f80fd5b83356124b48161243e565b92506020840135915060408401356124cb8161243e565b809150509250925092565b5f805f606084860312156124e8575f80fd5b83356124f381612412565b9250602084013561250381612412565b915060408401356124cb81612412565b5f8151808452602084019350602083015f5b8281101561254c5781516001600160a01b0316865260209586019590910190600101612525565b5093949350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b5f82825180855260208501945060208160051b830101602085015f5b838110156125d257601f198584030188526125bc838351612556565b60209889019890935091909101906001016125a0565b50909695505050505050565b5f82825180855260208501945060208160051b830101602085015f5b838110156125d257848303601f19018852815180518085526020918201918501905f5b8181101561264557835167ffffffffffffffff1683526020938401939092019160010161261d565b50506020998a01999094509290920191506001016125fa565b5f82825180855260208501945060208160051b830101602085015f5b838110156125d257601f19858403018852612696838351612584565b602098890198909350919091019060010161267a565b5f82825180855260208501945060208160051b830101602085015f5b838110156125d257848303601f19018852815180518085526020918201918086019190600582901b8701015f5b8281101561275857878203601f19018452845180518084526020918201918401905f5b818110156127405783516001600160e01b031916835260209384019390920191600101612718565b505060209687019695909501949250506001016126f5565b5060209b8c019b90965094909401935050506001016126c8565b5f8151808452602084019350602083015f5b8281101561254c57815160ff16865260209586019590910190600101612784565b602081526127b960208201835160ff169052565b602082015160408201525f604083015161018060608401526127df6101a0840182612513565b90506060840151601f198483030160808501526127fc8282612584565b9150506080840151601f198483030160a085015261281a82826125de565b91505060a0840151601f198483030160c0850152612838828261265e565b91505060c0840151601f198483030160e085015261285682826125de565b91505060e0840151601f1984830301610100850152612875828261265e565b915050610100840151601f198483030161012085015261289582826126ac565b915050610120840151601f19848303016101408501526128b58282612772565b9150506101408401516128d261016085018264ffffffffff169052565b5061016084015164ffffffffff8116610180850152509392505050565b5f602082840312156128ff575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561068f5761068f612906565b805161293881612412565b919050565b5f6020828403121561294d575f80fd5b8151610d5481612412565b5f8060408385031215612969575f80fd5b825161297481612412565b6020939093015192949293505050565b80516129388161243e565b5f6020828403121561299f575f80fd5b8151610d548161243e565b5f602082840312156129ba575f80fd5b815164ffffffffff81168114610d54575f80fd5b8181038181111561068f5761068f612906565b80518015158114612938575f80fd5b5f60208284031215612a00575f80fd5b610d54826129e1565b600181811c90821680612a1d57607f821691505b602082108103612a3b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60018201612a5257612a52612906565b5060010190565b606081526001600160601b0384511660608201526001600160601b03602085015116608082015260ff60408501511660a08201525f6060850151612aa160c084018215159052565b5060808501516001600160a01b03811660e08401525060a08501516001600160a01b0381166101008401525060c085015160e0610120840152612ae8610140840182612556565b915050612afa602083018560ff169052565b60ff83166040830152949350505050565b80516001600160601b0381168114612938575f80fd5b5f60208284031215612b31575f80fd5b610d5482612b0b565b5f8085851115612b48575f80fd5b83861115612b54575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612b92576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215612be8575f80fd5b815162ffffff81168114610d54575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405160e0810167ffffffffffffffff81118282101715612c3157612c31612bfa565b60405290565b5f82601f830112612c46575f80fd5b815167ffffffffffffffff811115612c6057612c60612bfa565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715612c8f57612c8f612bfa565b604052818152838201602001851015612ca6575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215612cd2575f80fd5b815167ffffffffffffffff811115612ce8575f80fd5b820160e08185031215612cf9575f80fd5b612d01612c0e565b612d0a82612b0b565b8152612d1860208301612b0b565b6020820152612d296040830161292d565b6040820152612d3a606083016129e1565b6060820152612d4b60808301612984565b6080820152612d5c60a08301612984565b60a082015260c082015167ffffffffffffffff811115612d7a575f80fd5b612d8686828501612c37565b60c083015250949350505050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612dbb575f80fd5b612dc4836129e1565b9150602083015163ffffffff81168114612ddc575f80fd5b80915050925092905056fea2646970667358221220bfe76e7f3268d9e0e47f0b199eb84f9f896944fdb904e4d1d1aeb080984ee28864736f6c634300081a0033",
1072
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101ba575f3560e01c80637a9e5e4b116100f3578063bf1db3f911610093578063dde4fd8a1161006e578063dde4fd8a1461047b578063e9e96c701461048c578063f40d7c30146104c9578063fdd9ec7d146104da575f80fd5b8063bf1db3f914610438578063bf7e214f1461044b578063d2213b5b1461045b575f80fd5b806399a228e5116100ce57806399a228e5146104025780639ef6ddc91461040a578063a28448241461041d578063a898967514610425575f80fd5b80637a9e5e4b146103645780638fb360371461037757806393a7e71114610398575f80fd5b806319d1478b1161015e5780633a6c2125116101395780633a6c2125146103175780635ab1bd531461032a5780636428e2631461033b57806371ed16e41461034e575f80fd5b806319d1478b1461028557806330ac5bf2146102c857806331d53763146102dd575f80fd5b80630d358181116101995780630d358181146102225780630e41142e146102475780630e6d1de91461025257806311edceaa14610262575f80fd5b8062d19f30146101be57806305c937ed146101fa5780630af43fe11461021a575b5f80fd5b6101e36101cc366004612423565b60ff9081165f908152600b60205260409020541690565b60405160ff90911681526020015b60405180910390f35b6102046208052081565b60405164ffffffffff90911681526020016101f1565b6101e3610505565b6101e3610230366004612423565b60ff9081165f908152600160205260409020541690565b600a5460ff166101e3565b600a54610100900460ff166101e3565b610275610270366004612423565b610667565b60405190151581526020016101f1565b6102b0610293366004612423565b60ff165f908152600660205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016101f1565b6102db6102d6366004612423565b610695565b005b6102f06102eb366004612452565b61078e565b604080516001600160a01b03909416845260ff9092166020840152908201526060016101f1565b6004546102b0906001600160a01b031681565b6005546001600160a01b03166102b0565b6102db610349366004612423565b610b2d565b610356610c80565b6040519081526020016101f1565b6102db61037236600461247c565b610c96565b61037f610d0e565b6040516001600160e01b031990911681526020016101f1565b6102b06103a6366004612497565b60405160388101919091526f5af43d82803e903d91602b57fd5bf3ff60248201526014810192909252733d602d80600a3d3981f3363d3d373d3d3d363d73825260588201526037600c8201206078820152605560439091012090565b610356600381565b61027561041836600461247c565b610d30565b6102db610d5b565b6102db6104333660046124d6565b610fd3565b610275610446366004612423565b6110de565b5f546001600160a01b03166102b0565b61046e610469366004612423565b611164565b6040516101f191906127a5565b6003546001600160a01b03166102b0565b61027561049a3660046124d6565b60ff9283165f908152600260209081526040808320948616835293815283822092851682529190915220541690565b600a5462010000900460ff166101e3565b6104ed6104e836600461247c565b611897565b6040516001600160601b0390911681526020016101f1565b5f610512335b5f36611c28565b600a54604051632b10f60d60e21b81526201000090910460ff16600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90829063ac43d83490602401602060405180830381865af4158015610573573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061059791906128ef565b6105a290600161291a565b6040518263ffffffff1660e01b81526004016105c091815260200190565b602060405180830381865af41580156105db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ff919061293d565b600a805460ff92909216620100000262ff0000199092169190911790555f600d819055600c55610630610230600790565b600a8054620100009081900460ff9081165f908152600b60205260409020805460ff19169482169490941790935590540416919050565b60ff8181165f908152600b6020526040812054909161068f911660045b60ff90811691161490565b92915050565b61069e3361050b565b60ff8181165f908152600b60205260409020541660046106e860075b60ff9081165f9081526002602090815260408083208488168452825280832084871684529091529020541690565b610717576040516331ec295f60e01b815260ff8085166004830152831660248201526044015b60405180910390fd5b60ff8381165f818152600b60209081526040808320805460ff1916958716959095179094556007815290839020600a01805469ffffffffff00000000001916905591519081527f8c9377f44d861d9abb7de1a880bb234de50528f98b5e198945cb16818bbbb99291015b60405180910390a1505050565b5f808061079a3361050b565b5f80866001600160a01b03166376b707b76040518163ffffffff1660e01b81526004016040805180830381865afa1580156107d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107fb9190612958565b600a54919350915060ff80841662010000909204161461084457600a5460405162c866d560e21b81526201000090910460ff90811660048301528316602482015260440161070e565b805f0361087257600a54604051635302597d60e01b81526201000090910460ff16600482015260240161070e565b600a5460ff6201000090910481165f818152600b602052604090205490955016600361089e60076106ba565b6108c85760405163c717747960e01b815260ff80881660048301528316602482015260440161070e565b600d54156108f65760405163c238a09360e01b815260ff80881660048301528316602482015260440161070e565b604051632b10f60d60e21b815260ff8716600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af4158015610946573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061096a91906128ef565b604080516020810192909252810189905260600160408051601f19818403018152828252805160209182012060035463bf7e214f60e01b855292519098506001600160a01b039092169263bf7e214f92600480830193928290030181865afa1580156109d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109fc919061298f565b96508860095f600a60029054906101000a900460ff1660ff1660ff1681526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b031602179055508660065f600a60029054906101000a900460ff1660ff1660ff1681526020019081526020015f205f6101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600d8190555080600b5f8860ff1660ff1681526020019081526020015f205f6101000a81548160ff021916908360ff1602179055507f6529cb4b9a24b8de97cbd0802b1c3d02a8c8aed37388204e2f5bc3013793977e868689604051610b1a9392919060ff93909316835260208301919091526001600160a01b0316604082015260600190565b60405180910390a1505050509250925092565b610b363361050b565b60ff8181165f908152600b602052604090205416606e610b5660076106ba565b610b80576040516331ec295f60e01b815260ff80851660048301528316602482015260440161070e565b60ff8381165f908152600b6020908152604091829020805460ff19169385169390931790925580516356db0c1960e11b8152905173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb6183292600480820193918290030181865af4158015610bee573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1291906129aa565b60ff84165f81815260076020908152604091829020600a01805464ffffffffff95909516650100000000000269ffffffffff00000000001990951694909417909355519081527f332d7fb458421533fc26f5789a63f5b7538fc95dd42452533aff2b353c57e8269101610781565b5f600c54600d54610c9191906129ce565b905090565b5f5433906001600160a01b03168114610ccc5760405162d1953b60e31b81526001600160a01b038216600482015260240161070e565b816001600160a01b03163b5f03610d01576040516361798f2f60e11b81526001600160a01b038316600482015260240161070e565b610d0a82611d1e565b5050565b5f8054600160a01b900460ff16610d2457505f90565b50638fb3603760e01b90565b6001600160a01b0381165f9081526008602052604081205460ff16610d5481610667565b9392505050565b610d643361050b565b600a5460ff6201000090910481165f818152600b60205260409020549091166004610d8f60076106ba565b610db9576040516331ec295f60e01b815260ff80851660048301528316602482015260440161070e565b600d54600c541015610dfa5782600c54600d54610dd691906129ce565b60405163c90aac6160e01b815260ff9092166004830152602482015260440161070e565b6005545f906001600160a01b031663d39e604360026040516001600160e01b031960e084901b16815260ff91821660048201529087166024820152604401602060405180830381865afa158015610e53573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e77919061298f565b90506001600160a01b038116610ea557604051638047661960e01b815260ff8516600482015260240161070e565b600a805460ff808716610100810261ff0019909316929092179092555f818152600b60209081526040808320805495881660ff199687161790556001600160a01b03861683526008825291829020805490941690921790925581516356db0c1960e11b8152915173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb618329260048083019391928290030181865af4158015610f47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f6b91906129aa565b60ff85165f81815260076020908152604091829020600a01805464ffffffffff191664ffffffffff9590951694909417909355519081527fb7defc6b4b34e4db6f0265bb8cc2606e513beda1e68095b668932471417561d4910160405180910390a150505050565b60ff8381165f908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__90636f91962090602401602060405180830381865af4158015611035573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061105991906129f0565b1561107c576040516321b9f44760e01b815260ff8416600482015260240161070e565b60ff8084165f908152600260209081526040808320868516845282528083208585168452909152902054166110d957604051636bb20ea760e01b815260ff808516600483015280841660248301528216604482015260640161070e565b505050565b60ff8181165f9081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2e1fcf62e7a1b3c2a33bdf2228c171b2be$__9063b2466acf90602401602060405180830381865af4158015611140573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068f91906129f0565b6111d86040518061018001604052805f60ff1681526020015f801916815260200160608152602001606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b60ff8083165f90815260076020908152604091829020825161018081018452815490941684526001810154848301526002810180548451818502810185018652818152929486019383018282801561125757602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311611239575b5050505050815260200160038201805480602002602001604051908101604052809291908181526020015f905b8282101561132c578382905f5260205f200180546112a190612a09565b80601f01602080910402602001604051908101604052809291908181526020018280546112cd90612a09565b80156113185780601f106112ef57610100808354040283529160200191611318565b820191905f5260205f20905b8154815290600101906020018083116112fb57829003601f168201915b505050505081526020019060010190611284565b50505050815260200160048201805480602002602001604051908101604052809291908181526020015f905b828210156113f4575f848152602090819020830180546040805182850281018501909152818152928301828280156113e057602002820191905f5260205f20905f905b82829054906101000a900467ffffffffffffffff1667ffffffffffffffff168152602001906008019060208260070104928301926001038202915080841161139b5790505b505050505081526020019060010190611358565b50505050815260200160058201805480602002602001604051908101604052809291908181526020015f905b8282101561150c578382905f5260205f2001805480602002602001604051908101604052809291908181526020015f905b828210156114f9578382905f5260205f2001805461146e90612a09565b80601f016020809104026020016040519081016040528092919081815260200182805461149a90612a09565b80156114e55780601f106114bc576101008083540402835291602001916114e5565b820191905f5260205f20905b8154815290600101906020018083116114c857829003601f168201915b505050505081526020019060010190611451565b5050505081526020019060010190611420565b50505050815260200160068201805480602002602001604051908101604052809291908181526020015f905b828210156115d4575f848152602090819020830180546040805182850281018501909152818152928301828280156115c057602002820191905f5260205f20905f905b82829054906101000a900467ffffffffffffffff1667ffffffffffffffff168152602001906008019060208260070104928301926001038202915080841161157b5790505b505050505081526020019060010190611538565b50505050815260200160078201805480602002602001604051908101604052809291908181526020015f905b828210156116ec578382905f5260205f2001805480602002602001604051908101604052809291908181526020015f905b828210156116d9578382905f5260205f2001805461164e90612a09565b80601f016020809104026020016040519081016040528092919081815260200182805461167a90612a09565b80156116c55780601f1061169c576101008083540402835291602001916116c5565b820191905f5260205f20905b8154815290600101906020018083116116a857829003601f168201915b505050505081526020019060010190611631565b5050505081526020019060010190611600565b50505050815260200160088201805480602002602001604051908101604052809291908181526020015f905b828210156117f1578382905f5260205f2001805480602002602001604051908101604052809291908181526020015f905b828210156117de575f848152602090819020830180546040805182850281018501909152818152928301828280156117ca57602002820191905f5260205f20905f905b82829054906101000a900460e01b6001600160e01b0319168152602001906004019060208260030104928301926001038202915080841161178c5790505b505050505081526020019060010190611749565b5050505081526020019060010190611718565b5050505081526020016009820180548060200260200160405190810160405280929190818152602001828054801561186357602002820191905f5260205f20905f905b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116118345790505b5050509183525050600a919091015464ffffffffff8082166020840152650100000000009091041660409091015292915050565b5f6118a13361050b565b600a5460ff6201000090910481165f818152600b602052604090205490911660036118cc60076106ba565b6118ee576040516316997edd60e11b815260ff8316600482015260240161070e565b600c54600d540361191257604051630a7d531760e31b815260040160405180910390fd5b5f805f61191e88611d71565b60ff89165f9081526009602052604080822054600c54915162212fa360ea1b81526004810192909252949750929550909350916001600160a01b0316906384be8c0090602401602060405180830381865afa15801561197f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119a3919061293d565b905060ff808416908216146119d8576040516331ca5aff60e11b815260ff80831660048301528416602482015260440161070e565b60ff8088165f81815260076020908152604080832060090180546001810182559084528284208382040180548a8816601f9093166101000a9283029288021916919091179055928252600b9052908120805492881660ff1990931692909217909155600c805491611a4883612a41565b909155505060035460ff88165f908152600960205260409081902054905163122beb2560e11b81526001600160a01b0391821660048201528b82166024820152911690632457d64a906044015f604051808303815f87803b158015611aab575f80fd5b505af1158015611abd573d5f803e3d5ffd5b50505050611acd83610684600390565b80611adb575060ff8316600f145b15611b445760035460405163420e0b3560e01b81526001600160a01b038b8116600483015260ff861660248301529091169063420e0b35906044015f604051808303815f87803b158015611b2d575f80fd5b505af1158015611b3f573d5f803e3d5ffd5b505050505b600554604051635382852b60e11b81526001600160a01b039091169063a7050a5690611b7890879086908890600401612a59565b6020604051808303815f875af1158015611b94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bb89190612b21565b9750886001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015611bf7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1b9190612b21565b5050505050505050919050565b5f80611c5b611c3e5f546001600160a01b031690565b8630611c4d60045f898b612b3a565b611c5691612b61565b612100565b9150915081611d175763ffffffff811615611cf4575f805460ff60a01b198116600160a01b17909155604051634a63ebf760e11b81526001600160a01b03909116906394c7d7ee90611cb590889088908890600401612b99565b5f604051808303815f87803b158015611ccc575f80fd5b505af1158015611cde573d5f803e3d5ffd5b50505f805460ff60a01b1916905550611d179050565b60405162d1953b60e31b81526001600160a01b038616600482015260240161070e565b5050505050565b5f80546001600160a01b0319166001600160a01b0383169081179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b6040805160e0810182525f8082526020820181905281830181905260608083018290526080830182905260a0830182905260c083015291516301ffc9a760e01b815263daf9067160e01b600482015290919081906001600160a01b038516906301ffc9a790602401602060405180830381865afa158015611df4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e1891906129f0565b611e4057604051631fdf992160e01b81526001600160a01b038516600482015260240161070e565b5f3390505f856001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea5919061298f565b9050856001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ee3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f079190612bd8565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015611f5a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7e919061293d565b9250856001600160a01b031663b68d18096040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fe0919061293d565b9350856001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561201d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120449190810190612cc2565b9450612051868684612208565b600a5462010000900460ff165f818152600660205260409020546001600160a01b0390811690831681146120b35760405163179dce5160e11b81526001600160a01b03808a16600483015280851660248301528216604482015260640161070e565b60ff808616908316146120f557604051632dd6635560e21b81526001600160a01b038916600482015260ff80871660248301528316604482015260640161070e565b505050509193909250565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161216e9190612d94565b5f60405180830381855afa9150503d805f81146121a6576040519150601f19603f3d011682016040523d82523d5f602084013e6121ab565b606091505b509150915081156121fd5760408151106121dd57808060200190518101906121d39190612daa565b90945092506121fd565b60208151106121fd57808060200190518101906121fa91906129f0565b93505b505094509492505050565b826001600160a01b031682608001516001600160a01b0316146122505760405163396d48c960e11b81526001600160a01b03841660048201819052602482015260440161070e565b60608201511561228b5760608201516040516376d381b160e01b81526001600160a01b0385166004820152901515602482015260440161070e565b6122a7826040015161229b600990565b60ff9081169116141590565b156122e6576040828101519051630c6c87c560e41b81526001600160a01b03851660048201526009602482015260ff909116604482015260640161070e565b60a08201516001600160a01b0380821690831614612332576040516314cc941d60e01b81526001600160a01b03808616600483015280841660248301528216604482015260640161070e565b836001600160a01b0316816001600160a01b03160361236f5760405163f80468a760e01b81526001600160a01b038516600482015260240161070e565b60055460405163c3c5a54760e01b81526001600160a01b0383811660048301529091169063c3c5a54790602401602060405180830381865afa1580156123b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123db91906129f0565b1561240c5760405163976310fb60e01b81526001600160a01b0380861660048301528216602482015260440161070e565b50505050565b60ff81168114612420575f80fd5b50565b5f60208284031215612433575f80fd5b8135610d5481612412565b6001600160a01b0381168114612420575f80fd5b5f8060408385031215612463575f80fd5b823561246e8161243e565b946020939093013593505050565b5f6020828403121561248c575f80fd5b8135610d548161243e565b5f805f606084860312156124a9575f80fd5b83356124b48161243e565b92506020840135915060408401356124cb8161243e565b809150509250925092565b5f805f606084860312156124e8575f80fd5b83356124f381612412565b9250602084013561250381612412565b915060408401356124cb81612412565b5f8151808452602084019350602083015f5b8281101561254c5781516001600160a01b0316865260209586019590910190600101612525565b5093949350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b5f82825180855260208501945060208160051b830101602085015f5b838110156125d257601f198584030188526125bc838351612556565b60209889019890935091909101906001016125a0565b50909695505050505050565b5f82825180855260208501945060208160051b830101602085015f5b838110156125d257848303601f19018852815180518085526020918201918501905f5b8181101561264557835167ffffffffffffffff1683526020938401939092019160010161261d565b50506020998a01999094509290920191506001016125fa565b5f82825180855260208501945060208160051b830101602085015f5b838110156125d257601f19858403018852612696838351612584565b602098890198909350919091019060010161267a565b5f82825180855260208501945060208160051b830101602085015f5b838110156125d257848303601f19018852815180518085526020918201918086019190600582901b8701015f5b8281101561275857878203601f19018452845180518084526020918201918401905f5b818110156127405783516001600160e01b031916835260209384019390920191600101612718565b505060209687019695909501949250506001016126f5565b5060209b8c019b90965094909401935050506001016126c8565b5f8151808452602084019350602083015f5b8281101561254c57815160ff16865260209586019590910190600101612784565b602081526127b960208201835160ff169052565b602082015160408201525f604083015161018060608401526127df6101a0840182612513565b90506060840151601f198483030160808501526127fc8282612584565b9150506080840151601f198483030160a085015261281a82826125de565b91505060a0840151601f198483030160c0850152612838828261265e565b91505060c0840151601f198483030160e085015261285682826125de565b91505060e0840151601f1984830301610100850152612875828261265e565b915050610100840151601f198483030161012085015261289582826126ac565b915050610120840151601f19848303016101408501526128b58282612772565b9150506101408401516128d261016085018264ffffffffff169052565b5061016084015164ffffffffff8116610180850152509392505050565b5f602082840312156128ff575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561068f5761068f612906565b805161293881612412565b919050565b5f6020828403121561294d575f80fd5b8151610d5481612412565b5f8060408385031215612969575f80fd5b825161297481612412565b6020939093015192949293505050565b80516129388161243e565b5f6020828403121561299f575f80fd5b8151610d548161243e565b5f602082840312156129ba575f80fd5b815164ffffffffff81168114610d54575f80fd5b8181038181111561068f5761068f612906565b80518015158114612938575f80fd5b5f60208284031215612a00575f80fd5b610d54826129e1565b600181811c90821680612a1d57607f821691505b602082108103612a3b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60018201612a5257612a52612906565b5060010190565b606081526001600160601b0384511660608201526001600160601b03602085015116608082015260ff60408501511660a08201525f6060850151612aa160c084018215159052565b5060808501516001600160a01b03811660e08401525060a08501516001600160a01b0381166101008401525060c085015160e0610120840152612ae8610140840182612556565b915050612afa602083018560ff169052565b60ff83166040830152949350505050565b80516001600160601b0381168114612938575f80fd5b5f60208284031215612b31575f80fd5b610d5482612b0b565b5f8085851115612b48575f80fd5b83861115612b54575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612b92576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215612be8575f80fd5b815162ffffff81168114610d54575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405160e0810167ffffffffffffffff81118282101715612c3157612c31612bfa565b60405290565b5f82601f830112612c46575f80fd5b815167ffffffffffffffff811115612c6057612c60612bfa565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715612c8f57612c8f612bfa565b604052818152838201602001851015612ca6575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f60208284031215612cd2575f80fd5b815167ffffffffffffffff811115612ce8575f80fd5b820160e08185031215612cf9575f80fd5b612d01612c0e565b612d0a82612b0b565b8152612d1860208301612b0b565b6020820152612d296040830161292d565b6040820152612d3a606083016129e1565b6060820152612d4b60808301612984565b6080820152612d5c60a08301612984565b60a082015260c082015167ffffffffffffffff811115612d7a575f80fd5b612d8686828501612c37565b60c083015250949350505050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612dbb575f80fd5b612dc4836129e1565b9150602083015163ffffffff81168114612ddc575f80fd5b80915050925092905056fea2646970667358221220bfe76e7f3268d9e0e47f0b199eb84f9f896944fdb904e4d1d1aeb080984ee28864736f6c634300081a0033",
1073
+ "linkReferences": {
1074
+ "contracts/type/NftId.sol": {
1075
+ "NftIdLib": [
1076
+ {
1077
+ "length": 20,
1078
+ "start": 997
1079
+ }
1080
+ ]
1081
+ },
1082
+ "contracts/type/StateId.sol": {
1083
+ "StateIdLib": [
1084
+ {
1085
+ "length": 20,
1086
+ "start": 5746
1087
+ },
1088
+ {
1089
+ "length": 20,
1090
+ "start": 6013
1091
+ }
1092
+ ]
1093
+ },
1094
+ "contracts/type/Timestamp.sol": {
1095
+ "TimestampLib": [
1096
+ {
1097
+ "length": 20,
1098
+ "start": 4651
1099
+ },
1100
+ {
1101
+ "length": 20,
1102
+ "start": 5507
1103
+ }
1104
+ ]
1105
+ },
1106
+ "contracts/type/Version.sol": {
1107
+ "VersionLib": [
1108
+ {
1109
+ "length": 20,
1110
+ "start": 9623
1111
+ }
1112
+ ],
1113
+ "VersionPartLib": [
1114
+ {
1115
+ "length": 20,
1116
+ "start": 401
1117
+ },
1118
+ {
1119
+ "length": 20,
1120
+ "start": 515
1121
+ },
1122
+ {
1123
+ "length": 20,
1124
+ "start": 2984
1125
+ },
1126
+ {
1127
+ "length": 20,
1128
+ "start": 3971
1129
+ }
1130
+ ]
1131
+ }
1132
+ },
1133
+ "deployedLinkReferences": {
1134
+ "contracts/type/StateId.sol": {
1135
+ "StateIdLib": [
1136
+ {
1137
+ "length": 20,
1138
+ "start": 4093
1139
+ },
1140
+ {
1141
+ "length": 20,
1142
+ "start": 4360
1143
+ }
1144
+ ]
1145
+ },
1146
+ "contracts/type/Timestamp.sol": {
1147
+ "TimestampLib": [
1148
+ {
1149
+ "length": 20,
1150
+ "start": 2998
1151
+ },
1152
+ {
1153
+ "length": 20,
1154
+ "start": 3854
1155
+ }
1156
+ ]
1157
+ },
1158
+ "contracts/type/Version.sol": {
1159
+ "VersionLib": [
1160
+ {
1161
+ "length": 20,
1162
+ "start": 7970
1163
+ }
1164
+ ],
1165
+ "VersionPartLib": [
1166
+ {
1167
+ "length": 20,
1168
+ "start": 1331
1169
+ },
1170
+ {
1171
+ "length": 20,
1172
+ "start": 2318
1173
+ }
1174
+ ]
1175
+ }
1176
+ }
1177
+ }