@etherisc/gif-next 0.0.2-bd7444a → 0.0.2-bdb6804-509

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