@etherisc/gif-next 0.0.2-e46206a-486 → 0.0.2-e510b92-393

Sign up to get free protection for your applications and to get access to all the features.
Files changed (320) hide show
  1. package/README.md +67 -1
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +152 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +220 -33
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +114 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -25
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +24 -57
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -50
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +291 -68
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +299 -58
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  33. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  36. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
  37. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  38. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  39. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  40. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  41. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
  42. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
  43. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
  44. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
  45. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  46. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +775 -0
  47. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  48. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
  49. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
  50. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
  51. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  52. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +778 -1020
  53. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  54. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +485 -0
  55. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  56. package/artifacts/contracts/instance/Instance.sol/Instance.json +2286 -1032
  57. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  58. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
  59. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  60. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1422 -0
  61. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  62. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +970 -0
  63. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  64. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +512 -0
  65. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  66. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +272 -0
  67. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  68. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +59 -0
  69. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  70. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  71. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
  72. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  73. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  74. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +37 -253
  75. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  76. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
  77. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  78. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
  79. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  80. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  81. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  82. package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
  83. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  84. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  85. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  86. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  87. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  88. package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
  89. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  90. package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
  91. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  92. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +32 -48
  93. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  94. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +111 -41
  95. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  96. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +444 -0
  97. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  98. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  99. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  100. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +167 -0
  101. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  102. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +40 -31
  103. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  104. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +322 -42
  105. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  106. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +464 -0
  107. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  108. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +176 -105
  109. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  110. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +488 -0
  111. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  112. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  113. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +201 -0
  114. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  115. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +94 -19
  116. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  117. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  118. package/artifacts/contracts/registry/Registry.sol/Registry.json +172 -49
  119. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  120. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +61 -29
  121. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  122. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +47 -34
  123. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  124. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
  125. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  126. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  127. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
  128. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  129. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  130. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  131. package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +1 -1
  132. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  133. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  134. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
  135. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  136. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
  137. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  138. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +4 -4
  139. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  140. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/RegisterableUpgradable.sol/RegisterableUpgradable.json} +2 -104
  141. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  142. package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/Service.sol/Service.json} +2 -2
  143. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  144. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  145. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  146. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  147. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  148. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  149. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  150. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +4 -4
  151. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  152. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  153. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  154. package/artifacts/contracts/test/TestService.sol/TestService.json +11 -11
  155. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  156. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  157. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  158. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  159. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +2 -2
  160. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  161. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  162. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  163. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  164. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  165. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  166. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  167. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  168. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  169. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
  170. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  172. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  173. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  174. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  175. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  176. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  177. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  178. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  179. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  180. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  181. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  182. package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
  183. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  184. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
  185. package/contracts/components/BaseComponent.sol +64 -11
  186. package/contracts/components/Distribution.sol +22 -14
  187. package/contracts/components/IBaseComponent.sol +14 -2
  188. package/contracts/components/IDistributionComponent.sol +1 -3
  189. package/contracts/components/IPoolComponent.sol +5 -3
  190. package/contracts/components/IProductComponent.sol +1 -3
  191. package/contracts/components/Pool.sol +50 -29
  192. package/contracts/components/Product.sol +50 -60
  193. package/contracts/instance/AccessManagedSimple.sol +115 -0
  194. package/contracts/instance/AccessManagerSimple.sol +692 -0
  195. package/contracts/instance/BundleManager.sol +129 -0
  196. package/contracts/instance/Cloneable.sol +46 -0
  197. package/contracts/instance/IAccessManagerSimple.sol +391 -0
  198. package/contracts/instance/IInstance.sol +48 -44
  199. package/contracts/instance/IInstanceService.sol +32 -0
  200. package/contracts/instance/Instance.sol +434 -63
  201. package/contracts/instance/InstanceAccessManager.sol +288 -0
  202. package/contracts/instance/InstanceReader.sol +315 -0
  203. package/contracts/instance/InstanceService.sol +232 -0
  204. package/contracts/instance/InstanceServiceManager.sol +57 -0
  205. package/contracts/instance/ObjectManager.sol +95 -0
  206. package/contracts/instance/base/ComponentServiceBase.sol +93 -8
  207. package/contracts/instance/base/IKeyValueStore.sol +13 -14
  208. package/contracts/instance/base/ILifecycle.sol +3 -3
  209. package/contracts/instance/base/KeyValueStore.sol +49 -39
  210. package/contracts/instance/base/Lifecycle.sol +1 -1
  211. package/contracts/instance/module/IAccess.sol +38 -0
  212. package/contracts/instance/module/IBundle.sol +20 -0
  213. package/contracts/instance/module/IDistribution.sol +39 -0
  214. package/contracts/instance/module/IPolicy.sol +45 -0
  215. package/contracts/instance/module/IRisk.sol +11 -0
  216. package/contracts/instance/module/ISetup.sol +46 -0
  217. package/contracts/instance/module/ITreasury.sol +23 -0
  218. package/contracts/instance/service/ComponentOwnerService.sol +62 -60
  219. package/contracts/instance/service/DistributionService.sol +49 -15
  220. package/contracts/instance/service/DistributionServiceManager.sol +54 -0
  221. package/contracts/instance/service/IComponentOwnerService.sol +1 -1
  222. package/contracts/instance/service/IDistributionService.sol +1 -1
  223. package/contracts/instance/service/IPoolService.sol +17 -3
  224. package/contracts/instance/service/IProductService.sol +8 -5
  225. package/contracts/instance/service/PoolService.sol +183 -45
  226. package/contracts/instance/service/PoolServiceManager.sol +54 -0
  227. package/contracts/instance/service/ProductService.sol +175 -115
  228. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  229. package/contracts/registry/IRegistry.sol +26 -2
  230. package/contracts/registry/IRegistryService.sol +34 -19
  231. package/contracts/registry/Registry.sol +61 -36
  232. package/contracts/registry/RegistryService.sol +42 -125
  233. package/contracts/registry/RegistryServiceManager.sol +21 -5
  234. package/contracts/registry/TokenRegistry.sol +111 -0
  235. package/contracts/shared/ERC165.sol +6 -2
  236. package/contracts/{instance/base → shared}/IService.sol +3 -3
  237. package/contracts/shared/NftOwnable.sol +2 -4
  238. package/contracts/shared/Registerable.sol +1 -0
  239. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  240. package/contracts/shared/Service.sol +55 -0
  241. package/contracts/shared/TokenHandler.sol +27 -0
  242. package/contracts/test/TestService.sol +3 -5
  243. package/contracts/types/NftIdSet.sol +26 -24
  244. package/contracts/types/RoleId.sol +8 -0
  245. package/contracts/types/StateId.sol +4 -0
  246. package/contracts/types/Version.sol +4 -1
  247. package/package.json +1 -1
  248. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  249. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  250. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  251. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  252. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  253. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  254. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  255. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
  256. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  257. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  258. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
  259. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  260. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
  261. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  262. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  263. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  264. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -117
  265. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
  266. package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
  267. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
  268. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
  269. package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
  270. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  271. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  272. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -271
  273. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  274. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -271
  275. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  276. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  277. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  278. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -164
  279. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  280. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -164
  281. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  282. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  283. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
  284. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  285. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
  286. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  287. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  288. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -638
  289. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  290. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  291. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  292. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -638
  293. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
  294. package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -557
  295. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  296. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -716
  297. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  298. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -744
  299. package/contracts/instance/IInstanceLinked.sol +0 -8
  300. package/contracts/instance/base/InstanceBase.sol +0 -89
  301. package/contracts/instance/base/ModuleBase.sol +0 -57
  302. package/contracts/instance/base/ServiceBase.sol +0 -44
  303. package/contracts/instance/module/bundle/BundleModule.sol +0 -134
  304. package/contracts/instance/module/bundle/IBundle.sol +0 -53
  305. package/contracts/instance/module/component/ComponentModule.sol +0 -71
  306. package/contracts/instance/module/component/IComponent.sol +0 -28
  307. package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
  308. package/contracts/instance/module/distribution/IDistribution.sol +0 -10
  309. package/contracts/instance/module/policy/IPolicy.sol +0 -63
  310. package/contracts/instance/module/policy/PolicyModule.sol +0 -91
  311. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  312. package/contracts/instance/module/pool/PoolModule.sol +0 -95
  313. package/contracts/instance/module/risk/IRisk.sol +0 -26
  314. package/contracts/instance/module/risk/RiskModule.sol +0 -62
  315. package/contracts/instance/module/treasury/ITreasury.sol +0 -84
  316. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  317. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -131
  318. package/contracts/test/TestDistribution.sol +0 -22
  319. package/contracts/test/TestPool.sol +0 -27
  320. package/contracts/test/TestProduct.sol +0 -74
@@ -51,6 +51,28 @@
51
51
  "stateMutability": "nonpayable",
52
52
  "type": "constructor"
53
53
  },
54
+ {
55
+ "inputs": [
56
+ {
57
+ "internalType": "address",
58
+ "name": "target",
59
+ "type": "address"
60
+ }
61
+ ],
62
+ "name": "AddressEmptyCode",
63
+ "type": "error"
64
+ },
65
+ {
66
+ "inputs": [
67
+ {
68
+ "internalType": "address",
69
+ "name": "account",
70
+ "type": "address"
71
+ }
72
+ ],
73
+ "name": "AddressInsufficientBalance",
74
+ "type": "error"
75
+ },
54
76
  {
55
77
  "inputs": [
56
78
  {
@@ -67,6 +89,43 @@
67
89
  "name": "ErrorAlreadyLinked",
68
90
  "type": "error"
69
91
  },
92
+ {
93
+ "inputs": [
94
+ {
95
+ "internalType": "address",
96
+ "name": "newWallet",
97
+ "type": "address"
98
+ }
99
+ ],
100
+ "name": "ErrorBaseComponentWalletAddressIsSameAsCurrent",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [
105
+ {
106
+ "internalType": "address",
107
+ "name": "oldWallet",
108
+ "type": "address"
109
+ },
110
+ {
111
+ "internalType": "address",
112
+ "name": "newWallet",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "internalType": "uint256",
117
+ "name": "allowance",
118
+ "type": "uint256"
119
+ },
120
+ {
121
+ "internalType": "uint256",
122
+ "name": "balance",
123
+ "type": "uint256"
124
+ }
125
+ ],
126
+ "name": "ErrorBaseComponentWalletAllowanceTooSmall",
127
+ "type": "error"
128
+ },
70
129
  {
71
130
  "inputs": [
72
131
  {
@@ -132,6 +191,11 @@
132
191
  "name": "ErrorRegistryNotInitialized",
133
192
  "type": "error"
134
193
  },
194
+ {
195
+ "inputs": [],
196
+ "name": "FailedInnerCall",
197
+ "type": "error"
198
+ },
135
199
  {
136
200
  "inputs": [],
137
201
  "name": "InvalidInitialization",
@@ -142,6 +206,17 @@
142
206
  "name": "NotInitializing",
143
207
  "type": "error"
144
208
  },
209
+ {
210
+ "inputs": [
211
+ {
212
+ "internalType": "address",
213
+ "name": "token",
214
+ "type": "address"
215
+ }
216
+ ],
217
+ "name": "SafeERC20FailedOperation",
218
+ "type": "error"
219
+ },
145
220
  {
146
221
  "anonymous": false,
147
222
  "inputs": [
@@ -155,6 +230,44 @@
155
230
  "name": "Initialized",
156
231
  "type": "event"
157
232
  },
233
+ {
234
+ "anonymous": false,
235
+ "inputs": [
236
+ {
237
+ "indexed": false,
238
+ "internalType": "address",
239
+ "name": "newWallet",
240
+ "type": "address"
241
+ }
242
+ ],
243
+ "name": "LogBaseComponentWalletAddressChanged",
244
+ "type": "event"
245
+ },
246
+ {
247
+ "anonymous": false,
248
+ "inputs": [
249
+ {
250
+ "indexed": false,
251
+ "internalType": "address",
252
+ "name": "from",
253
+ "type": "address"
254
+ },
255
+ {
256
+ "indexed": false,
257
+ "internalType": "address",
258
+ "name": "to",
259
+ "type": "address"
260
+ },
261
+ {
262
+ "indexed": false,
263
+ "internalType": "uint256",
264
+ "name": "amount",
265
+ "type": "uint256"
266
+ }
267
+ ],
268
+ "name": "LogBaseComponentWalletTokensTransferred",
269
+ "type": "event"
270
+ },
158
271
  {
159
272
  "inputs": [],
160
273
  "name": "REGISTERABLE_LOCATION_V1",
@@ -216,31 +329,6 @@
216
329
  "stateMutability": "view",
217
330
  "type": "function"
218
331
  },
219
- {
220
- "inputs": [],
221
- "name": "getDistributionFee",
222
- "outputs": [
223
- {
224
- "components": [
225
- {
226
- "internalType": "UFixed",
227
- "name": "fractionalFee",
228
- "type": "uint256"
229
- },
230
- {
231
- "internalType": "uint256",
232
- "name": "fixedFee",
233
- "type": "uint256"
234
- }
235
- ],
236
- "internalType": "struct Fee",
237
- "name": "distributionFee",
238
- "type": "tuple"
239
- }
240
- ],
241
- "stateMutability": "view",
242
- "type": "function"
243
- },
244
332
  {
245
333
  "inputs": [],
246
334
  "name": "getInitialInfo",
@@ -335,6 +423,19 @@
335
423
  "stateMutability": "view",
336
424
  "type": "function"
337
425
  },
426
+ {
427
+ "inputs": [],
428
+ "name": "getProductNftId",
429
+ "outputs": [
430
+ {
431
+ "internalType": "NftId",
432
+ "name": "productNftId",
433
+ "type": "uint96"
434
+ }
435
+ ],
436
+ "stateMutability": "view",
437
+ "type": "function"
438
+ },
338
439
  {
339
440
  "inputs": [],
340
441
  "name": "getRegistry",
@@ -348,6 +449,58 @@
348
449
  "stateMutability": "view",
349
450
  "type": "function"
350
451
  },
452
+ {
453
+ "inputs": [],
454
+ "name": "getSetupInfo",
455
+ "outputs": [
456
+ {
457
+ "components": [
458
+ {
459
+ "internalType": "NftId",
460
+ "name": "productNftId",
461
+ "type": "uint96"
462
+ },
463
+ {
464
+ "internalType": "contract TokenHandler",
465
+ "name": "tokenHandler",
466
+ "type": "address"
467
+ },
468
+ {
469
+ "components": [
470
+ {
471
+ "internalType": "UFixed",
472
+ "name": "fractionalFee",
473
+ "type": "uint256"
474
+ },
475
+ {
476
+ "internalType": "uint256",
477
+ "name": "fixedFee",
478
+ "type": "uint256"
479
+ }
480
+ ],
481
+ "internalType": "struct Fee",
482
+ "name": "distributionFee",
483
+ "type": "tuple"
484
+ },
485
+ {
486
+ "internalType": "bool",
487
+ "name": "isIntercepting",
488
+ "type": "bool"
489
+ },
490
+ {
491
+ "internalType": "address",
492
+ "name": "wallet",
493
+ "type": "address"
494
+ }
495
+ ],
496
+ "internalType": "struct ISetup.DistributionSetupInfo",
497
+ "name": "setupInfo",
498
+ "type": "tuple"
499
+ }
500
+ ],
501
+ "stateMutability": "view",
502
+ "type": "function"
503
+ },
351
504
  {
352
505
  "inputs": [],
353
506
  "name": "getToken",
@@ -481,6 +634,32 @@
481
634
  "stateMutability": "nonpayable",
482
635
  "type": "function"
483
636
  },
637
+ {
638
+ "inputs": [
639
+ {
640
+ "internalType": "NftId",
641
+ "name": "productNftId",
642
+ "type": "uint96"
643
+ }
644
+ ],
645
+ "name": "setProductNftId",
646
+ "outputs": [],
647
+ "stateMutability": "nonpayable",
648
+ "type": "function"
649
+ },
650
+ {
651
+ "inputs": [
652
+ {
653
+ "internalType": "address",
654
+ "name": "newWallet",
655
+ "type": "address"
656
+ }
657
+ ],
658
+ "name": "setWallet",
659
+ "outputs": [],
660
+ "stateMutability": "nonpayable",
661
+ "type": "function"
662
+ },
484
663
  {
485
664
  "inputs": [
486
665
  {
@@ -508,14 +687,14 @@
508
687
  "type": "function"
509
688
  }
510
689
  ],
511
- "bytecode": "0x60806040523480156200001157600080fd5b5060405162001c7038038062001c70833981016040819052620000349162000796565b85858560786301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff1916600190811790915585600280546001600160a01b03191633179055604080516020810190915260008152620000aa87878686868662000466565b6000620000bf6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156200010f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620001399190810190620008ff565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b8152630de7806f60e41b6004820152919250906301ffc9a790602401602060405180830381865afa158015620001a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c79190620009e5565b620001f35760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000247573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026d919062000a0a565b600380546001600160a01b03199081166001600160a01b0393841617909155600580543090831617905560068054909116918816919091179055631b1599eb60e21b60009081526020527f82dc1aafdf8e16d475718790c9464a2912866acb395e292abd1ea37be80f5b28805460ff191660011790555050600a805460ff19168a1515179055505085516008555050506020808401516009556007546040805163329802c760e21b815290516001600160a01b03909216935063ca600b1c9260048083019391928290030181865afa1580156200034e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000374919062000a0a565b600a8054610100600160a81b0319166101006001600160a01b039384160217905560075460408051634288121d60e01b815290519190921691634288121d9160048083019260209291908290030181865afa158015620003d8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003fe919062000a0a565b600b80546001600160a01b0319166001600160a01b039290921691909117905563b4d7c7a360e01b60009081526020527f28392f1ce6972666bf759ebdf276b971884e972a5de82920a201036d483f35c5805460ff1916600117905550505050505062000b85565b62000472828762000537565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d010000000000000000000000000086151502178155905060018101620004f1838262000ab9565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b600280546001600160a01b0319166001600160a01b0384161790556200055d8162000561565b5050565b6001546001600160a01b0316156200059c5760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001ea565b6001600160a01b038116620005c45760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620005fc5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001ea565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263350fb35160e11b60048201526301ffc9a790602401602060405180830381865afa92505050801562000679575060408051601f3d908101601f191682019092526200067691810190620009e5565b60015b620006a35760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001ea565b806200055d5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001ea565b50565b6001600160a01b0381168114620006ce57600080fd5b8051620006f481620006d1565b919050565b80516001600160601b0381168114620006f457600080fd5b80518015158114620006f457600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156200075d576200075d62000722565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200078e576200078e62000722565b604052919050565b60008060008060008086880360e0811215620007b157600080fd5b8751620007be81620006d1565b9650620007ce60208901620006f9565b95506040880151620007e081620006d1565b9450620007f06060890162000711565b93506040607f19820112156200080557600080fd5b50604080519081016001600160401b03811182821017156200082b576200082b62000722565b6040526080880151815260a0880151602082015260c08801519092506200085281620006d1565b809150509295509295509295565b805160ff81168114620006f457600080fd5b600082601f8301126200088457600080fd5b81516001600160401b03811115620008a057620008a062000722565b6020620008b6601f8301601f1916820162000763565b8281528582848701011115620008cb57600080fd5b60005b83811015620008eb578581018301518282018401528201620008ce565b506000928101909101919091529392505050565b6000602082840312156200091257600080fd5b81516001600160401b03808211156200092a57600080fd5b9083019060e082860312156200093f57600080fd5b6200094962000738565b6200095483620006f9565b81526200096460208401620006f9565b6020820152620009776040840162000860565b60408201526200098a6060840162000711565b60608201526200099d60808401620006e7565b6080820152620009b060a08401620006e7565b60a082015260c083015182811115620009c857600080fd5b620009d68782860162000872565b60c08301525095945050505050565b600060208284031215620009f857600080fd5b62000a038262000711565b9392505050565b60006020828403121562000a1d57600080fd5b815162000a0381620006d1565b600181811c9082168062000a3f57607f821691505b60208210810362000a6057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000ab457600081815260208120601f850160051c8101602086101562000a8f5750805b601f850160051c820191505b8181101562000ab05782815560010162000a9b565b5050505b505050565b81516001600160401b0381111562000ad55762000ad562000722565b62000aed8162000ae6845462000a2a565b8462000a66565b602080601f83116001811462000b25576000841562000b0c5750858301515b600019600386901b1c1916600185901b17855562000ab0565b600085815260208120601f198616915b8281101562000b565788860151825594840194600190910190840162000b35565b508582101562000b755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6110db8062000b956000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80637c3d5166116100ad578063de7b5d1411610071578063de7b5d14146102a3578063e2147567146102b4578063f7d39dea146102c8578063f80e207214610211578063f83d08ba146102db57600080fd5b80637c3d51661461026057806387ef9ba014610275578063893d20e814610280578063a69df4b514610288578063d16d0fe81461029057600080fd5b806321df0da7116100f457806321df0da7146101ed5780633f52c0f6146101fe5780634cf30a84146102115780635ab1bd5314610224578063644c45e01461023557600080fd5b806301ffc9a7146101315780630fec111c146101735780631329960414610189578063138461e0146101ae5780631eff4b22146101b8575b600080fd5b61015e61013f366004610c6d565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61017b6102e3565b60405161016a929190610ce4565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161016a565b6101b661036a565b005b6101df7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016a565b6006546001600160a01b0316610196565b6101b661020c366004610df4565b61058c565b6101b661021f366004610e43565b6105f5565b6001546001600160a01b0316610196565b600154600160a01b90046001600160601b03166040516001600160601b03909116815260200161016a565b61026861065d565b60405161016a9190610e6d565b600a5460ff1661015e565b61019661081f565b6101b661093d565b6101df61029e366004610e43565b6109ba565b6007546001600160a01b0316610196565b61015e6102c2366004610e84565b50600090565b6101df6102d6366004610e43565b6109cf565b6101b6610a6a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201819052909180610327610ae7565b50600a546040805160085460208201526009548183015260ff90921615156060808401919091528151808403909101815260809092019052909590945092505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156103cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f09190610e9f565b15610437576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166104605760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156104a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104cd9190610e9f565b6104f5576040516372657a5160e01b81526001600160a01b038216600482015260240161042e565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561053f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105639190610ed8565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600a54604051631fa9607b60e11b81526101009091046001600160a01b031690633f52c0f6906105c0908490600401610e6d565b600060405180830381600087803b1580156105da57600080fd5b505af11580156105ee573d6000803e3d6000fd5b5050505050565b600b546001600160a01b031633146106595760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b606482015260840161042e565b5050565b60408051808201909152600080825260208201526007546000906001600160a01b0316639ae31ff561069f6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b039091166004820152602401602060405180830381865afa1580156106e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107079190610ed8565b60075460405163278b381b60e01b81526001600160601b03831660048201529192506001600160a01b03169063278b381b90602401602060405180830381865afa158015610759573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077d9190610e9f565b156108035760075460405163f2b246c360e01b81526001600160601b03831660048201526001600160a01b039091169063f2b246c3906024016101e060405180830381865afa1580156107d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f89190610f46565b610100015191505090565b5050604080518082019091526008548152600954602082015290565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610884573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a89190610e9f565b1561092d57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610904573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109289190611005565b905090565b506002546001600160a01b031690565b600061094761081f565b90506001600160a01b0381161580159061096a5750336001600160a01b03821614155b1561098a5760405163700dd81160e01b815233600482015260240161042e565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024016105c0565b60006109c68282611022565b90505b92915050565b6000806109da61065d565b60405163012ebd8360e21b815281516004820152602082015160248201526044810185905290915073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015610a3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a619190611047565b50949350505050565b6000610a7461081f565b90506001600160a01b03811615801590610a975750336001600160a01b03821614155b15610ab75760405163700dd81160e01b815233600482015260240161042e565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016105c0565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610b6e6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610bb661081f565b6001600160a01b03168152602001826001018054610bd39061106b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff9061106b565b8015610c4c5780601f10610c2157610100808354040283529160200191610c4c565b820191906000526020600020905b815481529060010190602001808311610c2f57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b600060208284031215610c7f57600080fd5b81356001600160e01b031981168114610c9757600080fd5b9392505050565b6000815180845260005b81811015610cc457602081850181015186830182015201610ca8565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151610d2860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610d6e610120840182610c9e565b90508281036020840152610d828185610c9e565b95945050505050565b6040805190810167ffffffffffffffff81118282101715610dbc57634e487b7160e01b600052604160045260246000fd5b60405290565b604051610120810167ffffffffffffffff81118282101715610dbc57634e487b7160e01b600052604160045260246000fd5b600060408284031215610e0657600080fd5b610e0e610d8b565b82358152602083013560208201528091505092915050565b80356001600160c01b031981168114610e3e57600080fd5b919050565b60008060408385031215610e5657600080fd5b610e5f83610e26565b946020939093013593505050565b8151815260208083015190820152604081016109c9565b600060208284031215610e9657600080fd5b6109c682610e26565b600060208284031215610eb157600080fd5b81518015158114610c9757600080fd5b80516001600160601b0381168114610e3e57600080fd5b600060208284031215610eea57600080fd5b6109c682610ec1565b6001600160a01b0381168114610f0857600080fd5b50565b8051610e3e81610ef3565b600060408284031215610f2857600080fd5b610f30610d8b565b9050815181526020820151602082015292915050565b60006101e08284031215610f5957600080fd5b610f61610dc2565b610f6a83610ec1565b8152610f7860208401610ec1565b6020820152610f8960408401610f0b565b6040820152610f9b8460608501610f16565b6060820152610fad8460a08501610f16565b6080820152610fbf8460e08501610f16565b60a0820152610fd2846101208501610f16565b60c0820152610fe5846101608501610f16565b60e0820152610ff8846101a08501610f16565b6101008201529392505050565b60006020828403121561101757600080fd5b8151610c9781610ef3565b80820281158282048414176109c957634e487b7160e01b600052601160045260246000fd5b6000806040838503121561105a57600080fd5b505080516020909101519092909150565b600181811c9082168061107f57607f821691505b60208210810361109f57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122070e3df6d4ce7b733da855bf1d6cc3301b29b4b1f8c8fb11d079777821328e75364736f6c63430008140033",
512
- "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80637c3d5166116100ad578063de7b5d1411610071578063de7b5d14146102a3578063e2147567146102b4578063f7d39dea146102c8578063f80e207214610211578063f83d08ba146102db57600080fd5b80637c3d51661461026057806387ef9ba014610275578063893d20e814610280578063a69df4b514610288578063d16d0fe81461029057600080fd5b806321df0da7116100f457806321df0da7146101ed5780633f52c0f6146101fe5780634cf30a84146102115780635ab1bd5314610224578063644c45e01461023557600080fd5b806301ffc9a7146101315780630fec111c146101735780631329960414610189578063138461e0146101ae5780631eff4b22146101b8575b600080fd5b61015e61013f366004610c6d565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61017b6102e3565b60405161016a929190610ce4565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161016a565b6101b661036a565b005b6101df7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016a565b6006546001600160a01b0316610196565b6101b661020c366004610df4565b61058c565b6101b661021f366004610e43565b6105f5565b6001546001600160a01b0316610196565b600154600160a01b90046001600160601b03166040516001600160601b03909116815260200161016a565b61026861065d565b60405161016a9190610e6d565b600a5460ff1661015e565b61019661081f565b6101b661093d565b6101df61029e366004610e43565b6109ba565b6007546001600160a01b0316610196565b61015e6102c2366004610e84565b50600090565b6101df6102d6366004610e43565b6109cf565b6101b6610a6a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201819052909180610327610ae7565b50600a546040805160085460208201526009548183015260ff90921615156060808401919091528151808403909101815260809092019052909590945092505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156103cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f09190610e9f565b15610437576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166104605760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa1580156104a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104cd9190610e9f565b6104f5576040516372657a5160e01b81526001600160a01b038216600482015260240161042e565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561053f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105639190610ed8565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600a54604051631fa9607b60e11b81526101009091046001600160a01b031690633f52c0f6906105c0908490600401610e6d565b600060405180830381600087803b1580156105da57600080fd5b505af11580156105ee573d6000803e3d6000fd5b5050505050565b600b546001600160a01b031633146106595760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b606482015260840161042e565b5050565b60408051808201909152600080825260208201526007546000906001600160a01b0316639ae31ff561069f6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b039091166004820152602401602060405180830381865afa1580156106e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107079190610ed8565b60075460405163278b381b60e01b81526001600160601b03831660048201529192506001600160a01b03169063278b381b90602401602060405180830381865afa158015610759573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077d9190610e9f565b156108035760075460405163f2b246c360e01b81526001600160601b03831660048201526001600160a01b039091169063f2b246c3906024016101e060405180830381865afa1580156107d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f89190610f46565b610100015191505090565b5050604080518082019091526008548152600954602082015290565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610884573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a89190610e9f565b1561092d57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610904573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109289190611005565b905090565b506002546001600160a01b031690565b600061094761081f565b90506001600160a01b0381161580159061096a5750336001600160a01b03821614155b1561098a5760405163700dd81160e01b815233600482015260240161042e565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024016105c0565b60006109c68282611022565b90505b92915050565b6000806109da61065d565b60405163012ebd8360e21b815281516004820152602082015160248201526044810185905290915073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015610a3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a619190611047565b50949350505050565b6000610a7461081f565b90506001600160a01b03811615801590610a975750336001600160a01b03821614155b15610ab75760405163700dd81160e01b815233600482015260240161042e565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016105c0565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610b6e6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610bb661081f565b6001600160a01b03168152602001826001018054610bd39061106b565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff9061106b565b8015610c4c5780601f10610c2157610100808354040283529160200191610c4c565b820191906000526020600020905b815481529060010190602001808311610c2f57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b600060208284031215610c7f57600080fd5b81356001600160e01b031981168114610c9757600080fd5b9392505050565b6000815180845260005b81811015610cc457602081850181015186830182015201610ca8565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151610d2860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610d6e610120840182610c9e565b90508281036020840152610d828185610c9e565b95945050505050565b6040805190810167ffffffffffffffff81118282101715610dbc57634e487b7160e01b600052604160045260246000fd5b60405290565b604051610120810167ffffffffffffffff81118282101715610dbc57634e487b7160e01b600052604160045260246000fd5b600060408284031215610e0657600080fd5b610e0e610d8b565b82358152602083013560208201528091505092915050565b80356001600160c01b031981168114610e3e57600080fd5b919050565b60008060408385031215610e5657600080fd5b610e5f83610e26565b946020939093013593505050565b8151815260208083015190820152604081016109c9565b600060208284031215610e9657600080fd5b6109c682610e26565b600060208284031215610eb157600080fd5b81518015158114610c9757600080fd5b80516001600160601b0381168114610e3e57600080fd5b600060208284031215610eea57600080fd5b6109c682610ec1565b6001600160a01b0381168114610f0857600080fd5b50565b8051610e3e81610ef3565b600060408284031215610f2857600080fd5b610f30610d8b565b9050815181526020820151602082015292915050565b60006101e08284031215610f5957600080fd5b610f61610dc2565b610f6a83610ec1565b8152610f7860208401610ec1565b6020820152610f8960408401610f0b565b6040820152610f9b8460608501610f16565b6060820152610fad8460a08501610f16565b6080820152610fbf8460e08501610f16565b60a0820152610fd2846101208501610f16565b60c0820152610fe5846101608501610f16565b60e0820152610ff8846101a08501610f16565b6101008201529392505050565b60006020828403121561101757600080fd5b8151610c9781610ef3565b80820281158282048414176109c957634e487b7160e01b600052601160045260246000fd5b6000806040838503121561105a57600080fd5b505080516020909101519092909150565b600181811c9082168061107f57607f821691505b60208210810361109f57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122070e3df6d4ce7b733da855bf1d6cc3301b29b4b1f8c8fb11d079777821328e75364736f6c63430008140033",
690
+ "bytecode": "0x60806040523480156200001157600080fd5b506040516200240e3803806200240e833981016040819052620000349162000824565b85858560786001856200006d6301ffc9a760e01b6000908152602052600080516020620023ee833981519152805460ff19166001179055565b600280546001600160a01b031916331790556040805160208101909152600081526200009e8787868686866200046b565b6000620000b36001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000103573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200012d91908101906200098d565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b815263cb92195b60e01b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000195573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bb919062000a73565b620001e75760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000261919062000a98565b600380546001600160a01b039283166001600160a01b0319918216179091556005805482163017905560068054988316989091169790971790965550506346b32da560e01b600090815260209081527f0c74615b9065379cafc5e4e9d82ac4cbed23f75e35c2545793f8045351389f6c805460ff19166001179055600a80548a516008558a8301516009556001600160a81b0319168b1515610100600160a81b031916176101008d8816021790556007546040805163329802c760e21b8152905191909616975063ca600b1c96506004808701969295509093509083900301905081865afa15801562000358573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037e919062000a98565b600b80546001600160a01b0319166001600160a01b0392831617905560075460408051634288121d60e01b815290519190921691634288121d9160048083019260209291908290030181865afa158015620003dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000403919062000a98565b600c80546001600160a01b0319166001600160a01b039290921691909117905563c8ea96c560e01b60009081526020527f358bf83baf6613c2def0011c88aae44093f6c2a350167255c9453fdf96405794805460ff1916600117905550505050505062000c13565b6200049c6301ffc9a760e01b6000908152602052600080516020620023ee833981519152805460ff19166001179055565b620004a882876200056d565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d01000000000000000000000000008615150217815590506001810162000527838262000b47565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b6001600160a01b038216620005c55760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401620001de565b600280546001600160a01b0319166001600160a01b038416179055620005eb81620005ef565b5050565b6001546001600160a01b0316156200062a5760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001de565b6001600160a01b038116620006525760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036200068a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001de565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632eaf856d60e11b60048201526301ffc9a790602401602060405180830381865afa92505050801562000707575060408051601f3d908101601f19168201909252620007049181019062000a73565b60015b620007315760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001de565b80620005eb5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001de565b50565b6001600160a01b03811681146200075c57600080fd5b805162000782816200075f565b919050565b80516001600160601b03811681146200078257600080fd5b805180151581146200078257600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715620007eb57620007eb620007b0565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200081c576200081c620007b0565b604052919050565b60008060008060008086880360e08112156200083f57600080fd5b87516200084c816200075f565b96506200085c6020890162000787565b955060408801516200086e816200075f565b94506200087e606089016200079f565b93506040607f19820112156200089357600080fd5b50604080519081016001600160401b0381118282101715620008b957620008b9620007b0565b6040526080880151815260a0880151602082015260c0880151909250620008e0816200075f565b809150509295509295509295565b805160ff811681146200078257600080fd5b600082601f8301126200091257600080fd5b81516001600160401b038111156200092e576200092e620007b0565b602062000944601f8301601f19168201620007f1565b82815285828487010111156200095957600080fd5b60005b83811015620009795785810183015182820184015282016200095c565b506000928101909101919091529392505050565b600060208284031215620009a057600080fd5b81516001600160401b0380821115620009b857600080fd5b9083019060e08286031215620009cd57600080fd5b620009d7620007c6565b620009e28362000787565b8152620009f26020840162000787565b602082015262000a0560408401620008ee565b604082015262000a18606084016200079f565b606082015262000a2b6080840162000775565b608082015262000a3e60a0840162000775565b60a082015260c08301518281111562000a5657600080fd5b62000a648782860162000900565b60c08301525095945050505050565b60006020828403121562000a8657600080fd5b62000a91826200079f565b9392505050565b60006020828403121562000aab57600080fd5b815162000a91816200075f565b600181811c9082168062000acd57607f821691505b60208210810362000aee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000b4257600081815260208120601f850160051c8101602086101562000b1d5750805b601f850160051c820191505b8181101562000b3e5782815560010162000b29565b5050505b505050565b81516001600160401b0381111562000b635762000b63620007b0565b62000b7b8162000b74845462000ab8565b8462000af4565b602080601f83116001811462000bb3576000841562000b9a5750858301515b600019600386901b1c1916600185901b17855562000b3e565b600085815260208120601f198616915b8281101562000be45788860151825594840194600190910190840162000bc3565b508582101562000c035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6117cb8062000c236000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c8063644c45e0116100c3578063de7b5d141161007c578063de7b5d14146102ef578063deaa59df14610300578063e214756714610313578063f7d39dea14610327578063f80e207214610270578063f83d08ba1461033a57600080fd5b8063644c45e01461029457806387ef9ba0146102ac578063893d20e8146102b7578063a69df4b5146102bf578063c200b809146102c7578063d16d0fe8146102dc57600080fd5b80631eff4b22116101155780631eff4b221461020457806321df0da7146102395780632a65c6881461024a5780633f52c0f61461025d5780634cf30a84146102705780635ab1bd531461028357600080fd5b806251884a1461015157806301ffc9a7146101825780630fec111c146101bf57806313299604146101d5578063138461e0146101fa575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b6101af6101903660046112e2565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610179565b6101c7610342565b60405161017992919061135c565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610179565b610202610411565b005b61022b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610179565b6006546001600160a01b03166101e2565b610202610258366004611418565b610633565b61020261026b36600461146c565b610782565b61020261027e3660046114bb565b6107e7565b6001546001600160a01b03166101e2565b600154600160a01b90046001600160601b0316610165565b600a5460ff166101af565b6101e261084f565b61020261096d565b6102cf610a08565b60405161017991906114e5565b61022b6102ea3660046114bb565b610b17565b6007546001600160a01b03166101e2565b61020261030e36600461155a565b610b2c565b6101af610321366004611577565b50600090565b61022b6103353660046114bb565b610e33565b610202610ed5565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091610385610f40565b506040805160a081018252600754600160a01b90046001600160601b03168152600a5461010081046001600160a01b0316602080840191909152835180850185526008548152600954818301528385015260ff90911615156060830152306080830152915192935083926103f992016114e5565b60405160208183030381529060405292509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610473573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049791906115a2565b156104de576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166105075760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610550573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057491906115a2565b61059c576040516372657a5160e01b81526001600160a01b03821660048201526024016104d5565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156105e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060a91906115bd565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b61063b61084f565b6001600160a01b0316336001600160a01b03161461066e5760405163700dd81160e01b81523360048201526024016104d5565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156106ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070e91906115a2565b61075a5760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016104d5565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b600b54604051631fa9607b60e11b81526001600160a01b0390911690633f52c0f6906107b29084906004016115da565b600060405180830381600087803b1580156107cc57600080fd5b505af11580156107e0573d6000803e3d6000fd5b5050505050565b600c546001600160a01b0316331461084b5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b60648201526084016104d5565b5050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156108b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d891906115a2565b1561095d57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610934573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095891906115fc565b905090565b506002546001600160a01b031690565b61097561084f565b6001600160a01b0316336001600160a01b0316146109a85760405163700dd81160e01b81523360048201526024016104d5565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b1580156109ee57600080fd5b505af1158015610a02573d6000803e3d6000fd5b50505050565b610a10611286565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610a5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7e91906115fc565b9050806001600160a01b0316639ad69c67610aa96001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240160c060405180830381865afa158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b119190611619565b91505090565b6000610b2382826116dd565b90505b92915050565b610b3461084f565b6001600160a01b0316336001600160a01b031614610b675760405163700dd81160e01b81523360048201526024016104d5565b6005546006546040516370a0823160e01b81526001600160a01b03928316600482018190529260009216906370a0823190602401602060405180830381865afa158015610bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdc9190611702565b9050816001600160a01b0316836001600160a01b031603610c1b57604051637c739a9960e11b81526001600160a01b03841660048201526024016104d5565b8015610cec576001600160a01b0382163014610cec57600654604051636eb1769f60e11b81526001600160a01b038481166004830152306024830152600092169063dd62ed3e90604401602060405180830381865afa158015610c82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca69190611702565b905081811015610cea57604051633945c9b360e01b81526001600160a01b0380851660048301528516602482015260448101829052606481018390526084016104d5565b505b600580546001600160a01b0319166001600160a01b0385169081179091556040519081527f7a6b70c9759bfc6df8d6267688169ed308c6efabc985cf7d02df268733f8ec059060200160405180910390a18015610e2e57306001600160a01b03831603610dca5760065460405163095ea7b360e01b8152306004820152602481018390526001600160a01b039091169063095ea7b3906044016020604051808303816000875af1158015610da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc891906115a2565b505b600654610de2906001600160a01b03168385846110c6565b604080516001600160a01b038085168252851660208201529081018290527f40b3f633f2d28d6e514f9789ade3c5ddfab85e6731dda38dcb69206d3272c71b9060600160405180910390a15b505050565b600080610e3e610a08565b604081810151905163012ebd8360e21b81528151600482015260208201516024820152604481018690529192509073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015610ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecb919061171b565b5095945050505050565b610edd61084f565b6001600160a01b0316336001600160a01b031614610f105760405163700dd81160e01b81523360048201526024016104d5565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016109d4565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610fc76001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161100f61084f565b6001600160a01b0316815260200182600101805461102c9061173f565b80601f01602080910402602001604051908101604052809291908181526020018280546110589061173f565b80156110a55780601f1061107a576101008083540402835291602001916110a5565b820191906000526020600020905b81548152906001019060200180831161108857829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610a029186919060009061112c9084168361117a565b9050805160001415801561115157508080602001905181019061114f91906115a2565b155b15610e2e57604051635274afe760e01b81526001600160a01b03841660048201526024016104d5565b6060610b238383600084600080856001600160a01b031684866040516111a09190611779565b60006040518083038185875af1925050503d80600081146111dd576040519150601f19603f3d011682016040523d82523d6000602084013e6111e2565b606091505b50915091506111f28683836111fe565b925050505b9392505050565b6060826112135761120e8261125a565b6111f7565b815115801561122a57506001600160a01b0384163b155b1561125357604051639996b31560e01b81526001600160a01b03851660048201526024016104d5565b50806111f7565b80511561126a5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b50565b6040518060a0016040528060006001600160601b0316815260200160006001600160a01b031681526020016112ce604051806040016040528060008152602001600081525090565b815260006020820181905260409091015290565b6000602082840312156112f457600080fd5b81356001600160e01b0319811681146111f757600080fd5b60005b8381101561132757818101518382015260200161130f565b50506000910152565b6000815180845261134881602086016020860161130c565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516113a060a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e06101008401526113e6610120840182611330565b905082810360208401526113fa8185611330565b95945050505050565b6001600160601b038116811461128357600080fd5b60006020828403121561142a57600080fd5b81356111f781611403565b6040805190810167ffffffffffffffff8111828210171561146657634e487b7160e01b600052604160045260246000fd5b60405290565b60006040828403121561147e57600080fd5b611486611435565b82358152602083013560208201528091505092915050565b80356001600160c01b0319811681146114b657600080fd5b919050565b600080604083850312156114ce57600080fd5b6114d78361149e565b946020939093013593505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b6001600160a01b038116811461128357600080fd5b60006020828403121561156c57600080fd5b81356111f781611545565b60006020828403121561158957600080fd5b610b238261149e565b805180151581146114b657600080fd5b6000602082840312156115b457600080fd5b610b2382611592565b6000602082840312156115cf57600080fd5b81516111f781611403565b815181526020808301519082015260408101610b26565b80516114b681611545565b60006020828403121561160e57600080fd5b81516111f781611545565b600081830360c081121561162c57600080fd5b60405160a0810181811067ffffffffffffffff8211171561165d57634e487b7160e01b600052604160045260246000fd5b604052835161166b81611403565b8152602084015161167b81611545565b60208201526040603f198301121561169257600080fd5b61169a611435565b915060408401518252606084015160208301528160408201526116bf60808501611592565b60608201526116d060a085016115f1565b6080820152949350505050565b8082028115828204841417610b2657634e487b7160e01b600052601160045260246000fd5b60006020828403121561171457600080fd5b5051919050565b6000806040838503121561172e57600080fd5b505080516020909101519092909150565b600181811c9082168061175357607f821691505b60208210810361177357634e487b7160e01b600052602260045260246000fd5b50919050565b6000825161178b81846020870161130c565b919091019291505056fea26469706673582212207eacd80439cc72e6f578afb2e1d47dac6e61b28d108a1f783eb8664b20fe06c464736f6c6343000814003367be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5",
691
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061014c5760003560e01c8063644c45e0116100c3578063de7b5d141161007c578063de7b5d14146102ef578063deaa59df14610300578063e214756714610313578063f7d39dea14610327578063f80e207214610270578063f83d08ba1461033a57600080fd5b8063644c45e01461029457806387ef9ba0146102ac578063893d20e8146102b7578063a69df4b5146102bf578063c200b809146102c7578063d16d0fe8146102dc57600080fd5b80631eff4b22116101155780631eff4b221461020457806321df0da7146102395780632a65c6881461024a5780633f52c0f61461025d5780634cf30a84146102705780635ab1bd531461028357600080fd5b806251884a1461015157806301ffc9a7146101825780630fec111c146101bf57806313299604146101d5578063138461e0146101fa575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b6101af6101903660046112e2565b6001600160e01b03191660009081526020819052604090205460ff1690565b6040519015158152602001610179565b6101c7610342565b60405161017992919061135c565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610179565b610202610411565b005b61022b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610179565b6006546001600160a01b03166101e2565b610202610258366004611418565b610633565b61020261026b36600461146c565b610782565b61020261027e3660046114bb565b6107e7565b6001546001600160a01b03166101e2565b600154600160a01b90046001600160601b0316610165565b600a5460ff166101af565b6101e261084f565b61020261096d565b6102cf610a08565b60405161017991906114e5565b61022b6102ea3660046114bb565b610b17565b6007546001600160a01b03166101e2565b61020261030e36600461155a565b610b2c565b6101af610321366004611577565b50600090565b61022b6103353660046114bb565b610e33565b610202610ed5565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091610385610f40565b506040805160a081018252600754600160a01b90046001600160601b03168152600a5461010081046001600160a01b0316602080840191909152835180850185526008548152600954818301528385015260ff90911615156060830152306080830152915192935083926103f992016114e5565b60405160208183030381529060405292509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610473573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061049791906115a2565b156104de576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166105075760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610550573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057491906115a2565b61059c576040516372657a5160e01b81526001600160a01b03821660048201526024016104d5565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156105e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060a91906115bd565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b61063b61084f565b6001600160a01b0316336001600160a01b03161461066e5760405163700dd81160e01b81523360048201526024016104d5565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156106ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070e91906115a2565b61075a5760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016104d5565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b600b54604051631fa9607b60e11b81526001600160a01b0390911690633f52c0f6906107b29084906004016115da565b600060405180830381600087803b1580156107cc57600080fd5b505af11580156107e0573d6000803e3d6000fd5b5050505050565b600c546001600160a01b0316331461084b5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b60648201526084016104d5565b5050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156108b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d891906115a2565b1561095d57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610934573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095891906115fc565b905090565b506002546001600160a01b031690565b61097561084f565b6001600160a01b0316336001600160a01b0316146109a85760405163700dd81160e01b81523360048201526024016104d5565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b1580156109ee57600080fd5b505af1158015610a02573d6000803e3d6000fd5b50505050565b610a10611286565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610a5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7e91906115fc565b9050806001600160a01b0316639ad69c67610aa96001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240160c060405180830381865afa158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b119190611619565b91505090565b6000610b2382826116dd565b90505b92915050565b610b3461084f565b6001600160a01b0316336001600160a01b031614610b675760405163700dd81160e01b81523360048201526024016104d5565b6005546006546040516370a0823160e01b81526001600160a01b03928316600482018190529260009216906370a0823190602401602060405180830381865afa158015610bb8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdc9190611702565b9050816001600160a01b0316836001600160a01b031603610c1b57604051637c739a9960e11b81526001600160a01b03841660048201526024016104d5565b8015610cec576001600160a01b0382163014610cec57600654604051636eb1769f60e11b81526001600160a01b038481166004830152306024830152600092169063dd62ed3e90604401602060405180830381865afa158015610c82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca69190611702565b905081811015610cea57604051633945c9b360e01b81526001600160a01b0380851660048301528516602482015260448101829052606481018390526084016104d5565b505b600580546001600160a01b0319166001600160a01b0385169081179091556040519081527f7a6b70c9759bfc6df8d6267688169ed308c6efabc985cf7d02df268733f8ec059060200160405180910390a18015610e2e57306001600160a01b03831603610dca5760065460405163095ea7b360e01b8152306004820152602481018390526001600160a01b039091169063095ea7b3906044016020604051808303816000875af1158015610da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc891906115a2565b505b600654610de2906001600160a01b03168385846110c6565b604080516001600160a01b038085168252851660208201529081018290527f40b3f633f2d28d6e514f9789ade3c5ddfab85e6731dda38dcb69206d3272c71b9060600160405180910390a15b505050565b600080610e3e610a08565b604081810151905163012ebd8360e21b81528151600482015260208201516024820152604481018690529192509073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015610ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecb919061171b565b5095945050505050565b610edd61084f565b6001600160a01b0316336001600160a01b031614610f105760405163700dd81160e01b81523360048201526024016104d5565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016109d4565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610fc76001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161100f61084f565b6001600160a01b0316815260200182600101805461102c9061173f565b80601f01602080910402602001604051908101604052809291908181526020018280546110589061173f565b80156110a55780601f1061107a576101008083540402835291602001916110a5565b820191906000526020600020905b81548152906001019060200180831161108857829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610a029186919060009061112c9084168361117a565b9050805160001415801561115157508080602001905181019061114f91906115a2565b155b15610e2e57604051635274afe760e01b81526001600160a01b03841660048201526024016104d5565b6060610b238383600084600080856001600160a01b031684866040516111a09190611779565b60006040518083038185875af1925050503d80600081146111dd576040519150601f19603f3d011682016040523d82523d6000602084013e6111e2565b606091505b50915091506111f28683836111fe565b925050505b9392505050565b6060826112135761120e8261125a565b6111f7565b815115801561122a57506001600160a01b0384163b155b1561125357604051639996b31560e01b81526001600160a01b03851660048201526024016104d5565b50806111f7565b80511561126a5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b50565b6040518060a0016040528060006001600160601b0316815260200160006001600160a01b031681526020016112ce604051806040016040528060008152602001600081525090565b815260006020820181905260409091015290565b6000602082840312156112f457600080fd5b81356001600160e01b0319811681146111f757600080fd5b60005b8381101561132757818101518382015260200161130f565b50506000910152565b6000815180845261134881602086016020860161130c565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516113a060a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e06101008401526113e6610120840182611330565b905082810360208401526113fa8185611330565b95945050505050565b6001600160601b038116811461128357600080fd5b60006020828403121561142a57600080fd5b81356111f781611403565b6040805190810167ffffffffffffffff8111828210171561146657634e487b7160e01b600052604160045260246000fd5b60405290565b60006040828403121561147e57600080fd5b611486611435565b82358152602083013560208201528091505092915050565b80356001600160c01b0319811681146114b657600080fd5b919050565b600080604083850312156114ce57600080fd5b6114d78361149e565b946020939093013593505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b6001600160a01b038116811461128357600080fd5b60006020828403121561156c57600080fd5b81356111f781611545565b60006020828403121561158957600080fd5b610b238261149e565b805180151581146114b657600080fd5b6000602082840312156115b457600080fd5b610b2382611592565b6000602082840312156115cf57600080fd5b81516111f781611403565b815181526020808301519082015260408101610b26565b80516114b681611545565b60006020828403121561160e57600080fd5b81516111f781611545565b600081830360c081121561162c57600080fd5b60405160a0810181811067ffffffffffffffff8211171561165d57634e487b7160e01b600052604160045260246000fd5b604052835161166b81611403565b8152602084015161167b81611545565b60208201526040603f198301121561169257600080fd5b61169a611435565b915060408401518252606084015160208301528160408201526116bf60808501611592565b60608201526116d060a085016115f1565b6080820152949350505050565b8082028115828204841417610b2657634e487b7160e01b600052601160045260246000fd5b60006020828403121561171457600080fd5b5051919050565b6000806040838503121561172e57600080fd5b505080516020909101519092909150565b600181811c9082168061175357607f821691505b60208210810361177357634e487b7160e01b600052602260045260246000fd5b50919050565b6000825161178b81846020870161130c565b919091019291505056fea26469706673582212207eacd80439cc72e6f578afb2e1d47dac6e61b28d108a1f783eb8664b20fe06c464736f6c63430008140033",
513
692
  "linkReferences": {
514
693
  "contracts/types/Fee.sol": {
515
694
  "FeeLib": [
516
695
  {
517
696
  "length": 20,
518
- "start": 5529
697
+ "start": 6801
519
698
  }
520
699
  ]
521
700
  },
@@ -523,11 +702,15 @@
523
702
  "NftIdLib": [
524
703
  {
525
704
  "length": 20,
526
- "start": 3879
705
+ "start": 4188
527
706
  },
528
707
  {
529
708
  "length": 20,
530
- "start": 5087
709
+ "start": 4758
710
+ },
711
+ {
712
+ "length": 20,
713
+ "start": 5277
531
714
  }
532
715
  ]
533
716
  }
@@ -537,7 +720,7 @@
537
720
  "FeeLib": [
538
721
  {
539
722
  "length": 20,
540
- "start": 2564
723
+ "start": 3694
541
724
  }
542
725
  ]
543
726
  },
@@ -545,11 +728,15 @@
545
728
  "NftIdLib": [
546
729
  {
547
730
  "length": 20,
548
- "start": 914
731
+ "start": 1081
732
+ },
733
+ {
734
+ "length": 20,
735
+ "start": 1651
549
736
  },
550
737
  {
551
738
  "length": 20,
552
- "start": 2122
739
+ "start": 2170
553
740
  }
554
741
  ]
555
742
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
3
+ "buildInfo": "../../../build-info/685eea602a10dfbfc6685889c286cb7b.json"
4
4
  }
@@ -19,6 +19,43 @@
19
19
  "name": "ErrorAlreadyLinked",
20
20
  "type": "error"
21
21
  },
22
+ {
23
+ "inputs": [
24
+ {
25
+ "internalType": "address",
26
+ "name": "newWallet",
27
+ "type": "address"
28
+ }
29
+ ],
30
+ "name": "ErrorBaseComponentWalletAddressIsSameAsCurrent",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "oldWallet",
38
+ "type": "address"
39
+ },
40
+ {
41
+ "internalType": "address",
42
+ "name": "newWallet",
43
+ "type": "address"
44
+ },
45
+ {
46
+ "internalType": "uint256",
47
+ "name": "allowance",
48
+ "type": "uint256"
49
+ },
50
+ {
51
+ "internalType": "uint256",
52
+ "name": "balance",
53
+ "type": "uint256"
54
+ }
55
+ ],
56
+ "name": "ErrorBaseComponentWalletAllowanceTooSmall",
57
+ "type": "error"
58
+ },
22
59
  {
23
60
  "inputs": [
24
61
  {
@@ -73,6 +110,44 @@
73
110
  "name": "ErrorRegistryNotInitialized",
74
111
  "type": "error"
75
112
  },
113
+ {
114
+ "anonymous": false,
115
+ "inputs": [
116
+ {
117
+ "indexed": false,
118
+ "internalType": "address",
119
+ "name": "newWallet",
120
+ "type": "address"
121
+ }
122
+ ],
123
+ "name": "LogBaseComponentWalletAddressChanged",
124
+ "type": "event"
125
+ },
126
+ {
127
+ "anonymous": false,
128
+ "inputs": [
129
+ {
130
+ "indexed": false,
131
+ "internalType": "address",
132
+ "name": "from",
133
+ "type": "address"
134
+ },
135
+ {
136
+ "indexed": false,
137
+ "internalType": "address",
138
+ "name": "to",
139
+ "type": "address"
140
+ },
141
+ {
142
+ "indexed": false,
143
+ "internalType": "uint256",
144
+ "name": "amount",
145
+ "type": "uint256"
146
+ }
147
+ ],
148
+ "name": "LogBaseComponentWalletTokensTransferred",
149
+ "type": "event"
150
+ },
76
151
  {
77
152
  "inputs": [],
78
153
  "name": "getInitialInfo",
@@ -167,6 +242,19 @@
167
242
  "stateMutability": "view",
168
243
  "type": "function"
169
244
  },
245
+ {
246
+ "inputs": [],
247
+ "name": "getProductNftId",
248
+ "outputs": [
249
+ {
250
+ "internalType": "NftId",
251
+ "name": "productNftId",
252
+ "type": "uint96"
253
+ }
254
+ ],
255
+ "stateMutability": "view",
256
+ "type": "function"
257
+ },
170
258
  {
171
259
  "inputs": [],
172
260
  "name": "getRegistry",
@@ -220,6 +308,32 @@
220
308
  "stateMutability": "nonpayable",
221
309
  "type": "function"
222
310
  },
311
+ {
312
+ "inputs": [
313
+ {
314
+ "internalType": "NftId",
315
+ "name": "productNftId",
316
+ "type": "uint96"
317
+ }
318
+ ],
319
+ "name": "setProductNftId",
320
+ "outputs": [],
321
+ "stateMutability": "nonpayable",
322
+ "type": "function"
323
+ },
324
+ {
325
+ "inputs": [
326
+ {
327
+ "internalType": "address",
328
+ "name": "walletAddress",
329
+ "type": "address"
330
+ }
331
+ ],
332
+ "name": "setWallet",
333
+ "outputs": [],
334
+ "stateMutability": "nonpayable",
335
+ "type": "function"
336
+ },
223
337
  {
224
338
  "inputs": [
225
339
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
3
+ "buildInfo": "../../../build-info/685eea602a10dfbfc6685889c286cb7b.json"
4
4
  }
@@ -51,31 +51,6 @@
51
51
  "stateMutability": "view",
52
52
  "type": "function"
53
53
  },
54
- {
55
- "inputs": [],
56
- "name": "getDistributionFee",
57
- "outputs": [
58
- {
59
- "components": [
60
- {
61
- "internalType": "UFixed",
62
- "name": "fractionalFee",
63
- "type": "uint256"
64
- },
65
- {
66
- "internalType": "uint256",
67
- "name": "fixedFee",
68
- "type": "uint256"
69
- }
70
- ],
71
- "internalType": "struct Fee",
72
- "name": "distributionFee",
73
- "type": "tuple"
74
- }
75
- ],
76
- "stateMutability": "view",
77
- "type": "function"
78
- },
79
54
  {
80
55
  "inputs": [],
81
56
  "name": "isVerifying",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/22ace16a46acabda891a4eae781c3ca6.json"
3
+ "buildInfo": "../../../build-info/685eea602a10dfbfc6685889c286cb7b.json"
4
4
  }