@etherisc/gif-next 0.0.2-d911522 → 0.0.2-da06f3b-803

Sign up to get free protection for your applications and to get access to all the features.
Files changed (405) hide show
  1. package/README.md +364 -8
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
  3. package/artifacts/contracts/components/Component.sol/Component.json +510 -33
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +849 -0
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
  7. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +244 -241
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +648 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +713 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +748 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +752 -51
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +773 -55
  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 +4 -0
  39. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  40. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  41. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  42. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  43. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  44. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  45. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  46. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  47. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  48. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  49. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  50. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  51. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  52. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  53. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
  54. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  55. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
  56. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  57. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1558 -470
  58. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  59. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +592 -0
  60. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  61. package/artifacts/contracts/instance/Instance.sol/Instance.json +2454 -462
  62. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  63. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1081 -0
  64. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  65. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1381 -0
  66. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  67. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1050 -0
  68. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +473 -0
  70. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  71. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
  72. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
  73. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +603 -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/base/ILifecycle.sol/ILifecycle.json +115 -0
  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 +228 -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/module/IDistribution.sol/IDistribution.json +10 -0
  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/{component/IComponent.sol/IComponent.json → module/ISetup.sol/ISetup.json} +2 -2
  94. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  95. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
  96. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  97. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1102 -0
  98. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +449 -0
  100. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +772 -0
  102. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +437 -0
  104. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +715 -0
  106. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +441 -0
  108. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +766 -0
  110. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +494 -0
  112. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +531 -0
  114. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1227 -0
  116. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +505 -0
  118. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  119. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +806 -0
  120. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +437 -0
  122. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +856 -0
  124. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +437 -0
  126. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  127. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
  128. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  129. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +525 -61
  130. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  131. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +981 -0
  132. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  133. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
  134. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  135. package/artifacts/contracts/registry/Registry.sol/Registry.json +572 -74
  136. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  137. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  138. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  139. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1200 -0
  140. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  141. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +464 -0
  142. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  143. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
  144. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  145. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +394 -0
  146. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  147. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  148. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  149. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  150. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  151. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
  152. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  153. package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → shared/IRegisterable.sol/IRegisterable.json} +107 -73
  154. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  155. package/artifacts/contracts/shared/IService.sol/IService.json +416 -0
  156. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  157. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
  158. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  159. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +171 -0
  160. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  161. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +362 -0
  162. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  163. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +282 -0
  164. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  165. package/artifacts/contracts/shared/Service.sol/Service.json +476 -0
  166. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  167. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  168. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  169. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  170. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  171. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
  172. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  174. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +313 -0
  176. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  177. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  178. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  179. package/artifacts/contracts/test/TestService.sol/TestService.json +608 -0
  180. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  181. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  182. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  183. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  184. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  185. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
  186. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  187. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  188. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  189. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  190. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  191. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  192. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  193. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  194. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  196. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
  198. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  199. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  200. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  201. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
  202. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  203. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
  204. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  205. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  206. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  207. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  208. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  209. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
  210. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  212. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  214. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  216. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  217. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
  218. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  219. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  220. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  221. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  222. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  223. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  224. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  225. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  226. package/contracts/components/Component.sol +192 -38
  227. package/contracts/components/Distribution.sol +153 -0
  228. package/contracts/components/IComponent.sol +43 -0
  229. package/contracts/components/IDistributionComponent.sol +47 -0
  230. package/contracts/components/IPoolComponent.sol +51 -0
  231. package/contracts/components/IProductComponent.sol +39 -0
  232. package/contracts/components/Pool.sol +196 -17
  233. package/contracts/components/Product.sol +236 -36
  234. package/contracts/experiment/cloning/Cloner.sol +47 -0
  235. package/contracts/experiment/errors/Require.sol +10 -5
  236. package/contracts/experiment/errors/Revert.sol +13 -8
  237. package/contracts/experiment/inheritance/A.sol +8 -11
  238. package/contracts/experiment/inheritance/B.sol +10 -5
  239. package/contracts/experiment/inheritance/C.sol +11 -5
  240. package/contracts/experiment/inheritance/IA.sol +2 -7
  241. package/contracts/experiment/inheritance/IB.sol +3 -2
  242. package/contracts/experiment/inheritance/IC.sol +4 -3
  243. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  244. package/contracts/experiment/statemachine/ISM.sol +25 -0
  245. package/contracts/experiment/statemachine/SM.sol +57 -0
  246. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  247. package/contracts/experiment/types/TypeA.sol +14 -9
  248. package/contracts/experiment/types/TypeB.sol +14 -9
  249. package/contracts/instance/BundleManager.sol +125 -0
  250. package/contracts/instance/Cloneable.sol +46 -0
  251. package/contracts/instance/IInstance.sol +67 -15
  252. package/contracts/instance/IInstanceService.sol +42 -0
  253. package/contracts/instance/Instance.sol +248 -43
  254. package/contracts/instance/InstanceAccessManager.sol +414 -0
  255. package/contracts/instance/InstanceReader.sol +293 -0
  256. package/contracts/instance/InstanceService.sol +473 -0
  257. package/contracts/instance/InstanceServiceManager.sol +54 -0
  258. package/contracts/instance/ObjectManager.sol +84 -0
  259. package/contracts/instance/base/ComponentService.sol +134 -0
  260. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  261. package/contracts/instance/base/ILifecycle.sol +30 -0
  262. package/contracts/instance/base/KeyValueStore.sol +172 -0
  263. package/contracts/instance/base/Lifecycle.sol +100 -0
  264. package/contracts/instance/module/IAccess.sol +48 -0
  265. package/contracts/instance/module/IBundle.sol +20 -0
  266. package/contracts/instance/module/IDistribution.sol +39 -0
  267. package/contracts/instance/module/IPolicy.sol +45 -0
  268. package/contracts/instance/module/IRisk.sol +11 -0
  269. package/contracts/instance/module/ISetup.sol +46 -0
  270. package/contracts/instance/module/ITreasury.sol +23 -0
  271. package/contracts/instance/service/BundleService.sol +293 -0
  272. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  273. package/contracts/instance/service/DistributionService.sol +106 -0
  274. package/contracts/instance/service/DistributionServiceManager.sol +51 -0
  275. package/contracts/instance/service/IBundleService.sol +44 -0
  276. package/contracts/instance/service/IDistributionService.sol +12 -0
  277. package/contracts/instance/service/IPolicyService.sol +94 -0
  278. package/contracts/instance/service/IPoolService.sol +20 -0
  279. package/contracts/instance/service/IProductService.sol +40 -0
  280. package/contracts/instance/service/PolicyService.sol +538 -0
  281. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  282. package/contracts/instance/service/PoolService.sol +110 -0
  283. package/contracts/instance/service/PoolServiceManager.sol +51 -0
  284. package/contracts/instance/service/ProductService.sol +233 -0
  285. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  286. package/contracts/registry/ChainNft.sol +138 -109
  287. package/contracts/registry/IRegistry.sol +79 -49
  288. package/contracts/registry/IRegistryService.sol +65 -0
  289. package/contracts/registry/ITransferInterceptor.sol +6 -0
  290. package/contracts/registry/Registry.sol +391 -116
  291. package/contracts/registry/RegistryAccessManager.sol +216 -0
  292. package/contracts/registry/RegistryService.sol +262 -0
  293. package/contracts/registry/RegistryServiceManager.sol +62 -0
  294. package/contracts/registry/ReleaseManager.sol +332 -0
  295. package/contracts/registry/TokenRegistry.sol +112 -0
  296. package/contracts/shared/ContractDeployerLib.sol +72 -0
  297. package/contracts/shared/ERC165.sol +25 -0
  298. package/contracts/shared/INftOwnable.sol +22 -0
  299. package/contracts/shared/IRegisterable.sol +15 -0
  300. package/contracts/shared/IService.sol +16 -0
  301. package/contracts/shared/IVersionable.sol +96 -0
  302. package/contracts/shared/NftOwnable.sol +139 -0
  303. package/contracts/shared/ProxyManager.sol +94 -0
  304. package/contracts/shared/Registerable.sol +86 -0
  305. package/contracts/shared/Service.sol +60 -0
  306. package/contracts/shared/TokenHandler.sol +27 -0
  307. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  308. package/contracts/shared/Versionable.sol +147 -0
  309. package/contracts/test/TestFee.sol +25 -0
  310. package/contracts/test/TestRegisterable.sol +18 -0
  311. package/contracts/test/TestRoleId.sol +14 -0
  312. package/contracts/test/TestService.sol +25 -0
  313. package/contracts/test/TestToken.sol +26 -0
  314. package/contracts/test/TestVersion.sol +44 -0
  315. package/contracts/test/TestVersionable.sol +17 -0
  316. package/contracts/test/Usdc.sol +26 -0
  317. package/contracts/types/AddressSet.sol +58 -0
  318. package/contracts/types/Blocknumber.sol +76 -18
  319. package/contracts/types/ChainId.sol +18 -10
  320. package/contracts/types/DistributorType.sol +55 -0
  321. package/contracts/types/Fee.sol +56 -0
  322. package/contracts/types/Key32.sol +50 -0
  323. package/contracts/types/NftId.sol +48 -11
  324. package/contracts/types/NftIdSet.sol +62 -0
  325. package/contracts/types/NumberId.sol +52 -0
  326. package/contracts/types/ObjectType.sol +152 -0
  327. package/contracts/types/Referral.sol +85 -0
  328. package/contracts/types/RiskId.sol +43 -0
  329. package/contracts/types/RoleId.sol +93 -0
  330. package/contracts/types/StateId.sol +105 -0
  331. package/contracts/types/Timestamp.sol +89 -17
  332. package/contracts/types/UFixed.sol +193 -75
  333. package/contracts/types/Version.sol +107 -0
  334. package/package.json +21 -6
  335. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  336. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  337. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  338. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  339. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  340. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  341. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  342. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  343. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  344. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  345. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  346. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  347. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  348. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  349. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  350. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  351. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
  352. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  353. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
  354. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  355. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  356. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  357. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  358. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  359. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  360. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  361. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  362. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  363. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  364. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  365. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  366. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  367. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  368. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  369. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  370. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  371. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  372. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  373. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  374. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  375. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  376. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  377. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  378. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  379. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
  380. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  381. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  382. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  383. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  384. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  385. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  386. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  387. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  388. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  389. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  390. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  391. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  392. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -440
  393. package/contracts/components/IPool.sol +0 -9
  394. package/contracts/components/IProduct.sol +0 -12
  395. package/contracts/instance/access/Access.sol +0 -218
  396. package/contracts/instance/access/IAccess.sol +0 -83
  397. package/contracts/instance/component/ComponentModule.sol +0 -248
  398. package/contracts/instance/component/IComponent.sol +0 -95
  399. package/contracts/instance/policy/IPolicy.sol +0 -66
  400. package/contracts/instance/policy/PolicyModule.sol +0 -107
  401. package/contracts/instance/pool/IPoolModule.sol +0 -41
  402. package/contracts/instance/pool/PoolModule.sol +0 -86
  403. package/contracts/instance/product/IProductService.sol +0 -46
  404. package/contracts/instance/product/ProductService.sol +0 -108
  405. package/contracts/registry/IChainNft.sol +0 -18
@@ -0,0 +1,856 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ProductService",
4
+ "sourceName": "contracts/instance/service/ProductService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "NftId",
15
+ "name": "nftId",
16
+ "type": "uint96"
17
+ }
18
+ ],
19
+ "name": "ErrorAlreadyLinked",
20
+ "type": "error"
21
+ },
22
+ {
23
+ "inputs": [
24
+ {
25
+ "internalType": "address",
26
+ "name": "component",
27
+ "type": "address"
28
+ },
29
+ {
30
+ "internalType": "NftId",
31
+ "name": "nftId",
32
+ "type": "uint96"
33
+ }
34
+ ],
35
+ "name": "ErrorComponentServiceAlreadyRegistered",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [
40
+ {
41
+ "internalType": "address",
42
+ "name": "component",
43
+ "type": "address"
44
+ }
45
+ ],
46
+ "name": "ErrorComponentServiceComponentLocked",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [
51
+ {
52
+ "internalType": "NftId",
53
+ "name": "instanceNftId",
54
+ "type": "uint96"
55
+ },
56
+ {
57
+ "internalType": "RoleId",
58
+ "name": "requiredRole",
59
+ "type": "uint64"
60
+ },
61
+ {
62
+ "internalType": "address",
63
+ "name": "sender",
64
+ "type": "address"
65
+ }
66
+ ],
67
+ "name": "ErrorComponentServiceExpectedRoleMissing",
68
+ "type": "error"
69
+ },
70
+ {
71
+ "inputs": [
72
+ {
73
+ "internalType": "address",
74
+ "name": "component",
75
+ "type": "address"
76
+ },
77
+ {
78
+ "internalType": "ObjectType",
79
+ "name": "requiredType",
80
+ "type": "uint8"
81
+ },
82
+ {
83
+ "internalType": "ObjectType",
84
+ "name": "componentType",
85
+ "type": "uint8"
86
+ }
87
+ ],
88
+ "name": "ErrorComponentServiceInvalidType",
89
+ "type": "error"
90
+ },
91
+ {
92
+ "inputs": [
93
+ {
94
+ "internalType": "address",
95
+ "name": "component",
96
+ "type": "address"
97
+ }
98
+ ],
99
+ "name": "ErrorComponentServiceNotComponent",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [
104
+ {
105
+ "internalType": "address",
106
+ "name": "component",
107
+ "type": "address"
108
+ },
109
+ {
110
+ "internalType": "address",
111
+ "name": "initialOwner",
112
+ "type": "address"
113
+ },
114
+ {
115
+ "internalType": "address",
116
+ "name": "sender",
117
+ "type": "address"
118
+ }
119
+ ],
120
+ "name": "ErrorComponentServiceSenderNotOwner",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "inputs": [
125
+ {
126
+ "internalType": "address",
127
+ "name": "contractAddress",
128
+ "type": "address"
129
+ }
130
+ ],
131
+ "name": "ErrorContractNotRegistered",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "address",
138
+ "name": "target",
139
+ "type": "address"
140
+ }
141
+ ],
142
+ "name": "ErrorIAccessTargetLocked",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "account",
150
+ "type": "address"
151
+ }
152
+ ],
153
+ "name": "ErrorNotOwner",
154
+ "type": "error"
155
+ },
156
+ {
157
+ "inputs": [
158
+ {
159
+ "internalType": "address",
160
+ "name": "registryAddress",
161
+ "type": "address"
162
+ }
163
+ ],
164
+ "name": "ErrorNotRegistry",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [
169
+ {
170
+ "internalType": "address",
171
+ "name": "registryAddress",
172
+ "type": "address"
173
+ }
174
+ ],
175
+ "name": "ErrorRegisterableNotRegistry",
176
+ "type": "error"
177
+ },
178
+ {
179
+ "inputs": [],
180
+ "name": "ErrorRegistryAddressZero",
181
+ "type": "error"
182
+ },
183
+ {
184
+ "inputs": [
185
+ {
186
+ "internalType": "address",
187
+ "name": "registry",
188
+ "type": "address"
189
+ }
190
+ ],
191
+ "name": "ErrorRegistryAlreadyInitialized",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [],
196
+ "name": "ErrorRegistryNotInitialized",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [],
201
+ "name": "InvalidInitialization",
202
+ "type": "error"
203
+ },
204
+ {
205
+ "inputs": [],
206
+ "name": "NotInitializing",
207
+ "type": "error"
208
+ },
209
+ {
210
+ "anonymous": false,
211
+ "inputs": [
212
+ {
213
+ "indexed": false,
214
+ "internalType": "uint64",
215
+ "name": "version",
216
+ "type": "uint64"
217
+ }
218
+ ],
219
+ "name": "Initialized",
220
+ "type": "event"
221
+ },
222
+ {
223
+ "anonymous": false,
224
+ "inputs": [
225
+ {
226
+ "indexed": false,
227
+ "internalType": "address",
228
+ "name": "sender",
229
+ "type": "address"
230
+ }
231
+ ],
232
+ "name": "LogProductServiceSender",
233
+ "type": "event"
234
+ },
235
+ {
236
+ "anonymous": false,
237
+ "inputs": [
238
+ {
239
+ "indexed": false,
240
+ "internalType": "Version",
241
+ "name": "version",
242
+ "type": "uint24"
243
+ },
244
+ {
245
+ "indexed": false,
246
+ "internalType": "address",
247
+ "name": "implementation",
248
+ "type": "address"
249
+ },
250
+ {
251
+ "indexed": false,
252
+ "internalType": "address",
253
+ "name": "activatedBy",
254
+ "type": "address"
255
+ }
256
+ ],
257
+ "name": "LogVersionableInitialized",
258
+ "type": "event"
259
+ },
260
+ {
261
+ "inputs": [],
262
+ "name": "REGISTERABLE_LOCATION_V1",
263
+ "outputs": [
264
+ {
265
+ "internalType": "bytes32",
266
+ "name": "",
267
+ "type": "bytes32"
268
+ }
269
+ ],
270
+ "stateMutability": "view",
271
+ "type": "function"
272
+ },
273
+ {
274
+ "inputs": [
275
+ {
276
+ "internalType": "RiskId",
277
+ "name": "riskId",
278
+ "type": "bytes8"
279
+ },
280
+ {
281
+ "internalType": "bytes",
282
+ "name": "data",
283
+ "type": "bytes"
284
+ }
285
+ ],
286
+ "name": "createRisk",
287
+ "outputs": [],
288
+ "stateMutability": "nonpayable",
289
+ "type": "function"
290
+ },
291
+ {
292
+ "inputs": [],
293
+ "name": "getDomain",
294
+ "outputs": [
295
+ {
296
+ "internalType": "ObjectType",
297
+ "name": "",
298
+ "type": "uint8"
299
+ }
300
+ ],
301
+ "stateMutability": "pure",
302
+ "type": "function"
303
+ },
304
+ {
305
+ "inputs": [],
306
+ "name": "getInitialInfo",
307
+ "outputs": [
308
+ {
309
+ "components": [
310
+ {
311
+ "internalType": "NftId",
312
+ "name": "nftId",
313
+ "type": "uint96"
314
+ },
315
+ {
316
+ "internalType": "NftId",
317
+ "name": "parentNftId",
318
+ "type": "uint96"
319
+ },
320
+ {
321
+ "internalType": "ObjectType",
322
+ "name": "objectType",
323
+ "type": "uint8"
324
+ },
325
+ {
326
+ "internalType": "bool",
327
+ "name": "isInterceptor",
328
+ "type": "bool"
329
+ },
330
+ {
331
+ "internalType": "address",
332
+ "name": "objectAddress",
333
+ "type": "address"
334
+ },
335
+ {
336
+ "internalType": "address",
337
+ "name": "initialOwner",
338
+ "type": "address"
339
+ },
340
+ {
341
+ "internalType": "bytes",
342
+ "name": "data",
343
+ "type": "bytes"
344
+ }
345
+ ],
346
+ "internalType": "struct IRegistry.ObjectInfo",
347
+ "name": "info",
348
+ "type": "tuple"
349
+ }
350
+ ],
351
+ "stateMutability": "view",
352
+ "type": "function"
353
+ },
354
+ {
355
+ "inputs": [],
356
+ "name": "getInitialOwner",
357
+ "outputs": [
358
+ {
359
+ "internalType": "address",
360
+ "name": "",
361
+ "type": "address"
362
+ }
363
+ ],
364
+ "stateMutability": "view",
365
+ "type": "function"
366
+ },
367
+ {
368
+ "inputs": [],
369
+ "name": "getInitializedVersion",
370
+ "outputs": [
371
+ {
372
+ "internalType": "uint64",
373
+ "name": "",
374
+ "type": "uint64"
375
+ }
376
+ ],
377
+ "stateMutability": "view",
378
+ "type": "function"
379
+ },
380
+ {
381
+ "inputs": [],
382
+ "name": "getInstanceService",
383
+ "outputs": [
384
+ {
385
+ "internalType": "contract InstanceService",
386
+ "name": "",
387
+ "type": "address"
388
+ }
389
+ ],
390
+ "stateMutability": "view",
391
+ "type": "function"
392
+ },
393
+ {
394
+ "inputs": [],
395
+ "name": "getMajorVersion",
396
+ "outputs": [
397
+ {
398
+ "internalType": "VersionPart",
399
+ "name": "majorVersion",
400
+ "type": "uint8"
401
+ }
402
+ ],
403
+ "stateMutability": "view",
404
+ "type": "function"
405
+ },
406
+ {
407
+ "inputs": [],
408
+ "name": "getNftId",
409
+ "outputs": [
410
+ {
411
+ "internalType": "NftId",
412
+ "name": "",
413
+ "type": "uint96"
414
+ }
415
+ ],
416
+ "stateMutability": "view",
417
+ "type": "function"
418
+ },
419
+ {
420
+ "inputs": [],
421
+ "name": "getOwner",
422
+ "outputs": [
423
+ {
424
+ "internalType": "address",
425
+ "name": "",
426
+ "type": "address"
427
+ }
428
+ ],
429
+ "stateMutability": "view",
430
+ "type": "function"
431
+ },
432
+ {
433
+ "inputs": [],
434
+ "name": "getRegistry",
435
+ "outputs": [
436
+ {
437
+ "internalType": "contract IRegistry",
438
+ "name": "",
439
+ "type": "address"
440
+ }
441
+ ],
442
+ "stateMutability": "view",
443
+ "type": "function"
444
+ },
445
+ {
446
+ "inputs": [],
447
+ "name": "getRegistryService",
448
+ "outputs": [
449
+ {
450
+ "internalType": "contract IRegistryService",
451
+ "name": "",
452
+ "type": "address"
453
+ }
454
+ ],
455
+ "stateMutability": "view",
456
+ "type": "function"
457
+ },
458
+ {
459
+ "inputs": [],
460
+ "name": "getVersion",
461
+ "outputs": [
462
+ {
463
+ "internalType": "Version",
464
+ "name": "",
465
+ "type": "uint24"
466
+ }
467
+ ],
468
+ "stateMutability": "pure",
469
+ "type": "function"
470
+ },
471
+ {
472
+ "inputs": [
473
+ {
474
+ "internalType": "uint256",
475
+ "name": "idx",
476
+ "type": "uint256"
477
+ }
478
+ ],
479
+ "name": "getVersion",
480
+ "outputs": [
481
+ {
482
+ "internalType": "Version",
483
+ "name": "",
484
+ "type": "uint24"
485
+ }
486
+ ],
487
+ "stateMutability": "view",
488
+ "type": "function"
489
+ },
490
+ {
491
+ "inputs": [],
492
+ "name": "getVersionCount",
493
+ "outputs": [
494
+ {
495
+ "internalType": "uint256",
496
+ "name": "",
497
+ "type": "uint256"
498
+ }
499
+ ],
500
+ "stateMutability": "view",
501
+ "type": "function"
502
+ },
503
+ {
504
+ "inputs": [
505
+ {
506
+ "internalType": "Version",
507
+ "name": "_version",
508
+ "type": "uint24"
509
+ }
510
+ ],
511
+ "name": "getVersionInfo",
512
+ "outputs": [
513
+ {
514
+ "components": [
515
+ {
516
+ "internalType": "Version",
517
+ "name": "version",
518
+ "type": "uint24"
519
+ },
520
+ {
521
+ "internalType": "address",
522
+ "name": "implementation",
523
+ "type": "address"
524
+ },
525
+ {
526
+ "internalType": "address",
527
+ "name": "activatedBy",
528
+ "type": "address"
529
+ },
530
+ {
531
+ "internalType": "Timestamp",
532
+ "name": "activatedAt",
533
+ "type": "uint40"
534
+ },
535
+ {
536
+ "internalType": "Blocknumber",
537
+ "name": "activatedIn",
538
+ "type": "uint32"
539
+ }
540
+ ],
541
+ "internalType": "struct IVersionable.VersionInfo",
542
+ "name": "",
543
+ "type": "tuple"
544
+ }
545
+ ],
546
+ "stateMutability": "view",
547
+ "type": "function"
548
+ },
549
+ {
550
+ "inputs": [
551
+ {
552
+ "internalType": "address",
553
+ "name": "implementation",
554
+ "type": "address"
555
+ },
556
+ {
557
+ "internalType": "address",
558
+ "name": "activatedBy",
559
+ "type": "address"
560
+ },
561
+ {
562
+ "internalType": "bytes",
563
+ "name": "data",
564
+ "type": "bytes"
565
+ }
566
+ ],
567
+ "name": "initialize",
568
+ "outputs": [],
569
+ "stateMutability": "nonpayable",
570
+ "type": "function"
571
+ },
572
+ {
573
+ "inputs": [
574
+ {
575
+ "internalType": "Version",
576
+ "name": "_version",
577
+ "type": "uint24"
578
+ }
579
+ ],
580
+ "name": "isInitialized",
581
+ "outputs": [
582
+ {
583
+ "internalType": "bool",
584
+ "name": "",
585
+ "type": "bool"
586
+ }
587
+ ],
588
+ "stateMutability": "view",
589
+ "type": "function"
590
+ },
591
+ {
592
+ "inputs": [],
593
+ "name": "linkToRegisteredNftId",
594
+ "outputs": [],
595
+ "stateMutability": "nonpayable",
596
+ "type": "function"
597
+ },
598
+ {
599
+ "inputs": [
600
+ {
601
+ "internalType": "address",
602
+ "name": "productAddress",
603
+ "type": "address"
604
+ }
605
+ ],
606
+ "name": "register",
607
+ "outputs": [
608
+ {
609
+ "internalType": "NftId",
610
+ "name": "productNftId",
611
+ "type": "uint96"
612
+ }
613
+ ],
614
+ "stateMutability": "nonpayable",
615
+ "type": "function"
616
+ },
617
+ {
618
+ "inputs": [
619
+ {
620
+ "components": [
621
+ {
622
+ "internalType": "UFixed",
623
+ "name": "fractionalFee",
624
+ "type": "uint256"
625
+ },
626
+ {
627
+ "internalType": "uint256",
628
+ "name": "fixedFee",
629
+ "type": "uint256"
630
+ }
631
+ ],
632
+ "internalType": "struct Fee",
633
+ "name": "productFee",
634
+ "type": "tuple"
635
+ },
636
+ {
637
+ "components": [
638
+ {
639
+ "internalType": "UFixed",
640
+ "name": "fractionalFee",
641
+ "type": "uint256"
642
+ },
643
+ {
644
+ "internalType": "uint256",
645
+ "name": "fixedFee",
646
+ "type": "uint256"
647
+ }
648
+ ],
649
+ "internalType": "struct Fee",
650
+ "name": "processingFee",
651
+ "type": "tuple"
652
+ }
653
+ ],
654
+ "name": "setFees",
655
+ "outputs": [],
656
+ "stateMutability": "nonpayable",
657
+ "type": "function"
658
+ },
659
+ {
660
+ "inputs": [
661
+ {
662
+ "internalType": "bytes4",
663
+ "name": "interfaceId",
664
+ "type": "bytes4"
665
+ }
666
+ ],
667
+ "name": "supportsInterface",
668
+ "outputs": [
669
+ {
670
+ "internalType": "bool",
671
+ "name": "",
672
+ "type": "bool"
673
+ }
674
+ ],
675
+ "stateMutability": "view",
676
+ "type": "function"
677
+ },
678
+ {
679
+ "inputs": [
680
+ {
681
+ "internalType": "RiskId",
682
+ "name": "riskId",
683
+ "type": "bytes8"
684
+ },
685
+ {
686
+ "internalType": "bytes",
687
+ "name": "data",
688
+ "type": "bytes"
689
+ }
690
+ ],
691
+ "name": "updateRisk",
692
+ "outputs": [],
693
+ "stateMutability": "nonpayable",
694
+ "type": "function"
695
+ },
696
+ {
697
+ "inputs": [
698
+ {
699
+ "internalType": "RiskId",
700
+ "name": "riskId",
701
+ "type": "bytes8"
702
+ },
703
+ {
704
+ "internalType": "StateId",
705
+ "name": "state",
706
+ "type": "uint8"
707
+ }
708
+ ],
709
+ "name": "updateRiskState",
710
+ "outputs": [],
711
+ "stateMutability": "nonpayable",
712
+ "type": "function"
713
+ },
714
+ {
715
+ "inputs": [
716
+ {
717
+ "internalType": "address",
718
+ "name": "implementation",
719
+ "type": "address"
720
+ },
721
+ {
722
+ "internalType": "address",
723
+ "name": "activatedBy",
724
+ "type": "address"
725
+ },
726
+ {
727
+ "internalType": "bytes",
728
+ "name": "data",
729
+ "type": "bytes"
730
+ }
731
+ ],
732
+ "name": "upgrade",
733
+ "outputs": [],
734
+ "stateMutability": "nonpayable",
735
+ "type": "function"
736
+ }
737
+ ],
738
+ "bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61367b806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063893d20e8116100de578063b6b412ba11610097578063cc9fc59a11610071578063cc9fc59a1461049c578063cde749f4146104a4578063cf7a1d77146104ac578063fb2cb101146104bf57600080fd5b8063b6b412ba1461046e578063b88da75914610481578063caf4e3d41461049457600080fd5b8063893d20e8146103e45780638f997f6d146103ec578063946dfcfe146103ff578063a745e3df14610426578063b3c6501514610439578063b68d18091461045957600080fd5b80634420e486116101305780634420e4861461023d5780634d459c90146102685780634f421333146103815780635ab1bd5314610394578063644c45e0146103b95780637cef4842146103d157600080fd5b806301ffc9a714610178578063095e2b72146101ba5780630d8e6e2c146101cf5780630fec111c146101eb578063138461e0146102005780631eff4b2214610208575b600080fd5b6101a56101863660046129cf565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101cd6101c8366004612b4d565b6104d0565b005b6101d7610569565b60405162ffffff90911681526020016101b1565b6101f36105f3565b6040516101b19190612bea565b6101cd6107b1565b61022f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101b1565b61025061024b366004612c8a565b6109d3565b6040516001600160601b0390911681526020016101b1565b610324610276366004612cb8565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061362683398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016101b1565b6101a561038f366004612cb8565b610a98565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101b1565b600154600160a01b90046001600160601b0316610250565b6101cd6103df366004612ce4565b610b4b565b6103a1610bcc565b6101cd6103fa366004612b4d565b610ce5565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015461022f565b6101cd610434366004612d1b565b610e48565b610441610fa2565b6040516001600160401b0390911681526020016101b1565b606e5b60405160ff90911681526020016101b1565b6101cd61047c366004612dac565b610fc3565b6101d761048f366004612de1565b611130565b6103a1611181565b6103a161121e565b61045c611248565b6101cd6104ba366004612d1b565b6112cb565b6002546001600160a01b03166103a1565b6000806104dd606e6113d4565b81516040805180820182526001600160601b03831681526020810188905290516317b0844560e11b8152939550919350916001600160a01b03841690632f61088a9061052f9089908590600401612e22565b600060405180830381600087803b15801561054957600080fd5b505af115801561055d573d6000803e3d6000fd5b50505050505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156105ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee9190612e47565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906106a390612e64565b80601f01602080910402602001604051908101604052809291908181526020018280546106cf90612e64565b801561071c5780601f106106f15761010080835404028352916020019161071c565b820191906000526020600020905b8154815290600101906020018083116106ff57829003601f168201915b50505050508152505090506040518060e0016040528061073a600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016107956002546001600160a01b031690565b6001600160a01b03168152602001826060015181525091505090565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108379190612eae565b1561087e576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166108a75760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156108f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109149190612eae565b61093c576040516372657a5160e01b81526001600160a01b0382166004820152602401610875565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610986573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109aa9190612ee0565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000808080806109ec86606e6109e7611676565b6116ed565b92965090945092509050856000610a01611181565b604051635d96628960e01b81526001600160a01b03848116600483015287811660248301529190911690635d966289906044016000604051808303816000875af1158015610a53573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a7b9190810190612f61565b805197509050610a8c848389611abb565b50505050505050919050565b60008060008051602061362683398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610b20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b449190613033565b1192915050565b6000610b57606e6113d4565b604051633e77a42160e11b81526001600160c01b03198616600482015260ff851660248201529092506001600160a01b0383169150637cef484290604401600060405180830381600087803b158015610baf57600080fd5b505af1158015610bc3573d6000803e3d6000fd5b50505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610c31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c559190612eae565b15610cd557600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610cb1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee919061304c565b506002546001600160a01b031690565b6000610cf1606e6113d4565b9150506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d58919061304c565b60405163887b1fa960e01b81526001600160c01b0319861660048201529091506000906001600160a01b0383169063887b1fa990602401600060405180830381865afa158015610dac573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610dd49190810190613069565b602081018590526040516314eddc0360e31b81529091506001600160a01b0384169063a76ee01890610e0f908890859060ff906004016130e6565b600060405180830381600087803b158015610e2957600080fd5b505af1158015610e3d573d6000803e3d6000fd5b505050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e6a610569565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ece9190613133565b6000805160206136068339815191528054600160401b900460ff1680610f01575080546001600160401b03808416911610155b15610f1f5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f4a85856120e0565b610f538361237f565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006105ee600080516020613606833981519152546001600160401b031690565b600080610fd0606e6113d4565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611014573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611038919061304c565b835160405163242bdc1960e21b81526001600160601b0382166004820152919250906000906001600160a01b038416906390af70649060240161024060405180830381865afa15801561108f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b39190613180565b60a0810188905260c081018790526040516354e750a160e11b81529091506001600160a01b0385169063a9cea142906110f5908590859060ff9060040161339d565b600060405180830381600087803b15801561110f57600080fd5b505af1158015611123573d6000803e3d6000fd5b5050505050505050505050565b60006000805160206136268339815191526001018281548110611155576111556133cd565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000806111966001546001600160a01b031690565b6001600160a01b031663d39e604360285b6111af611248565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156111f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611218919061304c565b92915050565b6000806112336001546001600160a01b031690565b6001600160a01b031663d39e604360466111a7565b6000611252610569565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee91906133e3565b6000805160206136068339815191528054600160401b810460ff1615906001600160401b03166000811580156112fe5750825b90506000826001600160401b0316600114801561131a5750303b155b905081158015611328575080155b156113465760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561137057845460ff60401b1916600160401b1785555b61137a88886120e0565b6113848787612387565b83156113ca57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260015490919081906001600160a01b03166040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015611463573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261148b9190810190612f61565b92506114a183604001518560ff90811691161490565b6114e35760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610875565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611539573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115619190810190612f61565b6080015190508092506000836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ce919061304c565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa15801561161b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163f9190612eae565b1561166e57608085015160405163d53987e560e01b81526001600160a01b039091166004820152602401610875565b505050915091565b6040516368aebf7b60e01b81526005600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af41580156116c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee9190613133565b600154604051636939560f60e11b81526001600160a01b038581166004830152600092339284928392839291169063d272ac1e90602401602060405180830381865afa158015611741573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117659190612ee0565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156117c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e49190612eae565b1561181b5760405162b8422b60e71b81526001600160a01b03891660048201526001600160601b0382166024820152604401610875565b6040516301ffc9a760e01b8152636fb9922f60e11b60048201528895506001600160a01b038616906301ffc9a790602401602060405180830381865afa158015611869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188d9190612eae565b6118b5576040516359bff0e360e11b81526001600160a01b0389166004820152602401610875565b6000856001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156118f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261191d9190810190612f61565b905061193481604001518960ff9081169116141590565b15611974576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b1660248301529091166044820152606401610875565b60a08101516001600160a01b03868116908216146119c65760a0820151604051632b50a20960e21b81526001600160a01b03808d16600483015291821660248201529087166044820152606401610875565b816020015193506119d684612556565b945060006119e261121e565b60405163081deaed60e11b81526001600160a01b0389811660048301526001600160401b038c1660248301528881166044830152919091169063103bd5da90606401602060405180830381865afa158015611a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a659190612eae565b905080611aae57604051636af540d960e01b81526001600160601b03861660048201526001600160401b038a1660248201526001600160a01b0388166044820152606401610875565b5050505093509350935093565b60606000836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161024060405180830381865afa158015611afe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b229190613180565b60015460408281015190516305247a1760e51b81526001600160601b0390911660048201529192506000916001600160a01b039091169063a48f42e090602401600060405180830381865afa158015611b7f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ba79190810190612f61565b6080015160015460608401516040516305247a1760e51b81526001600160601b0390911660048201529192506000916001600160a01b039091169063a48f42e090602401600060405180830381865afa158015611c08573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c309190810190612f61565b6080015160405163054cb8d160e31b81526001600160601b03871660048201529091506001600160a01b03831690632a65c68890602401600060405180830381600087803b158015611c8157600080fd5b505af1158015611c95573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0384169250632a65c6889150602401600060405180830381600087803b158015611ce357600080fd5b505af1158015611cf7573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0389169250632a65c6889150602401600060405180830381600087803b158015611d4557600080fd5b505af1158015611d59573d6000803e3d6000fd5b50505050856001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611d9857600080fd5b505af1158015611dac573d6000803e3d6000fd5b50505050866001600160a01b03166391ff6eaa86886001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161024060405180830381865afa158015611dff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e239190613180565b6040518363ffffffff1660e01b8152600401611e40929190613400565b600060405180830381600087803b158015611e5a57600080fd5b505af1158015611e6e573d6000803e3d6000fd5b50505050611e7a61121e565b600154604051636939560f60e11b81526001600160a01b038a81166004830152928316926335241c0692169063d272ac1e90602401602060405180830381865afa158015611ecc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef09190612ee0565b88896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611f2f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f57919081019061341e565b6040518463ffffffff1660e01b8152600401611f7593929190613466565b600060405180830381600087803b158015611f8f57600080fd5b505af1158015611fa3573d6000803e3d6000fd5b50505050611faf61121e565b6001600160a01b0316632ad73641886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201f9190612ee0565b88896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561205e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612086919081019061341e565b6040518463ffffffff1660e01b81526004016120a493929190613466565b600060405180830381600087803b1580156120be57600080fd5b505af11580156120d2573d6000803e3d6000fd5b505050505050509392505050565b6120e86125ed565b6000805160206136268339815191526000612118600080516020613606833981519152546001600160401b031690565b90506000612124610569565b9050816001600160401b03166001036121515760028301805462ffffff191662ffffff831617905561219f565b600283015462ffffff9081169082161161219f5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610875565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015612253573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227791906134a2565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610f939083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101736125ed565b6000805160206136068339815191528054600160401b810460ff1615906001600160401b03166000811580156123ba5750825b90506000826001600160401b031660011480156123d65750303b155b9050811580156123e4575080155b156124025760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561242c57845460ff60401b1916600160401b1785555b6000808780602001905181019061244391906134c9565b9092509050612452828a612626565b6001546001600160a01b031663d39e6043608c61246d611248565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156124b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124d6919061304c565b600380546001600160a01b0319166001600160a01b03929092169190911790556125066308bcea6160e01b612691565b50508315610bc357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a150505050505050565b60008061256b6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156125ba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526125e29190810190612f61565b608001519392505050565b60008051602061360683398151915254600160401b900460ff1661262457604051631afcd79f60e31b815260040160405180910390fd5b565b6000606e612632611248565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000612667846126b6565b9050600061267a8583603c848888612721565b61268a637b6a51fd60e01b612691565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa1580156126fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112189190612ee0565b6127626301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61276c82876127ed565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016127dc8382613546565b50610bc36303fb044760e21b612691565b6001600160a01b0382166128435760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610875565b600280546001600160a01b0319166001600160a01b0384161790556128678161286b565b5050565b6001546001600160a01b0316156128a45760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610875565b6001600160a01b0381166128cb5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036129015760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610875565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630114a7d560e01b60048201526301ffc9a790602401602060405180830381865afa92505050801561297b575060408051601f3d908101601f1916820190925261297891810190612eae565b60015b6129a35760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610875565b806128675760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610875565b50565b6000602082840312156129e157600080fd5b81356001600160e01b0319811681146129f957600080fd5b9392505050565b80356001600160c01b031981168114612a1857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715612a5557612a55612a1d565b60405290565b60405160e081016001600160401b0381118282101715612a5557612a55612a1d565b60405161018081016001600160401b0381118282101715612a5557612a55612a1d565b604051601f8201601f191681016001600160401b0381118282101715612ac857612ac8612a1d565b604052919050565b60006001600160401b03821115612ae957612ae9612a1d565b50601f01601f191660200190565b600082601f830112612b0857600080fd5b8135612b1b612b1682612ad0565b612aa0565b818152846020838601011115612b3057600080fd5b816020850160208301376000918101602001919091529392505050565b60008060408385031215612b6057600080fd5b612b6983612a00565b915060208301356001600160401b03811115612b8457600080fd5b612b9085828601612af7565b9150509250929050565b60005b83811015612bb5578181015183820152602001612b9d565b50506000910152565b60008151808452612bd6816020860160208601612b9a565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151612c5360c08401826001600160a01b03169052565b5060c083015160e080840152612c6d610100840182612bbe565b949350505050565b6001600160a01b03811681146129cc57600080fd5b600060208284031215612c9c57600080fd5b81356129f981612c75565b62ffffff811681146129cc57600080fd5b600060208284031215612cca57600080fd5b81356129f981612ca7565b60ff811681146129cc57600080fd5b60008060408385031215612cf757600080fd5b612d0083612a00565b91506020830135612d1081612cd5565b809150509250929050565b600080600060608486031215612d3057600080fd5b8335612d3b81612c75565b92506020840135612d4b81612c75565b915060408401356001600160401b03811115612d6657600080fd5b612d7286828701612af7565b9150509250925092565b600060408284031215612d8e57600080fd5b612d96612a33565b9050813581526020820135602082015292915050565b60008060808385031215612dbf57600080fd5b612dc98484612d7c565b9150612dd88460408501612d7c565b90509250929050565b600060208284031215612df357600080fd5b5035919050565b6001600160601b0381511682526000602082015160406020850152612c6d6040850182612bbe565b6001600160401b0360c01b83168152604060208201526000612c6d6040830184612dfa565b600060208284031215612e5957600080fd5b81516129f981612ca7565b600181811c90821680612e7857607f821691505b602082108103612e9857634e487b7160e01b600052602260045260246000fd5b50919050565b80518015158114612a1857600080fd5b600060208284031215612ec057600080fd5b6129f982612e9e565b80516001600160601b0381168114612a1857600080fd5b600060208284031215612ef257600080fd5b6129f982612ec9565b8051612a1881612cd5565b8051612a1881612c75565b6000612f1f612b1684612ad0565b9050828152838383011115612f3357600080fd5b6129f9836020830184612b9a565b600082601f830112612f5257600080fd5b6129f983835160208501612f11565b600060208284031215612f7357600080fd5b81516001600160401b0380821115612f8a57600080fd5b9083019060e08286031215612f9e57600080fd5b612fa6612a5b565b612faf83612ec9565b8152612fbd60208401612ec9565b6020820152612fce60408401612efb565b6040820152612fdf60608401612e9e565b6060820152612ff060808401612f06565b608082015261300160a08401612f06565b60a082015260c08301518281111561301857600080fd5b61302487828601612f41565b60c08301525095945050505050565b60006020828403121561304557600080fd5b5051919050565b60006020828403121561305e57600080fd5b81516129f981612c75565b60006020828403121561307b57600080fd5b81516001600160401b038082111561309257600080fd5b90830190604082860312156130a657600080fd5b6130ae612a33565b6130b783612ec9565b81526020830151828111156130cb57600080fd5b6130d787828601612f41565b60208301525095945050505050565b6001600160401b0360c01b8416815260606020820152600061310b6060830185612dfa565b905060ff83166040830152949350505050565b6001600160401b03811681146129cc57600080fd5b60006020828403121561314557600080fd5b81516129f98161311e565b60006040828403121561316257600080fd5b61316a612a33565b9050815181526020820151602082015292915050565b6000610240828403121561319357600080fd5b61319b612a7d565b6131a483612f06565b81526131b260208401612f06565b60208201526131c360408401612ec9565b60408201526131d460608401612ec9565b60608201526131e68460808501613150565b60808201526131f88460c08501613150565b60a082015261010061320c85828601613150565b60c083015261014061322086828701613150565b60e0840152613233866101808701613150565b82840152613245866101c08701613150565b6101208401526132586102008601612e9e565b908301525061326a6102208401612f06565b6101608201529392505050565b80516001600160a01b03168252602081015161329e60208401826001600160a01b03169052565b5060408101516132b960408401826001600160601b03169052565b5060608101516132d460608401826001600160601b03169052565b5060808101516132f1608084018280518252602090810151910152565b5060a0810151805160c0840152602081015160e08401525060c08101516101006133278185018380518252602090810151910152565b60e083015191506101406133478186018480518252602090810151910152565b9083015180516101808601526020908101516101a086015261012084015180516101c087015201516101e085015282015115156102008401525061016001516001600160a01b031661022090910152565b505050565b6001600160601b038416815261028081016133bb6020830185613277565b60ff8316610260830152949350505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156133f557600080fd5b81516129f981612cd5565b6001600160601b038316815261026081016129f96020830184613277565b60006020828403121561343057600080fd5b81516001600160401b0381111561344657600080fd5b8201601f8101841361345757600080fd5b612c6d84825160208401612f11565b6001600160601b03841681526001600160a01b038316602082015260606040820181905260009061349990830184612bbe565b95945050505050565b6000602082840312156134b457600080fd5b815164ffffffffff811681146129f957600080fd5b600080604083850312156134dc57600080fd5b82516134e781612c75565b6020840151909250612d1081612c75565b601f82111561339857600081815260208120601f850160051c8101602086101561351f5750805b601f850160051c820191505b8181101561353e5782815560010161352b565b505050505050565b81516001600160401b0381111561355f5761355f612a1d565b6135738161356d8454612e64565b846134f8565b602080601f8311600181146135a857600084156135905750858301515b600019600386901b1c1916600185901b17855561353e565b600085815260208120601f198616915b828110156135d7578886015182559484019460019091019084016135b8565b50858210156135f55787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122073b624be6e272f2f79d723df45cc7c5c917d3bdf1f25b3e8219cf70b0b7986f364736f6c63430008140033",
739
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063893d20e8116100de578063b6b412ba11610097578063cc9fc59a11610071578063cc9fc59a1461049c578063cde749f4146104a4578063cf7a1d77146104ac578063fb2cb101146104bf57600080fd5b8063b6b412ba1461046e578063b88da75914610481578063caf4e3d41461049457600080fd5b8063893d20e8146103e45780638f997f6d146103ec578063946dfcfe146103ff578063a745e3df14610426578063b3c6501514610439578063b68d18091461045957600080fd5b80634420e486116101305780634420e4861461023d5780634d459c90146102685780634f421333146103815780635ab1bd5314610394578063644c45e0146103b95780637cef4842146103d157600080fd5b806301ffc9a714610178578063095e2b72146101ba5780630d8e6e2c146101cf5780630fec111c146101eb578063138461e0146102005780631eff4b2214610208575b600080fd5b6101a56101863660046129cf565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101cd6101c8366004612b4d565b6104d0565b005b6101d7610569565b60405162ffffff90911681526020016101b1565b6101f36105f3565b6040516101b19190612bea565b6101cd6107b1565b61022f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101b1565b61025061024b366004612c8a565b6109d3565b6040516001600160601b0390911681526020016101b1565b610324610276366004612cb8565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061362683398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016101b1565b6101a561038f366004612cb8565b610a98565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101b1565b600154600160a01b90046001600160601b0316610250565b6101cd6103df366004612ce4565b610b4b565b6103a1610bcc565b6101cd6103fa366004612b4d565b610ce5565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015461022f565b6101cd610434366004612d1b565b610e48565b610441610fa2565b6040516001600160401b0390911681526020016101b1565b606e5b60405160ff90911681526020016101b1565b6101cd61047c366004612dac565b610fc3565b6101d761048f366004612de1565b611130565b6103a1611181565b6103a161121e565b61045c611248565b6101cd6104ba366004612d1b565b6112cb565b6002546001600160a01b03166103a1565b6000806104dd606e6113d4565b81516040805180820182526001600160601b03831681526020810188905290516317b0844560e11b8152939550919350916001600160a01b03841690632f61088a9061052f9089908590600401612e22565b600060405180830381600087803b15801561054957600080fd5b505af115801561055d573d6000803e3d6000fd5b50505050505050505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156105ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee9190612e47565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906106a390612e64565b80601f01602080910402602001604051908101604052809291908181526020018280546106cf90612e64565b801561071c5780601f106106f15761010080835404028352916020019161071c565b820191906000526020600020905b8154815290600101906020018083116106ff57829003601f168201915b50505050508152505090506040518060e0016040528061073a600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016107956002546001600160a01b031690565b6001600160a01b03168152602001826060015181525091505090565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108379190612eae565b1561087e576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166108a75760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156108f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109149190612eae565b61093c576040516372657a5160e01b81526001600160a01b0382166004820152602401610875565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610986573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109aa9190612ee0565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b6000808080806109ec86606e6109e7611676565b6116ed565b92965090945092509050856000610a01611181565b604051635d96628960e01b81526001600160a01b03848116600483015287811660248301529190911690635d966289906044016000604051808303816000875af1158015610a53573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a7b9190810190612f61565b805197509050610a8c848389611abb565b50505050505050919050565b60008060008051602061362683398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610b20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b449190613033565b1192915050565b6000610b57606e6113d4565b604051633e77a42160e11b81526001600160c01b03198616600482015260ff851660248201529092506001600160a01b0383169150637cef484290604401600060405180830381600087803b158015610baf57600080fd5b505af1158015610bc3573d6000803e3d6000fd5b50505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610c31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c559190612eae565b15610cd557600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610cb1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee919061304c565b506002546001600160a01b031690565b6000610cf1606e6113d4565b9150506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d58919061304c565b60405163887b1fa960e01b81526001600160c01b0319861660048201529091506000906001600160a01b0383169063887b1fa990602401600060405180830381865afa158015610dac573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610dd49190810190613069565b602081018590526040516314eddc0360e31b81529091506001600160a01b0384169063a76ee01890610e0f908890859060ff906004016130e6565b600060405180830381600087803b158015610e2957600080fd5b505af1158015610e3d573d6000803e3d6000fd5b505050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e6a610569565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ece9190613133565b6000805160206136068339815191528054600160401b900460ff1680610f01575080546001600160401b03808416911610155b15610f1f5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f4a85856120e0565b610f538361237f565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b60006105ee600080516020613606833981519152546001600160401b031690565b600080610fd0606e6113d4565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611014573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611038919061304c565b835160405163242bdc1960e21b81526001600160601b0382166004820152919250906000906001600160a01b038416906390af70649060240161024060405180830381865afa15801561108f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b39190613180565b60a0810188905260c081018790526040516354e750a160e11b81529091506001600160a01b0385169063a9cea142906110f5908590859060ff9060040161339d565b600060405180830381600087803b15801561110f57600080fd5b505af1158015611123573d6000803e3d6000fd5b5050505050505050505050565b60006000805160206136268339815191526001018281548110611155576111556133cd565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b6000806111966001546001600160a01b031690565b6001600160a01b031663d39e604360285b6111af611248565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156111f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611218919061304c565b92915050565b6000806112336001546001600160a01b031690565b6001600160a01b031663d39e604360466111a7565b6000611252610569565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156112a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee91906133e3565b6000805160206136068339815191528054600160401b810460ff1615906001600160401b03166000811580156112fe5750825b90506000826001600160401b0316600114801561131a5750303b155b905081158015611328575080155b156113465760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561137057845460ff60401b1916600160401b1785555b61137a88886120e0565b6113848787612387565b83156113ca57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260015490919081906001600160a01b03166040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015611463573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261148b9190810190612f61565b92506114a183604001518560ff90811691161490565b6114e35760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610875565b60208301516040516305247a1760e51b81526001600160601b0390911660048201526000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611539573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115619190810190612f61565b6080015190508092506000836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ce919061304c565b6080860151604051629b7b3560e61b81526001600160a01b0391821660048201529192508216906326decd4090602401602060405180830381865afa15801561161b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163f9190612eae565b1561166e57608085015160405163d53987e560e01b81526001600160a01b039091166004820152602401610875565b505050915091565b6040516368aebf7b60e01b81526005600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af41580156116c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ee9190613133565b600154604051636939560f60e11b81526001600160a01b038581166004830152600092339284928392839291169063d272ac1e90602401602060405180830381865afa158015611741573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117659190612ee0565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156117c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e49190612eae565b1561181b5760405162b8422b60e71b81526001600160a01b03891660048201526001600160601b0382166024820152604401610875565b6040516301ffc9a760e01b8152636fb9922f60e11b60048201528895506001600160a01b038616906301ffc9a790602401602060405180830381865afa158015611869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188d9190612eae565b6118b5576040516359bff0e360e11b81526001600160a01b0389166004820152602401610875565b6000856001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156118f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261191d9190810190612f61565b905061193481604001518960ff9081169116141590565b15611974576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b1660248301529091166044820152606401610875565b60a08101516001600160a01b03868116908216146119c65760a0820151604051632b50a20960e21b81526001600160a01b03808d16600483015291821660248201529087166044820152606401610875565b816020015193506119d684612556565b945060006119e261121e565b60405163081deaed60e11b81526001600160a01b0389811660048301526001600160401b038c1660248301528881166044830152919091169063103bd5da90606401602060405180830381865afa158015611a41573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a659190612eae565b905080611aae57604051636af540d960e01b81526001600160601b03861660048201526001600160401b038a1660248201526001600160a01b0388166044820152606401610875565b5050505093509350935093565b60606000836001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161024060405180830381865afa158015611afe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b229190613180565b60015460408281015190516305247a1760e51b81526001600160601b0390911660048201529192506000916001600160a01b039091169063a48f42e090602401600060405180830381865afa158015611b7f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ba79190810190612f61565b6080015160015460608401516040516305247a1760e51b81526001600160601b0390911660048201529192506000916001600160a01b039091169063a48f42e090602401600060405180830381865afa158015611c08573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c309190810190612f61565b6080015160405163054cb8d160e31b81526001600160601b03871660048201529091506001600160a01b03831690632a65c68890602401600060405180830381600087803b158015611c8157600080fd5b505af1158015611c95573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0384169250632a65c6889150602401600060405180830381600087803b158015611ce357600080fd5b505af1158015611cf7573d6000803e3d6000fd5b505060405163054cb8d160e31b81526001600160601b03881660048201526001600160a01b0389169250632a65c6889150602401600060405180830381600087803b158015611d4557600080fd5b505af1158015611d59573d6000803e3d6000fd5b50505050856001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611d9857600080fd5b505af1158015611dac573d6000803e3d6000fd5b50505050866001600160a01b03166391ff6eaa86886001600160a01b031663c200b8096040518163ffffffff1660e01b815260040161024060405180830381865afa158015611dff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e239190613180565b6040518363ffffffff1660e01b8152600401611e40929190613400565b600060405180830381600087803b158015611e5a57600080fd5b505af1158015611e6e573d6000803e3d6000fd5b50505050611e7a61121e565b600154604051636939560f60e11b81526001600160a01b038a81166004830152928316926335241c0692169063d272ac1e90602401602060405180830381865afa158015611ecc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef09190612ee0565b88896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015611f2f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f57919081019061341e565b6040518463ffffffff1660e01b8152600401611f7593929190613466565b600060405180830381600087803b158015611f8f57600080fd5b505af1158015611fa3573d6000803e3d6000fd5b50505050611faf61121e565b6001600160a01b0316632ad73641886001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201f9190612ee0565b88896001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561205e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612086919081019061341e565b6040518463ffffffff1660e01b81526004016120a493929190613466565b600060405180830381600087803b1580156120be57600080fd5b505af11580156120d2573d6000803e3d6000fd5b505050505050509392505050565b6120e86125ed565b6000805160206136268339815191526000612118600080516020613606833981519152546001600160401b031690565b90506000612124610569565b9050816001600160401b03166001036121515760028301805462ffffff191662ffffff831617905561219f565b600283015462ffffff9081169082161161219f5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610875565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015612253573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061227791906134a2565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890610f939083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101736125ed565b6000805160206136068339815191528054600160401b810460ff1615906001600160401b03166000811580156123ba5750825b90506000826001600160401b031660011480156123d65750303b155b9050811580156123e4575080155b156124025760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561242c57845460ff60401b1916600160401b1785555b6000808780602001905181019061244391906134c9565b9092509050612452828a612626565b6001546001600160a01b031663d39e6043608c61246d611248565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156124b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124d6919061304c565b600380546001600160a01b0319166001600160a01b03929092169190911790556125066308bcea6160e01b612691565b50508315610bc357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a150505050505050565b60008061256b6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156125ba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526125e29190810190612f61565b608001519392505050565b60008051602061360683398151915254600160401b900460ff1661262457604051631afcd79f60e31b815260040160405180910390fd5b565b6000606e612632611248565b6040805160ff9384166020820152929091169082015260600160405160208183030381529060405290506000612667846126b6565b9050600061267a8583603c848888612721565b61268a637b6a51fd60e01b612691565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa1580156126fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112189190612ee0565b6127626301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61276c82876127ed565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016127dc8382613546565b50610bc36303fb044760e21b612691565b6001600160a01b0382166128435760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610875565b600280546001600160a01b0319166001600160a01b0384161790556128678161286b565b5050565b6001546001600160a01b0316156128a45760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610875565b6001600160a01b0381166128cb5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036129015760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610875565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630114a7d560e01b60048201526301ffc9a790602401602060405180830381865afa92505050801561297b575060408051601f3d908101601f1916820190925261297891810190612eae565b60015b6129a35760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610875565b806128675760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610875565b50565b6000602082840312156129e157600080fd5b81356001600160e01b0319811681146129f957600080fd5b9392505050565b80356001600160c01b031981168114612a1857600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715612a5557612a55612a1d565b60405290565b60405160e081016001600160401b0381118282101715612a5557612a55612a1d565b60405161018081016001600160401b0381118282101715612a5557612a55612a1d565b604051601f8201601f191681016001600160401b0381118282101715612ac857612ac8612a1d565b604052919050565b60006001600160401b03821115612ae957612ae9612a1d565b50601f01601f191660200190565b600082601f830112612b0857600080fd5b8135612b1b612b1682612ad0565b612aa0565b818152846020838601011115612b3057600080fd5b816020850160208301376000918101602001919091529392505050565b60008060408385031215612b6057600080fd5b612b6983612a00565b915060208301356001600160401b03811115612b8457600080fd5b612b9085828601612af7565b9150509250929050565b60005b83811015612bb5578181015183820152602001612b9d565b50506000910152565b60008151808452612bd6816020860160208601612b9a565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151612c5360c08401826001600160a01b03169052565b5060c083015160e080840152612c6d610100840182612bbe565b949350505050565b6001600160a01b03811681146129cc57600080fd5b600060208284031215612c9c57600080fd5b81356129f981612c75565b62ffffff811681146129cc57600080fd5b600060208284031215612cca57600080fd5b81356129f981612ca7565b60ff811681146129cc57600080fd5b60008060408385031215612cf757600080fd5b612d0083612a00565b91506020830135612d1081612cd5565b809150509250929050565b600080600060608486031215612d3057600080fd5b8335612d3b81612c75565b92506020840135612d4b81612c75565b915060408401356001600160401b03811115612d6657600080fd5b612d7286828701612af7565b9150509250925092565b600060408284031215612d8e57600080fd5b612d96612a33565b9050813581526020820135602082015292915050565b60008060808385031215612dbf57600080fd5b612dc98484612d7c565b9150612dd88460408501612d7c565b90509250929050565b600060208284031215612df357600080fd5b5035919050565b6001600160601b0381511682526000602082015160406020850152612c6d6040850182612bbe565b6001600160401b0360c01b83168152604060208201526000612c6d6040830184612dfa565b600060208284031215612e5957600080fd5b81516129f981612ca7565b600181811c90821680612e7857607f821691505b602082108103612e9857634e487b7160e01b600052602260045260246000fd5b50919050565b80518015158114612a1857600080fd5b600060208284031215612ec057600080fd5b6129f982612e9e565b80516001600160601b0381168114612a1857600080fd5b600060208284031215612ef257600080fd5b6129f982612ec9565b8051612a1881612cd5565b8051612a1881612c75565b6000612f1f612b1684612ad0565b9050828152838383011115612f3357600080fd5b6129f9836020830184612b9a565b600082601f830112612f5257600080fd5b6129f983835160208501612f11565b600060208284031215612f7357600080fd5b81516001600160401b0380821115612f8a57600080fd5b9083019060e08286031215612f9e57600080fd5b612fa6612a5b565b612faf83612ec9565b8152612fbd60208401612ec9565b6020820152612fce60408401612efb565b6040820152612fdf60608401612e9e565b6060820152612ff060808401612f06565b608082015261300160a08401612f06565b60a082015260c08301518281111561301857600080fd5b61302487828601612f41565b60c08301525095945050505050565b60006020828403121561304557600080fd5b5051919050565b60006020828403121561305e57600080fd5b81516129f981612c75565b60006020828403121561307b57600080fd5b81516001600160401b038082111561309257600080fd5b90830190604082860312156130a657600080fd5b6130ae612a33565b6130b783612ec9565b81526020830151828111156130cb57600080fd5b6130d787828601612f41565b60208301525095945050505050565b6001600160401b0360c01b8416815260606020820152600061310b6060830185612dfa565b905060ff83166040830152949350505050565b6001600160401b03811681146129cc57600080fd5b60006020828403121561314557600080fd5b81516129f98161311e565b60006040828403121561316257600080fd5b61316a612a33565b9050815181526020820151602082015292915050565b6000610240828403121561319357600080fd5b61319b612a7d565b6131a483612f06565b81526131b260208401612f06565b60208201526131c360408401612ec9565b60408201526131d460608401612ec9565b60608201526131e68460808501613150565b60808201526131f88460c08501613150565b60a082015261010061320c85828601613150565b60c083015261014061322086828701613150565b60e0840152613233866101808701613150565b82840152613245866101c08701613150565b6101208401526132586102008601612e9e565b908301525061326a6102208401612f06565b6101608201529392505050565b80516001600160a01b03168252602081015161329e60208401826001600160a01b03169052565b5060408101516132b960408401826001600160601b03169052565b5060608101516132d460608401826001600160601b03169052565b5060808101516132f1608084018280518252602090810151910152565b5060a0810151805160c0840152602081015160e08401525060c08101516101006133278185018380518252602090810151910152565b60e083015191506101406133478186018480518252602090810151910152565b9083015180516101808601526020908101516101a086015261012084015180516101c087015201516101e085015282015115156102008401525061016001516001600160a01b031661022090910152565b505050565b6001600160601b038416815261028081016133bb6020830185613277565b60ff8316610260830152949350505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156133f557600080fd5b81516129f981612cd5565b6001600160601b038316815261026081016129f96020830184613277565b60006020828403121561343057600080fd5b81516001600160401b0381111561344657600080fd5b8201601f8101841361345757600080fd5b612c6d84825160208401612f11565b6001600160601b03841681526001600160a01b038316602082015260606040820181905260009061349990830184612bbe565b95945050505050565b6000602082840312156134b457600080fd5b815164ffffffffff811681146129f957600080fd5b600080604083850312156134dc57600080fd5b82516134e781612c75565b6020840151909250612d1081612c75565b601f82111561339857600081815260208120601f850160051c8101602086101561351f5750805b601f850160051c820191505b8181101561353e5782815560010161352b565b505050505050565b81516001600160401b0381111561355f5761355f612a1d565b6135738161356d8454612e64565b846134f8565b602080601f8311600181146135a857600084156135905750858301515b600019600386901b1c1916600185901b17855561353e565b600085815260208120601f198616915b828110156135d7578886015182559484019460019091019084016135b8565b50858210156135f55787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122073b624be6e272f2f79d723df45cc7c5c917d3bdf1f25b3e8219cf70b0b7986f364736f6c63430008140033",
740
+ "linkReferences": {
741
+ "contracts/types/Blocknumber.sol": {
742
+ "BlocknumberLib": [
743
+ {
744
+ "length": 20,
745
+ "start": 3104
746
+ }
747
+ ]
748
+ },
749
+ "contracts/types/NftId.sol": {
750
+ "NftIdLib": [
751
+ {
752
+ "length": 20,
753
+ "start": 2323
754
+ },
755
+ {
756
+ "length": 20,
757
+ "start": 3377
758
+ },
759
+ {
760
+ "length": 20,
761
+ "start": 6336
762
+ }
763
+ ]
764
+ },
765
+ "contracts/types/RoleId.sol": {
766
+ "RoleIdLib": [
767
+ {
768
+ "length": 20,
769
+ "start": 6089
770
+ }
771
+ ]
772
+ },
773
+ "contracts/types/Timestamp.sol": {
774
+ "TimestampLib": [
775
+ {
776
+ "length": 20,
777
+ "start": 9043
778
+ }
779
+ ]
780
+ },
781
+ "contracts/types/Version.sol": {
782
+ "VersionLib": [
783
+ {
784
+ "length": 20,
785
+ "start": 1738
786
+ },
787
+ {
788
+ "length": 20,
789
+ "start": 3972
790
+ },
791
+ {
792
+ "length": 20,
793
+ "start": 5031
794
+ }
795
+ ]
796
+ }
797
+ },
798
+ "deployedLinkReferences": {
799
+ "contracts/types/Blocknumber.sol": {
800
+ "BlocknumberLib": [
801
+ {
802
+ "length": 20,
803
+ "start": 2790
804
+ }
805
+ ]
806
+ },
807
+ "contracts/types/NftId.sol": {
808
+ "NftIdLib": [
809
+ {
810
+ "length": 20,
811
+ "start": 2009
812
+ },
813
+ {
814
+ "length": 20,
815
+ "start": 3063
816
+ },
817
+ {
818
+ "length": 20,
819
+ "start": 6022
820
+ }
821
+ ]
822
+ },
823
+ "contracts/types/RoleId.sol": {
824
+ "RoleIdLib": [
825
+ {
826
+ "length": 20,
827
+ "start": 5775
828
+ }
829
+ ]
830
+ },
831
+ "contracts/types/Timestamp.sol": {
832
+ "TimestampLib": [
833
+ {
834
+ "length": 20,
835
+ "start": 8729
836
+ }
837
+ ]
838
+ },
839
+ "contracts/types/Version.sol": {
840
+ "VersionLib": [
841
+ {
842
+ "length": 20,
843
+ "start": 1424
844
+ },
845
+ {
846
+ "length": 20,
847
+ "start": 3658
848
+ },
849
+ {
850
+ "length": 20,
851
+ "start": 4717
852
+ }
853
+ ]
854
+ }
855
+ }
856
+ }