@etherisc/gif-next 0.0.2-f74fcad-685 → 0.0.2-f7b8c9f-436

Sign up to get free protection for your applications and to get access to all the features.
Files changed (392) hide show
  1. package/README.md +160 -6
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → components/BaseComponent.sol/BaseComponent.json} +152 -150
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +557 -0
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +115 -116
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +177 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +308 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +207 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +471 -83
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +345 -77
  18. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  30. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  34. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  36. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1430 -660
  40. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  41. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  42. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/Instance.sol/Instance.json +1759 -801
  44. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  45. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +481 -0
  46. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  47. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  48. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  49. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +560 -0
  50. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  52. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  53. package/artifacts/contracts/instance/base/IService.sol/IService.json +421 -0
  54. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  55. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +544 -0
  56. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +710 -0
  58. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  59. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  60. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
  62. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +468 -0
  64. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  65. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  66. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  67. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  68. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  69. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  70. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  71. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +297 -0
  72. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  73. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  74. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +297 -0
  76. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPoolModule.json → module/component/ComponentModule.sol/ComponentModule.json} +49 -61
  78. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  79. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  80. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/{product/IProductService.sol/IProductService.json → module/component/IComponent.sol/IComponentModule.json} +51 -61
  82. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
  84. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
  85. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.json +10 -0
  86. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +10 -0
  88. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  89. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  90. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +136 -119
  92. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +137 -120
  94. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  96. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  97. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +164 -0
  98. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{pool → module/pool}/PoolModule.sol/PoolModule.json +66 -57
  100. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  101. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
  102. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  103. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +113 -0
  104. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  105. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +131 -0
  106. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  107. package/artifacts/contracts/instance/{treasury → module/treasury}/ITreasury.sol/ITreasury.json +1 -1
  108. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +638 -0
  110. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  111. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  112. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  113. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +638 -0
  114. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +794 -0
  116. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +630 -0
  118. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  119. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  120. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  122. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
  124. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
  126. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  127. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +753 -0
  128. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  129. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +1068 -0
  130. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  131. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +194 -2
  132. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
  133. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
  134. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  135. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +408 -32
  136. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  137. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +745 -0
  138. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  139. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  140. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  141. package/artifacts/contracts/registry/Registry.sol/Registry.json +637 -52
  142. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  143. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +997 -0
  144. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  145. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +468 -0
  146. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  147. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  148. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  149. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  150. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  151. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  152. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  153. package/artifacts/contracts/{components/Component.sol/Component.json → shared/IRegisterable.sol/IRegisterable.json} +98 -102
  154. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  155. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  156. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  157. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  158. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  159. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  160. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  161. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  162. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  163. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  164. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  166. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +557 -0
  168. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  170. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestPool.sol/TestPool.json +716 -0
  172. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +744 -0
  174. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  176. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  177. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  178. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  179. package/artifacts/contracts/test/TestService.sol/TestService.json +584 -0
  180. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  181. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  182. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  183. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  184. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  185. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +270 -0
  186. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  187. package/artifacts/contracts/{mock → test}/Usdc.sol/USDC.json +3 -3
  188. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  189. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  190. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  191. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  192. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  193. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  194. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  195. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  196. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  197. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  198. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  199. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  200. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  201. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  202. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
  203. package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
  204. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  206. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  207. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  208. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  209. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  210. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  211. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +64 -2
  212. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
  213. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +58 -58
  214. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  216. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  217. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  218. package/contracts/components/BaseComponent.sol +79 -0
  219. package/contracts/components/Distribution.sol +155 -0
  220. package/contracts/components/IBaseComponent.sol +19 -0
  221. package/contracts/components/IDistributionComponent.sol +46 -0
  222. package/contracts/components/IPoolComponent.sol +64 -0
  223. package/contracts/components/IProductComponent.sol +37 -0
  224. package/contracts/components/Pool.sol +218 -24
  225. package/contracts/components/Product.sol +248 -38
  226. package/contracts/instance/IInstance.sol +40 -11
  227. package/contracts/instance/IInstanceLinked.sol +8 -0
  228. package/contracts/instance/Instance.sol +60 -45
  229. package/contracts/instance/base/ComponentServiceBase.sol +49 -0
  230. package/contracts/instance/base/IInstanceBase.sol +23 -0
  231. package/contracts/instance/base/IKeyValueStore.sol +50 -0
  232. package/contracts/instance/{lifecycle → base}/ILifecycle.sol +4 -21
  233. package/contracts/instance/base/IService.sol +15 -0
  234. package/contracts/instance/base/InstanceBase.sol +89 -0
  235. package/contracts/instance/base/KeyValueStore.sol +161 -0
  236. package/contracts/instance/base/Lifecycle.sol +100 -0
  237. package/contracts/instance/base/ModuleBase.sol +57 -0
  238. package/contracts/instance/base/ServiceBase.sol +44 -0
  239. package/contracts/instance/module/access/Access.sol +149 -0
  240. package/contracts/instance/module/access/IAccess.sol +53 -0
  241. package/contracts/instance/module/bundle/BundleModule.sol +134 -0
  242. package/contracts/instance/module/bundle/IBundle.sol +53 -0
  243. package/contracts/instance/module/component/ComponentModule.sol +71 -0
  244. package/contracts/instance/module/component/IComponent.sol +28 -0
  245. package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
  246. package/contracts/instance/module/distribution/IDistribution.sol +10 -0
  247. package/contracts/instance/module/policy/IPolicy.sol +63 -0
  248. package/contracts/instance/module/policy/PolicyModule.sol +91 -0
  249. package/contracts/instance/module/pool/IPoolModule.sol +41 -0
  250. package/contracts/instance/module/pool/PoolModule.sol +95 -0
  251. package/contracts/instance/module/risk/IRisk.sol +26 -0
  252. package/contracts/instance/module/risk/RiskModule.sol +62 -0
  253. package/contracts/instance/module/treasury/ITreasury.sol +84 -0
  254. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  255. package/contracts/instance/module/treasury/TreasuryModule.sol +131 -0
  256. package/contracts/instance/service/ComponentOwnerService.sol +275 -0
  257. package/contracts/instance/service/DistributionService.sol +54 -0
  258. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  259. package/contracts/instance/service/IDistributionService.sol +12 -0
  260. package/contracts/instance/service/IPoolService.sol +37 -0
  261. package/contracts/instance/service/IProductService.sol +107 -0
  262. package/contracts/instance/service/PoolService.sol +149 -0
  263. package/contracts/instance/service/ProductService.sol +510 -0
  264. package/contracts/registry/ChainNft.sol +94 -42
  265. package/contracts/registry/IChainNft.sol +3 -2
  266. package/contracts/registry/IRegistry.sol +50 -44
  267. package/contracts/registry/IRegistryService.sol +29 -0
  268. package/contracts/registry/ITransferInterceptor.sol +6 -0
  269. package/contracts/registry/Registry.sol +435 -126
  270. package/contracts/registry/RegistryService.sol +368 -0
  271. package/contracts/registry/RegistryServiceManager.sol +43 -0
  272. package/contracts/shared/ContractDeployerLib.sol +72 -0
  273. package/contracts/shared/ERC165.sol +21 -0
  274. package/contracts/shared/INftOwnable.sol +22 -0
  275. package/contracts/shared/IRegisterable.sol +17 -0
  276. package/contracts/shared/IVersionable.sol +96 -0
  277. package/contracts/shared/NftOwnable.sol +136 -0
  278. package/contracts/shared/ProxyManager.sol +94 -0
  279. package/contracts/shared/Registerable.sol +89 -0
  280. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  281. package/contracts/shared/Versionable.sol +147 -0
  282. package/contracts/test/TestDistribution.sol +22 -0
  283. package/contracts/test/TestFee.sol +25 -0
  284. package/contracts/test/TestPool.sol +27 -0
  285. package/contracts/test/TestProduct.sol +74 -0
  286. package/contracts/test/TestRegisterable.sol +18 -0
  287. package/contracts/test/TestRoleId.sol +14 -0
  288. package/contracts/test/TestService.sol +26 -0
  289. package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
  290. package/contracts/test/TestVersion.sol +44 -0
  291. package/contracts/test/TestVersionable.sol +17 -0
  292. package/contracts/{mock → test}/Usdc.sol +1 -1
  293. package/contracts/types/AddressSet.sol +58 -0
  294. package/contracts/types/Fee.sol +44 -20
  295. package/contracts/types/Key32.sol +45 -0
  296. package/contracts/types/NftId.sol +22 -1
  297. package/contracts/types/NftIdSet.sol +60 -0
  298. package/contracts/types/ObjectType.sol +37 -13
  299. package/contracts/types/ReferralId.sol +48 -0
  300. package/contracts/types/RiskId.sol +43 -0
  301. package/contracts/types/RoleId.sol +38 -0
  302. package/contracts/types/StateId.sol +13 -3
  303. package/contracts/types/Timestamp.sol +22 -1
  304. package/contracts/types/UFixed.sol +12 -13
  305. package/contracts/types/Version.sol +104 -0
  306. package/package.json +8 -3
  307. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  308. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  309. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  310. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  311. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  312. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  313. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  314. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  315. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  316. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  317. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  318. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  319. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  320. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  321. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  322. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  323. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  324. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  325. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
  326. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  327. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  328. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  329. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  330. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  331. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  332. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  333. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  334. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  335. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  336. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  337. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  338. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  339. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  340. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  341. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  342. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  343. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  344. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  345. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  346. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  347. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  348. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  349. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  350. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  351. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
  352. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  353. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  354. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  355. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
  356. package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
  357. package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
  358. package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
  359. package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
  360. package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
  361. package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
  362. package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
  363. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  364. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  365. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  366. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  367. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  368. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  369. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  370. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  371. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  372. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  373. package/contracts/components/Component.sol +0 -77
  374. package/contracts/components/IPool.sol +0 -15
  375. package/contracts/components/IProduct.sol +0 -16
  376. package/contracts/experiment/statemachine/README.md +0 -112
  377. package/contracts/instance/access/Access.sol +0 -165
  378. package/contracts/instance/access/IAccess.sol +0 -63
  379. package/contracts/instance/component/ComponentModule.sol +0 -274
  380. package/contracts/instance/component/IComponent.sol +0 -74
  381. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  382. package/contracts/instance/policy/IPolicy.sol +0 -50
  383. package/contracts/instance/policy/PolicyModule.sol +0 -114
  384. package/contracts/instance/pool/IPoolModule.sol +0 -23
  385. package/contracts/instance/pool/PoolModule.sol +0 -81
  386. package/contracts/instance/product/IProductService.sol +0 -36
  387. package/contracts/instance/product/ProductService.sol +0 -136
  388. package/contracts/instance/treasury/ITreasury.sol +0 -91
  389. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  390. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
  391. package/contracts/mock/TestPool.sol +0 -16
  392. package/contracts/mock/TestProduct.sol +0 -39
@@ -0,0 +1,794 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ComponentOwnerService",
4
+ "sourceName": "contracts/instance/service/ComponentOwnerService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "registryNftId",
16
+ "type": "uint96"
17
+ },
18
+ {
19
+ "internalType": "address",
20
+ "name": "initialOwner",
21
+ "type": "address"
22
+ }
23
+ ],
24
+ "stateMutability": "nonpayable",
25
+ "type": "constructor"
26
+ },
27
+ {
28
+ "inputs": [],
29
+ "name": "CollateralizationLevelIsZero",
30
+ "type": "error"
31
+ },
32
+ {
33
+ "inputs": [
34
+ {
35
+ "internalType": "address",
36
+ "name": "registry",
37
+ "type": "address"
38
+ },
39
+ {
40
+ "internalType": "NftId",
41
+ "name": "nftId",
42
+ "type": "uint96"
43
+ }
44
+ ],
45
+ "name": "ErrorAlreadyLinked",
46
+ "type": "error"
47
+ },
48
+ {
49
+ "inputs": [
50
+ {
51
+ "internalType": "address",
52
+ "name": "contractAddress",
53
+ "type": "address"
54
+ }
55
+ ],
56
+ "name": "ErrorContractNotRegistered",
57
+ "type": "error"
58
+ },
59
+ {
60
+ "inputs": [
61
+ {
62
+ "internalType": "address",
63
+ "name": "account",
64
+ "type": "address"
65
+ }
66
+ ],
67
+ "name": "ErrorNotOwner",
68
+ "type": "error"
69
+ },
70
+ {
71
+ "inputs": [
72
+ {
73
+ "internalType": "address",
74
+ "name": "registryAddress",
75
+ "type": "address"
76
+ }
77
+ ],
78
+ "name": "ErrorNotRegistry",
79
+ "type": "error"
80
+ },
81
+ {
82
+ "inputs": [
83
+ {
84
+ "internalType": "address",
85
+ "name": "registryAddress",
86
+ "type": "address"
87
+ }
88
+ ],
89
+ "name": "ErrorRegisterableNotRegistry",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "ErrorRegistryAddressZero",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "address",
101
+ "name": "registry",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "ErrorRegistryAlreadyInitialized",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [],
110
+ "name": "ErrorRegistryNotInitialized",
111
+ "type": "error"
112
+ },
113
+ {
114
+ "inputs": [],
115
+ "name": "InvalidDistribution",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "InvalidDistributionsInstance",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "inputs": [],
125
+ "name": "InvalidInitialization",
126
+ "type": "error"
127
+ },
128
+ {
129
+ "inputs": [],
130
+ "name": "InvalidPool",
131
+ "type": "error"
132
+ },
133
+ {
134
+ "inputs": [],
135
+ "name": "InvalidPoolsInstance",
136
+ "type": "error"
137
+ },
138
+ {
139
+ "inputs": [],
140
+ "name": "InvalidToken",
141
+ "type": "error"
142
+ },
143
+ {
144
+ "inputs": [],
145
+ "name": "MissingTypeRole",
146
+ "type": "error"
147
+ },
148
+ {
149
+ "inputs": [],
150
+ "name": "NotInitializing",
151
+ "type": "error"
152
+ },
153
+ {
154
+ "inputs": [],
155
+ "name": "WalletIsZero",
156
+ "type": "error"
157
+ },
158
+ {
159
+ "anonymous": false,
160
+ "inputs": [
161
+ {
162
+ "indexed": false,
163
+ "internalType": "uint64",
164
+ "name": "version",
165
+ "type": "uint64"
166
+ }
167
+ ],
168
+ "name": "Initialized",
169
+ "type": "event"
170
+ },
171
+ {
172
+ "anonymous": false,
173
+ "inputs": [
174
+ {
175
+ "indexed": false,
176
+ "internalType": "Version",
177
+ "name": "version",
178
+ "type": "uint24"
179
+ },
180
+ {
181
+ "indexed": false,
182
+ "internalType": "address",
183
+ "name": "implementation",
184
+ "type": "address"
185
+ },
186
+ {
187
+ "indexed": false,
188
+ "internalType": "address",
189
+ "name": "activatedBy",
190
+ "type": "address"
191
+ }
192
+ ],
193
+ "name": "LogVersionableInitialized",
194
+ "type": "event"
195
+ },
196
+ {
197
+ "inputs": [],
198
+ "name": "NAME",
199
+ "outputs": [
200
+ {
201
+ "internalType": "string",
202
+ "name": "",
203
+ "type": "string"
204
+ }
205
+ ],
206
+ "stateMutability": "view",
207
+ "type": "function"
208
+ },
209
+ {
210
+ "inputs": [],
211
+ "name": "REGISTERABLE_LOCATION_V1",
212
+ "outputs": [
213
+ {
214
+ "internalType": "bytes32",
215
+ "name": "",
216
+ "type": "bytes32"
217
+ }
218
+ ],
219
+ "stateMutability": "view",
220
+ "type": "function"
221
+ },
222
+ {
223
+ "inputs": [],
224
+ "name": "getInitialInfo",
225
+ "outputs": [
226
+ {
227
+ "components": [
228
+ {
229
+ "internalType": "NftId",
230
+ "name": "nftId",
231
+ "type": "uint96"
232
+ },
233
+ {
234
+ "internalType": "NftId",
235
+ "name": "parentNftId",
236
+ "type": "uint96"
237
+ },
238
+ {
239
+ "internalType": "ObjectType",
240
+ "name": "objectType",
241
+ "type": "uint8"
242
+ },
243
+ {
244
+ "internalType": "bool",
245
+ "name": "isInterceptor",
246
+ "type": "bool"
247
+ },
248
+ {
249
+ "internalType": "address",
250
+ "name": "objectAddress",
251
+ "type": "address"
252
+ },
253
+ {
254
+ "internalType": "address",
255
+ "name": "initialOwner",
256
+ "type": "address"
257
+ },
258
+ {
259
+ "internalType": "bytes",
260
+ "name": "data",
261
+ "type": "bytes"
262
+ }
263
+ ],
264
+ "internalType": "struct IRegistry.ObjectInfo",
265
+ "name": "",
266
+ "type": "tuple"
267
+ },
268
+ {
269
+ "internalType": "bytes",
270
+ "name": "data",
271
+ "type": "bytes"
272
+ }
273
+ ],
274
+ "stateMutability": "view",
275
+ "type": "function"
276
+ },
277
+ {
278
+ "inputs": [],
279
+ "name": "getInitializedVersion",
280
+ "outputs": [
281
+ {
282
+ "internalType": "uint64",
283
+ "name": "",
284
+ "type": "uint64"
285
+ }
286
+ ],
287
+ "stateMutability": "view",
288
+ "type": "function"
289
+ },
290
+ {
291
+ "inputs": [],
292
+ "name": "getMajorVersion",
293
+ "outputs": [
294
+ {
295
+ "internalType": "VersionPart",
296
+ "name": "majorVersion",
297
+ "type": "uint8"
298
+ }
299
+ ],
300
+ "stateMutability": "view",
301
+ "type": "function"
302
+ },
303
+ {
304
+ "inputs": [],
305
+ "name": "getName",
306
+ "outputs": [
307
+ {
308
+ "internalType": "string",
309
+ "name": "name",
310
+ "type": "string"
311
+ }
312
+ ],
313
+ "stateMutability": "pure",
314
+ "type": "function"
315
+ },
316
+ {
317
+ "inputs": [],
318
+ "name": "getNftId",
319
+ "outputs": [
320
+ {
321
+ "internalType": "NftId",
322
+ "name": "",
323
+ "type": "uint96"
324
+ }
325
+ ],
326
+ "stateMutability": "view",
327
+ "type": "function"
328
+ },
329
+ {
330
+ "inputs": [],
331
+ "name": "getOwner",
332
+ "outputs": [
333
+ {
334
+ "internalType": "address",
335
+ "name": "",
336
+ "type": "address"
337
+ }
338
+ ],
339
+ "stateMutability": "view",
340
+ "type": "function"
341
+ },
342
+ {
343
+ "inputs": [],
344
+ "name": "getRegistry",
345
+ "outputs": [
346
+ {
347
+ "internalType": "contract IRegistry",
348
+ "name": "",
349
+ "type": "address"
350
+ }
351
+ ],
352
+ "stateMutability": "view",
353
+ "type": "function"
354
+ },
355
+ {
356
+ "inputs": [],
357
+ "name": "getRegistryService",
358
+ "outputs": [
359
+ {
360
+ "internalType": "contract IRegistryService",
361
+ "name": "",
362
+ "type": "address"
363
+ }
364
+ ],
365
+ "stateMutability": "view",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "inputs": [
370
+ {
371
+ "internalType": "ObjectType",
372
+ "name": "cType",
373
+ "type": "uint8"
374
+ }
375
+ ],
376
+ "name": "getRoleForType",
377
+ "outputs": [
378
+ {
379
+ "internalType": "RoleId",
380
+ "name": "role",
381
+ "type": "bytes8"
382
+ }
383
+ ],
384
+ "stateMutability": "pure",
385
+ "type": "function"
386
+ },
387
+ {
388
+ "inputs": [],
389
+ "name": "getVersion",
390
+ "outputs": [
391
+ {
392
+ "internalType": "Version",
393
+ "name": "",
394
+ "type": "uint24"
395
+ }
396
+ ],
397
+ "stateMutability": "pure",
398
+ "type": "function"
399
+ },
400
+ {
401
+ "inputs": [
402
+ {
403
+ "internalType": "uint256",
404
+ "name": "idx",
405
+ "type": "uint256"
406
+ }
407
+ ],
408
+ "name": "getVersion",
409
+ "outputs": [
410
+ {
411
+ "internalType": "Version",
412
+ "name": "",
413
+ "type": "uint24"
414
+ }
415
+ ],
416
+ "stateMutability": "view",
417
+ "type": "function"
418
+ },
419
+ {
420
+ "inputs": [],
421
+ "name": "getVersionCount",
422
+ "outputs": [
423
+ {
424
+ "internalType": "uint256",
425
+ "name": "",
426
+ "type": "uint256"
427
+ }
428
+ ],
429
+ "stateMutability": "view",
430
+ "type": "function"
431
+ },
432
+ {
433
+ "inputs": [
434
+ {
435
+ "internalType": "Version",
436
+ "name": "_version",
437
+ "type": "uint24"
438
+ }
439
+ ],
440
+ "name": "getVersionInfo",
441
+ "outputs": [
442
+ {
443
+ "components": [
444
+ {
445
+ "internalType": "Version",
446
+ "name": "version",
447
+ "type": "uint24"
448
+ },
449
+ {
450
+ "internalType": "address",
451
+ "name": "implementation",
452
+ "type": "address"
453
+ },
454
+ {
455
+ "internalType": "address",
456
+ "name": "activatedBy",
457
+ "type": "address"
458
+ },
459
+ {
460
+ "internalType": "Timestamp",
461
+ "name": "activatedAt",
462
+ "type": "uint40"
463
+ },
464
+ {
465
+ "internalType": "Blocknumber",
466
+ "name": "activatedIn",
467
+ "type": "uint32"
468
+ }
469
+ ],
470
+ "internalType": "struct IVersionable.VersionInfo",
471
+ "name": "",
472
+ "type": "tuple"
473
+ }
474
+ ],
475
+ "stateMutability": "view",
476
+ "type": "function"
477
+ },
478
+ {
479
+ "inputs": [
480
+ {
481
+ "internalType": "address",
482
+ "name": "implementation",
483
+ "type": "address"
484
+ },
485
+ {
486
+ "internalType": "address",
487
+ "name": "activatedBy",
488
+ "type": "address"
489
+ },
490
+ {
491
+ "internalType": "bytes",
492
+ "name": "data",
493
+ "type": "bytes"
494
+ }
495
+ ],
496
+ "name": "initialize",
497
+ "outputs": [],
498
+ "stateMutability": "nonpayable",
499
+ "type": "function"
500
+ },
501
+ {
502
+ "inputs": [
503
+ {
504
+ "internalType": "Version",
505
+ "name": "_version",
506
+ "type": "uint24"
507
+ }
508
+ ],
509
+ "name": "isInitialized",
510
+ "outputs": [
511
+ {
512
+ "internalType": "bool",
513
+ "name": "",
514
+ "type": "bool"
515
+ }
516
+ ],
517
+ "stateMutability": "view",
518
+ "type": "function"
519
+ },
520
+ {
521
+ "inputs": [],
522
+ "name": "linkToRegisteredNftId",
523
+ "outputs": [],
524
+ "stateMutability": "nonpayable",
525
+ "type": "function"
526
+ },
527
+ {
528
+ "inputs": [
529
+ {
530
+ "internalType": "contract IBaseComponent",
531
+ "name": "component",
532
+ "type": "address"
533
+ }
534
+ ],
535
+ "name": "lock",
536
+ "outputs": [],
537
+ "stateMutability": "nonpayable",
538
+ "type": "function"
539
+ },
540
+ {
541
+ "inputs": [
542
+ {
543
+ "internalType": "contract IBaseComponent",
544
+ "name": "component",
545
+ "type": "address"
546
+ },
547
+ {
548
+ "internalType": "ObjectType",
549
+ "name": "componentType",
550
+ "type": "uint8"
551
+ }
552
+ ],
553
+ "name": "register",
554
+ "outputs": [
555
+ {
556
+ "internalType": "NftId",
557
+ "name": "nftId",
558
+ "type": "uint96"
559
+ }
560
+ ],
561
+ "stateMutability": "nonpayable",
562
+ "type": "function"
563
+ },
564
+ {
565
+ "inputs": [
566
+ {
567
+ "internalType": "bytes4",
568
+ "name": "interfaceId",
569
+ "type": "bytes4"
570
+ }
571
+ ],
572
+ "name": "supportsInterface",
573
+ "outputs": [
574
+ {
575
+ "internalType": "bool",
576
+ "name": "",
577
+ "type": "bool"
578
+ }
579
+ ],
580
+ "stateMutability": "view",
581
+ "type": "function"
582
+ },
583
+ {
584
+ "inputs": [
585
+ {
586
+ "internalType": "contract IBaseComponent",
587
+ "name": "component",
588
+ "type": "address"
589
+ }
590
+ ],
591
+ "name": "unlock",
592
+ "outputs": [],
593
+ "stateMutability": "nonpayable",
594
+ "type": "function"
595
+ },
596
+ {
597
+ "inputs": [
598
+ {
599
+ "internalType": "address",
600
+ "name": "implementation",
601
+ "type": "address"
602
+ },
603
+ {
604
+ "internalType": "address",
605
+ "name": "activatedBy",
606
+ "type": "address"
607
+ },
608
+ {
609
+ "internalType": "bytes",
610
+ "name": "data",
611
+ "type": "bytes"
612
+ }
613
+ ],
614
+ "name": "upgrade",
615
+ "outputs": [],
616
+ "stateMutability": "nonpayable",
617
+ "type": "function"
618
+ }
619
+ ],
620
+ "bytecode": "0x60806040523480156200001157600080fd5b5060405162003431380380620034318339810160408190526200003491620005f0565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055600280546001600160a01b031916331790556200008c620000de565b6200009983838362000192565b6327535ccf60e01b60009081526020527fdf85129a843b1189784b76e4b72b0cde3e9c7821233b206b7eed6ac5a2fce6f7805460ff191660011790555050506200088a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156200012f5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146200018f5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6000620001cf60408051808201909152601581527f436f6d706f6e656e744f776e6572536572766963650000000000000000000000602082015290565b620001d962000252565b604051602001620001ec92919062000648565b60408051808303601f190181529190529050620002108484602860008686620002df565b631b4612f160e31b60009081526020527ffc58a5a01198e68c5a5d0bcd463f9ab550fc4337b1df271aed6dbb33d25fef25805460ff1916600117905550505050565b60006200025e620003b0565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015620002b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002da9190620006a2565b905090565b620002eb828762000438565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d0100000000000000000000000000861515021781559050600181016200036a838262000773565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000412573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002da91906200083f565b600280546001600160a01b0319166001600160a01b0384161790556200045e8162000462565b5050565b6001546001600160a01b031615620004a15760015460405163fcdbf2d960e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b6001600160a01b038116620004c95760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620005015760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000498565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632c1c764b60e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156200057e575060408051601f3d908101601f191682019092526200057b9181019062000866565b60015b620005a85760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000498565b806200045e5760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000498565b80516001600160a01b0381168114620005eb57600080fd5b919050565b6000806000606084860312156200060657600080fd5b6200061184620005d3565b60208501519093506001600160601b03811681146200062f57600080fd5b91506200063f60408501620005d3565b90509250925092565b604081526000835180604084015260005b8181101562000678576020818701810151606086840101520162000659565b506000606082850101526060601f19601f83011684010191505060ff831660208301529392505050565b600060208284031215620006b557600080fd5b815160ff81168114620006c757600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006f957607f821691505b6020821081036200071a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200076e57600081815260208120601f850160051c81016020861015620007495750805b601f850160051c820191505b818110156200076a5782815560010162000755565b5050505b505050565b81516001600160401b038111156200078f576200078f620006ce565b620007a781620007a08454620006e4565b8462000720565b602080601f831160018114620007df5760008415620007c65750858301515b600019600386901b1c1916600185901b1785556200076a565b600085815260208120601f198616915b828110156200081057888601518255948401946001909101908401620007ef565b50858210156200082f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200085257600080fd5b815162ffffff81168114620006c757600080fd5b6000602082840312156200087957600080fd5b81518015158114620006c757600080fd5b612b97806200089a6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063644c45e0116100c3578063b88da7591161007c578063b88da7591461047c578063caf4e3d41461048f578063cde749f414610497578063cf7a1d77146104b1578063f435f5a7146104c4578063fc0ae054146104d757600080fd5b8063644c45e0146103ce578063893d20e8146103e6578063946dfcfe146103ee578063a3f4df7e14610415578063a745e3df14610449578063b3c650151461045c57600080fd5b806317d7de7c1161011557806317d7de7c146101fb5780631eff4b22146102355780632f6c493c1461026a5780634d459c901461027d5780634f421333146103965780635ab1bd53146103a957600080fd5b806301ffc9a71461015257806307e49598146101945780630d8e6e2c146101bf5780630fec111c146101db578063138461e0146101f1575b600080fd5b61017f6101603660046121d0565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a76101a2366004612228565b610503565b6040516001600160601b03909116815260200161018b565b6101c7610729565b60405162ffffff909116815260200161018b565b6101e36107b3565b60405161018b9291906122b1565b6101f9610923565b005b604080518082019091526015815274436f6d706f6e656e744f776e65725365727669636560581b60208201525b60405161018b9190612358565b61025c7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161018b565b6101f961027836600461236b565b610b45565b61033961028b366004612399565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612b4283398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161018b565b61017f6103a4366004612399565b610e6b565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161018b565b600154600160a01b90046001600160601b03166101a7565b6103b6610f1e565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015461025c565b61022860405180604001604052806015815260200174436f6d706f6e656e744f776e65725365727669636560581b81525081565b6101f9610457366004612490565b611037565b610464611191565b6040516001600160401b03909116815260200161018b565b6101c761048a366004612534565b6111b2565b6103b6611203565b61049f6112be565b60405160ff909116815260200161018b565b6101f96104bf366004612490565b611341565b6101f96104d236600461236b565b61144a565b6104ea6104e536600461254d565b611713565b6040516001600160c01b0319909116815260200161018b565b6000806000610510611203565b60405163d943342d60e01b81526001600160a01b03878116600483015260ff87166024830152336044830152919091169063d943342d906064016000604051808303816000875af1158015610569573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261059191908101906126a1565b6020820151919350915060006105af6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156105fe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106269190810190612704565b60800151905080600061063888611713565b6040516399fd467760e01b81526001600160c01b0319821660048201523360248201529091506001600160a01b038316906399fd467790604401602060405180830381865afa15801561068f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b39190612738565b15156000036106d55760405163337d32e360e01b815260040160405180910390fd5b6106e788606e5b60ff90811691161490565b156106ff5785516106fa9085848861177a565b61071d565b61070a88608c6106dc565b1561071d57855161071d90858488611b20565b50505050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561078a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ae9190612753565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610824600090565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161086c610f1e565b6001600160a01b0316815260200182600101805461088990612770565b80601f01602080910402602001604051908101604052809291908181526020018280546108b590612770565b80156109025780601f106108d757610100808354040283529160200191610902565b820191906000526020600020905b8154815290600101906020018083116108e557829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a99190612738565b156109f0576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b0316610a195760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610a62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a869190612738565b610aae576040516372657a5160e01b81526001600160a01b03821660048201526024016109e7565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1c91906127aa565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b806000610b5a6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038481166004830152919091169063d272ac1e90602401602060405180830381865afa158015610ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc691906127aa565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610c21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c459190612738565b610c915760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e0060448201526064016109e7565b6000836001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf591906127c5565b90506000846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b91906127aa565b9050600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660646040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610dd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df591906127e2565b90506001600160a01b03831663a238accd8260645b6040516001600160e01b031960e085901b168152600481019290925260ff166024820152604401600060405180830381600087803b158015610e4b57600080fd5b505af1158015610e5f573d6000803e3d6000fd5b50505050505050505050565b600080600080516020612b4283398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1791906127e2565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610f83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa79190612738565b1561102757600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015611003573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ae91906127c5565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c611059610729565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611099573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bd91906127fb565b600080516020612b228339815191528054600160401b900460ff16806110f0575080546001600160401b03808416911610155b1561110e5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556111398585611daa565b61114283611fe5565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006107ae600080516020612b22833981519152546001600160401b031690565b6000600080516020612b4283398151915260010182815481106111d7576111d7612824565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000806112186001546001600160a01b031690565b6001600160a01b031663a3bcd81d61122e6112be565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611294573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b891906127c5565b92915050565b60006112c8610729565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561131d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ae919061283a565b600080516020612b228339815191528054600160401b810460ff1615906001600160401b03166000811580156113745750825b90506000826001600160401b031660011480156113905750303b155b90508115801561139e575080155b156113bc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113e657845460ff60401b1916600160401b1785555b6113f08888611daa565b6113fa8787611fe5565b831561144057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b80600061145f6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038481166004830152919091169063d272ac1e90602401602060405180830381865afa1580156114a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cb91906127aa565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611526573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154a9190612738565b6115965760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e0060448201526064016109e7565b6000836001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fa91906127c5565b90506000846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561163c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166091906127aa565b9050600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660646040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156116d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fa91906127e2565b90506001600160a01b03831663a238accd82606e610e0a565b600061172082606e6106dc565b1561172d576112b8611fed565b61173882608c6106dc565b15611745576112b8612085565b6117508260786106dc565b1561175d576112b86120dd565b6117688260826106dc565b15611775576112b861213d565b919050565b600080828060200190518101906117919190612887565b9150915060006117a96001546001600160a01b031690565b90506001600160a01b0382166117d2576040516361a02c4f60e11b815260040160405180910390fd5b60408381015190516308b09a5f60e41b81526001600160a01b039182166004820152600091831690638b09a5f090602401600060405180830381865afa158015611820573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118489190810190612704565b9050611866816040015161185a601e90565b60ff9081169116141590565b156118845760405163c1ab6dc160e01b815260040160405180910390fd5b83516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0384169063a48f42e090602401600060405180830381865afa1580156118d7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118ff9190810190612704565b9050611911816040015161185a608c90565b1561192e5760405162820f3560e61b815260040160405180910390fd5b60208101516001600160601b0389811691161461195e57604051636721a3e960e11b815260040160405180910390fd5b60208501516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0385169063a48f42e090602401600060405180830381865afa1580156119b4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526119dc9190810190612704565b90506119ee816040015161185a607890565b15611a0c57604051630d16b83360e31b815260040160405180910390fd5b60208101516001600160601b038a8116911614611a3c57604051631c33ddfb60e31b815260040160405180910390fd5b604086810151905163ea5fa54b60e01b81526001600160601b038c1660048201526001600160a01b03918216602482015286821660448201529089169063ea5fa54b90606401600060405180830381600087803b158015611a9c57600080fd5b505af1158015611ab0573d6000803e3d6000fd5b505060405163042c74ed60e41b81526001600160a01b038b1692506342c74ed09150611ae2908d908a9060040161296c565b600060405180830381600087803b158015611afc57600080fd5b505af1158015611b10573d6000803e3d6000fd5b5050505050505050505050505050565b600080600083806020019051810190611b399190612a53565b5050509250925092506000611b566001546001600160a01b031690565b90506001600160a01b038316611b7f576040516361a02c4f60e11b815260040160405180910390fd5b6040516308b09a5f60e41b81526001600160a01b03838116600483015260009190831690638b09a5f090602401600060405180830381865afa158015611bc9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bf19190810190612704565b604001519050611c0281601e61185a565b15611c205760405163c1ab6dc160e01b815260040160405180910390fd5b602085015160405163753b14a560e01b8152600481019190915273__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__9063753b14a590602401602060405180830381865af4158015611c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9a9190612738565b15611cb8576040516313e89cb760e31b815260040160405180910390fd5b60405163ea5fa54b60e01b81526001600160601b038a1660048201526001600160a01b038481166024830152858116604483015288169063ea5fa54b90606401600060405180830381600087803b158015611d1257600080fd5b505af1158015611d26573d6000803e3d6000fd5b50506040516373617bf160e01b81526001600160601b038c166004820152875115156024820152602088015160448201526001600160a01b038a1692506373617bf19150606401600060405180830381600087803b158015611d8757600080fd5b505af1158015611d9b573d6000803e3d6000fd5b50505050505050505050505050565b611db2612197565b600080516020612b428339815191526000611de2600080516020612b22833981519152546001600160401b031690565b90506000611dee610729565b9050816001600160401b0316600103611e1b5760028301805462ffffff191662ffffff8316179055611e69565b600283015462ffffff90811690821611611e695760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b60448201526064016109e7565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b03808916928401929092529086169082015260608101611edd4290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906111829083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b61014d612197565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af4158015612061573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ae9190612af7565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90606401612044565b60405163e14787cb60e01b8152602060048201526015602482015274446973747269627574696f6e4f776e6572526f6c6560581b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90606401612044565b60405163e14787cb60e01b815260206004820152600f60248201526e4f7261636c654f776e6572526f6c6560881b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90606401612044565b600080516020612b2283398151915254600160401b900460ff166121ce57604051631afcd79f60e31b815260040160405180910390fd5b565b6000602082840312156121e257600080fd5b81356001600160e01b0319811681146121fa57600080fd5b9392505050565b6001600160a01b038116811461221657600080fd5b50565b60ff8116811461221657600080fd5b6000806040838503121561223b57600080fd5b823561224681612201565b9150602083013561225681612219565b809150509250929050565b60005b8381101561227c578181015183820152602001612264565b50506000910152565b6000815180845261229d816020860160208601612261565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516122f560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261233b610120840182612285565b9050828103602084015261234f8185612285565b95945050505050565b6020815260006121fa6020830184612285565b60006020828403121561237d57600080fd5b81356121fa81612201565b62ffffff8116811461221657600080fd5b6000602082840312156123ab57600080fd5b81356121fa81612388565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156123ee576123ee6123b6565b60405290565b604080519081016001600160401b03811182821017156123ee576123ee6123b6565b60405161012081016001600160401b03811182821017156123ee576123ee6123b6565b604051601f8201601f191681016001600160401b0381118282101715612461576124616123b6565b604052919050565b60006001600160401b03821115612482576124826123b6565b50601f01601f191660200190565b6000806000606084860312156124a557600080fd5b83356124b081612201565b925060208401356124c081612201565b915060408401356001600160401b038111156124db57600080fd5b8401601f810186136124ec57600080fd5b80356124ff6124fa82612469565b612439565b81815287602083850101111561251457600080fd5b816020840160208301376000602083830101528093505050509250925092565b60006020828403121561254657600080fd5b5035919050565b60006020828403121561255f57600080fd5b81356121fa81612219565b80516001600160601b038116811461177557600080fd5b805161177581612219565b8051801515811461177557600080fd5b805161177581612201565b600082601f8301126125b857600080fd5b81516125c66124fa82612469565b8181528460208386010111156125db57600080fd5b6125ec826020830160208701612261565b949350505050565b600060e0828403121561260657600080fd5b61260e6123cc565b90506126198261256a565b81526126276020830161256a565b602082015261263860408301612581565b60408201526126496060830161258c565b606082015261265a6080830161259c565b608082015261266b60a0830161259c565b60a082015260c08201516001600160401b0381111561268957600080fd5b612695848285016125a7565b60c08301525092915050565b600080604083850312156126b457600080fd5b82516001600160401b03808211156126cb57600080fd5b6126d7868387016125f4565b935060208501519150808211156126ed57600080fd5b506126fa858286016125a7565b9150509250929050565b60006020828403121561271657600080fd5b81516001600160401b0381111561272c57600080fd5b6125ec848285016125f4565b60006020828403121561274a57600080fd5b6121fa8261258c565b60006020828403121561276557600080fd5b81516121fa81612388565b600181811c9082168061278457607f821691505b6020821081036127a457634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156127bc57600080fd5b6121fa8261256a565b6000602082840312156127d757600080fd5b81516121fa81612201565b6000602082840312156127f457600080fd5b5051919050565b60006020828403121561280d57600080fd5b81516001600160401b03811681146121fa57600080fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561284c57600080fd5b81516121fa81612219565b60006040828403121561286957600080fd5b6128716123f4565b9050815181526020820151602082015292915050565b60008082840361020081121561289c57600080fd5b6101e0808212156128ac57600080fd5b6128b4612416565b91506128bf8561256a565b82526128cd6020860161256a565b60208301526128de6040860161259c565b60408301526128f08660608701612857565b60608301526129028660a08701612857565b60808301526129148660e08701612857565b60a0830152612927866101208701612857565b60c083015261293a866101608701612857565b60e083015261294d866101a08701612857565b61010083015281935061296181860161259c565b925050509250929050565b6001600160601b0383811682528251166020808301919091528201516102008201906129a360408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a0830151610100612a058185018380518252602090810151910152565b60c0850151805161014086015260209081015161016086015260e086015180516101808701528101516101a086015294015180516101c0850152909301516101e09092019190915292915050565b600080600080600080868803610140811215612a6e57600080fd5b6040811215612a7c57600080fd5b50612a856123f4565b612a8e8861258c565b815260208801516020820152809650506040870151612aac81612201565b6060880151909550612abd81612201565b9350612acc8860808901612857565b9250612adb8860c08901612857565b9150612aeb886101008901612857565b90509295509295509295565b600060208284031215612b0957600080fd5b81516001600160c01b0319811681146121fa57600080fdfef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220b8009e2a1038178bef8dbc3b0112a1d6f77aa7b122df3de5ea4766c8e91bb8a464736f6c63430008140033",
621
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063644c45e0116100c3578063b88da7591161007c578063b88da7591461047c578063caf4e3d41461048f578063cde749f414610497578063cf7a1d77146104b1578063f435f5a7146104c4578063fc0ae054146104d757600080fd5b8063644c45e0146103ce578063893d20e8146103e6578063946dfcfe146103ee578063a3f4df7e14610415578063a745e3df14610449578063b3c650151461045c57600080fd5b806317d7de7c1161011557806317d7de7c146101fb5780631eff4b22146102355780632f6c493c1461026a5780634d459c901461027d5780634f421333146103965780635ab1bd53146103a957600080fd5b806301ffc9a71461015257806307e49598146101945780630d8e6e2c146101bf5780630fec111c146101db578063138461e0146101f1575b600080fd5b61017f6101603660046121d0565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a76101a2366004612228565b610503565b6040516001600160601b03909116815260200161018b565b6101c7610729565b60405162ffffff909116815260200161018b565b6101e36107b3565b60405161018b9291906122b1565b6101f9610923565b005b604080518082019091526015815274436f6d706f6e656e744f776e65725365727669636560581b60208201525b60405161018b9190612358565b61025c7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161018b565b6101f961027836600461236b565b610b45565b61033961028b366004612399565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020612b4283398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00161018b565b61017f6103a4366004612399565b610e6b565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161018b565b600154600160a01b90046001600160601b03166101a7565b6103b6610f1e565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015461025c565b61022860405180604001604052806015815260200174436f6d706f6e656e744f776e65725365727669636560581b81525081565b6101f9610457366004612490565b611037565b610464611191565b6040516001600160401b03909116815260200161018b565b6101c761048a366004612534565b6111b2565b6103b6611203565b61049f6112be565b60405160ff909116815260200161018b565b6101f96104bf366004612490565b611341565b6101f96104d236600461236b565b61144a565b6104ea6104e536600461254d565b611713565b6040516001600160c01b0319909116815260200161018b565b6000806000610510611203565b60405163d943342d60e01b81526001600160a01b03878116600483015260ff87166024830152336044830152919091169063d943342d906064016000604051808303816000875af1158015610569573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261059191908101906126a1565b6020820151919350915060006105af6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156105fe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106269190810190612704565b60800151905080600061063888611713565b6040516399fd467760e01b81526001600160c01b0319821660048201523360248201529091506001600160a01b038316906399fd467790604401602060405180830381865afa15801561068f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b39190612738565b15156000036106d55760405163337d32e360e01b815260040160405180910390fd5b6106e788606e5b60ff90811691161490565b156106ff5785516106fa9085848861177a565b61071d565b61070a88608c6106dc565b1561071d57855161071d90858488611b20565b50505050505092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561078a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ae9190612753565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610824600090565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161086c610f1e565b6001600160a01b0316815260200182600101805461088990612770565b80601f01602080910402602001604051908101604052809291908181526020018280546108b590612770565b80156109025780601f106108d757610100808354040283529160200191610902565b820191906000526020600020905b8154815290600101906020018083116108e557829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a99190612738565b156109f0576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b0316610a195760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610a62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a869190612738565b610aae576040516372657a5160e01b81526001600160a01b03821660048201526024016109e7565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1c91906127aa565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b806000610b5a6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038481166004830152919091169063d272ac1e90602401602060405180830381865afa158015610ba2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc691906127aa565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610c21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c459190612738565b610c915760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e0060448201526064016109e7565b6000836001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf591906127c5565b90506000846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5b91906127aa565b9050600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660646040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610dd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df591906127e2565b90506001600160a01b03831663a238accd8260645b6040516001600160e01b031960e085901b168152600481019290925260ff166024820152604401600060405180830381600087803b158015610e4b57600080fd5b505af1158015610e5f573d6000803e3d6000fd5b50505050505050505050565b600080600080516020612b4283398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610ef3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1791906127e2565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610f83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa79190612738565b1561102757600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015611003573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ae91906127c5565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c611059610729565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611099573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bd91906127fb565b600080516020612b228339815191528054600160401b900460ff16806110f0575080546001600160401b03808416911610155b1561110e5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556111398585611daa565b61114283611fe5565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006107ae600080516020612b22833981519152546001600160401b031690565b6000600080516020612b4283398151915260010182815481106111d7576111d7612824565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000806112186001546001600160a01b031690565b6001600160a01b031663a3bcd81d61122e6112be565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611294573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b891906127c5565b92915050565b60006112c8610729565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561131d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ae919061283a565b600080516020612b228339815191528054600160401b810460ff1615906001600160401b03166000811580156113745750825b90506000826001600160401b031660011480156113905750303b155b90508115801561139e575080155b156113bc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156113e657845460ff60401b1916600160401b1785555b6113f08888611daa565b6113fa8787611fe5565b831561144057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b80600061145f6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038481166004830152919091169063d272ac1e90602401602060405180830381865afa1580156114a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cb91906127aa565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611526573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154a9190612738565b6115965760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e0060448201526064016109e7565b6000836001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fa91906127c5565b90506000846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561163c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166091906127aa565b9050600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660646040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156116d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fa91906127e2565b90506001600160a01b03831663a238accd82606e610e0a565b600061172082606e6106dc565b1561172d576112b8611fed565b61173882608c6106dc565b15611745576112b8612085565b6117508260786106dc565b1561175d576112b86120dd565b6117688260826106dc565b15611775576112b861213d565b919050565b600080828060200190518101906117919190612887565b9150915060006117a96001546001600160a01b031690565b90506001600160a01b0382166117d2576040516361a02c4f60e11b815260040160405180910390fd5b60408381015190516308b09a5f60e41b81526001600160a01b039182166004820152600091831690638b09a5f090602401600060405180830381865afa158015611820573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118489190810190612704565b9050611866816040015161185a601e90565b60ff9081169116141590565b156118845760405163c1ab6dc160e01b815260040160405180910390fd5b83516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0384169063a48f42e090602401600060405180830381865afa1580156118d7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118ff9190810190612704565b9050611911816040015161185a608c90565b1561192e5760405162820f3560e61b815260040160405180910390fd5b60208101516001600160601b0389811691161461195e57604051636721a3e960e11b815260040160405180910390fd5b60208501516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0385169063a48f42e090602401600060405180830381865afa1580156119b4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526119dc9190810190612704565b90506119ee816040015161185a607890565b15611a0c57604051630d16b83360e31b815260040160405180910390fd5b60208101516001600160601b038a8116911614611a3c57604051631c33ddfb60e31b815260040160405180910390fd5b604086810151905163ea5fa54b60e01b81526001600160601b038c1660048201526001600160a01b03918216602482015286821660448201529089169063ea5fa54b90606401600060405180830381600087803b158015611a9c57600080fd5b505af1158015611ab0573d6000803e3d6000fd5b505060405163042c74ed60e41b81526001600160a01b038b1692506342c74ed09150611ae2908d908a9060040161296c565b600060405180830381600087803b158015611afc57600080fd5b505af1158015611b10573d6000803e3d6000fd5b5050505050505050505050505050565b600080600083806020019051810190611b399190612a53565b5050509250925092506000611b566001546001600160a01b031690565b90506001600160a01b038316611b7f576040516361a02c4f60e11b815260040160405180910390fd5b6040516308b09a5f60e41b81526001600160a01b03838116600483015260009190831690638b09a5f090602401600060405180830381865afa158015611bc9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bf19190810190612704565b604001519050611c0281601e61185a565b15611c205760405163c1ab6dc160e01b815260040160405180910390fd5b602085015160405163753b14a560e01b8152600481019190915273__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__9063753b14a590602401602060405180830381865af4158015611c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c9a9190612738565b15611cb8576040516313e89cb760e31b815260040160405180910390fd5b60405163ea5fa54b60e01b81526001600160601b038a1660048201526001600160a01b038481166024830152858116604483015288169063ea5fa54b90606401600060405180830381600087803b158015611d1257600080fd5b505af1158015611d26573d6000803e3d6000fd5b50506040516373617bf160e01b81526001600160601b038c166004820152875115156024820152602088015160448201526001600160a01b038a1692506373617bf19150606401600060405180830381600087803b158015611d8757600080fd5b505af1158015611d9b573d6000803e3d6000fd5b50505050505050505050505050565b611db2612197565b600080516020612b428339815191526000611de2600080516020612b22833981519152546001600160401b031690565b90506000611dee610729565b9050816001600160401b0316600103611e1b5760028301805462ffffff191662ffffff8316179055611e69565b600283015462ffffff90811690821611611e695760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b60448201526064016109e7565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b03808916928401929092529086169082015260608101611edd4290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906111829083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b61014d612197565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af4158015612061573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ae9190612af7565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90606401612044565b60405163e14787cb60e01b8152602060048201526015602482015274446973747269627574696f6e4f776e6572526f6c6560581b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90606401612044565b60405163e14787cb60e01b815260206004820152600f60248201526e4f7261636c654f776e6572526f6c6560881b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90606401612044565b600080516020612b2283398151915254600160401b900460ff166121ce57604051631afcd79f60e31b815260040160405180910390fd5b565b6000602082840312156121e257600080fd5b81356001600160e01b0319811681146121fa57600080fd5b9392505050565b6001600160a01b038116811461221657600080fd5b50565b60ff8116811461221657600080fd5b6000806040838503121561223b57600080fd5b823561224681612201565b9150602083013561225681612219565b809150509250929050565b60005b8381101561227c578181015183820152602001612264565b50506000910152565b6000815180845261229d816020860160208601612261565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516122f560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261233b610120840182612285565b9050828103602084015261234f8185612285565b95945050505050565b6020815260006121fa6020830184612285565b60006020828403121561237d57600080fd5b81356121fa81612201565b62ffffff8116811461221657600080fd5b6000602082840312156123ab57600080fd5b81356121fa81612388565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156123ee576123ee6123b6565b60405290565b604080519081016001600160401b03811182821017156123ee576123ee6123b6565b60405161012081016001600160401b03811182821017156123ee576123ee6123b6565b604051601f8201601f191681016001600160401b0381118282101715612461576124616123b6565b604052919050565b60006001600160401b03821115612482576124826123b6565b50601f01601f191660200190565b6000806000606084860312156124a557600080fd5b83356124b081612201565b925060208401356124c081612201565b915060408401356001600160401b038111156124db57600080fd5b8401601f810186136124ec57600080fd5b80356124ff6124fa82612469565b612439565b81815287602083850101111561251457600080fd5b816020840160208301376000602083830101528093505050509250925092565b60006020828403121561254657600080fd5b5035919050565b60006020828403121561255f57600080fd5b81356121fa81612219565b80516001600160601b038116811461177557600080fd5b805161177581612219565b8051801515811461177557600080fd5b805161177581612201565b600082601f8301126125b857600080fd5b81516125c66124fa82612469565b8181528460208386010111156125db57600080fd5b6125ec826020830160208701612261565b949350505050565b600060e0828403121561260657600080fd5b61260e6123cc565b90506126198261256a565b81526126276020830161256a565b602082015261263860408301612581565b60408201526126496060830161258c565b606082015261265a6080830161259c565b608082015261266b60a0830161259c565b60a082015260c08201516001600160401b0381111561268957600080fd5b612695848285016125a7565b60c08301525092915050565b600080604083850312156126b457600080fd5b82516001600160401b03808211156126cb57600080fd5b6126d7868387016125f4565b935060208501519150808211156126ed57600080fd5b506126fa858286016125a7565b9150509250929050565b60006020828403121561271657600080fd5b81516001600160401b0381111561272c57600080fd5b6125ec848285016125f4565b60006020828403121561274a57600080fd5b6121fa8261258c565b60006020828403121561276557600080fd5b81516121fa81612388565b600181811c9082168061278457607f821691505b6020821081036127a457634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156127bc57600080fd5b6121fa8261256a565b6000602082840312156127d757600080fd5b81516121fa81612201565b6000602082840312156127f457600080fd5b5051919050565b60006020828403121561280d57600080fd5b81516001600160401b03811681146121fa57600080fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561284c57600080fd5b81516121fa81612219565b60006040828403121561286957600080fd5b6128716123f4565b9050815181526020820151602082015292915050565b60008082840361020081121561289c57600080fd5b6101e0808212156128ac57600080fd5b6128b4612416565b91506128bf8561256a565b82526128cd6020860161256a565b60208301526128de6040860161259c565b60408301526128f08660608701612857565b60608301526129028660a08701612857565b60808301526129148660e08701612857565b60a0830152612927866101208701612857565b60c083015261293a866101608701612857565b60e083015261294d866101a08701612857565b61010083015281935061296181860161259c565b925050509250929050565b6001600160601b0383811682528251166020808301919091528201516102008201906129a360408401826001600160601b03169052565b5060408301516001600160a01b038116606084015250606083015180516080840152602081015160a0840152506080830151805160c0840152602081015160e08401525060a0830151610100612a058185018380518252602090810151910152565b60c0850151805161014086015260209081015161016086015260e086015180516101808701528101516101a086015294015180516101c0850152909301516101e09092019190915292915050565b600080600080600080868803610140811215612a6e57600080fd5b6040811215612a7c57600080fd5b50612a856123f4565b612a8e8861258c565b815260208801516020820152809650506040870151612aac81612201565b6060880151909550612abd81612201565b9350612acc8860808901612857565b9250612adb8860c08901612857565b9150612aeb886101008901612857565b90509295509295509295565b600060208284031215612b0957600080fd5b81516001600160c01b0319811681146121fa57600080fdfef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220b8009e2a1038178bef8dbc3b0112a1d6f77aa7b122df3de5ea4766c8e91bb8a464736f6c63430008140033",
622
+ "linkReferences": {
623
+ "contracts/types/Blocknumber.sol": {
624
+ "BlocknumberLib": [
625
+ {
626
+ "length": 20,
627
+ "start": 5971
628
+ }
629
+ ]
630
+ },
631
+ "contracts/types/NftId.sol": {
632
+ "NftIdLib": [
633
+ {
634
+ "length": 20,
635
+ "start": 4581
636
+ },
637
+ {
638
+ "length": 20,
639
+ "start": 5249
640
+ },
641
+ {
642
+ "length": 20,
643
+ "start": 5627
644
+ },
645
+ {
646
+ "length": 20,
647
+ "start": 6115
648
+ },
649
+ {
650
+ "length": 20,
651
+ "start": 7558
652
+ },
653
+ {
654
+ "length": 20,
655
+ "start": 7936
656
+ }
657
+ ]
658
+ },
659
+ "contracts/types/RoleId.sol": {
660
+ "RoleIdLib": [
661
+ {
662
+ "length": 20,
663
+ "start": 10432
664
+ },
665
+ {
666
+ "length": 20,
667
+ "start": 10581
668
+ },
669
+ {
670
+ "length": 20,
671
+ "start": 10677
672
+ },
673
+ {
674
+ "length": 20,
675
+ "start": 10767
676
+ }
677
+ ]
678
+ },
679
+ "contracts/types/UFixed.sol": {
680
+ "UFixedMathLib": [
681
+ {
682
+ "length": 20,
683
+ "start": 9430
684
+ }
685
+ ]
686
+ },
687
+ "contracts/types/Version.sol": {
688
+ "VersionLib": [
689
+ {
690
+ "length": 20,
691
+ "start": 633
692
+ },
693
+ {
694
+ "length": 20,
695
+ "start": 983
696
+ },
697
+ {
698
+ "length": 20,
699
+ "start": 4074
700
+ },
701
+ {
702
+ "length": 20,
703
+ "start": 6355
704
+ },
705
+ {
706
+ "length": 20,
707
+ "start": 7037
708
+ }
709
+ ]
710
+ }
711
+ },
712
+ "deployedLinkReferences": {
713
+ "contracts/types/Blocknumber.sol": {
714
+ "BlocknumberLib": [
715
+ {
716
+ "length": 20,
717
+ "start": 3769
718
+ }
719
+ ]
720
+ },
721
+ "contracts/types/NftId.sol": {
722
+ "NftIdLib": [
723
+ {
724
+ "length": 20,
725
+ "start": 2379
726
+ },
727
+ {
728
+ "length": 20,
729
+ "start": 3047
730
+ },
731
+ {
732
+ "length": 20,
733
+ "start": 3425
734
+ },
735
+ {
736
+ "length": 20,
737
+ "start": 3913
738
+ },
739
+ {
740
+ "length": 20,
741
+ "start": 5356
742
+ },
743
+ {
744
+ "length": 20,
745
+ "start": 5734
746
+ }
747
+ ]
748
+ },
749
+ "contracts/types/RoleId.sol": {
750
+ "RoleIdLib": [
751
+ {
752
+ "length": 20,
753
+ "start": 8230
754
+ },
755
+ {
756
+ "length": 20,
757
+ "start": 8379
758
+ },
759
+ {
760
+ "length": 20,
761
+ "start": 8475
762
+ },
763
+ {
764
+ "length": 20,
765
+ "start": 8565
766
+ }
767
+ ]
768
+ },
769
+ "contracts/types/UFixed.sol": {
770
+ "UFixedMathLib": [
771
+ {
772
+ "length": 20,
773
+ "start": 7228
774
+ }
775
+ ]
776
+ },
777
+ "contracts/types/Version.sol": {
778
+ "VersionLib": [
779
+ {
780
+ "length": 20,
781
+ "start": 1872
782
+ },
783
+ {
784
+ "length": 20,
785
+ "start": 4153
786
+ },
787
+ {
788
+ "length": 20,
789
+ "start": 4835
790
+ }
791
+ ]
792
+ }
793
+ }
794
+ }