@etherisc/gif-next 0.0.2-a8ee67b-545 → 0.0.2-a996a07-088

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 (663) hide show
  1. package/README.md +250 -14
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1445 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +866 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +709 -0
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +315 -1509
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +496 -1664
  20. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +316 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1765 -0
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1101 -0
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +758 -0
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3678 -0
  32. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  34. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  35. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  36. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  37. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  38. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
  40. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  41. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  42. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  43. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  44. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  45. package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
  46. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  48. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  49. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  50. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  51. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  52. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  53. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  54. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  55. package/artifacts/contracts/{instance/base/ModuleBase.sol/ModuleBase.json → oracle/IOracle.sol/IOracle.json} +2 -2
  56. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  57. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
  58. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  59. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
  60. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  61. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
  62. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  63. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1077 -0
  64. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  65. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +758 -0
  66. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  67. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1193 -0
  68. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +790 -0
  70. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  71. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
  72. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  73. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
  74. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  75. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
  76. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  77. package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
  78. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  79. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1528 -0
  80. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +786 -0
  82. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  83. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +938 -0
  84. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +774 -0
  86. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  87. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1366 -0
  88. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  89. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +854 -0
  90. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  91. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +252 -230
  92. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  93. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
  94. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  95. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
  96. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  97. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
  98. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  99. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
  100. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  101. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IProductService.sol/IProductService.json} +197 -174
  102. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  103. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1266 -0
  104. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  105. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +814 -0
  106. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  107. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1071 -0
  108. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +822 -0
  110. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  111. package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
  112. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  113. package/artifacts/contracts/product/ProductService.sol/ProductService.json +767 -0
  114. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +738 -0
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +678 -77
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  124. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  125. package/artifacts/contracts/registry/Registry.sol/Registry.json +1064 -186
  126. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1627 -0
  128. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1519 -0
  130. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +761 -0
  132. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  133. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1348 -0
  134. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
  135. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +249 -0
  136. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  137. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  138. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  139. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1492 -0
  140. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
  141. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
  142. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
  143. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
  144. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
  146. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
  148. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
  150. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  151. package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
  152. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  153. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1578 -0
  154. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  155. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +836 -0
  156. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  157. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -0
  158. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  159. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  160. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1126 -0
  162. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
  163. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
  164. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
  166. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  167. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
  168. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  169. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
  170. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  171. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
  172. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  173. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -138
  174. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  175. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -1
  176. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  177. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +37 -80
  178. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  179. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  180. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  181. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
  182. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  183. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  184. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  185. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +158 -151
  186. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  187. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
  188. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  189. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  190. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  191. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
  192. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  193. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +635 -0
  194. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  195. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +258 -0
  196. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
  197. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
  198. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  199. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  200. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  201. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  202. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  203. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
  204. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  205. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
  206. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  207. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  208. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  209. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +260 -218
  210. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  211. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  212. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  213. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  214. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  215. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
  216. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  217. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  218. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  219. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
  220. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  221. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
  222. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  223. package/artifacts/contracts/staking/Staking.sol/Staking.json +2061 -0
  224. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  225. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +785 -0
  226. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  227. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  228. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  229. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1388 -0
  230. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  231. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +758 -0
  232. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2261 -0
  234. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  235. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +619 -0
  236. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  237. package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
  238. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  239. package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
  240. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  241. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  242. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  243. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +195 -0
  244. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  245. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +120 -0
  246. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  247. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  248. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  249. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  250. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  251. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  252. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  253. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  254. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +148 -0
  256. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +225 -0
  258. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +158 -0
  260. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +220 -0
  262. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  263. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +102 -0
  264. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +191 -0
  266. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
  268. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  270. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  272. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  274. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  276. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
  278. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  279. package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
  280. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  281. package/artifacts/contracts/{types/UFixed.sol/UFixedMathLib.json → type/UFixed.sol/UFixedLib.json} +4 -4
  282. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  284. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
  286. package/contracts/distribution/Distribution.sol +261 -0
  287. package/contracts/distribution/DistributionService.sol +298 -0
  288. package/contracts/distribution/DistributionServiceManager.sol +42 -0
  289. package/contracts/distribution/IDistributionComponent.sol +66 -0
  290. package/contracts/distribution/IDistributionService.sol +81 -0
  291. package/contracts/instance/BundleManager.sol +126 -0
  292. package/contracts/instance/IInstance.sol +74 -44
  293. package/contracts/instance/IInstanceService.sol +81 -0
  294. package/contracts/instance/Instance.sol +220 -52
  295. package/contracts/instance/InstanceAdmin.sol +331 -0
  296. package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
  297. package/contracts/instance/InstanceReader.sol +392 -0
  298. package/contracts/instance/InstanceService.sol +362 -0
  299. package/contracts/instance/InstanceServiceManager.sol +44 -0
  300. package/contracts/instance/InstanceStore.sol +269 -0
  301. package/contracts/instance/base/BalanceStore.sol +123 -0
  302. package/contracts/instance/base/Cloneable.sol +28 -0
  303. package/contracts/instance/base/ObjectCounter.sol +21 -0
  304. package/contracts/instance/base/ObjectManager.sol +80 -0
  305. package/contracts/instance/module/IAccess.sol +46 -0
  306. package/contracts/instance/module/IBundle.sol +20 -0
  307. package/contracts/instance/module/IComponents.sol +52 -0
  308. package/contracts/instance/module/IDistribution.sol +42 -0
  309. package/contracts/instance/module/IPolicy.sol +84 -0
  310. package/contracts/instance/module/IRisk.sol +11 -0
  311. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  312. package/contracts/oracle/IOracle.sol +20 -0
  313. package/contracts/oracle/IOracleComponent.sol +32 -0
  314. package/contracts/oracle/IOracleService.sol +65 -0
  315. package/contracts/oracle/Oracle.sol +145 -0
  316. package/contracts/oracle/OracleService.sol +277 -0
  317. package/contracts/oracle/OracleServiceManager.sol +42 -0
  318. package/contracts/pool/BundleService.sol +296 -0
  319. package/contracts/pool/BundleServiceManager.sol +42 -0
  320. package/contracts/pool/IBundleService.sol +106 -0
  321. package/contracts/pool/IPoolComponent.sol +112 -0
  322. package/contracts/pool/IPoolService.sol +150 -0
  323. package/contracts/pool/Pool.sol +299 -0
  324. package/contracts/pool/PoolService.sol +453 -0
  325. package/contracts/pool/PoolServiceManager.sol +42 -0
  326. package/contracts/product/ApplicationService.sol +254 -0
  327. package/contracts/product/ApplicationServiceManager.sol +38 -0
  328. package/contracts/product/ClaimService.sol +442 -0
  329. package/contracts/product/ClaimServiceManager.sol +38 -0
  330. package/contracts/product/IApplicationService.sol +62 -0
  331. package/contracts/product/IClaimService.sol +99 -0
  332. package/contracts/product/IPolicyService.sol +78 -0
  333. package/contracts/product/IPricingService.sol +39 -0
  334. package/contracts/product/IProductComponent.sol +42 -0
  335. package/contracts/product/IProductService.sol +33 -0
  336. package/contracts/product/PolicyService.sol +475 -0
  337. package/contracts/product/PolicyServiceManager.sol +42 -0
  338. package/contracts/product/PricingService.sol +301 -0
  339. package/contracts/product/PricingServiceManager.sol +42 -0
  340. package/contracts/product/Product.sol +377 -0
  341. package/contracts/product/ProductService.sol +124 -0
  342. package/contracts/product/ProductServiceManager.sol +42 -0
  343. package/contracts/registry/ChainNft.sol +95 -37
  344. package/contracts/registry/IRegistry.sol +95 -28
  345. package/contracts/registry/IRegistryService.sol +69 -0
  346. package/contracts/registry/ITransferInterceptor.sol +7 -0
  347. package/contracts/registry/Registry.sol +476 -281
  348. package/contracts/registry/RegistryAdmin.sol +126 -0
  349. package/contracts/registry/RegistryService.sol +266 -0
  350. package/contracts/registry/RegistryServiceManager.sol +58 -0
  351. package/contracts/registry/ReleaseManager.sol +590 -0
  352. package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
  353. package/contracts/registry/TokenRegistry.sol +315 -0
  354. package/contracts/shared/AccessAdmin.sol +696 -0
  355. package/contracts/shared/AccessManagerCustom.sol +741 -0
  356. package/contracts/shared/AccessManagerExtended.sol +481 -0
  357. package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
  358. package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
  359. package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
  360. package/contracts/shared/Component.sol +281 -0
  361. package/contracts/shared/ComponentService.sol +618 -0
  362. package/contracts/shared/ComponentServiceManager.sol +35 -0
  363. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  364. package/contracts/shared/ERC165.sol +15 -9
  365. package/contracts/shared/IAccessAdmin.sol +146 -0
  366. package/contracts/shared/IAccessManagerExtended.sol +74 -0
  367. package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
  368. package/contracts/shared/IComponent.sol +70 -0
  369. package/contracts/shared/IComponentService.sol +102 -0
  370. package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
  371. package/contracts/shared/IKeyValueStore.sol +53 -0
  372. package/contracts/{instance/base → shared}/ILifecycle.sol +4 -4
  373. package/contracts/shared/INftOwnable.sol +23 -0
  374. package/contracts/shared/IPolicyHolder.sol +45 -0
  375. package/contracts/shared/IRegisterable.sol +10 -19
  376. package/contracts/shared/IRegistryLinked.sol +11 -0
  377. package/contracts/shared/IService.sol +18 -0
  378. package/contracts/shared/IVersionable.sol +38 -37
  379. package/contracts/shared/InitializableCustom.sol +177 -0
  380. package/contracts/shared/InstanceLinkedComponent.sol +144 -0
  381. package/contracts/shared/KeyValueStore.sol +127 -0
  382. package/contracts/shared/Lifecycle.sol +130 -0
  383. package/contracts/shared/NftIdSetManager.sol +65 -0
  384. package/contracts/shared/NftOwnable.sol +107 -0
  385. package/contracts/shared/PolicyHolder.sol +102 -0
  386. package/contracts/shared/ProxyManager.sol +199 -0
  387. package/contracts/shared/Registerable.sol +54 -65
  388. package/contracts/shared/RegistryLinked.sol +43 -0
  389. package/contracts/shared/Service.sol +77 -0
  390. package/contracts/shared/TokenHandler.sol +58 -0
  391. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  392. package/contracts/shared/Versionable.sol +38 -68
  393. package/contracts/staking/IStaking.sol +168 -0
  394. package/contracts/staking/IStakingService.sol +149 -0
  395. package/contracts/staking/StakeManagerLib.sol +179 -0
  396. package/contracts/staking/Staking.sol +550 -0
  397. package/contracts/staking/StakingManager.sol +54 -0
  398. package/contracts/staking/StakingReader.sol +187 -0
  399. package/contracts/staking/StakingService.sol +406 -0
  400. package/contracts/staking/StakingServiceManager.sol +45 -0
  401. package/contracts/staking/StakingStore.sol +572 -0
  402. package/contracts/staking/TargetManagerLib.sol +207 -0
  403. package/contracts/{types → type}/AddressSet.sol +1 -1
  404. package/contracts/type/Amount.sol +128 -0
  405. package/contracts/{types → type}/Blocknumber.sol +21 -3
  406. package/contracts/type/ClaimId.sol +75 -0
  407. package/contracts/type/DistributorType.sol +55 -0
  408. package/contracts/type/Fee.sol +66 -0
  409. package/contracts/{types → type}/Key32.sol +8 -3
  410. package/contracts/{types → type}/NftId.sol +21 -15
  411. package/contracts/type/NftIdSet.sol +62 -0
  412. package/contracts/type/ObjectType.sol +170 -0
  413. package/contracts/type/PayoutId.sol +82 -0
  414. package/contracts/type/Referral.sol +89 -0
  415. package/contracts/type/RequestId.sol +75 -0
  416. package/contracts/type/RiskId.sol +43 -0
  417. package/contracts/type/RoleId.sol +156 -0
  418. package/contracts/type/Seconds.sol +81 -0
  419. package/contracts/type/Selector.sol +102 -0
  420. package/contracts/{types → type}/StateId.sol +39 -5
  421. package/contracts/type/String.sol +53 -0
  422. package/contracts/{types → type}/Timestamp.sol +27 -14
  423. package/contracts/{types → type}/UFixed.sol +129 -12
  424. package/contracts/{types → type}/Version.sol +15 -2
  425. package/package.json +8 -7
  426. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  427. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  428. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  429. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  430. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
  431. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  432. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
  433. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  434. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
  435. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  436. package/artifacts/contracts/components/Product.sol/Product.json +0 -305
  437. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  438. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  439. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  440. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  441. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  442. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  443. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  444. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  445. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  446. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  447. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  448. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  449. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  450. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  451. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  452. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  453. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  454. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  455. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  456. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  457. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  458. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  459. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  460. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  461. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  462. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  463. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  464. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  465. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  466. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  467. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  468. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  469. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  470. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  471. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  472. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  473. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  474. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  475. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  476. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  477. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  478. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  479. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  480. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  481. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  482. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  483. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
  484. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  485. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  486. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  487. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  488. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  489. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  490. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  491. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  492. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  493. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  494. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  495. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  496. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  497. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  498. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  499. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  500. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  501. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  502. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  503. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  504. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  505. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  506. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  507. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  508. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  509. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  511. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  512. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  513. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  514. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  515. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  516. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  517. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  518. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  519. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  520. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  521. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  522. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  523. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  524. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  525. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  526. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  527. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  528. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  529. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  530. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  531. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  532. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  533. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  534. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  535. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
  537. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  538. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
  540. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  542. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
  543. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
  545. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  546. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  547. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  548. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  549. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  550. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  551. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  552. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  553. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  554. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  555. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  556. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  557. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  558. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  559. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  560. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  561. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  563. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  564. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  565. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  566. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  567. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  568. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  569. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  570. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  571. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  572. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  573. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  574. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
  575. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  576. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  577. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  578. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  579. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  580. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  581. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  582. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  583. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  584. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  585. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  586. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  588. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  590. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  591. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  592. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  593. package/contracts/components/BaseComponent.sol +0 -88
  594. package/contracts/components/IBaseComponent.sol +0 -19
  595. package/contracts/components/IPoolComponent.sol +0 -57
  596. package/contracts/components/IProductComponent.sol +0 -19
  597. package/contracts/components/Pool.sol +0 -174
  598. package/contracts/components/Product.sol +0 -117
  599. package/contracts/experiment/errors/Require.sol +0 -38
  600. package/contracts/experiment/errors/Revert.sol +0 -44
  601. package/contracts/experiment/inheritance/A.sol +0 -53
  602. package/contracts/experiment/inheritance/B.sol +0 -28
  603. package/contracts/experiment/inheritance/C.sol +0 -34
  604. package/contracts/experiment/inheritance/IA.sol +0 -13
  605. package/contracts/experiment/inheritance/IB.sol +0 -10
  606. package/contracts/experiment/inheritance/IC.sol +0 -12
  607. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  608. package/contracts/experiment/statemachine/ISM.sol +0 -25
  609. package/contracts/experiment/statemachine/README.md +0 -112
  610. package/contracts/experiment/statemachine/SM.sol +0 -57
  611. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  612. package/contracts/experiment/types/TypeA.sol +0 -47
  613. package/contracts/experiment/types/TypeB.sol +0 -29
  614. package/contracts/instance/IInstanceLinked.sol +0 -8
  615. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  616. package/contracts/instance/base/IInstanceBase.sol +0 -14
  617. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  618. package/contracts/instance/base/IService.sol +0 -15
  619. package/contracts/instance/base/InstanceBase.sol +0 -80
  620. package/contracts/instance/base/KeyValueStore.sol +0 -156
  621. package/contracts/instance/base/Lifecycle.sol +0 -95
  622. package/contracts/instance/base/ModuleBase.sol +0 -52
  623. package/contracts/instance/base/ServiceBase.sol +0 -37
  624. package/contracts/instance/module/access/Access.sol +0 -149
  625. package/contracts/instance/module/access/IAccess.sol +0 -53
  626. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  627. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  628. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  629. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  630. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  631. package/contracts/instance/module/component/IComponent.sol +0 -53
  632. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  633. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  634. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  635. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  636. package/contracts/instance/module/risk/IRisk.sol +0 -10
  637. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  638. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  639. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  640. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  641. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  642. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  643. package/contracts/instance/service/IPoolService.sol +0 -30
  644. package/contracts/instance/service/IProductService.sol +0 -58
  645. package/contracts/instance/service/PoolService.sol +0 -123
  646. package/contracts/instance/service/ProductService.sol +0 -354
  647. package/contracts/registry/IChainNft.sol +0 -21
  648. package/contracts/registry/IRegistryLinked.sol +0 -8
  649. package/contracts/shared/IOwnable.sol +0 -6
  650. package/contracts/test/TestFee.sol +0 -25
  651. package/contracts/test/TestPool.sol +0 -22
  652. package/contracts/test/TestProduct.sol +0 -44
  653. package/contracts/test/TestRegisterable.sol +0 -19
  654. package/contracts/test/TestRoleId.sol +0 -14
  655. package/contracts/test/TestService.sol +0 -32
  656. package/contracts/test/TestToken.sol +0 -26
  657. package/contracts/test/TestVersion.sol +0 -44
  658. package/contracts/test/TestVersionable.sol +0 -17
  659. package/contracts/types/ChainId.sol +0 -38
  660. package/contracts/types/Fee.sol +0 -51
  661. package/contracts/types/NftIdSet.sol +0 -60
  662. package/contracts/types/ObjectType.sol +0 -115
  663. package/contracts/types/RoleId.sol +0 -38
@@ -0,0 +1,1101 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "InstanceService",
4
+ "sourceName": "contracts/instance/InstanceService.sol",
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
+ },
44
+ {
45
+ "inputs": [],
46
+ "name": "ERC1167FailedCreateClone",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [],
51
+ "name": "ErrorInstanceServiceBundleManagerAuthorityMismatch",
52
+ "type": "error"
53
+ },
54
+ {
55
+ "inputs": [],
56
+ "name": "ErrorInstanceServiceBundleManagerZero",
57
+ "type": "error"
58
+ },
59
+ {
60
+ "inputs": [],
61
+ "name": "ErrorInstanceServiceBundleMangerInstanceMismatch",
62
+ "type": "error"
63
+ },
64
+ {
65
+ "inputs": [
66
+ {
67
+ "internalType": "address",
68
+ "name": "component",
69
+ "type": "address"
70
+ }
71
+ ],
72
+ "name": "ErrorInstanceServiceComponentNotInstanceLinked",
73
+ "type": "error"
74
+ },
75
+ {
76
+ "inputs": [
77
+ {
78
+ "internalType": "address",
79
+ "name": "componentAddress",
80
+ "type": "address"
81
+ }
82
+ ],
83
+ "name": "ErrorInstanceServiceComponentNotRegistered",
84
+ "type": "error"
85
+ },
86
+ {
87
+ "inputs": [],
88
+ "name": "ErrorInstanceServiceInstanceAddressZero",
89
+ "type": "error"
90
+ },
91
+ {
92
+ "inputs": [],
93
+ "name": "ErrorInstanceServiceInstanceAdminZero",
94
+ "type": "error"
95
+ },
96
+ {
97
+ "inputs": [],
98
+ "name": "ErrorInstanceServiceInstanceAuthorityMismatch",
99
+ "type": "error"
100
+ },
101
+ {
102
+ "inputs": [
103
+ {
104
+ "internalType": "NftId",
105
+ "name": "instanceNftId",
106
+ "type": "uint96"
107
+ },
108
+ {
109
+ "internalType": "NftId",
110
+ "name": "componentNftId",
111
+ "type": "uint96"
112
+ }
113
+ ],
114
+ "name": "ErrorInstanceServiceInstanceComponentMismatch",
115
+ "type": "error"
116
+ },
117
+ {
118
+ "inputs": [],
119
+ "name": "ErrorInstanceServiceInstanceReaderAddressZero",
120
+ "type": "error"
121
+ },
122
+ {
123
+ "inputs": [],
124
+ "name": "ErrorInstanceServiceInstanceReaderInstanceMismatch",
125
+ "type": "error"
126
+ },
127
+ {
128
+ "inputs": [],
129
+ "name": "ErrorInstanceServiceInstanceReaderInstanceMismatch2",
130
+ "type": "error"
131
+ },
132
+ {
133
+ "inputs": [],
134
+ "name": "ErrorInstanceServiceInstanceReaderSameAsMasterInstanceReader",
135
+ "type": "error"
136
+ },
137
+ {
138
+ "inputs": [],
139
+ "name": "ErrorInstanceServiceInstanceReaderZero",
140
+ "type": "error"
141
+ },
142
+ {
143
+ "inputs": [],
144
+ "name": "ErrorInstanceServiceInstanceStoreAuthorityMismatch",
145
+ "type": "error"
146
+ },
147
+ {
148
+ "inputs": [],
149
+ "name": "ErrorInstanceServiceInstanceStoreZero",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "inputs": [
154
+ {
155
+ "internalType": "address",
156
+ "name": "componentAddress",
157
+ "type": "address"
158
+ },
159
+ {
160
+ "internalType": "ObjectType",
161
+ "name": "expectedType",
162
+ "type": "uint8"
163
+ },
164
+ {
165
+ "internalType": "ObjectType",
166
+ "name": "componentType",
167
+ "type": "uint8"
168
+ }
169
+ ],
170
+ "name": "ErrorInstanceServiceInvalidComponentType",
171
+ "type": "error"
172
+ },
173
+ {
174
+ "inputs": [],
175
+ "name": "ErrorInstanceServiceMasterBundleManagerAlreadySet",
176
+ "type": "error"
177
+ },
178
+ {
179
+ "inputs": [],
180
+ "name": "ErrorInstanceServiceMasterInstanceAccessManagerAlreadySet",
181
+ "type": "error"
182
+ },
183
+ {
184
+ "inputs": [],
185
+ "name": "ErrorInstanceServiceMasterInstanceAdminAlreadySet",
186
+ "type": "error"
187
+ },
188
+ {
189
+ "inputs": [],
190
+ "name": "ErrorInstanceServiceMasterInstanceAlreadySet",
191
+ "type": "error"
192
+ },
193
+ {
194
+ "inputs": [],
195
+ "name": "ErrorInstanceServiceMasterInstanceReaderNotSet",
196
+ "type": "error"
197
+ },
198
+ {
199
+ "inputs": [
200
+ {
201
+ "internalType": "NftId",
202
+ "name": "nftId",
203
+ "type": "uint96"
204
+ }
205
+ ],
206
+ "name": "ErrorInstanceServiceNotInstance",
207
+ "type": "error"
208
+ },
209
+ {
210
+ "inputs": [
211
+ {
212
+ "internalType": "address",
213
+ "name": "caller",
214
+ "type": "address"
215
+ }
216
+ ],
217
+ "name": "ErrorInstanceServiceRequestUnauhorized",
218
+ "type": "error"
219
+ },
220
+ {
221
+ "inputs": [
222
+ {
223
+ "internalType": "NftId",
224
+ "name": "nftId",
225
+ "type": "uint96"
226
+ }
227
+ ],
228
+ "name": "ErrorNftOwnableAlreadyLinked",
229
+ "type": "error"
230
+ },
231
+ {
232
+ "inputs": [
233
+ {
234
+ "internalType": "address",
235
+ "name": "contractAddress",
236
+ "type": "address"
237
+ }
238
+ ],
239
+ "name": "ErrorNftOwnableContractNotRegistered",
240
+ "type": "error"
241
+ },
242
+ {
243
+ "inputs": [],
244
+ "name": "ErrorNftOwnableInitialOwnerZero",
245
+ "type": "error"
246
+ },
247
+ {
248
+ "inputs": [
249
+ {
250
+ "internalType": "address",
251
+ "name": "account",
252
+ "type": "address"
253
+ }
254
+ ],
255
+ "name": "ErrorNftOwnableNotOwner",
256
+ "type": "error"
257
+ },
258
+ {
259
+ "inputs": [
260
+ {
261
+ "internalType": "address",
262
+ "name": "registryAddress",
263
+ "type": "address"
264
+ }
265
+ ],
266
+ "name": "ErrorNotRegistry",
267
+ "type": "error"
268
+ },
269
+ {
270
+ "inputs": [],
271
+ "name": "ErrorServiceNotImplemented",
272
+ "type": "error"
273
+ },
274
+ {
275
+ "inputs": [],
276
+ "name": "InvalidInitialization",
277
+ "type": "error"
278
+ },
279
+ {
280
+ "inputs": [],
281
+ "name": "NotInitializing",
282
+ "type": "error"
283
+ },
284
+ {
285
+ "anonymous": false,
286
+ "inputs": [
287
+ {
288
+ "indexed": false,
289
+ "internalType": "address",
290
+ "name": "authority",
291
+ "type": "address"
292
+ }
293
+ ],
294
+ "name": "AuthorityUpdated",
295
+ "type": "event"
296
+ },
297
+ {
298
+ "anonymous": false,
299
+ "inputs": [
300
+ {
301
+ "indexed": false,
302
+ "internalType": "uint64",
303
+ "name": "version",
304
+ "type": "uint64"
305
+ }
306
+ ],
307
+ "name": "Initialized",
308
+ "type": "event"
309
+ },
310
+ {
311
+ "anonymous": false,
312
+ "inputs": [
313
+ {
314
+ "indexed": false,
315
+ "internalType": "address",
316
+ "name": "clonedOzAccessManager",
317
+ "type": "address"
318
+ },
319
+ {
320
+ "indexed": false,
321
+ "internalType": "address",
322
+ "name": "clonedInstanceAccessManager",
323
+ "type": "address"
324
+ },
325
+ {
326
+ "indexed": false,
327
+ "internalType": "address",
328
+ "name": "clonedInstance",
329
+ "type": "address"
330
+ },
331
+ {
332
+ "indexed": false,
333
+ "internalType": "address",
334
+ "name": "clonedInstanceStore",
335
+ "type": "address"
336
+ },
337
+ {
338
+ "indexed": false,
339
+ "internalType": "address",
340
+ "name": "clonedBundleManager",
341
+ "type": "address"
342
+ },
343
+ {
344
+ "indexed": false,
345
+ "internalType": "address",
346
+ "name": "clonedInstanceReader",
347
+ "type": "address"
348
+ },
349
+ {
350
+ "indexed": false,
351
+ "internalType": "NftId",
352
+ "name": "clonedInstanceNftId",
353
+ "type": "uint96"
354
+ }
355
+ ],
356
+ "name": "LogInstanceCloned",
357
+ "type": "event"
358
+ },
359
+ {
360
+ "inputs": [],
361
+ "name": "INSTANCE_CREATION_CODE_HASH",
362
+ "outputs": [
363
+ {
364
+ "internalType": "bytes32",
365
+ "name": "",
366
+ "type": "bytes32"
367
+ }
368
+ ],
369
+ "stateMutability": "view",
370
+ "type": "function"
371
+ },
372
+ {
373
+ "inputs": [],
374
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
375
+ "outputs": [
376
+ {
377
+ "internalType": "bytes32",
378
+ "name": "",
379
+ "type": "bytes32"
380
+ }
381
+ ],
382
+ "stateMutability": "view",
383
+ "type": "function"
384
+ },
385
+ {
386
+ "inputs": [],
387
+ "name": "REGISTERABLE_LOCATION_V1",
388
+ "outputs": [
389
+ {
390
+ "internalType": "bytes32",
391
+ "name": "",
392
+ "type": "bytes32"
393
+ }
394
+ ],
395
+ "stateMutability": "view",
396
+ "type": "function"
397
+ },
398
+ {
399
+ "inputs": [],
400
+ "name": "authority",
401
+ "outputs": [
402
+ {
403
+ "internalType": "address",
404
+ "name": "",
405
+ "type": "address"
406
+ }
407
+ ],
408
+ "stateMutability": "view",
409
+ "type": "function"
410
+ },
411
+ {
412
+ "inputs": [
413
+ {
414
+ "internalType": "NftId",
415
+ "name": "instanceNftId",
416
+ "type": "uint96"
417
+ },
418
+ {
419
+ "internalType": "address",
420
+ "name": "targetAddress",
421
+ "type": "address"
422
+ },
423
+ {
424
+ "internalType": "string",
425
+ "name": "targetName",
426
+ "type": "string"
427
+ },
428
+ {
429
+ "internalType": "bytes4[][]",
430
+ "name": "selectors",
431
+ "type": "bytes4[][]"
432
+ },
433
+ {
434
+ "internalType": "RoleId[]",
435
+ "name": "roles",
436
+ "type": "uint64[]"
437
+ }
438
+ ],
439
+ "name": "createComponentTarget",
440
+ "outputs": [],
441
+ "stateMutability": "nonpayable",
442
+ "type": "function"
443
+ },
444
+ {
445
+ "inputs": [
446
+ {
447
+ "internalType": "NftId",
448
+ "name": "instanceNftId",
449
+ "type": "uint96"
450
+ },
451
+ {
452
+ "internalType": "address",
453
+ "name": "targetAddress",
454
+ "type": "address"
455
+ },
456
+ {
457
+ "internalType": "string",
458
+ "name": "targetName",
459
+ "type": "string"
460
+ },
461
+ {
462
+ "internalType": "bytes4[][]",
463
+ "name": "selectors",
464
+ "type": "bytes4[][]"
465
+ },
466
+ {
467
+ "internalType": "RoleId[]",
468
+ "name": "roles",
469
+ "type": "uint64[]"
470
+ }
471
+ ],
472
+ "name": "createGifTarget",
473
+ "outputs": [],
474
+ "stateMutability": "nonpayable",
475
+ "type": "function"
476
+ },
477
+ {
478
+ "inputs": [],
479
+ "name": "createInstanceClone",
480
+ "outputs": [
481
+ {
482
+ "internalType": "contract Instance",
483
+ "name": "clonedInstance",
484
+ "type": "address"
485
+ },
486
+ {
487
+ "internalType": "NftId",
488
+ "name": "clonedInstanceNftId",
489
+ "type": "uint96"
490
+ }
491
+ ],
492
+ "stateMutability": "nonpayable",
493
+ "type": "function"
494
+ },
495
+ {
496
+ "inputs": [],
497
+ "name": "getDomain",
498
+ "outputs": [
499
+ {
500
+ "internalType": "ObjectType",
501
+ "name": "",
502
+ "type": "uint8"
503
+ }
504
+ ],
505
+ "stateMutability": "pure",
506
+ "type": "function"
507
+ },
508
+ {
509
+ "inputs": [],
510
+ "name": "getInitialInfo",
511
+ "outputs": [
512
+ {
513
+ "components": [
514
+ {
515
+ "internalType": "NftId",
516
+ "name": "nftId",
517
+ "type": "uint96"
518
+ },
519
+ {
520
+ "internalType": "NftId",
521
+ "name": "parentNftId",
522
+ "type": "uint96"
523
+ },
524
+ {
525
+ "internalType": "ObjectType",
526
+ "name": "objectType",
527
+ "type": "uint8"
528
+ },
529
+ {
530
+ "internalType": "bool",
531
+ "name": "isInterceptor",
532
+ "type": "bool"
533
+ },
534
+ {
535
+ "internalType": "address",
536
+ "name": "objectAddress",
537
+ "type": "address"
538
+ },
539
+ {
540
+ "internalType": "address",
541
+ "name": "initialOwner",
542
+ "type": "address"
543
+ },
544
+ {
545
+ "internalType": "bytes",
546
+ "name": "data",
547
+ "type": "bytes"
548
+ }
549
+ ],
550
+ "internalType": "struct IRegistry.ObjectInfo",
551
+ "name": "info",
552
+ "type": "tuple"
553
+ }
554
+ ],
555
+ "stateMutability": "view",
556
+ "type": "function"
557
+ },
558
+ {
559
+ "inputs": [],
560
+ "name": "getMasterInstanceReader",
561
+ "outputs": [
562
+ {
563
+ "internalType": "address",
564
+ "name": "",
565
+ "type": "address"
566
+ }
567
+ ],
568
+ "stateMutability": "view",
569
+ "type": "function"
570
+ },
571
+ {
572
+ "inputs": [],
573
+ "name": "getNftId",
574
+ "outputs": [
575
+ {
576
+ "internalType": "NftId",
577
+ "name": "",
578
+ "type": "uint96"
579
+ }
580
+ ],
581
+ "stateMutability": "view",
582
+ "type": "function"
583
+ },
584
+ {
585
+ "inputs": [],
586
+ "name": "getOwner",
587
+ "outputs": [
588
+ {
589
+ "internalType": "address",
590
+ "name": "",
591
+ "type": "address"
592
+ }
593
+ ],
594
+ "stateMutability": "view",
595
+ "type": "function"
596
+ },
597
+ {
598
+ "inputs": [],
599
+ "name": "getRegistry",
600
+ "outputs": [
601
+ {
602
+ "internalType": "contract IRegistry",
603
+ "name": "",
604
+ "type": "address"
605
+ }
606
+ ],
607
+ "stateMutability": "view",
608
+ "type": "function"
609
+ },
610
+ {
611
+ "inputs": [],
612
+ "name": "getVersion",
613
+ "outputs": [
614
+ {
615
+ "internalType": "Version",
616
+ "name": "",
617
+ "type": "uint24"
618
+ }
619
+ ],
620
+ "stateMutability": "pure",
621
+ "type": "function"
622
+ },
623
+ {
624
+ "inputs": [],
625
+ "name": "initializeERC165",
626
+ "outputs": [],
627
+ "stateMutability": "nonpayable",
628
+ "type": "function"
629
+ },
630
+ {
631
+ "inputs": [
632
+ {
633
+ "internalType": "address",
634
+ "name": "initialOwner",
635
+ "type": "address"
636
+ },
637
+ {
638
+ "internalType": "address",
639
+ "name": "registryAddress",
640
+ "type": "address"
641
+ }
642
+ ],
643
+ "name": "initializeNftOwnable",
644
+ "outputs": [],
645
+ "stateMutability": "nonpayable",
646
+ "type": "function"
647
+ },
648
+ {
649
+ "inputs": [
650
+ {
651
+ "internalType": "address",
652
+ "name": "registryAddress",
653
+ "type": "address"
654
+ },
655
+ {
656
+ "internalType": "NftId",
657
+ "name": "parentNftId",
658
+ "type": "uint96"
659
+ },
660
+ {
661
+ "internalType": "ObjectType",
662
+ "name": "objectType",
663
+ "type": "uint8"
664
+ },
665
+ {
666
+ "internalType": "bool",
667
+ "name": "isInterceptor",
668
+ "type": "bool"
669
+ },
670
+ {
671
+ "internalType": "address",
672
+ "name": "initialOwner",
673
+ "type": "address"
674
+ },
675
+ {
676
+ "internalType": "bytes",
677
+ "name": "registryData",
678
+ "type": "bytes"
679
+ }
680
+ ],
681
+ "name": "initializeRegisterable",
682
+ "outputs": [],
683
+ "stateMutability": "nonpayable",
684
+ "type": "function"
685
+ },
686
+ {
687
+ "inputs": [
688
+ {
689
+ "internalType": "address",
690
+ "name": "registryAddress",
691
+ "type": "address"
692
+ }
693
+ ],
694
+ "name": "initializeRegistryLinked",
695
+ "outputs": [],
696
+ "stateMutability": "nonpayable",
697
+ "type": "function"
698
+ },
699
+ {
700
+ "inputs": [
701
+ {
702
+ "internalType": "address",
703
+ "name": "registry",
704
+ "type": "address"
705
+ },
706
+ {
707
+ "internalType": "address",
708
+ "name": "authority",
709
+ "type": "address"
710
+ },
711
+ {
712
+ "internalType": "address",
713
+ "name": "initialOwner",
714
+ "type": "address"
715
+ }
716
+ ],
717
+ "name": "initializeService",
718
+ "outputs": [],
719
+ "stateMutability": "nonpayable",
720
+ "type": "function"
721
+ },
722
+ {
723
+ "inputs": [
724
+ {
725
+ "internalType": "address",
726
+ "name": "activatedBy",
727
+ "type": "address"
728
+ },
729
+ {
730
+ "internalType": "bytes",
731
+ "name": "data",
732
+ "type": "bytes"
733
+ }
734
+ ],
735
+ "name": "initializeVersionable",
736
+ "outputs": [],
737
+ "stateMutability": "nonpayable",
738
+ "type": "function"
739
+ },
740
+ {
741
+ "inputs": [],
742
+ "name": "isConsumingScheduledOp",
743
+ "outputs": [
744
+ {
745
+ "internalType": "bytes4",
746
+ "name": "",
747
+ "type": "bytes4"
748
+ }
749
+ ],
750
+ "stateMutability": "view",
751
+ "type": "function"
752
+ },
753
+ {
754
+ "inputs": [],
755
+ "name": "linkToRegisteredNftId",
756
+ "outputs": [
757
+ {
758
+ "internalType": "NftId",
759
+ "name": "nftId",
760
+ "type": "uint96"
761
+ }
762
+ ],
763
+ "stateMutability": "nonpayable",
764
+ "type": "function"
765
+ },
766
+ {
767
+ "inputs": [
768
+ {
769
+ "internalType": "bytes4",
770
+ "name": "interfaceId",
771
+ "type": "bytes4"
772
+ }
773
+ ],
774
+ "name": "registerInterface",
775
+ "outputs": [],
776
+ "stateMutability": "nonpayable",
777
+ "type": "function"
778
+ },
779
+ {
780
+ "inputs": [
781
+ {
782
+ "internalType": "address",
783
+ "name": "instanceAddress",
784
+ "type": "address"
785
+ }
786
+ ],
787
+ "name": "setAndRegisterMasterInstance",
788
+ "outputs": [
789
+ {
790
+ "internalType": "NftId",
791
+ "name": "masterInstanceNftId",
792
+ "type": "uint96"
793
+ }
794
+ ],
795
+ "stateMutability": "nonpayable",
796
+ "type": "function"
797
+ },
798
+ {
799
+ "inputs": [
800
+ {
801
+ "internalType": "address",
802
+ "name": "newAuthority",
803
+ "type": "address"
804
+ }
805
+ ],
806
+ "name": "setAuthority",
807
+ "outputs": [],
808
+ "stateMutability": "nonpayable",
809
+ "type": "function"
810
+ },
811
+ {
812
+ "inputs": [
813
+ {
814
+ "internalType": "bool",
815
+ "name": "locked",
816
+ "type": "bool"
817
+ }
818
+ ],
819
+ "name": "setComponentLocked",
820
+ "outputs": [],
821
+ "stateMutability": "nonpayable",
822
+ "type": "function"
823
+ },
824
+ {
825
+ "inputs": [
826
+ {
827
+ "internalType": "bytes4",
828
+ "name": "interfaceId",
829
+ "type": "bytes4"
830
+ }
831
+ ],
832
+ "name": "supportsInterface",
833
+ "outputs": [
834
+ {
835
+ "internalType": "bool",
836
+ "name": "",
837
+ "type": "bool"
838
+ }
839
+ ],
840
+ "stateMutability": "view",
841
+ "type": "function"
842
+ },
843
+ {
844
+ "inputs": [
845
+ {
846
+ "internalType": "NftId",
847
+ "name": "instanceNftId",
848
+ "type": "uint96"
849
+ }
850
+ ],
851
+ "name": "upgradeInstanceReader",
852
+ "outputs": [],
853
+ "stateMutability": "nonpayable",
854
+ "type": "function"
855
+ },
856
+ {
857
+ "inputs": [
858
+ {
859
+ "internalType": "address",
860
+ "name": "instanceReaderAddress",
861
+ "type": "address"
862
+ }
863
+ ],
864
+ "name": "upgradeMasterInstanceReader",
865
+ "outputs": [],
866
+ "stateMutability": "nonpayable",
867
+ "type": "function"
868
+ },
869
+ {
870
+ "inputs": [
871
+ {
872
+ "internalType": "bytes",
873
+ "name": "data",
874
+ "type": "bytes"
875
+ }
876
+ ],
877
+ "name": "upgradeVersionable",
878
+ "outputs": [],
879
+ "stateMutability": "nonpayable",
880
+ "type": "function"
881
+ }
882
+ ],
883
+ "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6143cd80620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c6fbb2811610104578063b03d2a8e116100a2578063dd38b49e11610071578063dd38b49e14610379578063edabac0314610440578063eeff428e14610451578063f7c34ee01461048057600080fd5b8063b03d2a8e146103f8578063b68d18091461040b578063bf7e214f14610425578063c22f980d1461042d57600080fd5b8063893d20e8116100de578063893d20e8146103a75780638e32e979146103af5780638fb36037146103c2578063ada9652e146103e357600080fd5b80636c6fbb28146103795780637a9e5e4b1461038c578063872309c71461039f57600080fd5b806327bb7a331161017c5780635ab1bd531161014b5780635ab1bd5314610310578063644c45e014610335578063675393bf146103535780636a778e731461036657600080fd5b806327bb7a33146102cf578063329d6e74146102e257806336fc697e146102f557806349bb9e4b146102fd57600080fd5b8063138461e0116101b8578063138461e0146102525780631eff4b2214610272578063214cdb80146102a7578063254f6866146102bc57600080fd5b806301ffc9a7146101df5780630d8e6e2c146102215780630fec111c1461023d575b600080fd5b61020c6101ed366004613743565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610229610493565b60405162ffffff9091168152602001610218565b61024561051d565b60405161021891906137ae565b61025a6106e1565b6040516001600160601b039091168152602001610218565b6102997f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b6102ba6102b5366004613743565b6106ec565b005b6102ba6102ca36600461384e565b610719565b6102ba6102dd366004613990565b610896565b6102ba6102f0366004613a28565b61093b565b6102ba610a88565b6102ba61030b366004613a5c565b610ace565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b600080516020614338833981519152546001600160601b031661025a565b6102ba61036136600461384e565b610bcd565b61025a61037436600461384e565b610cdb565b6102ba610387366004613c39565b611591565b6102ba61039a36600461384e565b6115b1565b610299600081565b61031d611634565b6102ba6103bd366004613cfd565b61176b565b6103ca6119b0565b6040516001600160e01b03199091168152602001610218565b61029960008051602061433883398151915281565b6102ba610406366004613d48565b6119e8565b610413611ce7565b60405160ff9091168152602001610218565b61031d611cf1565b6102ba61043b366004613d65565b611d0d565b6007546001600160a01b031661031d565b610459611f38565b604080516001600160a01b0390931683526001600160601b03909116602083015201610218565b6102ba61048e366004613d82565b612944565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156104f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105189190613dbb565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f59190613deb565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161063d611634565b6001600160a01b0316815260200182600101805461065a90613e08565b80601f016020809104026020016040519081016040528092919081815260200182805461068690613e08565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b505050505081525091505090565b6000610518306129bb565b6106f4612bbc565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610721611634565b6001600160a01b0316336001600160a01b0316146107595760405163086391f760e31b81523360048201526024015b60405180910390fd5b6007546001600160a01b0316610782576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b0381166107a957604051631aa1808560e31b815260040160405180910390fd5b6007546001600160a01b03908116908216036107d857604051630666e2a560e01b815260040160405180910390fd5b6006546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa158015610828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084c9190613e42565b6001600160a01b0316146108735760405163f026367160e01b815260040160405180910390fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b61089e612bbc565b6108a88287612944565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016109318382613ea5565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61095d610493565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561099d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c19190613f64565b6000805160206143788339815191528054600160401b900460ff16806109f4575080546001600160401b03808416911610155b15610a125760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a3c83612bf5565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610a90612bbc565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000805160206143788339815191528054600160401b810460ff1615906001600160401b0316600081158015610b015750825b90506000826001600160401b03166001148015610b1d5750303b155b905081158015610b2b575080155b15610b495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610b7357845460ff60401b1916600160401b1785555b610b7d8787612bfd565b8315610bc457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610bd5612bbc565b806001600160a01b03163b600003610c0b5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610750565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610c85575060408051601f3d908101601f19168201909252610c8291810190613f8c565b60015b610cad5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610750565b80610cd65760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610750565b505b50565b6000610ce5611634565b6001600160a01b0316336001600160a01b031614610d185760405163086391f760e31b8152336004820152602401610750565b6006546001600160a01b031615610d4257604051632c237de760e11b815260040160405180910390fd5b6004546001600160a01b031615610d6c57604051630157f74960e01b815260040160405180910390fd5b6005546001600160a01b031615610d965760405163ab0cc43960e01b815260040160405180910390fd5b6008546001600160a01b031615610dc057604051637f405a2960e01b815260040160405180910390fd5b6001600160a01b038216610de7576040516309353e4560e11b815260040160405180910390fd5b60008290506000816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e509190613e42565b905060008190506000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190613e42565b905060008190506000856001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f269190613e42565b905060008190506000876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f919190613e42565b9050806001600160a01b038716610fba576040516295661560e31b815260040160405180910390fd5b6001600160a01b038516610fe15760405163e267254160e01b815260040160405180910390fd5b6001600160a01b03831661100857604051630ddeaef560e11b815260040160405180910390fd5b6001600160a01b03811661102f576040516301fa2a2b60e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561106d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110919190613e42565b6001600160a01b0316896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fc9190613e42565b6001600160a01b031614611123576040516334ddf1a760e21b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611161573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111859190613e42565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f09190613e42565b6001600160a01b031614611217576040516326c89a4160e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611255573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112799190613e42565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e49190613e42565b6001600160a01b03161461130b57604051631129422760e31b815260040160405180910390fd5b886001600160a01b0316846001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190613e42565b6001600160a01b03161461139e57604051631b25e96d60e31b815260040160405180910390fd5b886001600160a01b0316866001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140a9190613e42565b6001600160a01b031614611431576040516331783c7160e11b815260040160405180910390fd5b886001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561146f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114939190613e42565b600480546001600160a01b03199081166001600160a01b03938416179091556005805482168a84161790556006805482168e8416908117909155600780548316898516179055600880548316878516179055600980549092168484161790915560025490916000911663026bc43b8361150a611634565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016000604051808303816000875af1158015611557573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261157f9190810190614004565b519d9c50505050505050505050505050565b61159d33600036612d78565b6115aa8585858486612e7e565b5050505050565b336115ba611cf1565b6001600160a01b0316816001600160a01b0316146115f55760405162d1953b60e31b81526001600160a01b0382166004820152602401610750565b816001600160a01b03163b60000361162b576040516361798f2f60e11b81526001600160a01b0383166004820152602401610750565b610cd682613007565b60008060008051602061433883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156116a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c89190613f8c565b15611755576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561172b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174f9190613e42565b91505090565b54600160601b90046001600160a01b0316919050565b611773612bbc565b6117f983846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d99190613deb565b6117e1613068565b60008560405180602001604052806000815250610896565b6001600160a01b0382161561181657611811826130e0565b61198b565b600061182a6001546001600160a01b031690565b6001600160a01b031663d39e60436118406130f1565b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611890573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b491906140d6565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156118f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191d9190613e42565b9050611989816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611960573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119849190613e42565b6130e0565b505b61199b634a531f3360e01b6106ec565b6119ab63b68d180960e01b6106ec565b505050565b600080516020614358833981519152805460009190600160a01b900460ff166119da57600061174f565b638fb3603760e01b91505090565b6001546001600160a01b0316604051630bee2f1560e11b81523360048201526001600160a01b0391909116906317dc5e2a90602401602060405180830381865afa158015611a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5e9190613f8c565b611a7d576040516302613e9f60e51b8152336004820152602401610750565b6040516301ffc9a760e01b8152639a29895960e01b6004820152339081906301ffc9a790602401602060405180830381865afa158015611ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae59190613f8c565b611b0c576040516236c14d60e71b81526001600160a01b0382166004820152602401610750565b6000611b206001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b038481166004830152919250600091831690638b09a5f090602401600060405180830381865afa158015611b6c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b949190810190614004565b602001516040516305247a1760e51b81526001600160601b03821660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611beb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c139190810190614004565b608001519050806001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7b9190613e42565b6040516313bfaf6360e31b81526001600160a01b03868116600483015287151560248301529190911690639dfd7b1890604401600060405180830381600087803b158015611cc857600080fd5b505af1158015611cdc573d6000803e3d6000fd5b505050505050505050565b600061051861312c565b600080516020614358833981519152546001600160a01b031690565b80611d206001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d939190613e42565b6001600160a01b0316336001600160a01b031614611dc6576040516302613e9f60e51b8152336004820152602401610750565b6000611dda6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611e2d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e559190810190614004565b608081015160075491925090600090611e76906001600160a01b0316613167565b60405163189acdbd60e31b81526001600160a01b0384811660048301529192509082169063c4d66de890602401600060405180830381600087803b158015611ebd57600080fd5b505af1158015611ed1573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401600060405180830381600087803b158015611f1857600080fd5b505af1158015611f2c573d6000803e3d6000fd5b50505050505050505050565b600454600090819033908290611f56906001600160a01b0316613167565b60405163189acdbd60e31b81523060048201529091506001600160a01b0382169063c4d66de890602401600060405180830381600087803b158015611f9a57600080fd5b505af1158015611fae573d6000803e3d6000fd5b5050600654611fc892506001600160a01b03169050613167565b9350836001600160a01b031663c0c53b8b82611fec6001546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015290821660248201529085166044820152606401600060405180830381600087803b15801561203d57600080fd5b505af1158015612051573d6000803e3d6000fd5b50506009546000925061206d91506001600160a01b0316613167565b60405163189acdbd60e31b81526001600160a01b0387811660048301529192509082169063c4d66de890602401600060405180830381600087803b1580156120b457600080fd5b505af11580156120c8573d6000803e3d6000fd5b505060405163048935d560e31b81526001600160a01b03848116600483015288169250632449aea89150602401600060405180830381600087803b15801561210f57600080fd5b505af1158015612123573d6000803e3d6000fd5b50506007546000925061213f91506001600160a01b0316613167565b60405163189acdbd60e31b81526001600160a01b0388811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561218657600080fd5b505af115801561219a573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528916925063f7bc431c9150602401600060405180830381600087803b1580156121e157600080fd5b505af11580156121f5573d6000803e3d6000fd5b50506008546000925061221191506001600160a01b0316613167565b60405163189acdbd60e31b81526001600160a01b0389811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561225857600080fd5b505af115801561226c573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b0384811660048301528a16925063422c9d009150602401600060405180830381600087803b1580156122b257600080fd5b505af11580156122c6573d6000803e3d6000fd5b5050600554600092506122e291506001600160a01b0316613167565b9050846001600160a01b03166325c471a06122fb6131d9565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015612354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123789190613f64565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038416602482015260006044820152606401600060405180830381600087803b1580156123cf57600080fd5b505af11580156123e3573d6000803e3d6000fd5b505060405163189acdbd60e31b81526001600160a01b038b811660048301528416925063c4d66de89150602401600060405180830381600087803b15801561242a57600080fd5b505af115801561243e573d6000803e3d6000fd5b5050604051633b85588160e11b81526001600160a01b0384811660048301528b16925063770ab1029150602401600060405180830381600087803b15801561248557600080fd5b505af1158015612499573d6000803e3d6000fd5b5050505073__$2a34b1f180a6bf22a62a9bc53ba8adfaf5$__639659280286838b86898c6124cf6001546001600160a01b031690565b6124d7610493565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af415801561252c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255091906140d6565b60405160e08a901b6001600160e01b03191681526001600160a01b0398891660048201529688166024880152948716604487015292861660648601529085166084850152841660a484015290921660c482015260ff90911660e48201526101040160006040518083038186803b1580156125c957600080fd5b505af41580156125dd573d6000803e3d6000fd5b50505050846001600160a01b031663fe0776f56125f86131d9565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015612651573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126759190613f64565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152306024820152604401600060405180830381600087803b1580156126bc57600080fd5b505af11580156126d0573d6000803e3d6000fd5b505060025460405163026bc43b60e01b81526001600160a01b038c811660048301528a8116602483015260009450909116915063026bc43b906044016000604051808303816000875af115801561272b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526127539190810190614004565b905080600001519750600360009054906101000a90046001600160a01b03166001600160a01b03166381d9b45f8973__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63c6edc3dd6040518163ffffffff1660e01b8152600401602060405180830381865af41580156127ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ee91906140f3565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63f87bf3736040518163ffffffff1660e01b8152600401602060405180830381865af4158015612837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285b919061411a565b6040516001600160e01b031960e086901b1681526001600160601b03909316600484015264ffffffffff90911660248301526044820152606401600060405180830381600087803b1580156128af57600080fd5b505af11580156128c3573d6000803e3d6000fd5b5050604080516001600160a01b038a8116825286811660208301528d81168284015289811660608301528781166080830152881660a08201526001600160601b038c1660c082015290517eccc9e339dab7298ad32b43864beb3b1c0cf136971be26f1e67d90bf43ebd3d93509081900360e0019150a1505050505050509091565b61294c612bbc565b61295581610bcd565b61295d610a88565b6001600160a01b0382166129845760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061433883398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60008060008051602061433883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612a2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4f9190613f8c565b15612a7b5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610750565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af39190613f8c565b612b1b5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610750565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b939190613deb565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b60008051602061437883398151915254600160401b900460ff16612bf357604051631afcd79f60e31b815260040160405180910390fd5b565b6101da612bbc565b6000805160206143788339815191528054600160401b810460ff1615906001600160401b0316600081158015612c305750825b90506000826001600160401b03166001148015612c4c5750303b155b905081158015612c5a575080155b15612c785760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612ca257845460ff60401b1916600160401b1785555b60008087806020019051810190612cb99190614133565b9250509150612cc982828b61176b565b612cd9612cd46130f1565b613250565b600280546001600160a01b0319166001600160a01b0392909216919091179055612d04612cd4613363565b600380546001600160a01b0319166001600160a01b0392909216919091179055612d346377cab3db60e11b6106ec565b50508315610bc457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bbb565b600080516020614358833981519152600080612db3612d95611cf1565b8730612da5600460008a8c614175565b612dae9161419f565b61339e565b9150915081612e765763ffffffff811615612e5357825460ff60a01b1916600160a01b178355612de1611cf1565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612e10939291906141cf565b600060405180830381600087803b158015612e2a57600080fd5b505af1158015612e3e573d6000803e3d6000fd5b5050845460ff60a01b1916855550612e769050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610750565b505050505050565b6000612e8a86866134aa565b5090506000816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ef19190613e42565b60405163044ec4c360e41b81529091506001600160a01b038216906344ec4c3090612f22908990899060040161420f565b600060405180830381600087803b158015612f3c57600080fd5b505af1158015612f50573d6000803e3d6000fd5b5050505060005b845181101561093157816001600160a01b0316638462319887868481518110612f8257612f82614233565b6020026020010151888581518110612f9c57612f9c614233565b60200260200101516040518463ffffffff1660e01b8152600401612fc293929190614249565b600060405180830381600087803b158015612fdc57600080fd5b505af1158015612ff0573d6000803e3d6000fd5b505050508080612fff906142bc565b915050612f57565b60008051602061435883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b604051630dd958dd60e31b8152603c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af41580156130bc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051891906140d6565b6130e8612bbc565b610cd881613646565b604051630dd958dd60e31b81526028600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161309f565b604051630dd958dd60e31b81526046600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161309f565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b0381166131d4576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516368aebf7b60e01b81526000600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af415801561322c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105189190613f64565b60006132646001546001600160a01b031690565b6001600160a01b031663d39e60438361327b610493565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af41580156132d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f491906140d6565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061335d9190613e42565b92915050565b604051630dd958dd60e31b8152602d600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161309f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161340d91906142e3565b600060405180830381855afa9150503d8060008114613448576040519150601f19603f3d011682016040523d82523d6000602084013e61344d565b606091505b5091509150811561349f57604081511061347f578080602001905181019061347591906142ff565b909450925061349f565b602081511061349f578080602001905181019061349c9190613f8c565b93505b505094509492505050565b60008060006134c16001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015613514573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261353c9190810190614004565b9050613553816040015161354e61312c565b613657565b1561357c5760405163e3c2794960e01b81526001600160601b0387166004820152602401610750565b6040516308b09a5f60e41b81526001600160a01b03868116600483015260009190841690638b09a5f090602401600060405180830381865afa1580156135c6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526135ee9190810190614004565b90506135fe8160200151886136e0565b1561363257805160405163a811346560e01b81526001600160601b03808a1660048301529091166024820152604401610750565b608090910151905190969095509350505050565b61364e612bbc565b610cd881613007565b604051637adad14f60e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90637adad14f906044015b602060405180830381865af41580156136b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136d99190613f8c565b9392505050565b6040516399009c5160e01b81526001600160601b0380841660048301528216602482015260009073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401613698565b80356001600160e01b0319811681146131d457600080fd5b60006020828403121561375557600080fd5b6136d98261372b565b60005b83811015613779578181015183820152602001613761565b50506000910152565b6000815180845261379a81602086016020860161375e565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161381760c08401826001600160a01b03169052565b5060c083015160e080840152613831610100840182613782565b949350505050565b6001600160a01b0381168114610cd857600080fd5b60006020828403121561386057600080fd5b81356136d981613839565b6001600160601b0381168114610cd857600080fd5b60ff81168114610cd857600080fd5b8015158114610cd857600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156138d5576138d561389d565b60405290565b604051601f8201601f191681016001600160401b03811182821017156139035761390361389d565b604052919050565b60006001600160401b038211156139245761392461389d565b50601f01601f191660200190565b60006139456139408461390b565b6138db565b905082815283838301111561395957600080fd5b828260208301376000602084830101529392505050565b600082601f83011261398157600080fd5b6136d983833560208501613932565b60008060008060008060c087890312156139a957600080fd5b86356139b481613839565b955060208701356139c48161386b565b945060408701356139d481613880565b935060608701356139e48161388f565b925060808701356139f481613839565b915060a08701356001600160401b03811115613a0f57600080fd5b613a1b89828a01613970565b9150509295509295509295565b600060208284031215613a3a57600080fd5b81356001600160401b03811115613a5057600080fd5b61383184828501613970565b60008060408385031215613a6f57600080fd5b8235613a7a81613839565b915060208301356001600160401b03811115613a9557600080fd5b613aa185828601613970565b9150509250929050565b60006001600160401b03821115613ac457613ac461389d565b5060051b60200190565b600082601f830112613adf57600080fd5b81356020613aef61394083613aab565b828152600592831b8501820192828201919087851115613b0e57600080fd5b8387015b85811015613ba85780356001600160401b03811115613b315760008081fd5b8801603f81018a13613b435760008081fd5b858101356040613b5561394083613aab565b82815291851b8301810191888101908d841115613b725760008081fd5b938201935b83851015613b9757613b888561372b565b82529389019390890190613b77565b885250505093850193508401613b12565b5090979650505050505050565b6001600160401b0381168114610cd857600080fd5b600082601f830112613bdb57600080fd5b81356020613beb61394083613aab565b82815260059290921b84018101918181019086841115613c0a57600080fd5b8286015b84811015613c2e578035613c2181613bb5565b8352918301918301613c0e565b509695505050505050565b600080600080600060a08688031215613c5157600080fd5b8535613c5c8161386b565b94506020860135613c6c81613839565b935060408601356001600160401b0380821115613c8857600080fd5b818801915088601f830112613c9c57600080fd5b613cab89833560208501613932565b94506060880135915080821115613cc157600080fd5b613ccd89838a01613ace565b93506080880135915080821115613ce357600080fd5b50613cf088828901613bca565b9150509295509295909350565b600080600060608486031215613d1257600080fd5b8335613d1d81613839565b92506020840135613d2d81613839565b91506040840135613d3d81613839565b809150509250925092565b600060208284031215613d5a57600080fd5b81356136d98161388f565b600060208284031215613d7757600080fd5b81356136d98161386b565b60008060408385031215613d9557600080fd5b8235613da081613839565b91506020830135613db081613839565b809150509250929050565b600060208284031215613dcd57600080fd5b815162ffffff811681146136d957600080fd5b80516131d48161386b565b600060208284031215613dfd57600080fd5b81516136d98161386b565b600181811c90821680613e1c57607f821691505b602082108103613e3c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215613e5457600080fd5b81516136d981613839565b601f8211156119ab57600081815260208120601f850160051c81016020861015613e865750805b601f850160051c820191505b81811015612e7657828155600101613e92565b81516001600160401b03811115613ebe57613ebe61389d565b613ed281613ecc8454613e08565b84613e5f565b602080601f831160018114613f075760008415613eef5750858301515b600019600386901b1c1916600185901b178555612e76565b600085815260208120601f198616915b82811015613f3657888601518255948401946001909101908401613f17565b5085821015613f545787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613f7657600080fd5b81516136d981613bb5565b80516131d48161388f565b600060208284031215613f9e57600080fd5b81516136d98161388f565b80516131d481613839565b80516131d481613880565b600082601f830112613fd057600080fd5b8151613fde6139408261390b565b818152846020838601011115613ff357600080fd5b61383182602083016020870161375e565b60006020828403121561401657600080fd5b81516001600160401b038082111561402d57600080fd5b9083019060e0828603121561404157600080fd5b6140496138b3565b61405283613de0565b815261406060208401613de0565b602082015261407160408401613fb4565b604082015261408260608401613f81565b606082015261409360808401613fa9565b60808201526140a460a08401613fa9565b60a082015260c0830151828111156140bb57600080fd5b6140c787828601613fbf565b60c08301525095945050505050565b6000602082840312156140e857600080fd5b81516136d981613880565b60006020828403121561410557600080fd5b815164ffffffffff811681146136d957600080fd5b60006020828403121561412c57600080fd5b5051919050565b60008060006060848603121561414857600080fd5b835161415381613839565b602085015190935061416481613839565b6040850151909250613d3d81613839565b6000808585111561418557600080fd5b8386111561419257600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156141c75780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6001600160a01b038316815260406020820181905260009061383190830184613782565b634e487b7160e01b600052603260045260246000fd5b60608152600061425c6060830186613782565b82810360208481019190915285518083528682019282019060005b8181101561429d5784516001600160e01b03191683529383019391830191600101614277565b50508093505050506001600160401b0383166040830152949350505050565b6000600182016142dc57634e487b7160e01b600052601160045260246000fd5b5060010190565b600082516142f581846020870161375e565b9190910192915050565b6000806040838503121561431257600080fd5b825161431d8161388f565b602084015190925063ffffffff81168114613db057600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212208c592a0deff051b234184f6f72d348e113a4273db743c058771bfc9a8fb6388c64736f6c63430008140033",
884
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c6fbb2811610104578063b03d2a8e116100a2578063dd38b49e11610071578063dd38b49e14610379578063edabac0314610440578063eeff428e14610451578063f7c34ee01461048057600080fd5b8063b03d2a8e146103f8578063b68d18091461040b578063bf7e214f14610425578063c22f980d1461042d57600080fd5b8063893d20e8116100de578063893d20e8146103a75780638e32e979146103af5780638fb36037146103c2578063ada9652e146103e357600080fd5b80636c6fbb28146103795780637a9e5e4b1461038c578063872309c71461039f57600080fd5b806327bb7a331161017c5780635ab1bd531161014b5780635ab1bd5314610310578063644c45e014610335578063675393bf146103535780636a778e731461036657600080fd5b806327bb7a33146102cf578063329d6e74146102e257806336fc697e146102f557806349bb9e4b146102fd57600080fd5b8063138461e0116101b8578063138461e0146102525780631eff4b2214610272578063214cdb80146102a7578063254f6866146102bc57600080fd5b806301ffc9a7146101df5780630d8e6e2c146102215780630fec111c1461023d575b600080fd5b61020c6101ed366004613743565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610229610493565b60405162ffffff9091168152602001610218565b61024561051d565b60405161021891906137ae565b61025a6106e1565b6040516001600160601b039091168152602001610218565b6102997f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b6102ba6102b5366004613743565b6106ec565b005b6102ba6102ca36600461384e565b610719565b6102ba6102dd366004613990565b610896565b6102ba6102f0366004613a28565b61093b565b6102ba610a88565b6102ba61030b366004613a5c565b610ace565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b600080516020614338833981519152546001600160601b031661025a565b6102ba61036136600461384e565b610bcd565b61025a61037436600461384e565b610cdb565b6102ba610387366004613c39565b611591565b6102ba61039a36600461384e565b6115b1565b610299600081565b61031d611634565b6102ba6103bd366004613cfd565b61176b565b6103ca6119b0565b6040516001600160e01b03199091168152602001610218565b61029960008051602061433883398151915281565b6102ba610406366004613d48565b6119e8565b610413611ce7565b60405160ff9091168152602001610218565b61031d611cf1565b6102ba61043b366004613d65565b611d0d565b6007546001600160a01b031661031d565b610459611f38565b604080516001600160a01b0390931683526001600160601b03909116602083015201610218565b6102ba61048e366004613d82565b612944565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156104f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105189190613dbb565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f59190613deb565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161063d611634565b6001600160a01b0316815260200182600101805461065a90613e08565b80601f016020809104026020016040519081016040528092919081815260200182805461068690613e08565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b505050505081525091505090565b6000610518306129bb565b6106f4612bbc565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610721611634565b6001600160a01b0316336001600160a01b0316146107595760405163086391f760e31b81523360048201526024015b60405180910390fd5b6007546001600160a01b0316610782576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b0381166107a957604051631aa1808560e31b815260040160405180910390fd5b6007546001600160a01b03908116908216036107d857604051630666e2a560e01b815260040160405180910390fd5b6006546040805163379ed74560e21b8152905183926001600160a01b03908116929084169163de7b5d14916004808201926020929091908290030181865afa158015610828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084c9190613e42565b6001600160a01b0316146108735760405163f026367160e01b815260040160405180910390fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b61089e612bbc565b6108a88287612944565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016109318382613ea5565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61095d610493565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561099d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c19190613f64565b6000805160206143788339815191528054600160401b900460ff16806109f4575080546001600160401b03808416911610155b15610a125760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a3c83612bf5565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610a90612bbc565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000805160206143788339815191528054600160401b810460ff1615906001600160401b0316600081158015610b015750825b90506000826001600160401b03166001148015610b1d5750303b155b905081158015610b2b575080155b15610b495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610b7357845460ff60401b1916600160401b1785555b610b7d8787612bfd565b8315610bc457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610bd5612bbc565b806001600160a01b03163b600003610c0b5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610750565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610c85575060408051601f3d908101601f19168201909252610c8291810190613f8c565b60015b610cad5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610750565b80610cd65760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610750565b505b50565b6000610ce5611634565b6001600160a01b0316336001600160a01b031614610d185760405163086391f760e31b8152336004820152602401610750565b6006546001600160a01b031615610d4257604051632c237de760e11b815260040160405180910390fd5b6004546001600160a01b031615610d6c57604051630157f74960e01b815260040160405180910390fd5b6005546001600160a01b031615610d965760405163ab0cc43960e01b815260040160405180910390fd5b6008546001600160a01b031615610dc057604051637f405a2960e01b815260040160405180910390fd5b6001600160a01b038216610de7576040516309353e4560e11b815260040160405180910390fd5b60008290506000816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e509190613e42565b905060008190506000836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebb9190613e42565b905060008190506000856001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f269190613e42565b905060008190506000876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f919190613e42565b9050806001600160a01b038716610fba576040516295661560e31b815260040160405180910390fd5b6001600160a01b038516610fe15760405163e267254160e01b815260040160405180910390fd5b6001600160a01b03831661100857604051630ddeaef560e11b815260040160405180910390fd5b6001600160a01b03811661102f576040516301fa2a2b60e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561106d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110919190613e42565b6001600160a01b0316896001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fc9190613e42565b6001600160a01b031614611123576040516334ddf1a760e21b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611161573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111859190613e42565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f09190613e42565b6001600160a01b031614611217576040516326c89a4160e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611255573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112799190613e42565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e49190613e42565b6001600160a01b03161461130b57604051631129422760e31b815260040160405180910390fd5b886001600160a01b0316846001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190613e42565b6001600160a01b03161461139e57604051631b25e96d60e31b815260040160405180910390fd5b886001600160a01b0316866001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140a9190613e42565b6001600160a01b031614611431576040516331783c7160e11b815260040160405180910390fd5b886001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561146f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114939190613e42565b600480546001600160a01b03199081166001600160a01b03938416179091556005805482168a84161790556006805482168e8416908117909155600780548316898516179055600880548316878516179055600980549092168484161790915560025490916000911663026bc43b8361150a611634565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016000604051808303816000875af1158015611557573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261157f9190810190614004565b519d9c50505050505050505050505050565b61159d33600036612d78565b6115aa8585858486612e7e565b5050505050565b336115ba611cf1565b6001600160a01b0316816001600160a01b0316146115f55760405162d1953b60e31b81526001600160a01b0382166004820152602401610750565b816001600160a01b03163b60000361162b576040516361798f2f60e11b81526001600160a01b0383166004820152602401610750565b610cd682613007565b60008060008051602061433883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156116a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c89190613f8c565b15611755576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561172b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174f9190613e42565b91505090565b54600160601b90046001600160a01b0316919050565b611773612bbc565b6117f983846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d99190613deb565b6117e1613068565b60008560405180602001604052806000815250610896565b6001600160a01b0382161561181657611811826130e0565b61198b565b600061182a6001546001600160a01b031690565b6001600160a01b031663d39e60436118406130f1565b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611890573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b491906140d6565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156118f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191d9190613e42565b9050611989816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611960573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119849190613e42565b6130e0565b505b61199b634a531f3360e01b6106ec565b6119ab63b68d180960e01b6106ec565b505050565b600080516020614358833981519152805460009190600160a01b900460ff166119da57600061174f565b638fb3603760e01b91505090565b6001546001600160a01b0316604051630bee2f1560e11b81523360048201526001600160a01b0391909116906317dc5e2a90602401602060405180830381865afa158015611a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5e9190613f8c565b611a7d576040516302613e9f60e51b8152336004820152602401610750565b6040516301ffc9a760e01b8152639a29895960e01b6004820152339081906301ffc9a790602401602060405180830381865afa158015611ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae59190613f8c565b611b0c576040516236c14d60e71b81526001600160a01b0382166004820152602401610750565b6000611b206001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b038481166004830152919250600091831690638b09a5f090602401600060405180830381865afa158015611b6c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b949190810190614004565b602001516040516305247a1760e51b81526001600160601b03821660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611beb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c139190810190614004565b608001519050806001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7b9190613e42565b6040516313bfaf6360e31b81526001600160a01b03868116600483015287151560248301529190911690639dfd7b1890604401600060405180830381600087803b158015611cc857600080fd5b505af1158015611cdc573d6000803e3d6000fd5b505050505050505050565b600061051861312c565b600080516020614358833981519152546001600160a01b031690565b80611d206001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d939190613e42565b6001600160a01b0316336001600160a01b031614611dc6576040516302613e9f60e51b8152336004820152602401610750565b6000611dda6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611e2d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e559190810190614004565b608081015160075491925090600090611e76906001600160a01b0316613167565b60405163189acdbd60e31b81526001600160a01b0384811660048301529192509082169063c4d66de890602401600060405180830381600087803b158015611ebd57600080fd5b505af1158015611ed1573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401600060405180830381600087803b158015611f1857600080fd5b505af1158015611f2c573d6000803e3d6000fd5b50505050505050505050565b600454600090819033908290611f56906001600160a01b0316613167565b60405163189acdbd60e31b81523060048201529091506001600160a01b0382169063c4d66de890602401600060405180830381600087803b158015611f9a57600080fd5b505af1158015611fae573d6000803e3d6000fd5b5050600654611fc892506001600160a01b03169050613167565b9350836001600160a01b031663c0c53b8b82611fec6001546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015290821660248201529085166044820152606401600060405180830381600087803b15801561203d57600080fd5b505af1158015612051573d6000803e3d6000fd5b50506009546000925061206d91506001600160a01b0316613167565b60405163189acdbd60e31b81526001600160a01b0387811660048301529192509082169063c4d66de890602401600060405180830381600087803b1580156120b457600080fd5b505af11580156120c8573d6000803e3d6000fd5b505060405163048935d560e31b81526001600160a01b03848116600483015288169250632449aea89150602401600060405180830381600087803b15801561210f57600080fd5b505af1158015612123573d6000803e3d6000fd5b50506007546000925061213f91506001600160a01b0316613167565b60405163189acdbd60e31b81526001600160a01b0388811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561218657600080fd5b505af115801561219a573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528916925063f7bc431c9150602401600060405180830381600087803b1580156121e157600080fd5b505af11580156121f5573d6000803e3d6000fd5b50506008546000925061221191506001600160a01b0316613167565b60405163189acdbd60e31b81526001600160a01b0389811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561225857600080fd5b505af115801561226c573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b0384811660048301528a16925063422c9d009150602401600060405180830381600087803b1580156122b257600080fd5b505af11580156122c6573d6000803e3d6000fd5b5050600554600092506122e291506001600160a01b0316613167565b9050846001600160a01b03166325c471a06122fb6131d9565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015612354573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123789190613f64565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038416602482015260006044820152606401600060405180830381600087803b1580156123cf57600080fd5b505af11580156123e3573d6000803e3d6000fd5b505060405163189acdbd60e31b81526001600160a01b038b811660048301528416925063c4d66de89150602401600060405180830381600087803b15801561242a57600080fd5b505af115801561243e573d6000803e3d6000fd5b5050604051633b85588160e11b81526001600160a01b0384811660048301528b16925063770ab1029150602401600060405180830381600087803b15801561248557600080fd5b505af1158015612499573d6000803e3d6000fd5b5050505073__$2a34b1f180a6bf22a62a9bc53ba8adfaf5$__639659280286838b86898c6124cf6001546001600160a01b031690565b6124d7610493565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af415801561252c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255091906140d6565b60405160e08a901b6001600160e01b03191681526001600160a01b0398891660048201529688166024880152948716604487015292861660648601529085166084850152841660a484015290921660c482015260ff90911660e48201526101040160006040518083038186803b1580156125c957600080fd5b505af41580156125dd573d6000803e3d6000fd5b50505050846001600160a01b031663fe0776f56125f86131d9565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af4158015612651573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126759190613f64565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152306024820152604401600060405180830381600087803b1580156126bc57600080fd5b505af11580156126d0573d6000803e3d6000fd5b505060025460405163026bc43b60e01b81526001600160a01b038c811660048301528a8116602483015260009450909116915063026bc43b906044016000604051808303816000875af115801561272b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526127539190810190614004565b905080600001519750600360009054906101000a90046001600160a01b03166001600160a01b03166381d9b45f8973__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63c6edc3dd6040518163ffffffff1660e01b8152600401602060405180830381865af41580156127ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ee91906140f3565b73__$fb6c7635e3c1acf7e7d82c7d43e7a24671$__63f87bf3736040518163ffffffff1660e01b8152600401602060405180830381865af4158015612837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285b919061411a565b6040516001600160e01b031960e086901b1681526001600160601b03909316600484015264ffffffffff90911660248301526044820152606401600060405180830381600087803b1580156128af57600080fd5b505af11580156128c3573d6000803e3d6000fd5b5050604080516001600160a01b038a8116825286811660208301528d81168284015289811660608301528781166080830152881660a08201526001600160601b038c1660c082015290517eccc9e339dab7298ad32b43864beb3b1c0cf136971be26f1e67d90bf43ebd3d93509081900360e0019150a1505050505050509091565b61294c612bbc565b61295581610bcd565b61295d610a88565b6001600160a01b0382166129845760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061433883398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60008060008051602061433883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612a2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4f9190613f8c565b15612a7b5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610750565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af39190613f8c565b612b1b5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610750565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015612b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b939190613deb565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b60008051602061437883398151915254600160401b900460ff16612bf357604051631afcd79f60e31b815260040160405180910390fd5b565b6101da612bbc565b6000805160206143788339815191528054600160401b810460ff1615906001600160401b0316600081158015612c305750825b90506000826001600160401b03166001148015612c4c5750303b155b905081158015612c5a575080155b15612c785760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612ca257845460ff60401b1916600160401b1785555b60008087806020019051810190612cb99190614133565b9250509150612cc982828b61176b565b612cd9612cd46130f1565b613250565b600280546001600160a01b0319166001600160a01b0392909216919091179055612d04612cd4613363565b600380546001600160a01b0319166001600160a01b0392909216919091179055612d346377cab3db60e11b6106ec565b50508315610bc457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bbb565b600080516020614358833981519152600080612db3612d95611cf1565b8730612da5600460008a8c614175565b612dae9161419f565b61339e565b9150915081612e765763ffffffff811615612e5357825460ff60a01b1916600160a01b178355612de1611cf1565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612e10939291906141cf565b600060405180830381600087803b158015612e2a57600080fd5b505af1158015612e3e573d6000803e3d6000fd5b5050845460ff60a01b1916855550612e769050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610750565b505050505050565b6000612e8a86866134aa565b5090506000816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ecd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ef19190613e42565b60405163044ec4c360e41b81529091506001600160a01b038216906344ec4c3090612f22908990899060040161420f565b600060405180830381600087803b158015612f3c57600080fd5b505af1158015612f50573d6000803e3d6000fd5b5050505060005b845181101561093157816001600160a01b0316638462319887868481518110612f8257612f82614233565b6020026020010151888581518110612f9c57612f9c614233565b60200260200101516040518463ffffffff1660e01b8152600401612fc293929190614249565b600060405180830381600087803b158015612fdc57600080fd5b505af1158015612ff0573d6000803e3d6000fd5b505050508080612fff906142bc565b915050612f57565b60008051602061435883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b604051630dd958dd60e31b8152603c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af41580156130bc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051891906140d6565b6130e8612bbc565b610cd881613646565b604051630dd958dd60e31b81526028600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161309f565b604051630dd958dd60e31b81526046600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161309f565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b0381166131d4576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516368aebf7b60e01b81526000600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af415801561322c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105189190613f64565b60006132646001546001600160a01b031690565b6001600160a01b031663d39e60438361327b610493565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af41580156132d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f491906140d6565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061335d9190613e42565b92915050565b604051630dd958dd60e31b8152602d600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161309f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161340d91906142e3565b600060405180830381855afa9150503d8060008114613448576040519150601f19603f3d011682016040523d82523d6000602084013e61344d565b606091505b5091509150811561349f57604081511061347f578080602001905181019061347591906142ff565b909450925061349f565b602081511061349f578080602001905181019061349c9190613f8c565b93505b505094509492505050565b60008060006134c16001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015613514573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261353c9190810190614004565b9050613553816040015161354e61312c565b613657565b1561357c5760405163e3c2794960e01b81526001600160601b0387166004820152602401610750565b6040516308b09a5f60e41b81526001600160a01b03868116600483015260009190841690638b09a5f090602401600060405180830381865afa1580156135c6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526135ee9190810190614004565b90506135fe8160200151886136e0565b1561363257805160405163a811346560e01b81526001600160601b03808a1660048301529091166024820152604401610750565b608090910151905190969095509350505050565b61364e612bbc565b610cd881613007565b604051637adad14f60e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90637adad14f906044015b602060405180830381865af41580156136b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136d99190613f8c565b9392505050565b6040516399009c5160e01b81526001600160601b0380841660048301528216602482015260009073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401613698565b80356001600160e01b0319811681146131d457600080fd5b60006020828403121561375557600080fd5b6136d98261372b565b60005b83811015613779578181015183820152602001613761565b50506000910152565b6000815180845261379a81602086016020860161375e565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161381760c08401826001600160a01b03169052565b5060c083015160e080840152613831610100840182613782565b949350505050565b6001600160a01b0381168114610cd857600080fd5b60006020828403121561386057600080fd5b81356136d981613839565b6001600160601b0381168114610cd857600080fd5b60ff81168114610cd857600080fd5b8015158114610cd857600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156138d5576138d561389d565b60405290565b604051601f8201601f191681016001600160401b03811182821017156139035761390361389d565b604052919050565b60006001600160401b038211156139245761392461389d565b50601f01601f191660200190565b60006139456139408461390b565b6138db565b905082815283838301111561395957600080fd5b828260208301376000602084830101529392505050565b600082601f83011261398157600080fd5b6136d983833560208501613932565b60008060008060008060c087890312156139a957600080fd5b86356139b481613839565b955060208701356139c48161386b565b945060408701356139d481613880565b935060608701356139e48161388f565b925060808701356139f481613839565b915060a08701356001600160401b03811115613a0f57600080fd5b613a1b89828a01613970565b9150509295509295509295565b600060208284031215613a3a57600080fd5b81356001600160401b03811115613a5057600080fd5b61383184828501613970565b60008060408385031215613a6f57600080fd5b8235613a7a81613839565b915060208301356001600160401b03811115613a9557600080fd5b613aa185828601613970565b9150509250929050565b60006001600160401b03821115613ac457613ac461389d565b5060051b60200190565b600082601f830112613adf57600080fd5b81356020613aef61394083613aab565b828152600592831b8501820192828201919087851115613b0e57600080fd5b8387015b85811015613ba85780356001600160401b03811115613b315760008081fd5b8801603f81018a13613b435760008081fd5b858101356040613b5561394083613aab565b82815291851b8301810191888101908d841115613b725760008081fd5b938201935b83851015613b9757613b888561372b565b82529389019390890190613b77565b885250505093850193508401613b12565b5090979650505050505050565b6001600160401b0381168114610cd857600080fd5b600082601f830112613bdb57600080fd5b81356020613beb61394083613aab565b82815260059290921b84018101918181019086841115613c0a57600080fd5b8286015b84811015613c2e578035613c2181613bb5565b8352918301918301613c0e565b509695505050505050565b600080600080600060a08688031215613c5157600080fd5b8535613c5c8161386b565b94506020860135613c6c81613839565b935060408601356001600160401b0380821115613c8857600080fd5b818801915088601f830112613c9c57600080fd5b613cab89833560208501613932565b94506060880135915080821115613cc157600080fd5b613ccd89838a01613ace565b93506080880135915080821115613ce357600080fd5b50613cf088828901613bca565b9150509295509295909350565b600080600060608486031215613d1257600080fd5b8335613d1d81613839565b92506020840135613d2d81613839565b91506040840135613d3d81613839565b809150509250925092565b600060208284031215613d5a57600080fd5b81356136d98161388f565b600060208284031215613d7757600080fd5b81356136d98161386b565b60008060408385031215613d9557600080fd5b8235613da081613839565b91506020830135613db081613839565b809150509250929050565b600060208284031215613dcd57600080fd5b815162ffffff811681146136d957600080fd5b80516131d48161386b565b600060208284031215613dfd57600080fd5b81516136d98161386b565b600181811c90821680613e1c57607f821691505b602082108103613e3c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215613e5457600080fd5b81516136d981613839565b601f8211156119ab57600081815260208120601f850160051c81016020861015613e865750805b601f850160051c820191505b81811015612e7657828155600101613e92565b81516001600160401b03811115613ebe57613ebe61389d565b613ed281613ecc8454613e08565b84613e5f565b602080601f831160018114613f075760008415613eef5750858301515b600019600386901b1c1916600185901b178555612e76565b600085815260208120601f198616915b82811015613f3657888601518255948401946001909101908401613f17565b5085821015613f545787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613f7657600080fd5b81516136d981613bb5565b80516131d48161388f565b600060208284031215613f9e57600080fd5b81516136d98161388f565b80516131d481613839565b80516131d481613880565b600082601f830112613fd057600080fd5b8151613fde6139408261390b565b818152846020838601011115613ff357600080fd5b61383182602083016020870161375e565b60006020828403121561401657600080fd5b81516001600160401b038082111561402d57600080fd5b9083019060e0828603121561404157600080fd5b6140496138b3565b61405283613de0565b815261406060208401613de0565b602082015261407160408401613fb4565b604082015261408260608401613f81565b606082015261409360808401613fa9565b60808201526140a460a08401613fa9565b60a082015260c0830151828111156140bb57600080fd5b6140c787828601613fbf565b60c08301525095945050505050565b6000602082840312156140e857600080fd5b81516136d981613880565b60006020828403121561410557600080fd5b815164ffffffffff811681146136d957600080fd5b60006020828403121561412c57600080fd5b5051919050565b60008060006060848603121561414857600080fd5b835161415381613839565b602085015190935061416481613839565b6040850151909250613d3d81613839565b6000808585111561418557600080fd5b8386111561419257600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156141c75780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6001600160a01b038316815260406020820181905260009061383190830184613782565b634e487b7160e01b600052603260045260246000fd5b60608152600061425c6060830186613782565b82810360208481019190915285518083528682019282019060005b8181101561429d5784516001600160e01b03191683529383019391830191600101614277565b50508093505050506001600160401b0383166040830152949350505050565b6000600182016142dc57634e487b7160e01b600052601160045260246000fd5b5060010190565b600082516142f581846020870161375e565b9190910192915050565b6000806040838503121561431257600080fd5b825161431d8161388f565b602084015190925063ffffffff81168114613db057600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212208c592a0deff051b234184f6f72d348e113a4273db743c058771bfc9a8fb6388c64736f6c63430008140033",
885
+ "linkReferences": {
886
+ "contracts/instance/InstanceAuthorizationsLib.sol": {
887
+ "InstanceAuthorizationsLib": [
888
+ {
889
+ "length": 20,
890
+ "start": 9605
891
+ }
892
+ ]
893
+ },
894
+ "contracts/staking/TargetManagerLib.sol": {
895
+ "TargetManagerLib": [
896
+ {
897
+ "length": 20,
898
+ "start": 10345
899
+ },
900
+ {
901
+ "length": 20,
902
+ "start": 10454
903
+ }
904
+ ]
905
+ },
906
+ "contracts/type/NftId.sol": {
907
+ "NftIdLib": [
908
+ {
909
+ "length": 20,
910
+ "start": 1648
911
+ },
912
+ {
913
+ "length": 20,
914
+ "start": 5968
915
+ },
916
+ {
917
+ "length": 20,
918
+ "start": 10967
919
+ },
920
+ {
921
+ "length": 20,
922
+ "start": 14319
923
+ }
924
+ ]
925
+ },
926
+ "contracts/type/ObjectType.sol": {
927
+ "ObjectTypeLib": [
928
+ {
929
+ "length": 20,
930
+ "start": 12647
931
+ },
932
+ {
933
+ "length": 20,
934
+ "start": 12784
935
+ },
936
+ {
937
+ "length": 20,
938
+ "start": 12843
939
+ },
940
+ {
941
+ "length": 20,
942
+ "start": 13410
943
+ },
944
+ {
945
+ "length": 20,
946
+ "start": 14176
947
+ }
948
+ ]
949
+ },
950
+ "contracts/type/RoleId.sol": {
951
+ "RoleIdLib": [
952
+ {
953
+ "length": 20,
954
+ "start": 9216
955
+ },
956
+ {
957
+ "length": 20,
958
+ "start": 9981
959
+ },
960
+ {
961
+ "length": 20,
962
+ "start": 13016
963
+ }
964
+ ]
965
+ },
966
+ "contracts/type/Version.sol": {
967
+ "VersionLib": [
968
+ {
969
+ "length": 20,
970
+ "start": 1440
971
+ },
972
+ {
973
+ "length": 20,
974
+ "start": 2595
975
+ },
976
+ {
977
+ "length": 20,
978
+ "start": 9688
979
+ },
980
+ {
981
+ "length": 20,
982
+ "start": 13180
983
+ }
984
+ ],
985
+ "VersionPartLib": [
986
+ {
987
+ "length": 20,
988
+ "start": 6460
989
+ }
990
+ ]
991
+ }
992
+ },
993
+ "deployedLinkReferences": {
994
+ "contracts/instance/InstanceAuthorizationsLib.sol": {
995
+ "InstanceAuthorizationsLib": [
996
+ {
997
+ "length": 20,
998
+ "start": 9375
999
+ }
1000
+ ]
1001
+ },
1002
+ "contracts/staking/TargetManagerLib.sol": {
1003
+ "TargetManagerLib": [
1004
+ {
1005
+ "length": 20,
1006
+ "start": 10115
1007
+ },
1008
+ {
1009
+ "length": 20,
1010
+ "start": 10224
1011
+ }
1012
+ ]
1013
+ },
1014
+ "contracts/type/NftId.sol": {
1015
+ "NftIdLib": [
1016
+ {
1017
+ "length": 20,
1018
+ "start": 1418
1019
+ },
1020
+ {
1021
+ "length": 20,
1022
+ "start": 5738
1023
+ },
1024
+ {
1025
+ "length": 20,
1026
+ "start": 10737
1027
+ },
1028
+ {
1029
+ "length": 20,
1030
+ "start": 14089
1031
+ }
1032
+ ]
1033
+ },
1034
+ "contracts/type/ObjectType.sol": {
1035
+ "ObjectTypeLib": [
1036
+ {
1037
+ "length": 20,
1038
+ "start": 12417
1039
+ },
1040
+ {
1041
+ "length": 20,
1042
+ "start": 12554
1043
+ },
1044
+ {
1045
+ "length": 20,
1046
+ "start": 12613
1047
+ },
1048
+ {
1049
+ "length": 20,
1050
+ "start": 13180
1051
+ },
1052
+ {
1053
+ "length": 20,
1054
+ "start": 13946
1055
+ }
1056
+ ]
1057
+ },
1058
+ "contracts/type/RoleId.sol": {
1059
+ "RoleIdLib": [
1060
+ {
1061
+ "length": 20,
1062
+ "start": 8986
1063
+ },
1064
+ {
1065
+ "length": 20,
1066
+ "start": 9751
1067
+ },
1068
+ {
1069
+ "length": 20,
1070
+ "start": 12786
1071
+ }
1072
+ ]
1073
+ },
1074
+ "contracts/type/Version.sol": {
1075
+ "VersionLib": [
1076
+ {
1077
+ "length": 20,
1078
+ "start": 1210
1079
+ },
1080
+ {
1081
+ "length": 20,
1082
+ "start": 2365
1083
+ },
1084
+ {
1085
+ "length": 20,
1086
+ "start": 9458
1087
+ },
1088
+ {
1089
+ "length": 20,
1090
+ "start": 12950
1091
+ }
1092
+ ],
1093
+ "VersionPartLib": [
1094
+ {
1095
+ "length": 20,
1096
+ "start": 6230
1097
+ }
1098
+ ]
1099
+ }
1100
+ }
1101
+ }