@etherisc/gif-next 0.0.2-f99f1d2-109 → 0.0.2-fb8d07b-779

Sign up to get free protection for your applications and to get access to all the features.
Files changed (388) hide show
  1. package/README.md +268 -7
  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} +171 -143
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +618 -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} +136 -111
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/{instance/policy/IPolicy.sol/IPolicyModule.json → components/IPoolComponent.sol/IPoolComponent.json} +124 -129
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +531 -77
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +526 -97
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
  22. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
  24. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
  26. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
  28. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  30. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  32. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  38. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  40. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  41. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  42. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  43. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  44. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  45. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  46. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  47. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  48. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  49. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  50. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
  51. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
  52. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
  53. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
  54. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
  55. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
  56. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  57. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +386 -1112
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +2794 -980
  62. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
  64. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
  66. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  67. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +891 -0
  68. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +492 -0
  70. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  71. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +540 -0
  72. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  73. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
  74. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  75. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  76. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  77. package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
  78. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  79. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
  80. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  81. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  82. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
  84. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  85. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  86. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  87. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
  88. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  89. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  90. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  92. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  93. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
  94. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
  96. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  97. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
  98. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
  100. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +448 -0
  102. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
  104. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
  106. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
  108. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
  110. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +855 -0
  112. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +460 -0
  114. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  115. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
  116. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  117. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +589 -24
  118. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  119. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +853 -0
  120. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  121. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  122. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  123. package/artifacts/contracts/registry/Registry.sol/Registry.json +741 -50
  124. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  125. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1237 -0
  126. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +525 -0
  128. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  129. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
  130. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  131. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  132. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  133. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  134. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  135. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  136. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  137. package/artifacts/contracts/{components/Component.sol/Component.json → shared/IRegisterable.sol/IRegisterable.json} +98 -102
  138. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  139. package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
  140. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  141. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  142. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
  144. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  145. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
  146. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
  148. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
  150. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  151. package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
  152. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  153. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  154. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  155. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  156. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  157. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  158. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  159. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  160. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  161. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
  162. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  163. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  164. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  165. package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
  166. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  168. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  170. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  171. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  172. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  173. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  174. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  175. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  176. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  177. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  178. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  179. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  180. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  181. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  182. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  183. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  184. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  185. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  186. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  187. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  188. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  189. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  190. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  191. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  192. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  193. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  194. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  196. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  198. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  200. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  201. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  202. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  203. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
  204. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  206. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  207. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  208. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  209. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  210. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  212. package/contracts/components/BaseComponent.sol +91 -0
  213. package/contracts/components/Distribution.sol +160 -0
  214. package/contracts/components/IBaseComponent.sol +25 -0
  215. package/contracts/components/IDistributionComponent.sol +44 -0
  216. package/contracts/components/IPoolComponent.sol +62 -0
  217. package/contracts/components/IProductComponent.sol +35 -0
  218. package/contracts/components/Pool.sol +216 -25
  219. package/contracts/components/Product.sol +254 -46
  220. package/contracts/experiment/cloning/Cloner.sol +47 -0
  221. package/contracts/instance/AccessManagedSimple.sol +115 -0
  222. package/contracts/instance/AccessManagerSimple.sol +692 -0
  223. package/contracts/instance/IAccessManagerSimple.sol +391 -0
  224. package/contracts/instance/IInstance.sol +38 -24
  225. package/contracts/instance/IInstanceService.sol +30 -0
  226. package/contracts/instance/Instance.sol +423 -52
  227. package/contracts/instance/InstanceAccessManager.sol +288 -0
  228. package/contracts/instance/InstanceReader.sol +306 -0
  229. package/contracts/instance/InstanceService.sol +182 -0
  230. package/contracts/instance/InstanceServiceManager.sol +56 -0
  231. package/contracts/instance/base/ComponentServiceBase.sol +125 -0
  232. package/contracts/instance/base/IInstanceBase.sol +23 -0
  233. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  234. package/contracts/instance/base/ILifecycle.sol +30 -0
  235. package/contracts/instance/base/KeyValueStore.sol +172 -0
  236. package/contracts/instance/base/Lifecycle.sol +100 -0
  237. package/contracts/instance/module/IAccess.sol +38 -0
  238. package/contracts/instance/module/IBundle.sol +20 -0
  239. package/contracts/instance/module/IDistribution.sol +39 -0
  240. package/contracts/instance/module/IPolicy.sol +45 -0
  241. package/contracts/instance/module/IRisk.sol +11 -0
  242. package/contracts/instance/module/ISetup.sol +44 -0
  243. package/contracts/instance/module/ITreasury.sol +23 -0
  244. package/contracts/instance/service/ComponentOwnerService.sol +317 -0
  245. package/contracts/instance/service/DistributionService.sol +87 -0
  246. package/contracts/instance/service/DistributionServiceManager.sol +53 -0
  247. package/contracts/instance/service/IComponentOwnerService.sol +20 -0
  248. package/contracts/instance/service/IDistributionService.sol +12 -0
  249. package/contracts/instance/service/IPoolService.sol +37 -0
  250. package/contracts/instance/service/IProductService.sol +107 -0
  251. package/contracts/instance/service/PoolService.sol +193 -0
  252. package/contracts/instance/service/PoolServiceManager.sol +53 -0
  253. package/contracts/registry/ChainNft.sol +129 -62
  254. package/contracts/registry/IRegistry.sol +70 -43
  255. package/contracts/registry/IRegistryService.sol +33 -0
  256. package/contracts/registry/ITransferInterceptor.sol +6 -0
  257. package/contracts/registry/Registry.sol +432 -125
  258. package/contracts/registry/RegistryService.sol +399 -0
  259. package/contracts/registry/RegistryServiceManager.sol +80 -0
  260. package/contracts/registry/TokenRegistry.sol +111 -0
  261. package/contracts/shared/ContractDeployerLib.sol +72 -0
  262. package/contracts/shared/ERC165.sol +25 -0
  263. package/contracts/shared/INftOwnable.sol +22 -0
  264. package/contracts/shared/IRegisterable.sol +17 -0
  265. package/contracts/shared/IService.sol +15 -0
  266. package/contracts/shared/IVersionable.sol +96 -0
  267. package/contracts/shared/NftOwnable.sol +136 -0
  268. package/contracts/shared/ProxyManager.sol +94 -0
  269. package/contracts/shared/Registerable.sol +90 -0
  270. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  271. package/contracts/shared/Service.sol +55 -0
  272. package/contracts/shared/TokenHandler.sol +27 -0
  273. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  274. package/contracts/shared/Versionable.sol +147 -0
  275. package/contracts/test/TestFee.sol +25 -0
  276. package/contracts/test/TestRegisterable.sol +18 -0
  277. package/contracts/test/TestRoleId.sol +14 -0
  278. package/contracts/test/TestService.sol +24 -0
  279. package/contracts/test/TestToken.sol +26 -0
  280. package/contracts/test/TestVersion.sol +44 -0
  281. package/contracts/test/TestVersionable.sol +17 -0
  282. package/contracts/test/Usdc.sol +26 -0
  283. package/contracts/types/AddressSet.sol +58 -0
  284. package/contracts/types/DistributorType.sol +55 -0
  285. package/contracts/types/Fee.sol +44 -20
  286. package/contracts/types/Key32.sol +50 -0
  287. package/contracts/types/NftId.sol +22 -1
  288. package/contracts/types/NftIdSet.sol +60 -0
  289. package/contracts/types/NumberId.sol +52 -0
  290. package/contracts/types/ObjectType.sol +60 -15
  291. package/contracts/types/Referral.sol +85 -0
  292. package/contracts/types/RiskId.sol +43 -0
  293. package/contracts/types/RoleId.sol +89 -0
  294. package/contracts/types/StateId.sol +18 -4
  295. package/contracts/types/Timestamp.sol +29 -4
  296. package/contracts/types/UFixed.sol +150 -31
  297. package/contracts/types/Version.sol +107 -0
  298. package/package.json +12 -5
  299. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  300. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  301. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  302. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  303. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  304. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
  305. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  306. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  307. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  308. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  309. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  310. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  311. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  312. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  313. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  314. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  315. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  316. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
  317. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  318. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  319. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
  320. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  321. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
  322. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  323. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
  324. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  325. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  326. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  327. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
  328. package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
  329. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
  330. package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
  331. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  332. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  333. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  334. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
  335. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  336. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  337. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
  338. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  339. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
  340. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  341. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  342. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  343. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
  344. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  345. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  346. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  347. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
  348. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  349. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  350. package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
  351. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  352. package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
  353. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  354. package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
  355. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  356. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  357. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  358. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  359. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  360. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  361. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  362. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  363. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  364. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  365. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  366. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  367. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  368. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
  369. package/contracts/components/Component.sol +0 -77
  370. package/contracts/components/IPool.sol +0 -15
  371. package/contracts/components/IProduct.sol +0 -16
  372. package/contracts/experiment/statemachine/README.md +0 -112
  373. package/contracts/instance/access/Access.sol +0 -165
  374. package/contracts/instance/access/IAccess.sol +0 -63
  375. package/contracts/instance/component/ComponentModule.sol +0 -274
  376. package/contracts/instance/component/IComponent.sol +0 -74
  377. package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
  378. package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
  379. package/contracts/instance/policy/IPolicy.sol +0 -50
  380. package/contracts/instance/policy/PolicyModule.sol +0 -114
  381. package/contracts/instance/pool/IPoolModule.sol +0 -23
  382. package/contracts/instance/pool/PoolModule.sol +0 -81
  383. package/contracts/instance/product/IProductService.sol +0 -36
  384. package/contracts/instance/product/ProductService.sol +0 -136
  385. package/contracts/instance/treasury/ITreasury.sol +0 -91
  386. package/contracts/instance/treasury/TokenHandler.sol +0 -24
  387. package/contracts/instance/treasury/TreasuryModule.sol +0 -168
  388. package/contracts/registry/IChainNft.sol +0 -21
@@ -0,0 +1,827 @@
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": "uint64"
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": "distribution",
545
+ "type": "address"
546
+ }
547
+ ],
548
+ "name": "registerDistribution",
549
+ "outputs": [
550
+ {
551
+ "internalType": "NftId",
552
+ "name": "nftId",
553
+ "type": "uint96"
554
+ }
555
+ ],
556
+ "stateMutability": "nonpayable",
557
+ "type": "function"
558
+ },
559
+ {
560
+ "inputs": [
561
+ {
562
+ "internalType": "contract IBaseComponent",
563
+ "name": "pool",
564
+ "type": "address"
565
+ }
566
+ ],
567
+ "name": "registerPool",
568
+ "outputs": [
569
+ {
570
+ "internalType": "NftId",
571
+ "name": "nftId",
572
+ "type": "uint96"
573
+ }
574
+ ],
575
+ "stateMutability": "nonpayable",
576
+ "type": "function"
577
+ },
578
+ {
579
+ "inputs": [
580
+ {
581
+ "internalType": "contract IBaseComponent",
582
+ "name": "product",
583
+ "type": "address"
584
+ }
585
+ ],
586
+ "name": "registerProduct",
587
+ "outputs": [
588
+ {
589
+ "internalType": "NftId",
590
+ "name": "nftId",
591
+ "type": "uint96"
592
+ }
593
+ ],
594
+ "stateMutability": "nonpayable",
595
+ "type": "function"
596
+ },
597
+ {
598
+ "inputs": [
599
+ {
600
+ "internalType": "bytes4",
601
+ "name": "interfaceId",
602
+ "type": "bytes4"
603
+ }
604
+ ],
605
+ "name": "supportsInterface",
606
+ "outputs": [
607
+ {
608
+ "internalType": "bool",
609
+ "name": "",
610
+ "type": "bool"
611
+ }
612
+ ],
613
+ "stateMutability": "view",
614
+ "type": "function"
615
+ },
616
+ {
617
+ "inputs": [
618
+ {
619
+ "internalType": "contract IBaseComponent",
620
+ "name": "component",
621
+ "type": "address"
622
+ }
623
+ ],
624
+ "name": "unlock",
625
+ "outputs": [],
626
+ "stateMutability": "nonpayable",
627
+ "type": "function"
628
+ },
629
+ {
630
+ "inputs": [
631
+ {
632
+ "internalType": "address",
633
+ "name": "implementation",
634
+ "type": "address"
635
+ },
636
+ {
637
+ "internalType": "address",
638
+ "name": "activatedBy",
639
+ "type": "address"
640
+ },
641
+ {
642
+ "internalType": "bytes",
643
+ "name": "data",
644
+ "type": "bytes"
645
+ }
646
+ ],
647
+ "name": "upgrade",
648
+ "outputs": [],
649
+ "stateMutability": "nonpayable",
650
+ "type": "function"
651
+ }
652
+ ],
653
+ "bytecode": "0x60806040523480156200001157600080fd5b5060405162003103380380620031038339810160408190526200003491620006b2565b620000656301ffc9a760e01b6000908152602052600080516020620030e3833981519152805460ff19166001179055565b600280546001600160a01b0319163317905562000081620000d2565b6200008d838262000186565b6327535ccf60e01b60009081526020527fdf85129a843b1189784b76e4b72b0cde3e9c7821233b206b7eed6ac5a2fce6f7805460ff191660011790555050506200095c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620001235760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001835780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6000620001c360408051808201909152601581527f436f6d706f6e656e744f776e6572536572766963650000000000000000000000602082015290565b620001cd62000257565b604051602001620001e0929190620006fc565b60408051601f1981840301815291905290506000620001ff84620002e4565b90506000620002148583603c84888862000358565b631b4612f160e31b60009081526020527ffc58a5a01198e68c5a5d0bcd463f9ab550fc4337b1df271aed6dbb33d25fef25805460ff191660011790555050505050565b6000620002636200045a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015620002b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002df919062000756565b905090565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa1580156200032c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000352919062000782565b92915050565b620003896301ffc9a760e01b6000908152602052600080516020620030e3833981519152805460ff19166001179055565b620003958287620004e2565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d01000000000000000000000000008615150217815590506001810162000414838262000845565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015620004bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002df919062000911565b600280546001600160a01b0319166001600160a01b03841617905562000508816200050c565b5050565b6001546001600160a01b0316156200054b5760015460405163fcdbf2d960e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b6001600160a01b038116620005735760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620005ab5760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000542565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa92505050801562000628575060408051601f3d908101601f19168201909252620006259181019062000938565b60015b620006525760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000542565b80620005085760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000542565b80516001600160a01b03811681146200069557600080fd5b919050565b80516001600160601b03811681146200069557600080fd5b600080600060608486031215620006c857600080fd5b620006d3846200067d565b9250620006e3602085016200069a565b9150620006f3604085016200067d565b90509250925092565b604081526000835180604084015260005b818110156200072c57602081870181015160608684010152016200070d565b506000606082850101526060601f19601f83011684010191505060ff831660208301529392505050565b6000602082840312156200076957600080fd5b815160ff811681146200077b57600080fd5b9392505050565b6000602082840312156200079557600080fd5b6200077b826200069a565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007cb57607f821691505b602082108103620007ec57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200084057600081815260208120601f850160051c810160208610156200081b5750805b601f850160051c820191505b818110156200083c5782815560010162000827565b5050505b505050565b81516001600160401b03811115620008615762000861620007a0565b6200087981620008728454620007b6565b84620007f2565b602080601f831160018114620008b15760008415620008985750858301515b600019600386901b1c1916600185901b1785556200083c565b600085815260208120601f198616915b82811015620008e257888601518255948401946001909101908401620008c1565b5085821015620009015787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200092457600080fd5b815162ffffff811681146200077b57600080fd5b6000602082840312156200094b57600080fd5b815180151581146200077b57600080fd5b612777806200096c6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806387dbfec3116100de578063b3c6501511610097578063cde749f411610071578063cde749f4146104e3578063cf7a1d77146104fd578063f435f5a714610290578063fc0ae0541461051057600080fd5b8063b3c65015146104a8578063b88da759146104c8578063caf4e3d4146104db57600080fd5b806387dbfec31461040c578063893d20e81461041f578063946dfcfe14610427578063a3f4df7e1461044e578063a745e3df14610482578063abd908461461049557600080fd5b80632d46f5df116101305780632d46f5df146102655780632f6c493c146102905780634d459c90146102a35780634f421333146103bc5780635ab1bd53146103cf578063644c45e0146103f457600080fd5b806301ffc9a7146101785780630d8e6e2c146101ba5780630fec111c146101d6578063138461e0146101ec57806317d7de7c146101f65780631eff4b2214610230575b600080fd5b6101a5610186366004611ca3565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101c2610523565b60405162ffffff90911681526020016101b1565b6101de6105ad565b6040516101b1929190611d24565b6101f461072f565b005b604080518082019091526015815274436f6d706f6e656e744f776e65725365727669636560581b60208201525b6040516101b19190611dcb565b6102577f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101b1565b610278610273366004611df6565b610951565b6040516001600160601b0390911681526020016101b1565b6101f461029e366004611df6565b610a9b565b61035f6102b1366004611e24565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061272283398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016101b1565b6101a56103ca366004611e24565b610d54565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101b1565b600154600160a01b90046001600160601b0316610278565b61027861041a366004611df6565b610e07565b6103dc610f41565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610257565b61022360405180604001604052806015815260200174436f6d706f6e656e744f776e65725365727669636560581b81525081565b6101f4610490366004611f1c565b61105a565b6102786104a3366004611df6565b6111b4565b6104b06112f3565b6040516001600160401b0390911681526020016101b1565b6101c26104d6366004611fc0565b611314565b6103dc611365565b6104eb611420565b60405160ff90911681526020016101b1565b6101f461050b366004611f1c565b6114a3565b6104b061051e366004611fe8565b6115ac565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610584573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a89190612005565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806106306001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610678610f41565b6001600160a01b0316815260200182600101805461069590612022565b80601f01602080910402602001604051908101604052809291908181526020018280546106c190612022565b801561070e5780601f106106e35761010080835404028352916020019161070e565b820191906000526020600020905b8154815290600101906020018083116106f157829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b5919061206c565b156107fc576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166108255760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561086e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610892919061206c565b6108ba576040516372657a5160e01b81526001600160a01b03821660048201526024016107f3565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610904573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610928919061209e565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080600061095e611365565b604051635d96628960e01b81526001600160a01b0386811660048301523360248301529190911690635d966289906044016000604051808303816000875af11580156109ae573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109d691908101906121c9565b6020820151919350915060006109f46001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015610a43573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a6b919081019061222c565b608001519050806000610a7e606e6115ac565b9050610a90866000015185848861161a565b505050505050919050565b806000610ab06001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038481166004830152919091169063d272ac1e90602401602060405180830381865afa158015610af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1c919061209e565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610b77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9b919061206c565b610be75760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e0060448201526064016107f3565b6000836001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4b9190612260565b90506000846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb1919061209e565b9050600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660646040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610d27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4b919061227d565b50505050505050565b60008060008051602061272283398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e00919061227d565b1192915050565b6000806000610e14611365565b604051638fbc2d8160e01b81526001600160a01b0386811660048301523360248301529190911690638fbc2d81906044016000604051808303816000875af1158015610e64573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e8c91908101906121c9565b602082015191935091506000610eaa6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015610ef9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f21919081019061222c565b608001519050806000610f3460786115ac565b9050505050505050919050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610fa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fca919061206c565b1561104a57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015611026573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a89190612260565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c61107c610523565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156110bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e091906122ab565b6000805160206127028339815191528054600160401b900460ff1680611113575080546001600160401b03808416911610155b156111315760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561115c858561169a565b61116583611939565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60008060006111c1611365565b604051637286e5e560e01b81526001600160a01b0386811660048301523360248301529190911690637286e5e5906044016000604051808303816000875af1158015611211573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261123991908101906121c9565b6020820151919350915060006112576001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156112a6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112ce919081019061222c565b6080015190508060006112e1608c6115ac565b9050610a908660000151858488611941565b60006105a8600080516020612702833981519152546001600160401b031690565b60006000805160206127228339815191526001018281548110611339576113396122c8565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008061137a6001546001600160a01b031690565b6001600160a01b031663a3bcd81d611390611420565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa1580156113f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141a9190612260565b92915050565b600061142a610523565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561147f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a891906122de565b6000805160206127028339815191528054600160401b810460ff1615906001600160401b03166000811580156114d65750825b90506000826001600160401b031660011480156114f25750303b155b905081158015611500575080155b1561151e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561154857845460ff60401b1916600160401b1785555b611552888861169a565b61155c8787611939565b83156115a257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b60006115c082606e5b60ff90811691161490565b156115cd5761141a611b3f565b6115d882608c6115b5565b156115e55761141a611bb8565b6115f08260786115b5565b156115fd5761141a611bf4565b6116088260826115b5565b156116155761141a611c2f565b919050565b6000818060200190518101906116309190612349565b604051637353912760e01b81529091506001600160a01b03841690637353912790611661908890859060040161241a565b600060405180830381600087803b15801561167b57600080fd5b505af115801561168f573d6000803e3d6000fd5b505050505050505050565b6116a2611c6a565b60008051602061272283398151915260006116d2600080516020612702833981519152546001600160401b031690565b905060006116de610523565b9050816001600160401b031660010361170b5760028301805462ffffff191662ffffff8316179055611759565b600283015462ffffff908116908216116117595760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b60448201526064016107f3565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af415801561180d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118319190612518565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906111a59083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610173611c6a565b60008060008380602001905181019061195a919061253f565b50505092509250925060006119776001546001600160a01b031690565b90506001600160a01b0383166119a0576040516361a02c4f60e11b815260040160405180910390fd5b6040516308b09a5f60e41b81526001600160a01b03838116600483015260009190831690638b09a5f090602401600060405180830381865afa1580156119ea573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a12919081019061222c565b60400151905060ff8116603214611a3c5760405163c1ab6dc160e01b815260040160405180910390fd5b604085810151905163753b14a560e01b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__9063753b14a590602401602060405180830381865af4158015611a92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab6919061206c565b15611ad4576040516313e89cb760e31b815260040160405180910390fd5b6040516357f9680560e01b81526001600160a01b038816906357f9680590611b02908c90899060040161264f565b600060405180830381600087803b158015611b1c57600080fd5b505af1158015611b30573d6000803e3d6000fd5b50505050505050505050505050565b6040516368aebf7b60e01b8152610190600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af4158015611b94573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a891906122ab565b6040516368aebf7b60e01b815261012c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401611b77565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401611b77565b6040516368aebf7b60e01b815260c8600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401611b77565b60008051602061270283398151915254600160401b900460ff16611ca157604051631afcd79f60e31b815260040160405180910390fd5b565b600060208284031215611cb557600080fd5b81356001600160e01b031981168114611ccd57600080fd5b9392505050565b60005b83811015611cef578181015183820152602001611cd7565b50506000910152565b60008151808452611d10816020860160208601611cd4565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151611d6860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152611dae610120840182611cf8565b90508281036020840152611dc28185611cf8565b95945050505050565b602081526000611ccd6020830184611cf8565b6001600160a01b0381168114611df357600080fd5b50565b600060208284031215611e0857600080fd5b8135611ccd81611dde565b62ffffff81168114611df357600080fd5b600060208284031215611e3657600080fd5b8135611ccd81611e13565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715611e7957611e79611e41565b60405290565b60405161014081016001600160401b0381118282101715611e7957611e79611e41565b60405161010081016001600160401b0381118282101715611e7957611e79611e41565b604051601f8201601f191681016001600160401b0381118282101715611eed57611eed611e41565b604052919050565b60006001600160401b03821115611f0e57611f0e611e41565b50601f01601f191660200190565b600080600060608486031215611f3157600080fd5b8335611f3c81611dde565b92506020840135611f4c81611dde565b915060408401356001600160401b03811115611f6757600080fd5b8401601f81018613611f7857600080fd5b8035611f8b611f8682611ef5565b611ec5565b818152876020838501011115611fa057600080fd5b816020840160208301376000602083830101528093505050509250925092565b600060208284031215611fd257600080fd5b5035919050565b60ff81168114611df357600080fd5b600060208284031215611ffa57600080fd5b8135611ccd81611fd9565b60006020828403121561201757600080fd5b8151611ccd81611e13565b600181811c9082168061203657607f821691505b60208210810361205657634e487b7160e01b600052602260045260246000fd5b50919050565b8051801515811461161557600080fd5b60006020828403121561207e57600080fd5b611ccd8261205c565b80516001600160601b038116811461161557600080fd5b6000602082840312156120b057600080fd5b611ccd82612087565b805161161581611fd9565b805161161581611dde565b600082601f8301126120e057600080fd5b81516120ee611f8682611ef5565b81815284602083860101111561210357600080fd5b612114826020830160208701611cd4565b949350505050565b600060e0828403121561212e57600080fd5b612136611e57565b905061214182612087565b815261214f60208301612087565b6020820152612160604083016120b9565b60408201526121716060830161205c565b6060820152612182608083016120c4565b608082015261219360a083016120c4565b60a082015260c08201516001600160401b038111156121b157600080fd5b6121bd848285016120cf565b60c08301525092915050565b600080604083850312156121dc57600080fd5b82516001600160401b03808211156121f357600080fd5b6121ff8683870161211c565b9350602085015191508082111561221557600080fd5b50612222858286016120cf565b9150509250929050565b60006020828403121561223e57600080fd5b81516001600160401b0381111561225457600080fd5b6121148482850161211c565b60006020828403121561227257600080fd5b8151611ccd81611dde565b60006020828403121561228f57600080fd5b5051919050565b6001600160401b0381168114611df357600080fd5b6000602082840312156122bd57600080fd5b8151611ccd81612296565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156122f057600080fd5b8151611ccd81611fd9565b60006040828403121561230d57600080fd5b604051604081018181106001600160401b038211171561232f5761232f611e41565b604052825181526020928301519281019290925250919050565b6000610200828403121561235c57600080fd5b612364611e7f565b61236d836120c4565b815261237b602084016120c4565b602082015261238c60408401612087565b604082015261239d60608401612087565b60608201526123af84608085016122fb565b60808201526123c18460c085016122fb565b60a08201526101006123d5858286016122fb565b60c08301526123e88561014086016122fb565b60e08301526123fb8561018086016122fb565b9082015261240d846101c085016122fb565b6101208201529392505050565b6001600160601b038316815281516001600160a01b03166020820152610220810160208301516001600160a01b03811660408401525060408301516001600160601b03811660608401525060608301516001600160601b0381166080840152506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c08301516101206124c78185018380518252602090810151910152565b60e0850151805161016086015260209081015161018086015261010086015180516101a08701528101516101c08601529085015180516101e08601529081015161020085015290505b509392505050565b60006020828403121561252a57600080fd5b815164ffffffffff81168114611ccd57600080fd5b60008060008060008086880361026081121561255a57600080fd5b6101608082121561256a57600080fd5b612572611ea2565b915061257d89612087565b825261258b60208a016120c4565b6020830152604089015160408301526125a78a60608b016122fb565b60608301526125b98a60a08b016122fb565b60808301526125cb8a60e08b016122fb565b60a08301526125dd6101208a0161205c565b60c08301526125ef6101408a016120c4565b60e0830152819750612602818a016120c4565b9650505061261361018088016120c4565b9350612623886101a089016122fb565b9250612633886101e089016122fb565b91506126438861022089016122fb565b90509295509295509295565b6000610180820190506001600160601b0380851683528084511660208401525060018060a01b0360208401511660408301526040830151606083015260608301516126a7608084018280518252602090810151910152565b506080830151805160c0840152602081015160e08401525060a0830151805161010084015260208101516101208401525060c08301518015156101408401525060e08301516001600160a01b03811661016084015261251056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122034ef0f5c7a8e1f36dbf3d80bac3e1b37d59b93f8906505d7a2d3de1c8312579064736f6c6343000814003367be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5",
654
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101735760003560e01c806387dbfec3116100de578063b3c6501511610097578063cde749f411610071578063cde749f4146104e3578063cf7a1d77146104fd578063f435f5a714610290578063fc0ae0541461051057600080fd5b8063b3c65015146104a8578063b88da759146104c8578063caf4e3d4146104db57600080fd5b806387dbfec31461040c578063893d20e81461041f578063946dfcfe14610427578063a3f4df7e1461044e578063a745e3df14610482578063abd908461461049557600080fd5b80632d46f5df116101305780632d46f5df146102655780632f6c493c146102905780634d459c90146102a35780634f421333146103bc5780635ab1bd53146103cf578063644c45e0146103f457600080fd5b806301ffc9a7146101785780630d8e6e2c146101ba5780630fec111c146101d6578063138461e0146101ec57806317d7de7c146101f65780631eff4b2214610230575b600080fd5b6101a5610186366004611ca3565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101c2610523565b60405162ffffff90911681526020016101b1565b6101de6105ad565b6040516101b1929190611d24565b6101f461072f565b005b604080518082019091526015815274436f6d706f6e656e744f776e65725365727669636560581b60208201525b6040516101b19190611dcb565b6102577f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101b1565b610278610273366004611df6565b610951565b6040516001600160601b0390911681526020016101b1565b6101f461029e366004611df6565b610a9b565b61035f6102b1366004611e24565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061272283398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016101b1565b6101a56103ca366004611e24565b610d54565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101b1565b600154600160a01b90046001600160601b0316610278565b61027861041a366004611df6565b610e07565b6103dc610f41565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610257565b61022360405180604001604052806015815260200174436f6d706f6e656e744f776e65725365727669636560581b81525081565b6101f4610490366004611f1c565b61105a565b6102786104a3366004611df6565b6111b4565b6104b06112f3565b6040516001600160401b0390911681526020016101b1565b6101c26104d6366004611fc0565b611314565b6103dc611365565b6104eb611420565b60405160ff90911681526020016101b1565b6101f461050b366004611f1c565b6114a3565b6104b061051e366004611fe8565b6115ac565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610584573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a89190612005565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806106306001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610678610f41565b6001600160a01b0316815260200182600101805461069590612022565b80601f01602080910402602001604051908101604052809291908181526020018280546106c190612022565b801561070e5780601f106106e35761010080835404028352916020019161070e565b820191906000526020600020905b8154815290600101906020018083116106f157829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b5919061206c565b156107fc576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166108255760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa15801561086e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610892919061206c565b6108ba576040516372657a5160e01b81526001600160a01b03821660048201526024016107f3565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610904573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610928919061209e565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080600061095e611365565b604051635d96628960e01b81526001600160a01b0386811660048301523360248301529190911690635d966289906044016000604051808303816000875af11580156109ae573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109d691908101906121c9565b6020820151919350915060006109f46001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015610a43573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a6b919081019061222c565b608001519050806000610a7e606e6115ac565b9050610a90866000015185848861161a565b505050505050919050565b806000610ab06001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038481166004830152919091169063d272ac1e90602401602060405180830381865afa158015610af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1c919061209e565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610b77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9b919061206c565b610be75760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434f532d3030313a434f4d504f4e454e545f554e4b4e4f574e0060448201526064016107f3565b6000836001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4b9190612260565b90506000846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb1919061209e565b9050600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660646040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015610d27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4b919061227d565b50505050505050565b60008060008051602061272283398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e00919061227d565b1192915050565b6000806000610e14611365565b604051638fbc2d8160e01b81526001600160a01b0386811660048301523360248301529190911690638fbc2d81906044016000604051808303816000875af1158015610e64573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e8c91908101906121c9565b602082015191935091506000610eaa6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015610ef9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f21919081019061222c565b608001519050806000610f3460786115ac565b9050505050505050919050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610fa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fca919061206c565b1561104a57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015611026573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a89190612260565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c61107c610523565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156110bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e091906122ab565b6000805160206127028339815191528054600160401b900460ff1680611113575080546001600160401b03808416911610155b156111315760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561115c858561169a565b61116583611939565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60008060006111c1611365565b604051637286e5e560e01b81526001600160a01b0386811660048301523360248301529190911690637286e5e5906044016000604051808303816000875af1158015611211573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261123991908101906121c9565b6020820151919350915060006112576001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156112a6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112ce919081019061222c565b6080015190508060006112e1608c6115ac565b9050610a908660000151858488611941565b60006105a8600080516020612702833981519152546001600160401b031690565b60006000805160206127228339815191526001018281548110611339576113396122c8565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008061137a6001546001600160a01b031690565b6001600160a01b031663a3bcd81d611390611420565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa1580156113f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141a9190612260565b92915050565b600061142a610523565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561147f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a891906122de565b6000805160206127028339815191528054600160401b810460ff1615906001600160401b03166000811580156114d65750825b90506000826001600160401b031660011480156114f25750303b155b905081158015611500575080155b1561151e5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561154857845460ff60401b1916600160401b1785555b611552888861169a565b61155c8787611939565b83156115a257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b60006115c082606e5b60ff90811691161490565b156115cd5761141a611b3f565b6115d882608c6115b5565b156115e55761141a611bb8565b6115f08260786115b5565b156115fd5761141a611bf4565b6116088260826115b5565b156116155761141a611c2f565b919050565b6000818060200190518101906116309190612349565b604051637353912760e01b81529091506001600160a01b03841690637353912790611661908890859060040161241a565b600060405180830381600087803b15801561167b57600080fd5b505af115801561168f573d6000803e3d6000fd5b505050505050505050565b6116a2611c6a565b60008051602061272283398151915260006116d2600080516020612702833981519152546001600160401b031690565b905060006116de610523565b9050816001600160401b031660010361170b5760028301805462ffffff191662ffffff8316179055611759565b600283015462ffffff908116908216116117595760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b60448201526064016107f3565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af415801561180d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118319190612518565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906111a59083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b610173611c6a565b60008060008380602001905181019061195a919061253f565b50505092509250925060006119776001546001600160a01b031690565b90506001600160a01b0383166119a0576040516361a02c4f60e11b815260040160405180910390fd5b6040516308b09a5f60e41b81526001600160a01b03838116600483015260009190831690638b09a5f090602401600060405180830381865afa1580156119ea573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a12919081019061222c565b60400151905060ff8116603214611a3c5760405163c1ab6dc160e01b815260040160405180910390fd5b604085810151905163753b14a560e01b8152600481019190915273__$5ac3274b8cf1e01ea223bf093142af05b0$__9063753b14a590602401602060405180830381865af4158015611a92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab6919061206c565b15611ad4576040516313e89cb760e31b815260040160405180910390fd5b6040516357f9680560e01b81526001600160a01b038816906357f9680590611b02908c90899060040161264f565b600060405180830381600087803b158015611b1c57600080fd5b505af1158015611b30573d6000803e3d6000fd5b50505050505050505050505050565b6040516368aebf7b60e01b8152610190600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af4158015611b94573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a891906122ab565b6040516368aebf7b60e01b815261012c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401611b77565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401611b77565b6040516368aebf7b60e01b815260c8600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401611b77565b60008051602061270283398151915254600160401b900460ff16611ca157604051631afcd79f60e31b815260040160405180910390fd5b565b600060208284031215611cb557600080fd5b81356001600160e01b031981168114611ccd57600080fd5b9392505050565b60005b83811015611cef578181015183820152602001611cd7565b50506000910152565b60008151808452611d10816020860160208601611cd4565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151611d6860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152611dae610120840182611cf8565b90508281036020840152611dc28185611cf8565b95945050505050565b602081526000611ccd6020830184611cf8565b6001600160a01b0381168114611df357600080fd5b50565b600060208284031215611e0857600080fd5b8135611ccd81611dde565b62ffffff81168114611df357600080fd5b600060208284031215611e3657600080fd5b8135611ccd81611e13565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715611e7957611e79611e41565b60405290565b60405161014081016001600160401b0381118282101715611e7957611e79611e41565b60405161010081016001600160401b0381118282101715611e7957611e79611e41565b604051601f8201601f191681016001600160401b0381118282101715611eed57611eed611e41565b604052919050565b60006001600160401b03821115611f0e57611f0e611e41565b50601f01601f191660200190565b600080600060608486031215611f3157600080fd5b8335611f3c81611dde565b92506020840135611f4c81611dde565b915060408401356001600160401b03811115611f6757600080fd5b8401601f81018613611f7857600080fd5b8035611f8b611f8682611ef5565b611ec5565b818152876020838501011115611fa057600080fd5b816020840160208301376000602083830101528093505050509250925092565b600060208284031215611fd257600080fd5b5035919050565b60ff81168114611df357600080fd5b600060208284031215611ffa57600080fd5b8135611ccd81611fd9565b60006020828403121561201757600080fd5b8151611ccd81611e13565b600181811c9082168061203657607f821691505b60208210810361205657634e487b7160e01b600052602260045260246000fd5b50919050565b8051801515811461161557600080fd5b60006020828403121561207e57600080fd5b611ccd8261205c565b80516001600160601b038116811461161557600080fd5b6000602082840312156120b057600080fd5b611ccd82612087565b805161161581611fd9565b805161161581611dde565b600082601f8301126120e057600080fd5b81516120ee611f8682611ef5565b81815284602083860101111561210357600080fd5b612114826020830160208701611cd4565b949350505050565b600060e0828403121561212e57600080fd5b612136611e57565b905061214182612087565b815261214f60208301612087565b6020820152612160604083016120b9565b60408201526121716060830161205c565b6060820152612182608083016120c4565b608082015261219360a083016120c4565b60a082015260c08201516001600160401b038111156121b157600080fd5b6121bd848285016120cf565b60c08301525092915050565b600080604083850312156121dc57600080fd5b82516001600160401b03808211156121f357600080fd5b6121ff8683870161211c565b9350602085015191508082111561221557600080fd5b50612222858286016120cf565b9150509250929050565b60006020828403121561223e57600080fd5b81516001600160401b0381111561225457600080fd5b6121148482850161211c565b60006020828403121561227257600080fd5b8151611ccd81611dde565b60006020828403121561228f57600080fd5b5051919050565b6001600160401b0381168114611df357600080fd5b6000602082840312156122bd57600080fd5b8151611ccd81612296565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156122f057600080fd5b8151611ccd81611fd9565b60006040828403121561230d57600080fd5b604051604081018181106001600160401b038211171561232f5761232f611e41565b604052825181526020928301519281019290925250919050565b6000610200828403121561235c57600080fd5b612364611e7f565b61236d836120c4565b815261237b602084016120c4565b602082015261238c60408401612087565b604082015261239d60608401612087565b60608201526123af84608085016122fb565b60808201526123c18460c085016122fb565b60a08201526101006123d5858286016122fb565b60c08301526123e88561014086016122fb565b60e08301526123fb8561018086016122fb565b9082015261240d846101c085016122fb565b6101208201529392505050565b6001600160601b038316815281516001600160a01b03166020820152610220810160208301516001600160a01b03811660408401525060408301516001600160601b03811660608401525060608301516001600160601b0381166080840152506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c08301516101206124c78185018380518252602090810151910152565b60e0850151805161016086015260209081015161018086015261010086015180516101a08701528101516101c08601529085015180516101e08601529081015161020085015290505b509392505050565b60006020828403121561252a57600080fd5b815164ffffffffff81168114611ccd57600080fd5b60008060008060008086880361026081121561255a57600080fd5b6101608082121561256a57600080fd5b612572611ea2565b915061257d89612087565b825261258b60208a016120c4565b6020830152604089015160408301526125a78a60608b016122fb565b60608301526125b98a60a08b016122fb565b60808301526125cb8a60e08b016122fb565b60a08301526125dd6101208a0161205c565b60c08301526125ef6101408a016120c4565b60e0830152819750612602818a016120c4565b9650505061261361018088016120c4565b9350612623886101a089016122fb565b9250612633886101e089016122fb565b91506126438861022089016122fb565b90509295509295509295565b6000610180820190506001600160601b0380851683528084511660208401525060018060a01b0360208401511660408301526040830151606083015260608301516126a7608084018280518252602090810151910152565b506080830151805160c0840152602081015160e08401525060a0830151805161010084015260208101516101208401525060c08301518015156101408401525060e08301516001600160a01b03811661016084015261251056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122034ef0f5c7a8e1f36dbf3d80bac3e1b37d59b93f8906505d7a2d3de1c8312579064736f6c63430008140033",
655
+ "linkReferences": {
656
+ "contracts/types/Blocknumber.sol": {
657
+ "BlocknumberLib": [
658
+ {
659
+ "length": 20,
660
+ "start": 5902
661
+ }
662
+ ]
663
+ },
664
+ "contracts/types/NftId.sol": {
665
+ "NftIdLib": [
666
+ {
667
+ "length": 20,
668
+ "start": 4291
669
+ },
670
+ {
671
+ "length": 20,
672
+ "start": 5289
673
+ },
674
+ {
675
+ "length": 20,
676
+ "start": 5667
677
+ },
678
+ {
679
+ "length": 20,
680
+ "start": 6360
681
+ }
682
+ ]
683
+ },
684
+ "contracts/types/RoleId.sol": {
685
+ "RoleIdLib": [
686
+ {
687
+ "length": 20,
688
+ "start": 9413
689
+ },
690
+ {
691
+ "length": 20,
692
+ "start": 9534
693
+ },
694
+ {
695
+ "length": 20,
696
+ "start": 9593
697
+ },
698
+ {
699
+ "length": 20,
700
+ "start": 9652
701
+ }
702
+ ]
703
+ },
704
+ "contracts/types/Timestamp.sol": {
705
+ "TimestampLib": [
706
+ {
707
+ "length": 20,
708
+ "start": 8511
709
+ }
710
+ ]
711
+ },
712
+ "contracts/types/UFixed.sol": {
713
+ "UFixedLib": [
714
+ {
715
+ "length": 20,
716
+ "start": 9156
717
+ }
718
+ ]
719
+ },
720
+ "contracts/types/Version.sol": {
721
+ "VersionLib": [
722
+ {
723
+ "length": 20,
724
+ "start": 638
725
+ },
726
+ {
727
+ "length": 20,
728
+ "start": 1153
729
+ },
730
+ {
731
+ "length": 20,
732
+ "start": 3766
733
+ },
734
+ {
735
+ "length": 20,
736
+ "start": 6600
737
+ },
738
+ {
739
+ "length": 20,
740
+ "start": 7601
741
+ }
742
+ ]
743
+ }
744
+ },
745
+ "deployedLinkReferences": {
746
+ "contracts/types/Blocknumber.sol": {
747
+ "BlocknumberLib": [
748
+ {
749
+ "length": 20,
750
+ "start": 3490
751
+ }
752
+ ]
753
+ },
754
+ "contracts/types/NftId.sol": {
755
+ "NftIdLib": [
756
+ {
757
+ "length": 20,
758
+ "start": 1879
759
+ },
760
+ {
761
+ "length": 20,
762
+ "start": 2877
763
+ },
764
+ {
765
+ "length": 20,
766
+ "start": 3255
767
+ },
768
+ {
769
+ "length": 20,
770
+ "start": 3948
771
+ }
772
+ ]
773
+ },
774
+ "contracts/types/RoleId.sol": {
775
+ "RoleIdLib": [
776
+ {
777
+ "length": 20,
778
+ "start": 7001
779
+ },
780
+ {
781
+ "length": 20,
782
+ "start": 7122
783
+ },
784
+ {
785
+ "length": 20,
786
+ "start": 7181
787
+ },
788
+ {
789
+ "length": 20,
790
+ "start": 7240
791
+ }
792
+ ]
793
+ },
794
+ "contracts/types/Timestamp.sol": {
795
+ "TimestampLib": [
796
+ {
797
+ "length": 20,
798
+ "start": 6099
799
+ }
800
+ ]
801
+ },
802
+ "contracts/types/UFixed.sol": {
803
+ "UFixedLib": [
804
+ {
805
+ "length": 20,
806
+ "start": 6744
807
+ }
808
+ ]
809
+ },
810
+ "contracts/types/Version.sol": {
811
+ "VersionLib": [
812
+ {
813
+ "length": 20,
814
+ "start": 1354
815
+ },
816
+ {
817
+ "length": 20,
818
+ "start": 4188
819
+ },
820
+ {
821
+ "length": 20,
822
+ "start": 5189
823
+ }
824
+ ]
825
+ }
826
+ }
827
+ }