@etherisc/gif-next 0.0.2-9105e58-225 → 0.0.2-917cede-703

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (332) hide show
  1. package/README.md +6 -83
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
  3. package/artifacts/contracts/components/Component.sol/Component.json +78 -100
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +139 -194
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IComponent.sol/IComponent.json +156 -64
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +169 -143
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +353 -176
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +162 -138
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +291 -248
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +83 -173
  18. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  19. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  20. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
  21. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
  22. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
  23. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
  24. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  25. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +527 -400
  26. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  27. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +166 -181
  28. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  29. package/artifacts/contracts/instance/Instance.sol/Instance.json +500 -623
  30. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  31. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +472 -126
  32. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  33. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +253 -236
  34. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  35. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +300 -384
  36. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  37. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +246 -84
  38. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
  39. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
  40. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
  41. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +71 -166
  42. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  43. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  44. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  45. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
  46. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  47. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
  48. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  49. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +56 -73
  50. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  51. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  52. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
  53. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  54. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  55. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  56. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
  57. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
  58. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  59. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +266 -253
  60. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  61. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +214 -76
  62. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
  63. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +409 -386
  64. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  65. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +249 -71
  66. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
  67. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +338 -230
  68. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  69. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +225 -63
  70. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +883 -233
  72. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  73. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +308 -78
  74. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  75. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +196 -181
  76. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
  77. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +233 -296
  78. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
  79. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +231 -177
  80. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +594 -134
  82. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +405 -190
  84. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  85. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +583 -109
  86. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  87. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +68 -141
  88. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
  89. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +525 -296
  90. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  91. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +228 -86
  92. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  93. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +734 -206
  94. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  95. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +234 -68
  96. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  97. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +107 -222
  98. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
  99. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +191 -73
  100. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  101. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
  102. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  103. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +19 -0
  104. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  105. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +0 -163
  106. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  107. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  108. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  109. package/artifacts/contracts/registry/Registry.sol/Registry.json +31 -12
  110. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
  111. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
  112. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  113. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +24 -221
  114. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  115. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +184 -70
  116. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
  118. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +2 -2
  120. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  121. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  122. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  123. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  124. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  125. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  126. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  127. package/artifacts/contracts/shared/IService.sol/IService.json +68 -141
  128. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  129. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -150
  130. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  131. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
  132. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  133. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
  134. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  135. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +169 -53
  136. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  137. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +5 -16
  138. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  139. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
  140. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  141. package/artifacts/contracts/shared/Service.sol/Service.json +82 -161
  142. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  143. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
  144. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  145. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  146. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  147. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -150
  148. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  149. package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
  150. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  151. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +6 -17
  152. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  153. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
  154. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  155. package/artifacts/contracts/test/TestService.sol/TestService.json +100 -211
  156. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  157. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  158. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  159. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  160. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +6 -188
  161. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  162. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  163. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
  164. package/artifacts/contracts/types/Amount.sol/AmountLib.json +209 -0
  165. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  166. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
  167. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  168. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  169. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +83 -4
  170. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  171. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
  172. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  173. package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
  174. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  175. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
  176. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  177. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
  178. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  179. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
  180. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  181. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  182. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
  183. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  184. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +116 -7
  185. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  186. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
  187. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  188. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
  189. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  190. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  191. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
  192. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
  193. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  194. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  195. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  196. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +38 -7
  197. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  198. package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
  199. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  200. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
  201. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  202. package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
  203. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  204. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
  205. package/contracts/components/Component.sol +99 -88
  206. package/contracts/components/Distribution.sol +22 -46
  207. package/contracts/components/IComponent.sol +40 -19
  208. package/contracts/components/IDistributionComponent.sol +1 -30
  209. package/contracts/components/IPoolComponent.sol +73 -47
  210. package/contracts/components/IProductComponent.sol +3 -2
  211. package/contracts/components/Pool.sol +178 -130
  212. package/contracts/components/Product.sol +157 -71
  213. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
  214. package/contracts/instance/BundleManager.sol +10 -9
  215. package/contracts/instance/Cloneable.sol +7 -2
  216. package/contracts/instance/IInstance.sol +37 -27
  217. package/contracts/instance/IInstanceService.sol +18 -9
  218. package/contracts/instance/Instance.sol +117 -98
  219. package/contracts/instance/InstanceAccessManager.sol +388 -158
  220. package/contracts/instance/InstanceReader.sol +36 -12
  221. package/contracts/instance/InstanceService.sol +193 -191
  222. package/contracts/instance/ObjectManager.sol +6 -8
  223. package/contracts/instance/base/ComponentService.sol +17 -30
  224. package/contracts/instance/base/KeyValueStore.sol +13 -5
  225. package/contracts/instance/base/Lifecycle.sol +23 -6
  226. package/contracts/instance/module/IAccess.sol +21 -14
  227. package/contracts/instance/module/IBundle.sol +8 -5
  228. package/contracts/instance/module/IComponents.sol +41 -0
  229. package/contracts/instance/module/IDistribution.sol +2 -0
  230. package/contracts/instance/module/IPolicy.sol +37 -7
  231. package/contracts/instance/module/ISetup.sol +7 -21
  232. package/contracts/instance/service/ApplicationService.sol +137 -50
  233. package/contracts/instance/service/BundleService.sol +228 -83
  234. package/contracts/instance/service/ClaimService.sol +114 -26
  235. package/contracts/instance/service/DistributionService.sol +225 -71
  236. package/contracts/instance/service/IApplicationService.sol +9 -13
  237. package/contracts/instance/service/IBundleService.sol +74 -26
  238. package/contracts/instance/service/IClaimService.sol +46 -15
  239. package/contracts/instance/service/IDistributionService.sol +37 -3
  240. package/contracts/instance/service/IPolicyService.sol +69 -21
  241. package/contracts/instance/service/IPoolService.sol +85 -3
  242. package/contracts/instance/service/PolicyService.sol +301 -230
  243. package/contracts/instance/service/PolicyServiceManager.sol +1 -1
  244. package/contracts/instance/service/PoolService.sol +245 -18
  245. package/contracts/instance/service/ProductService.sol +31 -54
  246. package/contracts/instance/service/ProductServiceManager.sol +1 -1
  247. package/contracts/registry/ChainNft.sol +8 -0
  248. package/contracts/registry/IRegistry.sol +2 -0
  249. package/contracts/registry/IRegistryService.sol +4 -3
  250. package/contracts/registry/ITransferInterceptor.sol +1 -0
  251. package/contracts/registry/Registry.sol +23 -20
  252. package/contracts/registry/RegistryService.sol +15 -16
  253. package/contracts/registry/ReleaseManager.sol +26 -33
  254. package/contracts/registry/TokenRegistry.sol +1 -6
  255. package/contracts/shared/IService.sol +4 -4
  256. package/contracts/shared/IVersionable.sol +4 -47
  257. package/contracts/shared/ProxyManager.sol +89 -22
  258. package/contracts/shared/Registerable.sol +2 -6
  259. package/contracts/shared/Service.sol +29 -17
  260. package/contracts/shared/TokenHandler.sol +11 -5
  261. package/contracts/shared/Versionable.sol +1 -90
  262. package/contracts/test/TestService.sol +1 -1
  263. package/contracts/types/Amount.sol +70 -0
  264. package/contracts/types/Blocknumber.sol +1 -0
  265. package/contracts/types/ClaimId.sol +25 -2
  266. package/contracts/types/Fee.sol +13 -5
  267. package/contracts/types/NftId.sol +8 -0
  268. package/contracts/types/ObjectType.sol +6 -5
  269. package/contracts/types/PayoutId.sol +33 -5
  270. package/contracts/types/Referral.sol +4 -0
  271. package/contracts/types/RoleId.sol +13 -6
  272. package/contracts/types/Seconds.sol +54 -0
  273. package/contracts/types/StateId.sol +7 -2
  274. package/contracts/types/Timestamp.sol +18 -13
  275. package/contracts/types/UFixed.sol +1 -0
  276. package/contracts/types/Version.sol +1 -0
  277. package/package.json +1 -1
  278. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  279. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  280. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  281. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  282. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  283. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  284. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  285. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  286. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  287. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  288. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  289. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  290. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  291. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  292. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  293. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  294. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  295. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  296. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  297. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  298. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  299. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  300. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  301. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  302. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  303. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  304. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  305. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  306. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  307. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  308. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  309. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  310. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  311. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  312. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  313. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  314. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  315. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  316. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  317. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  318. package/contracts/experiment/cloning/Cloner.sol +0 -47
  319. package/contracts/experiment/errors/Require.sol +0 -38
  320. package/contracts/experiment/errors/Revert.sol +0 -44
  321. package/contracts/experiment/inheritance/A.sol +0 -53
  322. package/contracts/experiment/inheritance/B.sol +0 -28
  323. package/contracts/experiment/inheritance/C.sol +0 -34
  324. package/contracts/experiment/inheritance/IA.sol +0 -13
  325. package/contracts/experiment/inheritance/IB.sol +0 -10
  326. package/contracts/experiment/inheritance/IC.sol +0 -12
  327. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  328. package/contracts/experiment/statemachine/ISM.sol +0 -25
  329. package/contracts/experiment/statemachine/SM.sol +0 -57
  330. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  331. package/contracts/experiment/types/TypeA.sol +0 -47
  332. package/contracts/experiment/types/TypeB.sol +0 -29
@@ -3,6 +3,44 @@
3
3
  "contractName": "IService",
4
4
  "sourceName": "contracts/shared/IService.sol",
5
5
  "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
6
44
  {
7
45
  "inputs": [
8
46
  {
@@ -55,27 +93,28 @@
55
93
  {
56
94
  "anonymous": false,
57
95
  "inputs": [
58
- {
59
- "indexed": false,
60
- "internalType": "Version",
61
- "name": "version",
62
- "type": "uint24"
63
- },
64
96
  {
65
97
  "indexed": false,
66
98
  "internalType": "address",
67
- "name": "implementation",
99
+ "name": "authority",
68
100
  "type": "address"
69
- },
101
+ }
102
+ ],
103
+ "name": "AuthorityUpdated",
104
+ "type": "event"
105
+ },
106
+ {
107
+ "inputs": [],
108
+ "name": "authority",
109
+ "outputs": [
70
110
  {
71
- "indexed": false,
72
111
  "internalType": "address",
73
- "name": "activatedBy",
112
+ "name": "",
74
113
  "type": "address"
75
114
  }
76
115
  ],
77
- "name": "LogVersionableInitialized",
78
- "type": "event"
116
+ "stateMutability": "view",
117
+ "type": "function"
79
118
  },
80
119
  {
81
120
  "inputs": [],
@@ -140,32 +179,6 @@
140
179
  "stateMutability": "view",
141
180
  "type": "function"
142
181
  },
143
- {
144
- "inputs": [],
145
- "name": "getInitializedVersion",
146
- "outputs": [
147
- {
148
- "internalType": "uint64",
149
- "name": "",
150
- "type": "uint64"
151
- }
152
- ],
153
- "stateMutability": "view",
154
- "type": "function"
155
- },
156
- {
157
- "inputs": [],
158
- "name": "getMajorVersion",
159
- "outputs": [
160
- {
161
- "internalType": "VersionPart",
162
- "name": "majorVersion",
163
- "type": "uint8"
164
- }
165
- ],
166
- "stateMutability": "view",
167
- "type": "function"
168
- },
169
182
  {
170
183
  "inputs": [],
171
184
  "name": "getNftId",
@@ -233,89 +246,6 @@
233
246
  },
234
247
  {
235
248
  "inputs": [
236
- {
237
- "internalType": "uint256",
238
- "name": "index",
239
- "type": "uint256"
240
- }
241
- ],
242
- "name": "getVersion",
243
- "outputs": [
244
- {
245
- "internalType": "Version",
246
- "name": "version",
247
- "type": "uint24"
248
- }
249
- ],
250
- "stateMutability": "view",
251
- "type": "function"
252
- },
253
- {
254
- "inputs": [],
255
- "name": "getVersionCount",
256
- "outputs": [
257
- {
258
- "internalType": "uint256",
259
- "name": "numberOfVersions",
260
- "type": "uint256"
261
- }
262
- ],
263
- "stateMutability": "view",
264
- "type": "function"
265
- },
266
- {
267
- "inputs": [
268
- {
269
- "internalType": "Version",
270
- "name": "version",
271
- "type": "uint24"
272
- }
273
- ],
274
- "name": "getVersionInfo",
275
- "outputs": [
276
- {
277
- "components": [
278
- {
279
- "internalType": "Version",
280
- "name": "version",
281
- "type": "uint24"
282
- },
283
- {
284
- "internalType": "address",
285
- "name": "implementation",
286
- "type": "address"
287
- },
288
- {
289
- "internalType": "address",
290
- "name": "activatedBy",
291
- "type": "address"
292
- },
293
- {
294
- "internalType": "Timestamp",
295
- "name": "activatedAt",
296
- "type": "uint40"
297
- },
298
- {
299
- "internalType": "Blocknumber",
300
- "name": "activatedIn",
301
- "type": "uint32"
302
- }
303
- ],
304
- "internalType": "struct IVersionable.VersionInfo",
305
- "name": "versionInfo",
306
- "type": "tuple"
307
- }
308
- ],
309
- "stateMutability": "view",
310
- "type": "function"
311
- },
312
- {
313
- "inputs": [
314
- {
315
- "internalType": "address",
316
- "name": "implementation",
317
- "type": "address"
318
- },
319
249
  {
320
250
  "internalType": "address",
321
251
  "name": "activatedBy",
@@ -333,19 +263,13 @@
333
263
  "type": "function"
334
264
  },
335
265
  {
336
- "inputs": [
337
- {
338
- "internalType": "Version",
339
- "name": "version",
340
- "type": "uint24"
341
- }
342
- ],
343
- "name": "isInitialized",
266
+ "inputs": [],
267
+ "name": "isConsumingScheduledOp",
344
268
  "outputs": [
345
269
  {
346
- "internalType": "bool",
270
+ "internalType": "bytes4",
347
271
  "name": "",
348
- "type": "bool"
272
+ "type": "bytes4"
349
273
  }
350
274
  ],
351
275
  "stateMutability": "view",
@@ -358,6 +282,19 @@
358
282
  "stateMutability": "nonpayable",
359
283
  "type": "function"
360
284
  },
285
+ {
286
+ "inputs": [
287
+ {
288
+ "internalType": "address",
289
+ "name": "",
290
+ "type": "address"
291
+ }
292
+ ],
293
+ "name": "setAuthority",
294
+ "outputs": [],
295
+ "stateMutability": "nonpayable",
296
+ "type": "function"
297
+ },
361
298
  {
362
299
  "inputs": [
363
300
  {
@@ -379,16 +316,6 @@
379
316
  },
380
317
  {
381
318
  "inputs": [
382
- {
383
- "internalType": "address",
384
- "name": "implementation",
385
- "type": "address"
386
- },
387
- {
388
- "internalType": "address",
389
- "name": "activatedBy",
390
- "type": "address"
391
- },
392
319
  {
393
320
  "internalType": "bytes",
394
321
  "name": "upgradeData",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/a4fdb8c51f2726ede9f66aef21053805.json"
3
+ "buildInfo": "../../../build-info/137177d4e95267fdc8bcf3a603ebff2a.json"
4
4
  }
@@ -3,44 +3,6 @@
3
3
  "contractName": "IVersionable",
4
4
  "sourceName": "contracts/shared/IVersionable.sol",
5
5
  "abi": [
6
- {
7
- "anonymous": false,
8
- "inputs": [
9
- {
10
- "indexed": false,
11
- "internalType": "Version",
12
- "name": "version",
13
- "type": "uint24"
14
- },
15
- {
16
- "indexed": false,
17
- "internalType": "address",
18
- "name": "implementation",
19
- "type": "address"
20
- },
21
- {
22
- "indexed": false,
23
- "internalType": "address",
24
- "name": "activatedBy",
25
- "type": "address"
26
- }
27
- ],
28
- "name": "LogVersionableInitialized",
29
- "type": "event"
30
- },
31
- {
32
- "inputs": [],
33
- "name": "getInitializedVersion",
34
- "outputs": [
35
- {
36
- "internalType": "uint64",
37
- "name": "",
38
- "type": "uint64"
39
- }
40
- ],
41
- "stateMutability": "view",
42
- "type": "function"
43
- },
44
6
  {
45
7
  "inputs": [],
46
8
  "name": "getVersion",
@@ -54,91 +16,8 @@
54
16
  "stateMutability": "pure",
55
17
  "type": "function"
56
18
  },
57
- {
58
- "inputs": [
59
- {
60
- "internalType": "uint256",
61
- "name": "index",
62
- "type": "uint256"
63
- }
64
- ],
65
- "name": "getVersion",
66
- "outputs": [
67
- {
68
- "internalType": "Version",
69
- "name": "version",
70
- "type": "uint24"
71
- }
72
- ],
73
- "stateMutability": "view",
74
- "type": "function"
75
- },
76
- {
77
- "inputs": [],
78
- "name": "getVersionCount",
79
- "outputs": [
80
- {
81
- "internalType": "uint256",
82
- "name": "numberOfVersions",
83
- "type": "uint256"
84
- }
85
- ],
86
- "stateMutability": "view",
87
- "type": "function"
88
- },
89
- {
90
- "inputs": [
91
- {
92
- "internalType": "Version",
93
- "name": "version",
94
- "type": "uint24"
95
- }
96
- ],
97
- "name": "getVersionInfo",
98
- "outputs": [
99
- {
100
- "components": [
101
- {
102
- "internalType": "Version",
103
- "name": "version",
104
- "type": "uint24"
105
- },
106
- {
107
- "internalType": "address",
108
- "name": "implementation",
109
- "type": "address"
110
- },
111
- {
112
- "internalType": "address",
113
- "name": "activatedBy",
114
- "type": "address"
115
- },
116
- {
117
- "internalType": "Timestamp",
118
- "name": "activatedAt",
119
- "type": "uint40"
120
- },
121
- {
122
- "internalType": "Blocknumber",
123
- "name": "activatedIn",
124
- "type": "uint32"
125
- }
126
- ],
127
- "internalType": "struct IVersionable.VersionInfo",
128
- "name": "versionInfo",
129
- "type": "tuple"
130
- }
131
- ],
132
- "stateMutability": "view",
133
- "type": "function"
134
- },
135
19
  {
136
20
  "inputs": [
137
- {
138
- "internalType": "address",
139
- "name": "implementation",
140
- "type": "address"
141
- },
142
21
  {
143
22
  "internalType": "address",
144
23
  "name": "activatedBy",
@@ -157,35 +36,6 @@
157
36
  },
158
37
  {
159
38
  "inputs": [
160
- {
161
- "internalType": "Version",
162
- "name": "version",
163
- "type": "uint24"
164
- }
165
- ],
166
- "name": "isInitialized",
167
- "outputs": [
168
- {
169
- "internalType": "bool",
170
- "name": "",
171
- "type": "bool"
172
- }
173
- ],
174
- "stateMutability": "view",
175
- "type": "function"
176
- },
177
- {
178
- "inputs": [
179
- {
180
- "internalType": "address",
181
- "name": "implementation",
182
- "type": "address"
183
- },
184
- {
185
- "internalType": "address",
186
- "name": "activatedBy",
187
- "type": "address"
188
- },
189
39
  {
190
40
  "internalType": "bytes",
191
41
  "name": "upgradeData",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/a4fdb8c51f2726ede9f66aef21053805.json"
3
+ "buildInfo": "../../../build-info/137177d4e95267fdc8bcf3a603ebff2a.json"
4
4
  }
@@ -218,8 +218,8 @@
218
218
  "type": "function"
219
219
  }
220
220
  ],
221
- "bytecode": "0x608060405234801561001057600080fd5b50610893806100206000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c8063644c45e011610071578063644c45e01461013a578063675393bf14610162578063893d20e814610175578063ada9652e1461017d578063f21de1e814610115578063f7c34ee0146101a057600080fd5b806301ffc9a7146100ae578063138461e0146100f0578063214cdb80146100fa57806336fc697e1461010d5780635ab1bd5314610115575b600080fd5b6100db6100bc366004610739565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100f86101b3565b005b6100f8610108366004610739565b6103ba565b6100f86103e7565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100e7565b60008051602061083e833981519152546040516001600160601b0390911681526020016100e7565b6100f861017036600461077f565b61042d565b61012261053b565b61019260008051602061083e83398151915281565b6040519081526020016100e7565b6100f86101ae36600461079c565b610672565b600060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610222573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024691906107d5565b156102775780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061028a6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f691906107d5565b61031e5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161026e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039691906107f7565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6103c26106e9565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6103ef6106e9565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6104356106e9565b806001600160a01b03163b60000361046b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156104e5575060408051601f3d908101601f191682019092526104e2918101906107d5565b60015b61050d5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b806105365760405163fdeac91f60e01b81526001600160a01b038316600482015260240161026e565b505b50565b60008060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105cf91906107d5565b1561065c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610632573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106569190610820565b91505090565b54600160601b90046001600160a01b0316919050565b61067a6106e9565b6106838161042d565b61068b6103e7565b6001600160a01b0382166106b25760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061083e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661073757604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561074b57600080fd5b81356001600160e01b03198116811461076357600080fd5b9392505050565b6001600160a01b038116811461053857600080fd5b60006020828403121561079157600080fd5b81356107638161076a565b600080604083850312156107af57600080fd5b82356107ba8161076a565b915060208301356107ca8161076a565b809150509250929050565b6000602082840312156107e757600080fd5b8151801515811461076357600080fd5b60006020828403121561080957600080fd5b81516001600160601b038116811461076357600080fd5b60006020828403121561083257600080fd5b81516107638161076a56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220e26e1edcbabba84aac682929cbd609910034947293b31a46ff77fbb55e34c36564736f6c63430008140033",
222
- "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100a95760003560e01c8063644c45e011610071578063644c45e01461013a578063675393bf14610162578063893d20e814610175578063ada9652e1461017d578063f21de1e814610115578063f7c34ee0146101a057600080fd5b806301ffc9a7146100ae578063138461e0146100f0578063214cdb80146100fa57806336fc697e1461010d5780635ab1bd5314610115575b600080fd5b6100db6100bc366004610739565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100f86101b3565b005b6100f8610108366004610739565b6103ba565b6100f86103e7565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100e7565b60008051602061083e833981519152546040516001600160601b0390911681526020016100e7565b6100f861017036600461077f565b61042d565b61012261053b565b61019260008051602061083e83398151915281565b6040519081526020016100e7565b6100f86101ae36600461079c565b610672565b600060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610222573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024691906107d5565b156102775780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061028a6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f691906107d5565b61031e5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161026e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039691906107f7565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6103c26106e9565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6103ef6106e9565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6104356106e9565b806001600160a01b03163b60000361046b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156104e5575060408051601f3d908101601f191682019092526104e2918101906107d5565b60015b61050d5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b806105365760405163fdeac91f60e01b81526001600160a01b038316600482015260240161026e565b505b50565b60008060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105cf91906107d5565b1561065c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610632573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106569190610820565b91505090565b54600160601b90046001600160a01b0316919050565b61067a6106e9565b6106838161042d565b61068b6103e7565b6001600160a01b0382166106b25760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061083e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661073757604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561074b57600080fd5b81356001600160e01b03198116811461076357600080fd5b9392505050565b6001600160a01b038116811461053857600080fd5b60006020828403121561079157600080fd5b81356107638161076a565b600080604083850312156107af57600080fd5b82356107ba8161076a565b915060208301356107ca8161076a565b809150509250929050565b6000602082840312156107e757600080fd5b8151801515811461076357600080fd5b60006020828403121561080957600080fd5b81516001600160601b038116811461076357600080fd5b60006020828403121561083257600080fd5b81516107638161076a56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220e26e1edcbabba84aac682929cbd609910034947293b31a46ff77fbb55e34c36564736f6c63430008140033",
221
+ "bytecode": "0x608060405234801561001057600080fd5b50610893806100206000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c8063644c45e011610071578063644c45e01461013a578063675393bf14610162578063893d20e814610175578063ada9652e1461017d578063f21de1e814610115578063f7c34ee0146101a057600080fd5b806301ffc9a7146100ae578063138461e0146100f0578063214cdb80146100fa57806336fc697e1461010d5780635ab1bd5314610115575b600080fd5b6100db6100bc366004610739565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100f86101b3565b005b6100f8610108366004610739565b6103ba565b6100f86103e7565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100e7565b60008051602061083e833981519152546040516001600160601b0390911681526020016100e7565b6100f861017036600461077f565b61042d565b61012261053b565b61019260008051602061083e83398151915281565b6040519081526020016100e7565b6100f86101ae36600461079c565b610672565b600060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610222573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024691906107d5565b156102775780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061028a6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f691906107d5565b61031e5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161026e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039691906107f7565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6103c26106e9565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6103ef6106e9565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6104356106e9565b806001600160a01b03163b60000361046b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156104e5575060408051601f3d908101601f191682019092526104e2918101906107d5565b60015b61050d5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b806105365760405163fdeac91f60e01b81526001600160a01b038316600482015260240161026e565b505b50565b60008060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105cf91906107d5565b1561065c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610632573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106569190610820565b91505090565b54600160601b90046001600160a01b0316919050565b61067a6106e9565b6106838161042d565b61068b6103e7565b6001600160a01b0382166106b25760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061083e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661073757604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561074b57600080fd5b81356001600160e01b03198116811461076357600080fd5b9392505050565b6001600160a01b038116811461053857600080fd5b60006020828403121561079157600080fd5b81356107638161076a565b600080604083850312156107af57600080fd5b82356107ba8161076a565b915060208301356107ca8161076a565b809150509250929050565b6000602082840312156107e757600080fd5b8151801515811461076357600080fd5b60006020828403121561080957600080fd5b81516001600160601b038116811461076357600080fd5b60006020828403121561083257600080fd5b81516107638161076a56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220deecea8bbe8d1874e63593b66d3768d78eef320fd3f0961001e3a94ae4ae356964736f6c63430008140033",
222
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100a95760003560e01c8063644c45e011610071578063644c45e01461013a578063675393bf14610162578063893d20e814610175578063ada9652e1461017d578063f21de1e814610115578063f7c34ee0146101a057600080fd5b806301ffc9a7146100ae578063138461e0146100f0578063214cdb80146100fa57806336fc697e1461010d5780635ab1bd5314610115575b600080fd5b6100db6100bc366004610739565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100f86101b3565b005b6100f8610108366004610739565b6103ba565b6100f86103e7565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100e7565b60008051602061083e833981519152546040516001600160601b0390911681526020016100e7565b6100f861017036600461077f565b61042d565b61012261053b565b61019260008051602061083e83398151915281565b6040519081526020016100e7565b6100f86101ae36600461079c565b610672565b600060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610222573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024691906107d5565b156102775780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061028a6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156102d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f691906107d5565b61031e5760405163b9304b0d60e01b81526001600160a01b038216600482015260240161026e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610372573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039691906107f7565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6103c26106e9565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6103ef6106e9565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6104356106e9565b806001600160a01b03163b60000361046b5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156104e5575060408051601f3d908101601f191682019092526104e2918101906107d5565b60015b61050d5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161026e565b806105365760405163fdeac91f60e01b81526001600160a01b038316600482015260240161026e565b505b50565b60008060008051602061083e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105cf91906107d5565b1561065c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610632573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106569190610820565b91505090565b54600160601b90046001600160a01b0316919050565b61067a6106e9565b6106838161042d565b61068b6103e7565b6001600160a01b0382166106b25760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061083e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661073757604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561074b57600080fd5b81356001600160e01b03198116811461076357600080fd5b9392505050565b6001600160a01b038116811461053857600080fd5b60006020828403121561079157600080fd5b81356107638161076a565b600080604083850312156107af57600080fd5b82356107ba8161076a565b915060208301356107ca8161076a565b809150509250929050565b6000602082840312156107e757600080fd5b8151801515811461076357600080fd5b60006020828403121561080957600080fd5b81516001600160601b038116811461076357600080fd5b60006020828403121561083257600080fd5b81516107638161076a56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220deecea8bbe8d1874e63593b66d3768d78eef320fd3f0961001e3a94ae4ae356964736f6c63430008140033",
223
223
  "linkReferences": {
224
224
  "contracts/types/NftId.sol": {
225
225
  "NftIdLib": [
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/a4fdb8c51f2726ede9f66aef21053805.json"
3
+ "buildInfo": "../../../build-info/137177d4e95267fdc8bcf3a603ebff2a.json"
4
4
  }
@@ -241,8 +241,8 @@
241
241
  "type": "function"
242
242
  }
243
243
  ],
244
- "bytecode": "0x608060405234801561001057600080fd5b50610615806100206000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80635ab1bd53116100715780635ab1bd5314610175578063675393bf1461019a578063b414004e146101ad578063df86992d146101e2578063f21de1e814610175578063f8cd11d3146101f557600080fd5b806301ffc9a7146100b9578063150b7a02146100fb578063214cdb80146101335780632b96445a146101485780632e7e3cab1461015c57806336fc697e1461016d575b600080fd5b6100e66100c73660046103f1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61011a61010936600461043e565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016100f2565b6101466101413660046103f1565b61020b565b005b610146610156366004610509565b50505050565b61014661016a366004610554565b50565b610146610238565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100f2565b6101466101a836600461056f565b61027e565b6101d47f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0081565b6040519081526020016100f2565b6101466101f036600461056f565b610390565b61018261020336600461058a565b600092915050565b6102136103a1565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6102406103a1565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6102866103a1565b806001600160a01b03163b6000036102c15760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa92505050801561033b575060408051601f3d908101601f19168201909252610338918101906105bd565b60015b6103635760405163fdeac91f60e01b81526001600160a01b03821660048201526024016102b8565b8061038c5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016102b8565b5050565b6103986103a1565b61016a8161027e565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166103ef57604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561040357600080fd5b81356001600160e01b03198116811461041b57600080fd5b9392505050565b80356001600160a01b038116811461043957600080fd5b919050565b60008060008060006080868803121561045657600080fd5b61045f86610422565b945061046d60208701610422565b935060408601359250606086013567ffffffffffffffff8082111561049157600080fd5b818801915088601f8301126104a557600080fd5b8135818111156104b457600080fd5b8960208285010111156104c657600080fd5b9699959850939650602001949392505050565b80356bffffffffffffffffffffffff8116811461043957600080fd5b803563ffffffff8116811461043957600080fd5b6000806000806080858703121561051f57600080fd5b610528856104d9565b9350610536602086016104f5565b925061054460408601610422565b9396929550929360600135925050565b60006020828403121561056657600080fd5b61041b826104d9565b60006020828403121561058157600080fd5b61041b82610422565b6000806040838503121561059d57600080fd5b6105a6836104d9565b91506105b4602084016104f5565b90509250929050565b6000602082840312156105cf57600080fd5b8151801515811461041b57600080fdfea2646970667358221220ae033b9d4c83ac0a7d3f6df14fe12102caf5d47945b9259ca170fe05bc955b3864736f6c63430008140033",
245
- "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80635ab1bd53116100715780635ab1bd5314610175578063675393bf1461019a578063b414004e146101ad578063df86992d146101e2578063f21de1e814610175578063f8cd11d3146101f557600080fd5b806301ffc9a7146100b9578063150b7a02146100fb578063214cdb80146101335780632b96445a146101485780632e7e3cab1461015c57806336fc697e1461016d575b600080fd5b6100e66100c73660046103f1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61011a61010936600461043e565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016100f2565b6101466101413660046103f1565b61020b565b005b610146610156366004610509565b50505050565b61014661016a366004610554565b50565b610146610238565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100f2565b6101466101a836600461056f565b61027e565b6101d47f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0081565b6040519081526020016100f2565b6101466101f036600461056f565b610390565b61018261020336600461058a565b600092915050565b6102136103a1565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6102406103a1565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6102866103a1565b806001600160a01b03163b6000036102c15760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263230c0c8160e11b60048201526301ffc9a790602401602060405180830381865afa92505050801561033b575060408051601f3d908101601f19168201909252610338918101906105bd565b60015b6103635760405163fdeac91f60e01b81526001600160a01b03821660048201526024016102b8565b8061038c5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016102b8565b5050565b6103986103a1565b61016a8161027e565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166103ef57604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561040357600080fd5b81356001600160e01b03198116811461041b57600080fd5b9392505050565b80356001600160a01b038116811461043957600080fd5b919050565b60008060008060006080868803121561045657600080fd5b61045f86610422565b945061046d60208701610422565b935060408601359250606086013567ffffffffffffffff8082111561049157600080fd5b818801915088601f8301126104a557600080fd5b8135818111156104b457600080fd5b8960208285010111156104c657600080fd5b9699959850939650602001949392505050565b80356bffffffffffffffffffffffff8116811461043957600080fd5b803563ffffffff8116811461043957600080fd5b6000806000806080858703121561051f57600080fd5b610528856104d9565b9350610536602086016104f5565b925061054460408601610422565b9396929550929360600135925050565b60006020828403121561056657600080fd5b61041b826104d9565b60006020828403121561058157600080fd5b61041b82610422565b6000806040838503121561059d57600080fd5b6105a6836104d9565b91506105b4602084016104f5565b90509250929050565b6000602082840312156105cf57600080fd5b8151801515811461041b57600080fdfea2646970667358221220ae033b9d4c83ac0a7d3f6df14fe12102caf5d47945b9259ca170fe05bc955b3864736f6c63430008140033",
244
+ "bytecode": "0x608060405234801561001057600080fd5b50610615806100206000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80635ab1bd53116100715780635ab1bd5314610175578063675393bf1461019a578063b414004e146101ad578063df86992d146101e2578063f21de1e814610175578063f8cd11d3146101f557600080fd5b806301ffc9a7146100b9578063150b7a02146100fb578063214cdb80146101335780632b96445a146101485780632e7e3cab1461015c57806336fc697e1461016d575b600080fd5b6100e66100c73660046103f1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61011a61010936600461043e565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016100f2565b6101466101413660046103f1565b61020b565b005b610146610156366004610509565b50505050565b61014661016a366004610554565b50565b610146610238565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100f2565b6101466101a836600461056f565b61027e565b6101d47f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0081565b6040519081526020016100f2565b6101466101f036600461056f565b610390565b61018261020336600461058a565b600092915050565b6102136103a1565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6102406103a1565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6102866103a1565b806001600160a01b03163b6000036102c15760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa92505050801561033b575060408051601f3d908101601f19168201909252610338918101906105bd565b60015b6103635760405163fdeac91f60e01b81526001600160a01b03821660048201526024016102b8565b8061038c5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016102b8565b5050565b6103986103a1565b61016a8161027e565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166103ef57604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561040357600080fd5b81356001600160e01b03198116811461041b57600080fd5b9392505050565b80356001600160a01b038116811461043957600080fd5b919050565b60008060008060006080868803121561045657600080fd5b61045f86610422565b945061046d60208701610422565b935060408601359250606086013567ffffffffffffffff8082111561049157600080fd5b818801915088601f8301126104a557600080fd5b8135818111156104b457600080fd5b8960208285010111156104c657600080fd5b9699959850939650602001949392505050565b80356bffffffffffffffffffffffff8116811461043957600080fd5b803563ffffffff8116811461043957600080fd5b6000806000806080858703121561051f57600080fd5b610528856104d9565b9350610536602086016104f5565b925061054460408601610422565b9396929550929360600135925050565b60006020828403121561056657600080fd5b61041b826104d9565b60006020828403121561058157600080fd5b61041b82610422565b6000806040838503121561059d57600080fd5b6105a6836104d9565b91506105b4602084016104f5565b90509250929050565b6000602082840312156105cf57600080fd5b8151801515811461041b57600080fdfea26469706673582212205905987ecff76b67e52b8824a45aad5ab8f773a74409dd053be7b306a016ee1264736f6c63430008140033",
245
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80635ab1bd53116100715780635ab1bd5314610175578063675393bf1461019a578063b414004e146101ad578063df86992d146101e2578063f21de1e814610175578063f8cd11d3146101f557600080fd5b806301ffc9a7146100b9578063150b7a02146100fb578063214cdb80146101335780632b96445a146101485780632e7e3cab1461015c57806336fc697e1461016d575b600080fd5b6100e66100c73660046103f1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61011a61010936600461043e565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016100f2565b6101466101413660046103f1565b61020b565b005b610146610156366004610509565b50505050565b61014661016a366004610554565b50565b610146610238565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100f2565b6101466101a836600461056f565b61027e565b6101d47f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0081565b6040519081526020016100f2565b6101466101f036600461056f565b610390565b61018261020336600461058a565b600092915050565b6102136103a1565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6102406103a1565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6102866103a1565b806001600160a01b03163b6000036102c15760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa92505050801561033b575060408051601f3d908101601f19168201909252610338918101906105bd565b60015b6103635760405163fdeac91f60e01b81526001600160a01b03821660048201526024016102b8565b8061038c5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016102b8565b5050565b6103986103a1565b61016a8161027e565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166103ef57604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561040357600080fd5b81356001600160e01b03198116811461041b57600080fd5b9392505050565b80356001600160a01b038116811461043957600080fd5b919050565b60008060008060006080868803121561045657600080fd5b61045f86610422565b945061046d60208701610422565b935060408601359250606086013567ffffffffffffffff8082111561049157600080fd5b818801915088601f8301126104a557600080fd5b8135818111156104b457600080fd5b8960208285010111156104c657600080fd5b9699959850939650602001949392505050565b80356bffffffffffffffffffffffff8116811461043957600080fd5b803563ffffffff8116811461043957600080fd5b6000806000806080858703121561051f57600080fd5b610528856104d9565b9350610536602086016104f5565b925061054460408601610422565b9396929550929360600135925050565b60006020828403121561056657600080fd5b61041b826104d9565b60006020828403121561058157600080fd5b61041b82610422565b6000806040838503121561059d57600080fd5b6105a6836104d9565b91506105b4602084016104f5565b90509250929050565b6000602082840312156105cf57600080fd5b8151801515811461041b57600080fdfea26469706673582212205905987ecff76b67e52b8824a45aad5ab8f773a74409dd053be7b306a016ee1264736f6c63430008140033",
246
246
  "linkReferences": {},
247
247
  "deployedLinkReferences": {}
248
248
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/a4fdb8c51f2726ede9f66aef21053805.json"
3
+ "buildInfo": "../../../build-info/137177d4e95267fdc8bcf3a603ebff2a.json"
4
4
  }