@etherisc/gif-next 0.0.2-fd275d2-234 → 0.0.2-fd4931b-974

Sign up to get free protection for your applications and to get access to all the features.
Files changed (545) hide show
  1. package/README.md +28 -14
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1410 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1343 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +799 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +969 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +808 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +73 -104
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +299 -1344
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +356 -181
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +453 -3116
  20. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  21. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +612 -181
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +132 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +485 -337
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +493 -400
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +330 -127
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3468 -0
  32. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  34. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  35. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +6 -1
  36. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  37. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +256 -0
  38. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  39. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +71 -45
  40. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  41. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  42. package/artifacts/contracts/instance/module/{ISetup.sol/ISetup.json → IComponents.sol/IComponents.json} +2 -2
  43. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  44. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  45. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  46. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  47. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  48. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  49. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1091 -0
  50. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  51. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +723 -0
  52. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  53. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → pool/IBundleService.sol/IBundleService.json} +284 -360
  54. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  55. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1148 -0
  56. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  57. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1044 -0
  58. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  59. package/artifacts/contracts/pool/Pool.sol/Pool.json +1559 -0
  60. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  61. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1411 -0
  62. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  63. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +719 -0
  64. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  65. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +820 -0
  66. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  67. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +699 -0
  68. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  69. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1264 -0
  70. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  71. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +787 -0
  72. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  73. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IApplicationService.sol/IApplicationService.json} +231 -204
  74. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  75. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +753 -0
  76. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  77. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +701 -0
  78. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  79. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IPricingService.sol/IPricingService.json} +244 -383
  80. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  81. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +989 -0
  82. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  83. package/artifacts/contracts/{components/BaseComponent.sol/BaseComponent.json → product/IProductService.sol/IProductService.json} +140 -86
  84. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  85. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1132 -0
  86. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  87. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +731 -0
  88. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  89. package/artifacts/contracts/product/PricingService.sol/PricingService.json +969 -0
  90. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  91. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +755 -0
  92. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  93. package/artifacts/contracts/product/Product.sol/Product.json +1391 -0
  94. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  95. package/artifacts/contracts/product/ProductService.sol/ProductService.json +673 -0
  96. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  97. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +675 -0
  98. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  99. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
  100. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  101. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +345 -121
  102. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  103. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +368 -222
  104. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  105. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  106. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  107. package/artifacts/contracts/registry/Registry.sol/Registry.json +434 -197
  108. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  109. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +298 -0
  110. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  111. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +438 -333
  112. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  113. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +324 -136
  114. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  115. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1112 -0
  116. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
  117. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +137 -0
  118. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +449 -67
  120. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  121. package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  122. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  123. package/artifacts/contracts/shared/Component.sol/Component.json +890 -0
  124. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  125. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1461 -0
  126. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  127. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +765 -0
  128. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  129. package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +196 -216
  130. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  131. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  132. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  133. package/artifacts/contracts/{instance/service/IDistributionService.sol/IDistributionService.json → shared/IComponent.sol/IComponent.json} +344 -165
  134. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  135. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +854 -0
  136. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  137. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +699 -0
  138. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  139. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +50 -1
  140. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  141. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -1
  142. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  143. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +27 -29
  144. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  145. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  146. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  147. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +8 -34
  148. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  149. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  150. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  151. package/artifacts/contracts/shared/IService.sol/IService.json +84 -178
  152. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  153. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
  154. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  155. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1030 -0
  156. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  157. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +581 -0
  158. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  159. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
  160. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
  161. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +314 -0
  162. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  163. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +109 -29
  164. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  165. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  166. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  167. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +310 -61
  168. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  169. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -53
  170. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  171. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  172. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  173. package/artifacts/contracts/shared/Service.sol/Service.json +185 -165
  174. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  175. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +60 -6
  176. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  177. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  178. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  179. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
  180. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  181. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1770 -0
  182. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  183. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +626 -0
  184. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  185. package/artifacts/contracts/staking/Staking.sol/Staking.json +2500 -0
  186. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  187. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +844 -0
  188. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  189. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +263 -0
  190. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  191. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +960 -0
  192. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  193. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +694 -0
  194. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  195. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +308 -0
  196. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  197. package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
  198. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  199. package/artifacts/contracts/type/Amount.sol/AmountLib.json +281 -0
  200. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  201. package/artifacts/contracts/{types → type}/Blocknumber.sol/BlocknumberLib.json +16 -3
  202. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  203. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  204. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  205. package/artifacts/contracts/{types → type}/DistributorType.sol/DistributorTypeLib.json +5 -5
  206. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  207. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  208. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  209. package/artifacts/contracts/{types → type}/Key32.sol/Key32Lib.json +3 -3
  210. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  211. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +185 -0
  212. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  213. package/artifacts/contracts/{types → type}/NftIdSet.sol/LibNftIdSet.json +3 -3
  214. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  215. package/artifacts/contracts/{types → type}/ObjectType.sol/ObjectTypeLib.json +3 -3
  216. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  217. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  218. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  219. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  220. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  221. package/artifacts/contracts/{types → type}/RiskId.sol/RiskIdLib.json +5 -5
  222. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  223. package/artifacts/contracts/{types → type}/RoleId.sol/RoleIdLib.json +5 -5
  224. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  225. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +148 -0
  226. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  227. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  228. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  229. package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +39 -8
  230. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  231. package/artifacts/contracts/{types → type}/UFixed.sol/MathLib.json +3 -3
  232. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  233. package/artifacts/contracts/{types → type}/UFixed.sol/UFixedLib.json +3 -3
  234. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  235. package/artifacts/contracts/{types → type}/Version.sol/VersionLib.json +3 -3
  236. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  237. package/artifacts/contracts/{types → type}/Version.sol/VersionPartLib.json +3 -3
  238. package/contracts/distribution/Distribution.sol +263 -0
  239. package/contracts/distribution/DistributionService.sol +298 -0
  240. package/contracts/{instance/service → distribution}/DistributionServiceManager.sol +20 -20
  241. package/contracts/distribution/IDistributionComponent.sol +66 -0
  242. package/contracts/distribution/IDistributionService.sol +81 -0
  243. package/contracts/instance/BundleManager.sol +24 -50
  244. package/contracts/instance/IInstance.sol +57 -36
  245. package/contracts/instance/IInstanceService.sol +65 -14
  246. package/contracts/instance/Instance.sol +147 -373
  247. package/contracts/instance/InstanceAccessManager.sol +432 -177
  248. package/contracts/instance/InstanceAuthorizationsLib.sol +336 -0
  249. package/contracts/instance/InstanceReader.sol +136 -85
  250. package/contracts/instance/InstanceService.sol +304 -169
  251. package/contracts/instance/InstanceServiceManager.sol +12 -25
  252. package/contracts/instance/InstanceStore.sol +260 -0
  253. package/contracts/instance/base/BalanceStore.sol +118 -0
  254. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +8 -3
  255. package/contracts/instance/{ObjectManager.sol → base/ObjectManager.sol} +17 -30
  256. package/contracts/instance/module/IAccess.sol +37 -21
  257. package/contracts/instance/module/IBundle.sol +8 -8
  258. package/contracts/instance/module/IComponents.sol +52 -0
  259. package/contracts/instance/module/IDistribution.sol +7 -4
  260. package/contracts/instance/module/IPolicy.sol +56 -17
  261. package/contracts/instance/module/IRisk.sol +1 -1
  262. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  263. package/contracts/pool/BundleService.sol +296 -0
  264. package/contracts/pool/BundleServiceManager.sol +42 -0
  265. package/contracts/pool/IBundleService.sol +106 -0
  266. package/contracts/pool/IPoolComponent.sol +112 -0
  267. package/contracts/pool/IPoolService.sol +147 -0
  268. package/contracts/pool/Pool.sol +299 -0
  269. package/contracts/pool/PoolService.sol +424 -0
  270. package/contracts/pool/PoolServiceManager.sol +42 -0
  271. package/contracts/product/ApplicationService.sol +254 -0
  272. package/contracts/product/ApplicationServiceManager.sol +38 -0
  273. package/contracts/product/ClaimService.sol +437 -0
  274. package/contracts/product/ClaimServiceManager.sol +38 -0
  275. package/contracts/product/IApplicationService.sol +62 -0
  276. package/contracts/product/IClaimService.sol +93 -0
  277. package/contracts/product/IPolicyService.sol +78 -0
  278. package/contracts/product/IPricingService.sol +39 -0
  279. package/contracts/product/IProductComponent.sol +42 -0
  280. package/contracts/product/IProductService.sol +33 -0
  281. package/contracts/product/PolicyService.sol +473 -0
  282. package/contracts/product/PolicyServiceManager.sol +42 -0
  283. package/contracts/product/PricingService.sol +301 -0
  284. package/contracts/product/PricingServiceManager.sol +42 -0
  285. package/contracts/product/Product.sol +377 -0
  286. package/contracts/product/ProductService.sol +124 -0
  287. package/contracts/product/ProductServiceManager.sol +42 -0
  288. package/contracts/registry/ChainNft.sol +14 -0
  289. package/contracts/registry/IRegistry.sol +65 -28
  290. package/contracts/registry/IRegistryService.sol +46 -28
  291. package/contracts/registry/ITransferInterceptor.sol +1 -0
  292. package/contracts/registry/Registry.sol +353 -238
  293. package/contracts/registry/RegistryAccessManager.sol +167 -0
  294. package/contracts/registry/RegistryService.sol +165 -195
  295. package/contracts/registry/RegistryServiceManager.sol +34 -42
  296. package/contracts/registry/ReleaseManager.sol +530 -0
  297. package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
  298. package/contracts/registry/TokenRegistry.sol +261 -53
  299. package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
  300. package/contracts/shared/Component.sol +286 -0
  301. package/contracts/shared/ComponentService.sol +595 -0
  302. package/contracts/shared/ComponentServiceManager.sol +35 -0
  303. package/contracts/shared/ComponentVerifyingService.sol +111 -0
  304. package/contracts/shared/ERC165.sol +14 -12
  305. package/contracts/shared/IComponent.sol +74 -0
  306. package/contracts/shared/IComponentService.sol +91 -0
  307. package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
  308. package/contracts/{instance/base → shared}/IKeyValueStore.sol +14 -10
  309. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -3
  310. package/contracts/shared/INftOwnable.sol +12 -11
  311. package/contracts/shared/IPolicyHolder.sol +45 -0
  312. package/contracts/shared/IRegisterable.sol +4 -6
  313. package/contracts/shared/IRegistryLinked.sol +11 -0
  314. package/contracts/shared/IService.sol +7 -4
  315. package/contracts/shared/IVersionable.sol +5 -48
  316. package/contracts/shared/InstanceLinkedComponent.sol +145 -0
  317. package/contracts/shared/KeyValueStore.sol +130 -0
  318. package/contracts/{instance/base → shared}/Lifecycle.sol +28 -7
  319. package/contracts/shared/NftIdSetManager.sol +69 -0
  320. package/contracts/shared/NftOwnable.sol +64 -80
  321. package/contracts/shared/PolicyHolder.sol +101 -0
  322. package/contracts/shared/ProxyManager.sol +126 -25
  323. package/contracts/shared/Registerable.sol +26 -41
  324. package/contracts/shared/RegistryLinked.sol +43 -0
  325. package/contracts/shared/Service.sol +45 -23
  326. package/contracts/shared/TokenHandler.sol +37 -6
  327. package/contracts/shared/Versionable.sol +4 -92
  328. package/contracts/staking/IStaking.sol +113 -0
  329. package/contracts/staking/IStakingService.sol +122 -0
  330. package/contracts/staking/Staking.sol +348 -0
  331. package/contracts/staking/StakingManager.sol +52 -0
  332. package/contracts/staking/StakingReader.sol +92 -0
  333. package/contracts/staking/StakingService.sol +294 -0
  334. package/contracts/staking/StakingServiceManager.sol +44 -0
  335. package/contracts/staking/TargetManagerLib.sol +141 -0
  336. package/contracts/type/Amount.sol +114 -0
  337. package/contracts/{types → type}/Blocknumber.sol +7 -1
  338. package/contracts/type/ClaimId.sol +75 -0
  339. package/contracts/{types → type}/DistributorType.sol +2 -2
  340. package/contracts/{types → type}/Fee.sol +32 -22
  341. package/contracts/{types → type}/NftId.sol +17 -11
  342. package/contracts/{types → type}/NftIdSet.sol +1 -1
  343. package/contracts/{types → type}/ObjectType.sol +26 -9
  344. package/contracts/type/PayoutId.sol +82 -0
  345. package/contracts/{types → type}/Referral.sol +4 -0
  346. package/contracts/type/RoleId.sol +143 -0
  347. package/contracts/type/Seconds.sol +63 -0
  348. package/contracts/{types → type}/StateId.sol +24 -6
  349. package/contracts/{types → type}/Timestamp.sol +18 -13
  350. package/contracts/{types → type}/UFixed.sol +1 -0
  351. package/contracts/{types → type}/Version.sol +1 -0
  352. package/package.json +3 -3
  353. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  354. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  355. package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -618
  356. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  357. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
  358. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  359. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
  360. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  361. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -249
  362. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  363. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  364. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  365. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -787
  366. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  367. package/artifacts/contracts/components/Product.sol/Product.json +0 -729
  368. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  369. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  370. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  371. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  372. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  373. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  374. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  375. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  376. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  377. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  378. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  379. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  380. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  381. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  382. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  383. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  384. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  385. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  386. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  387. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  388. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  389. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  390. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  391. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  392. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  393. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  394. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  395. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  396. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  397. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  398. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  399. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  400. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  401. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  402. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  403. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  404. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  405. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  406. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  407. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
  408. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +0 -101
  409. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
  410. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
  411. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  412. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
  413. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
  414. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  415. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -272
  416. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  417. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  418. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
  419. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  420. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  421. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  422. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  423. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  424. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  425. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  426. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  427. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  428. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  429. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
  430. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  431. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -716
  432. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  433. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -444
  434. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  435. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  436. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  437. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  438. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  439. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -971
  440. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  441. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -460
  442. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  443. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -1147
  444. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  445. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -488
  446. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  447. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  448. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
  449. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
  450. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  451. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  452. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  453. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  454. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  455. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  456. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  457. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  458. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  459. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  460. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  461. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  462. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  463. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  464. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  465. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  466. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  467. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  468. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  469. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  470. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  471. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  472. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  473. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  474. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  475. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  476. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  477. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  478. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  479. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  480. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  481. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  482. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  483. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  484. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  485. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  486. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  487. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  488. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  489. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  490. package/contracts/components/BaseComponent.sol +0 -91
  491. package/contracts/components/Distribution.sol +0 -163
  492. package/contracts/components/IBaseComponent.sol +0 -25
  493. package/contracts/components/IDistributionComponent.sol +0 -44
  494. package/contracts/components/IPoolComponent.sol +0 -62
  495. package/contracts/components/IProductComponent.sol +0 -35
  496. package/contracts/components/Pool.sol +0 -247
  497. package/contracts/components/Product.sol +0 -289
  498. package/contracts/experiment/cloning/Cloner.sol +0 -47
  499. package/contracts/experiment/errors/Require.sol +0 -38
  500. package/contracts/experiment/errors/Revert.sol +0 -44
  501. package/contracts/experiment/inheritance/A.sol +0 -53
  502. package/contracts/experiment/inheritance/B.sol +0 -28
  503. package/contracts/experiment/inheritance/C.sol +0 -34
  504. package/contracts/experiment/inheritance/IA.sol +0 -13
  505. package/contracts/experiment/inheritance/IB.sol +0 -10
  506. package/contracts/experiment/inheritance/IC.sol +0 -12
  507. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  508. package/contracts/experiment/statemachine/ISM.sol +0 -25
  509. package/contracts/experiment/statemachine/SM.sol +0 -57
  510. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  511. package/contracts/experiment/types/TypeA.sol +0 -47
  512. package/contracts/experiment/types/TypeB.sol +0 -29
  513. package/contracts/instance/AccessManagedSimple.sol +0 -115
  514. package/contracts/instance/AccessManagerSimple.sol +0 -692
  515. package/contracts/instance/IAccessManagerSimple.sol +0 -391
  516. package/contracts/instance/base/ComponentServiceBase.sol +0 -134
  517. package/contracts/instance/base/IInstanceBase.sol +0 -23
  518. package/contracts/instance/base/KeyValueStore.sol +0 -172
  519. package/contracts/instance/module/ISetup.sol +0 -46
  520. package/contracts/instance/module/ITreasury.sol +0 -23
  521. package/contracts/instance/service/ComponentOwnerService.sol +0 -317
  522. package/contracts/instance/service/DistributionService.sol +0 -88
  523. package/contracts/instance/service/IComponentOwnerService.sol +0 -20
  524. package/contracts/instance/service/IDistributionService.sol +0 -12
  525. package/contracts/instance/service/IPoolService.sol +0 -43
  526. package/contracts/instance/service/IProductService.sol +0 -110
  527. package/contracts/instance/service/PoolService.sol +0 -206
  528. package/contracts/instance/service/PoolServiceManager.sol +0 -54
  529. package/contracts/instance/service/ProductService.sol +0 -561
  530. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  531. package/contracts/shared/ContractDeployerLib.sol +0 -72
  532. package/contracts/shared/RegisterableUpgradable.sol +0 -16
  533. package/contracts/test/TestFee.sol +0 -25
  534. package/contracts/test/TestRegisterable.sol +0 -18
  535. package/contracts/test/TestRoleId.sol +0 -14
  536. package/contracts/test/TestService.sol +0 -24
  537. package/contracts/test/TestToken.sol +0 -26
  538. package/contracts/test/TestVersion.sol +0 -44
  539. package/contracts/test/TestVersionable.sol +0 -17
  540. package/contracts/types/ChainId.sol +0 -38
  541. package/contracts/types/NumberId.sol +0 -52
  542. package/contracts/types/RoleId.sol +0 -90
  543. /package/contracts/{types → type}/AddressSet.sol +0 -0
  544. /package/contracts/{types → type}/Key32.sol +0 -0
  545. /package/contracts/{types → type}/RiskId.sol +0 -0
@@ -0,0 +1,1461 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ComponentService",
4
+ "sourceName": "contracts/shared/ComponentService.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
+ {
47
+ "internalType": "address",
48
+ "name": "component",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentServiceAlreadyRegistered",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "component",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorComponentServiceComponentLocked",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "component",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "ObjectType",
75
+ "name": "expectedType",
76
+ "type": "uint8"
77
+ },
78
+ {
79
+ "internalType": "ObjectType",
80
+ "name": "foundType",
81
+ "type": "uint8"
82
+ }
83
+ ],
84
+ "name": "ErrorComponentServiceComponentTypeInvalid",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "NftId",
91
+ "name": "instanceNftId",
92
+ "type": "uint96"
93
+ },
94
+ {
95
+ "internalType": "RoleId",
96
+ "name": "requiredRole",
97
+ "type": "uint64"
98
+ },
99
+ {
100
+ "internalType": "address",
101
+ "name": "sender",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "ErrorComponentServiceExpectedRoleMissing",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "internalType": "ObjectType",
117
+ "name": "requiredType",
118
+ "type": "uint8"
119
+ },
120
+ {
121
+ "internalType": "ObjectType",
122
+ "name": "componentType",
123
+ "type": "uint8"
124
+ }
125
+ ],
126
+ "name": "ErrorComponentServiceInvalidType",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [],
131
+ "name": "ErrorComponentServiceNewWalletAddressZero",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "address",
138
+ "name": "component",
139
+ "type": "address"
140
+ }
141
+ ],
142
+ "name": "ErrorComponentServiceNotComponent",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "component",
150
+ "type": "address"
151
+ },
152
+ {
153
+ "internalType": "address",
154
+ "name": "initialOwner",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "internalType": "address",
159
+ "name": "sender",
160
+ "type": "address"
161
+ }
162
+ ],
163
+ "name": "ErrorComponentServiceSenderNotOwner",
164
+ "type": "error"
165
+ },
166
+ {
167
+ "inputs": [
168
+ {
169
+ "internalType": "address",
170
+ "name": "sender",
171
+ "type": "address"
172
+ }
173
+ ],
174
+ "name": "ErrorComponentServiceSenderNotService",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [],
179
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
180
+ "type": "error"
181
+ },
182
+ {
183
+ "inputs": [],
184
+ "name": "ErrorComponentServiceWalletAddressZero",
185
+ "type": "error"
186
+ },
187
+ {
188
+ "inputs": [
189
+ {
190
+ "internalType": "NftId",
191
+ "name": "componentNftId",
192
+ "type": "uint96"
193
+ }
194
+ ],
195
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
196
+ "type": "error"
197
+ },
198
+ {
199
+ "inputs": [
200
+ {
201
+ "internalType": "NftId",
202
+ "name": "componentNftId",
203
+ "type": "uint96"
204
+ },
205
+ {
206
+ "internalType": "ObjectType",
207
+ "name": "expectedType",
208
+ "type": "uint8"
209
+ },
210
+ {
211
+ "internalType": "ObjectType",
212
+ "name": "actualType",
213
+ "type": "uint8"
214
+ }
215
+ ],
216
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [
221
+ {
222
+ "internalType": "NftId",
223
+ "name": "nftId",
224
+ "type": "uint96"
225
+ }
226
+ ],
227
+ "name": "ErrorNftOwnableAlreadyLinked",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [
232
+ {
233
+ "internalType": "address",
234
+ "name": "contractAddress",
235
+ "type": "address"
236
+ }
237
+ ],
238
+ "name": "ErrorNftOwnableContractNotRegistered",
239
+ "type": "error"
240
+ },
241
+ {
242
+ "inputs": [],
243
+ "name": "ErrorNftOwnableInitialOwnerZero",
244
+ "type": "error"
245
+ },
246
+ {
247
+ "inputs": [
248
+ {
249
+ "internalType": "address",
250
+ "name": "account",
251
+ "type": "address"
252
+ }
253
+ ],
254
+ "name": "ErrorNftOwnableNotOwner",
255
+ "type": "error"
256
+ },
257
+ {
258
+ "inputs": [
259
+ {
260
+ "internalType": "address",
261
+ "name": "registryAddress",
262
+ "type": "address"
263
+ }
264
+ ],
265
+ "name": "ErrorNotRegistry",
266
+ "type": "error"
267
+ },
268
+ {
269
+ "inputs": [],
270
+ "name": "ErrorServiceNotImplemented",
271
+ "type": "error"
272
+ },
273
+ {
274
+ "inputs": [],
275
+ "name": "InvalidInitialization",
276
+ "type": "error"
277
+ },
278
+ {
279
+ "inputs": [],
280
+ "name": "NotInitializing",
281
+ "type": "error"
282
+ },
283
+ {
284
+ "anonymous": false,
285
+ "inputs": [
286
+ {
287
+ "indexed": false,
288
+ "internalType": "address",
289
+ "name": "authority",
290
+ "type": "address"
291
+ }
292
+ ],
293
+ "name": "AuthorityUpdated",
294
+ "type": "event"
295
+ },
296
+ {
297
+ "anonymous": false,
298
+ "inputs": [
299
+ {
300
+ "indexed": false,
301
+ "internalType": "uint64",
302
+ "name": "version",
303
+ "type": "uint64"
304
+ }
305
+ ],
306
+ "name": "Initialized",
307
+ "type": "event"
308
+ },
309
+ {
310
+ "anonymous": false,
311
+ "inputs": [
312
+ {
313
+ "indexed": false,
314
+ "internalType": "NftId",
315
+ "name": "distributionNftId",
316
+ "type": "uint96"
317
+ }
318
+ ],
319
+ "name": "LogComponentServiceDistributionFeesUpdated",
320
+ "type": "event"
321
+ },
322
+ {
323
+ "anonymous": false,
324
+ "inputs": [
325
+ {
326
+ "indexed": false,
327
+ "internalType": "NftId",
328
+ "name": "poolNftId",
329
+ "type": "uint96"
330
+ }
331
+ ],
332
+ "name": "LogComponentServicePoolFeesUpdated",
333
+ "type": "event"
334
+ },
335
+ {
336
+ "anonymous": false,
337
+ "inputs": [
338
+ {
339
+ "indexed": false,
340
+ "internalType": "NftId",
341
+ "name": "productNftId",
342
+ "type": "uint96"
343
+ }
344
+ ],
345
+ "name": "LogComponentServiceProductFeesUpdated",
346
+ "type": "event"
347
+ },
348
+ {
349
+ "anonymous": false,
350
+ "inputs": [
351
+ {
352
+ "indexed": false,
353
+ "internalType": "NftId",
354
+ "name": "nftId",
355
+ "type": "uint96"
356
+ },
357
+ {
358
+ "indexed": false,
359
+ "internalType": "string",
360
+ "name": "feeName",
361
+ "type": "string"
362
+ },
363
+ {
364
+ "indexed": false,
365
+ "internalType": "UFixed",
366
+ "name": "previousFractionalFee",
367
+ "type": "uint256"
368
+ },
369
+ {
370
+ "indexed": false,
371
+ "internalType": "uint256",
372
+ "name": "previousFixedFee",
373
+ "type": "uint256"
374
+ },
375
+ {
376
+ "indexed": false,
377
+ "internalType": "UFixed",
378
+ "name": "newFractionalFee",
379
+ "type": "uint256"
380
+ },
381
+ {
382
+ "indexed": false,
383
+ "internalType": "uint256",
384
+ "name": "newFixedFee",
385
+ "type": "uint256"
386
+ }
387
+ ],
388
+ "name": "LogComponentServiceUpdateFee",
389
+ "type": "event"
390
+ },
391
+ {
392
+ "anonymous": false,
393
+ "inputs": [
394
+ {
395
+ "indexed": false,
396
+ "internalType": "NftId",
397
+ "name": "componentNftId",
398
+ "type": "uint96"
399
+ },
400
+ {
401
+ "indexed": false,
402
+ "internalType": "address",
403
+ "name": "currentWallet",
404
+ "type": "address"
405
+ },
406
+ {
407
+ "indexed": false,
408
+ "internalType": "address",
409
+ "name": "newWallet",
410
+ "type": "address"
411
+ }
412
+ ],
413
+ "name": "LogComponentServiceWalletAddressChanged",
414
+ "type": "event"
415
+ },
416
+ {
417
+ "inputs": [],
418
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
419
+ "outputs": [
420
+ {
421
+ "internalType": "bytes32",
422
+ "name": "",
423
+ "type": "bytes32"
424
+ }
425
+ ],
426
+ "stateMutability": "view",
427
+ "type": "function"
428
+ },
429
+ {
430
+ "inputs": [],
431
+ "name": "REGISTERABLE_LOCATION_V1",
432
+ "outputs": [
433
+ {
434
+ "internalType": "bytes32",
435
+ "name": "",
436
+ "type": "bytes32"
437
+ }
438
+ ],
439
+ "stateMutability": "view",
440
+ "type": "function"
441
+ },
442
+ {
443
+ "inputs": [],
444
+ "name": "authority",
445
+ "outputs": [
446
+ {
447
+ "internalType": "address",
448
+ "name": "",
449
+ "type": "address"
450
+ }
451
+ ],
452
+ "stateMutability": "view",
453
+ "type": "function"
454
+ },
455
+ {
456
+ "inputs": [
457
+ {
458
+ "internalType": "contract InstanceStore",
459
+ "name": "instanceStore",
460
+ "type": "address"
461
+ },
462
+ {
463
+ "internalType": "NftId",
464
+ "name": "bundleNftId",
465
+ "type": "uint96"
466
+ },
467
+ {
468
+ "internalType": "Amount",
469
+ "name": "amount",
470
+ "type": "uint96"
471
+ },
472
+ {
473
+ "internalType": "Amount",
474
+ "name": "feeAmount",
475
+ "type": "uint96"
476
+ }
477
+ ],
478
+ "name": "decreaseBundleBalance",
479
+ "outputs": [],
480
+ "stateMutability": "nonpayable",
481
+ "type": "function"
482
+ },
483
+ {
484
+ "inputs": [
485
+ {
486
+ "internalType": "contract InstanceStore",
487
+ "name": "instanceStore",
488
+ "type": "address"
489
+ },
490
+ {
491
+ "internalType": "NftId",
492
+ "name": "distributionNftId",
493
+ "type": "uint96"
494
+ },
495
+ {
496
+ "internalType": "Amount",
497
+ "name": "amount",
498
+ "type": "uint96"
499
+ },
500
+ {
501
+ "internalType": "Amount",
502
+ "name": "feeAmount",
503
+ "type": "uint96"
504
+ }
505
+ ],
506
+ "name": "decreaseDistributionBalance",
507
+ "outputs": [],
508
+ "stateMutability": "nonpayable",
509
+ "type": "function"
510
+ },
511
+ {
512
+ "inputs": [
513
+ {
514
+ "internalType": "contract InstanceStore",
515
+ "name": "instanceStore",
516
+ "type": "address"
517
+ },
518
+ {
519
+ "internalType": "NftId",
520
+ "name": "poolNftId",
521
+ "type": "uint96"
522
+ },
523
+ {
524
+ "internalType": "Amount",
525
+ "name": "amount",
526
+ "type": "uint96"
527
+ },
528
+ {
529
+ "internalType": "Amount",
530
+ "name": "feeAmount",
531
+ "type": "uint96"
532
+ }
533
+ ],
534
+ "name": "decreasePoolBalance",
535
+ "outputs": [],
536
+ "stateMutability": "nonpayable",
537
+ "type": "function"
538
+ },
539
+ {
540
+ "inputs": [
541
+ {
542
+ "internalType": "contract InstanceStore",
543
+ "name": "instanceStore",
544
+ "type": "address"
545
+ },
546
+ {
547
+ "internalType": "NftId",
548
+ "name": "productNftId",
549
+ "type": "uint96"
550
+ },
551
+ {
552
+ "internalType": "Amount",
553
+ "name": "feeAmount",
554
+ "type": "uint96"
555
+ }
556
+ ],
557
+ "name": "decreaseProductFees",
558
+ "outputs": [],
559
+ "stateMutability": "nonpayable",
560
+ "type": "function"
561
+ },
562
+ {
563
+ "inputs": [],
564
+ "name": "getDomain",
565
+ "outputs": [
566
+ {
567
+ "internalType": "ObjectType",
568
+ "name": "",
569
+ "type": "uint8"
570
+ }
571
+ ],
572
+ "stateMutability": "pure",
573
+ "type": "function"
574
+ },
575
+ {
576
+ "inputs": [],
577
+ "name": "getInitialInfo",
578
+ "outputs": [
579
+ {
580
+ "components": [
581
+ {
582
+ "internalType": "NftId",
583
+ "name": "nftId",
584
+ "type": "uint96"
585
+ },
586
+ {
587
+ "internalType": "NftId",
588
+ "name": "parentNftId",
589
+ "type": "uint96"
590
+ },
591
+ {
592
+ "internalType": "ObjectType",
593
+ "name": "objectType",
594
+ "type": "uint8"
595
+ },
596
+ {
597
+ "internalType": "bool",
598
+ "name": "isInterceptor",
599
+ "type": "bool"
600
+ },
601
+ {
602
+ "internalType": "address",
603
+ "name": "objectAddress",
604
+ "type": "address"
605
+ },
606
+ {
607
+ "internalType": "address",
608
+ "name": "initialOwner",
609
+ "type": "address"
610
+ },
611
+ {
612
+ "internalType": "bytes",
613
+ "name": "data",
614
+ "type": "bytes"
615
+ }
616
+ ],
617
+ "internalType": "struct IRegistry.ObjectInfo",
618
+ "name": "info",
619
+ "type": "tuple"
620
+ }
621
+ ],
622
+ "stateMutability": "view",
623
+ "type": "function"
624
+ },
625
+ {
626
+ "inputs": [],
627
+ "name": "getNftId",
628
+ "outputs": [
629
+ {
630
+ "internalType": "NftId",
631
+ "name": "",
632
+ "type": "uint96"
633
+ }
634
+ ],
635
+ "stateMutability": "view",
636
+ "type": "function"
637
+ },
638
+ {
639
+ "inputs": [],
640
+ "name": "getOwner",
641
+ "outputs": [
642
+ {
643
+ "internalType": "address",
644
+ "name": "",
645
+ "type": "address"
646
+ }
647
+ ],
648
+ "stateMutability": "view",
649
+ "type": "function"
650
+ },
651
+ {
652
+ "inputs": [],
653
+ "name": "getRegistry",
654
+ "outputs": [
655
+ {
656
+ "internalType": "contract IRegistry",
657
+ "name": "",
658
+ "type": "address"
659
+ }
660
+ ],
661
+ "stateMutability": "view",
662
+ "type": "function"
663
+ },
664
+ {
665
+ "inputs": [],
666
+ "name": "getVersion",
667
+ "outputs": [
668
+ {
669
+ "internalType": "Version",
670
+ "name": "",
671
+ "type": "uint24"
672
+ }
673
+ ],
674
+ "stateMutability": "pure",
675
+ "type": "function"
676
+ },
677
+ {
678
+ "inputs": [
679
+ {
680
+ "internalType": "contract InstanceStore",
681
+ "name": "instanceStore",
682
+ "type": "address"
683
+ },
684
+ {
685
+ "internalType": "NftId",
686
+ "name": "bundleNftId",
687
+ "type": "uint96"
688
+ },
689
+ {
690
+ "internalType": "Amount",
691
+ "name": "amount",
692
+ "type": "uint96"
693
+ },
694
+ {
695
+ "internalType": "Amount",
696
+ "name": "feeAmount",
697
+ "type": "uint96"
698
+ }
699
+ ],
700
+ "name": "increaseBundleBalance",
701
+ "outputs": [],
702
+ "stateMutability": "nonpayable",
703
+ "type": "function"
704
+ },
705
+ {
706
+ "inputs": [
707
+ {
708
+ "internalType": "contract InstanceStore",
709
+ "name": "instanceStore",
710
+ "type": "address"
711
+ },
712
+ {
713
+ "internalType": "NftId",
714
+ "name": "distributionNftId",
715
+ "type": "uint96"
716
+ },
717
+ {
718
+ "internalType": "Amount",
719
+ "name": "amount",
720
+ "type": "uint96"
721
+ },
722
+ {
723
+ "internalType": "Amount",
724
+ "name": "feeAmount",
725
+ "type": "uint96"
726
+ }
727
+ ],
728
+ "name": "increaseDistributionBalance",
729
+ "outputs": [],
730
+ "stateMutability": "nonpayable",
731
+ "type": "function"
732
+ },
733
+ {
734
+ "inputs": [
735
+ {
736
+ "internalType": "contract InstanceStore",
737
+ "name": "instanceStore",
738
+ "type": "address"
739
+ },
740
+ {
741
+ "internalType": "NftId",
742
+ "name": "poolNftId",
743
+ "type": "uint96"
744
+ },
745
+ {
746
+ "internalType": "Amount",
747
+ "name": "amount",
748
+ "type": "uint96"
749
+ },
750
+ {
751
+ "internalType": "Amount",
752
+ "name": "feeAmount",
753
+ "type": "uint96"
754
+ }
755
+ ],
756
+ "name": "increasePoolBalance",
757
+ "outputs": [],
758
+ "stateMutability": "nonpayable",
759
+ "type": "function"
760
+ },
761
+ {
762
+ "inputs": [
763
+ {
764
+ "internalType": "contract InstanceStore",
765
+ "name": "instanceStore",
766
+ "type": "address"
767
+ },
768
+ {
769
+ "internalType": "NftId",
770
+ "name": "productNftId",
771
+ "type": "uint96"
772
+ },
773
+ {
774
+ "internalType": "Amount",
775
+ "name": "feeAmount",
776
+ "type": "uint96"
777
+ }
778
+ ],
779
+ "name": "increaseProductFees",
780
+ "outputs": [],
781
+ "stateMutability": "nonpayable",
782
+ "type": "function"
783
+ },
784
+ {
785
+ "inputs": [],
786
+ "name": "initializeERC165",
787
+ "outputs": [],
788
+ "stateMutability": "nonpayable",
789
+ "type": "function"
790
+ },
791
+ {
792
+ "inputs": [
793
+ {
794
+ "internalType": "address",
795
+ "name": "initialOwner",
796
+ "type": "address"
797
+ },
798
+ {
799
+ "internalType": "address",
800
+ "name": "registryAddress",
801
+ "type": "address"
802
+ }
803
+ ],
804
+ "name": "initializeNftOwnable",
805
+ "outputs": [],
806
+ "stateMutability": "nonpayable",
807
+ "type": "function"
808
+ },
809
+ {
810
+ "inputs": [
811
+ {
812
+ "internalType": "address",
813
+ "name": "registryAddress",
814
+ "type": "address"
815
+ },
816
+ {
817
+ "internalType": "NftId",
818
+ "name": "parentNftId",
819
+ "type": "uint96"
820
+ },
821
+ {
822
+ "internalType": "ObjectType",
823
+ "name": "objectType",
824
+ "type": "uint8"
825
+ },
826
+ {
827
+ "internalType": "bool",
828
+ "name": "isInterceptor",
829
+ "type": "bool"
830
+ },
831
+ {
832
+ "internalType": "address",
833
+ "name": "initialOwner",
834
+ "type": "address"
835
+ },
836
+ {
837
+ "internalType": "bytes",
838
+ "name": "registryData",
839
+ "type": "bytes"
840
+ }
841
+ ],
842
+ "name": "initializeRegisterable",
843
+ "outputs": [],
844
+ "stateMutability": "nonpayable",
845
+ "type": "function"
846
+ },
847
+ {
848
+ "inputs": [
849
+ {
850
+ "internalType": "address",
851
+ "name": "registryAddress",
852
+ "type": "address"
853
+ }
854
+ ],
855
+ "name": "initializeRegistryLinked",
856
+ "outputs": [],
857
+ "stateMutability": "nonpayable",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "internalType": "address",
864
+ "name": "registry",
865
+ "type": "address"
866
+ },
867
+ {
868
+ "internalType": "address",
869
+ "name": "authority",
870
+ "type": "address"
871
+ },
872
+ {
873
+ "internalType": "address",
874
+ "name": "initialOwner",
875
+ "type": "address"
876
+ }
877
+ ],
878
+ "name": "initializeService",
879
+ "outputs": [],
880
+ "stateMutability": "nonpayable",
881
+ "type": "function"
882
+ },
883
+ {
884
+ "inputs": [
885
+ {
886
+ "internalType": "address",
887
+ "name": "activatedBy",
888
+ "type": "address"
889
+ },
890
+ {
891
+ "internalType": "bytes",
892
+ "name": "data",
893
+ "type": "bytes"
894
+ }
895
+ ],
896
+ "name": "initializeVersionable",
897
+ "outputs": [],
898
+ "stateMutability": "nonpayable",
899
+ "type": "function"
900
+ },
901
+ {
902
+ "inputs": [],
903
+ "name": "isConsumingScheduledOp",
904
+ "outputs": [
905
+ {
906
+ "internalType": "bytes4",
907
+ "name": "",
908
+ "type": "bytes4"
909
+ }
910
+ ],
911
+ "stateMutability": "view",
912
+ "type": "function"
913
+ },
914
+ {
915
+ "inputs": [],
916
+ "name": "linkToRegisteredNftId",
917
+ "outputs": [],
918
+ "stateMutability": "nonpayable",
919
+ "type": "function"
920
+ },
921
+ {
922
+ "inputs": [],
923
+ "name": "lock",
924
+ "outputs": [],
925
+ "stateMutability": "nonpayable",
926
+ "type": "function"
927
+ },
928
+ {
929
+ "inputs": [],
930
+ "name": "registerDistribution",
931
+ "outputs": [],
932
+ "stateMutability": "nonpayable",
933
+ "type": "function"
934
+ },
935
+ {
936
+ "inputs": [
937
+ {
938
+ "internalType": "bytes4",
939
+ "name": "interfaceId",
940
+ "type": "bytes4"
941
+ }
942
+ ],
943
+ "name": "registerInterface",
944
+ "outputs": [],
945
+ "stateMutability": "nonpayable",
946
+ "type": "function"
947
+ },
948
+ {
949
+ "inputs": [],
950
+ "name": "registerPool",
951
+ "outputs": [],
952
+ "stateMutability": "nonpayable",
953
+ "type": "function"
954
+ },
955
+ {
956
+ "inputs": [],
957
+ "name": "registerProduct",
958
+ "outputs": [],
959
+ "stateMutability": "nonpayable",
960
+ "type": "function"
961
+ },
962
+ {
963
+ "inputs": [
964
+ {
965
+ "internalType": "address",
966
+ "name": "newAuthority",
967
+ "type": "address"
968
+ }
969
+ ],
970
+ "name": "setAuthority",
971
+ "outputs": [],
972
+ "stateMutability": "nonpayable",
973
+ "type": "function"
974
+ },
975
+ {
976
+ "inputs": [
977
+ {
978
+ "components": [
979
+ {
980
+ "internalType": "UFixed",
981
+ "name": "fractionalFee",
982
+ "type": "uint256"
983
+ },
984
+ {
985
+ "internalType": "uint256",
986
+ "name": "fixedFee",
987
+ "type": "uint256"
988
+ }
989
+ ],
990
+ "internalType": "struct Fee",
991
+ "name": "distributionFee",
992
+ "type": "tuple"
993
+ },
994
+ {
995
+ "components": [
996
+ {
997
+ "internalType": "UFixed",
998
+ "name": "fractionalFee",
999
+ "type": "uint256"
1000
+ },
1001
+ {
1002
+ "internalType": "uint256",
1003
+ "name": "fixedFee",
1004
+ "type": "uint256"
1005
+ }
1006
+ ],
1007
+ "internalType": "struct Fee",
1008
+ "name": "minDistributionOwnerFee",
1009
+ "type": "tuple"
1010
+ }
1011
+ ],
1012
+ "name": "setDistributionFees",
1013
+ "outputs": [],
1014
+ "stateMutability": "nonpayable",
1015
+ "type": "function"
1016
+ },
1017
+ {
1018
+ "inputs": [
1019
+ {
1020
+ "components": [
1021
+ {
1022
+ "internalType": "UFixed",
1023
+ "name": "fractionalFee",
1024
+ "type": "uint256"
1025
+ },
1026
+ {
1027
+ "internalType": "uint256",
1028
+ "name": "fixedFee",
1029
+ "type": "uint256"
1030
+ }
1031
+ ],
1032
+ "internalType": "struct Fee",
1033
+ "name": "poolFee",
1034
+ "type": "tuple"
1035
+ },
1036
+ {
1037
+ "components": [
1038
+ {
1039
+ "internalType": "UFixed",
1040
+ "name": "fractionalFee",
1041
+ "type": "uint256"
1042
+ },
1043
+ {
1044
+ "internalType": "uint256",
1045
+ "name": "fixedFee",
1046
+ "type": "uint256"
1047
+ }
1048
+ ],
1049
+ "internalType": "struct Fee",
1050
+ "name": "stakingFee",
1051
+ "type": "tuple"
1052
+ },
1053
+ {
1054
+ "components": [
1055
+ {
1056
+ "internalType": "UFixed",
1057
+ "name": "fractionalFee",
1058
+ "type": "uint256"
1059
+ },
1060
+ {
1061
+ "internalType": "uint256",
1062
+ "name": "fixedFee",
1063
+ "type": "uint256"
1064
+ }
1065
+ ],
1066
+ "internalType": "struct Fee",
1067
+ "name": "performanceFee",
1068
+ "type": "tuple"
1069
+ }
1070
+ ],
1071
+ "name": "setPoolFees",
1072
+ "outputs": [],
1073
+ "stateMutability": "nonpayable",
1074
+ "type": "function"
1075
+ },
1076
+ {
1077
+ "inputs": [
1078
+ {
1079
+ "components": [
1080
+ {
1081
+ "internalType": "UFixed",
1082
+ "name": "fractionalFee",
1083
+ "type": "uint256"
1084
+ },
1085
+ {
1086
+ "internalType": "uint256",
1087
+ "name": "fixedFee",
1088
+ "type": "uint256"
1089
+ }
1090
+ ],
1091
+ "internalType": "struct Fee",
1092
+ "name": "productFee",
1093
+ "type": "tuple"
1094
+ },
1095
+ {
1096
+ "components": [
1097
+ {
1098
+ "internalType": "UFixed",
1099
+ "name": "fractionalFee",
1100
+ "type": "uint256"
1101
+ },
1102
+ {
1103
+ "internalType": "uint256",
1104
+ "name": "fixedFee",
1105
+ "type": "uint256"
1106
+ }
1107
+ ],
1108
+ "internalType": "struct Fee",
1109
+ "name": "processingFee",
1110
+ "type": "tuple"
1111
+ }
1112
+ ],
1113
+ "name": "setProductFees",
1114
+ "outputs": [],
1115
+ "stateMutability": "nonpayable",
1116
+ "type": "function"
1117
+ },
1118
+ {
1119
+ "inputs": [
1120
+ {
1121
+ "internalType": "address",
1122
+ "name": "newWallet",
1123
+ "type": "address"
1124
+ }
1125
+ ],
1126
+ "name": "setWallet",
1127
+ "outputs": [],
1128
+ "stateMutability": "nonpayable",
1129
+ "type": "function"
1130
+ },
1131
+ {
1132
+ "inputs": [
1133
+ {
1134
+ "internalType": "bytes4",
1135
+ "name": "interfaceId",
1136
+ "type": "bytes4"
1137
+ }
1138
+ ],
1139
+ "name": "supportsInterface",
1140
+ "outputs": [
1141
+ {
1142
+ "internalType": "bool",
1143
+ "name": "",
1144
+ "type": "bool"
1145
+ }
1146
+ ],
1147
+ "stateMutability": "view",
1148
+ "type": "function"
1149
+ },
1150
+ {
1151
+ "inputs": [],
1152
+ "name": "unlock",
1153
+ "outputs": [],
1154
+ "stateMutability": "nonpayable",
1155
+ "type": "function"
1156
+ },
1157
+ {
1158
+ "inputs": [
1159
+ {
1160
+ "internalType": "bytes",
1161
+ "name": "data",
1162
+ "type": "bytes"
1163
+ }
1164
+ ],
1165
+ "name": "upgradeVersionable",
1166
+ "outputs": [],
1167
+ "stateMutability": "nonpayable",
1168
+ "type": "function"
1169
+ }
1170
+ ],
1171
+ "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61595580620000e66000396000f3fe60806040523480156200001157600080fd5b5060043610620002615760003560e01c806374933c2f1162000149578063be495be511620000c7578063deaa59df1162000086578063deaa59df146200054b578063dfd92f8a1462000562578063e618053f14620002e3578063f7c34ee0146200056c578063f83d08ba14620002fa57600080fd5b8063be495be51462000500578063bf7e214f146200050a578063c142a303146200052a578063d56cd3d51462000354578063d7740ee1146200054157600080fd5b80638e32e97911620001145780638e32e979146200049e5780638fb3603714620004b5578063a69df4b514620002fa578063ada9652e14620004d9578063b68d180914620004f057600080fd5b806374933c2f14620003545780637a9e5e4b146200047d578063893d20e8146200049457806389fad8a214620002e357600080fd5b8063329d6e7411620001e3578063644c45e011620001a2578063644c45e014620003f757806367438c501462000421578063675393bf146200043857806367ba1c10146200044f5780636e172807146200046657600080fd5b8063329d6e74146200038257806336fc697e146200039957806337a897ee14620003a357806349bb9e4b14620003ba5780635ab1bd5314620003d157600080fd5b8063138461e01162000230578063138461e014620002fc5780631eff4b221462000306578063214cdb80146200033d57806325e451d3146200035457806327bb7a33146200036b57600080fd5b806301ffc9a714620002665780630d8e6e2c14620002ab5780630fec111c14620002ca57806311a1467714620002e3575b600080fd5b6200029662000277366004620041ce565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620002b562000583565b60405162ffffff9091168152602001620002a2565b620002d462000610565b604051620002a291906200424e565b620002fa620002f436600462004308565b620007b0565b005b620002fa620007c6565b6200032e7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001620002a2565b620002fa6200034e366004620041ce565b620009db565b620002fa6200036536600462004308565b62000a0a565b620002fa6200037c3660046200451c565b62000a1a565b620002fa62000393366004620045c2565b62000ac5565b620002fa62000c1c565b620002fa620003b43660046200462d565b62000c64565b620002fa620003cb3660046200465e565b62000fb0565b6001546001600160a01b03165b6040516001600160a01b039091168152602001620002a2565b600080516020620058c0833981519152546040516001600160601b039091168152602001620002a2565b620002fa62000432366004620046a9565b620010ab565b620002fa62000449366004620046fb565b6200112f565b620002fa620004603660046200462d565b62001248565b620002fa62000477366004620046a9565b620015e6565b620002fa6200048e366004620046fb565b62001638565b620003de620016da565b620002fa620004af3660046200471b565b62001819565b620004bf62001a68565b6040516001600160e01b03199091168152602001620002a2565b6200032e600080516020620058c083398151915281565b60405160648152602001620002a2565b620002fa62001aa5565b600080516020620058e0833981519152546001600160a01b0316620003de565b620002fa6200053b36600462004762565b62001bf1565b620002fa62001fc1565b620002fa6200055c366004620046fb565b620021e5565b620002fa620024a8565b620002fa6200057d366004620047af565b62002686565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015620005e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200060b9190620047ed565b905090565b6200061a62004061565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000694573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006ba919062004826565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00162000704620016da565b6001600160a01b03168152602001826001018054620007239062004846565b80601f0160208091040260200160405190810160405280929190818152602001828054620007519062004846565b8015620007a25780601f106200077657610100808354040283529160200191620007a2565b820191906000526020600020905b8154815290600101906020018083116200078457829003601f168201915b505050505081525091505090565b620007c060008585858562002705565b50505050565b6000600080516020620058c083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562000837573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200085d91906200488f565b156200088f5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b30620008a36001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015620008ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200091291906200488f565b6200093c5760405163b9304b0d60e01b81526001600160a01b038216600482015260240162000886565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801562000991573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009b7919062004826565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b620009e562002b34565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b620007c060018585858562002705565b62000a2462002b34565b62000a30828762002686565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30162000abb8382620048f9565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c62000ae962000583565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801562000b2a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b509190620049e8565b600080516020620059008339815191528054600160401b900460ff168062000b85575080546001600160401b03808416911610155b1562000ba45760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815562000bd08362002b6d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b62000c2662002b34565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b60008062000c73607862002b77565b925050915060008062000ceb836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000cbe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ce4919062004a08565b8562002d23565b91509150600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b815260040162000d3092919062004a28565b602060405180830381865af415801562000d4e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d7491906200488f565b62000dbd5762000db2836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a62002e2c565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162000dfb91908a9060040162004a28565b602060405180830381865af415801562000e19573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e3f91906200488f565b62000e965762000e8b836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a001518962002e2c565b5060a0810185905260015b801562000fa757836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000edc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f02919062004a08565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040162000f349392919062004b2e565b600060405180830381600087803b15801562000f4f57600080fd5b505af115801562000f64573d6000803e3d6000fd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b600080516020620059008339815191528054600160401b810460ff1615906001600160401b031660008115801562000fe55750825b90506000826001600160401b03166001148015620010025750303b155b90508115801562001011575080155b15620010305760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156200105b57845460ff60401b1916600160401b1785555b62001067878762002e81565b831562000fa757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162000f9e565b6200112a6001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015620010fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001123919062004826565b8562002705565b505050565b6200113962002b34565b806001600160a01b03163b600003620011715760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000886565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152633135064760e11b60048201526301ffc9a790602401602060405180830381865afa925050508015620011ee575060408051601f3d908101601f19168201909252620011eb918101906200488f565b60015b620012185760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000886565b80620012435760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000886565b505b50565b60008062001257606e62002b77565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200129d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012c3919062004a08565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa15801562001314573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200133a919062004b93565b9050600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b81526004016200137d92919062004a28565b602060405180830381865af41580156200139b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013c191906200488f565b6200140557620013fa846040518060400160405280600a81526020016950726f6475637446656560b01b81525084604001518962002e2c565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091620014439190899060040162004a28565b602060405180830381865af415801562001461573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200148791906200488f565b620014ce57620014c3846040518060400160405280600d81526020016c50726f63657373696e6746656560981b81525084606001518862002e2c565b506060810184905260015b8015620015de57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001514573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200153a919062004a08565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b81526004016200156c9392919062004b2e565b600060405180830381600087803b1580156200158757600080fd5b505af11580156200159c573d6000803e3d6000fd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b505050505050565b6200112a6000848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015620010fd573d6000803e3d6000fd5b336200165a600080516020620058e0833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614620016975760405162d1953b60e31b81526001600160a01b038216600482015260240162000886565b816001600160a01b03163b600003620016cf576040516361798f2f60e11b81526001600160a01b038316600482015260240162000886565b62001243826200300f565b600080600080516020620058c083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156200174c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200177291906200488f565b1562001803576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015620017d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620017fd919062004a08565b91505090565b54600160601b90046001600160a01b0316919050565b6200182362002b34565b620018a883846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001867573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200188d919062004826565b603c6000856040518060200160405280600081525062000a1a565b6001600160a01b03821615620018c957620018c38262003071565b62001a44565b6000620018de6001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156200193f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001965919062004c82565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015620019ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620019d1919062004a08565b905062001a42816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001a16573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001a3c919062004a08565b62003071565b505b62001a56634a531f3360e01b620009db565b6200112a63b68d180960e01b620009db565b600080516020620058e0833981519152805460009190600160a01b900460ff1662001a95576000620017fd565b638fb3603760e01b91505090565b565b604080516002808252606082018352339260009291906020830190803683375050604080516002808252606082019092529293506000929150602082015b606081526020019060019003908162001ae357905050905062001b0562003086565b8260008151811062001b1b5762001b1b62004ca2565b6001600160401b039092166020928302919091019091015262001b45635b5a095d60e11b62003101565b8160008151811062001b5b5762001b5b62004ca2565b602002602001018190525062001b7062003158565b8260018151811062001b865762001b8662004ca2565b6001600160401b039092166020928302919091019091015262001bb0637c07103960e11b62003101565b8160018151811062001bc65762001bc662004ca2565b6020026020010181905250620015de8362001bdf607890565b62001be962003086565b858562003195565b60008062001c00608c62002b77565b925050915060008062001c4b836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000cbe573d6000803e3d6000fd5b91509150600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b815260040162001c9092919062004a28565b602060405180830381865af415801562001cae573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001cd491906200488f565b62001d155762001d0a8360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b62002e2c565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162001d5391908b9060040162004a28565b602060405180830381865af415801562001d71573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d9791906200488f565b62001ddb5762001dd0836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a62002e2c565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162001e1a91908a9060040162004a28565b602060405180830381865af415801562001e38573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e5e91906200488f565b62001ea85762001e9c836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508461010001518962002e2c565b50610100810185905260015b801562000abb57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001eee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f14919062004a08565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040162001f469392919062004b2e565b600060405180830381600087803b15801562001f6157600080fd5b505af115801562001f76573d6000803e3d6000fd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b604080516002808252606082018352339260009291906020830190803683375050604080516002808252606082019092529293506000929150602082015b606081526020019060019003908162001fff5790505090506200202162003667565b8260008151811062002037576200203762004ca2565b6001600160401b039092166020928302919091019091015262002061634133c3b360e11b62003101565b8160008151811062002077576200207762004ca2565b60200260200101819052506200208c620036a2565b82600181518110620020a257620020a262004ca2565b6001600160401b0390921660209283029190910190910152620020cc639e2177a760e01b62003101565b81600181518110620020e257620020e262004ca2565b60200260200101819052506000806200211085620020fe608c90565b6200210862003667565b878762003195565b9250925050816001600160a01b0316637892982382876001600160a01b03166385ba83446040518163ffffffff1660e01b81526004016101c060405180830381865afa15801562002165573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200218b919062004cb8565b6040518363ffffffff1660e01b8152600401620021aa92919062004d92565b600060405180830381600087803b158015620021c557600080fd5b505af1158015620021da573d6000803e3d6000fd5b505050505050505050565b600080620021f4606462002b77565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200223a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002260919062004a08565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c390602401600060405180830381865afa158015620022b0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620022da919081019062004ebe565b60808101519091506001600160a01b0385166200230a5760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b038116620023325760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b031603620023655760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620023c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023e8919062004a08565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b81526004016200241a9392919062005021565b600060405180830381600087803b1580156200243557600080fd5b505af11580156200244a573d6000803e3d6000fd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b6040805160018082528183019092523391600091906020808301908036833750506040805160018082528183019092529293506000929150602082015b6060815260200190600190039081620024e557905050905062002507620036df565b826000815181106200251d576200251d62004ca2565b6001600160401b039092166020928302919091019091015262002547635b5a095d60e11b62003101565b816000815181106200255d576200255d62004ca2565b602002602001018190525060008060006200258d866200257b606e90565b62002585620036df565b888862003195565b9250925092506000866001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa158015620025d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025fb919062004b93565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f906200262e908590859060040162005058565b600060405180830381600087803b1580156200264957600080fd5b505af11580156200265e573d6000803e3d6000fd5b505050506200267484848360000151856200371b565b62000fa784848360200151856200371b565b6200269062002b34565b6200269b816200112f565b620026a562000c1c565b6001600160a01b038216620026cd5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020620058c083398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60006200271383836200385e565b905085156200292c576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002775573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200279b91906200488f565b156200282157604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303816000875af1158015620027f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200281f919062004826565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156200287a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028a091906200488f565b15620029265760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303816000875af1158015620028fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002924919062004826565b505b620015de565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002985573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029ab91906200488f565b1562002a315760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303816000875af115801562002a09573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a2f919062004826565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002a8a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002ab091906200488f565b15620015de576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303816000875af115801562002b0e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fa7919062004826565b6000805160206200590083398151915254600160401b900460ff1662001aa357604051631afcd79f60e31b815260040160405180910390fd5b6200026162002b34565b600062002b8362004061565b600062002b986001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa15801562002bdf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002c05919062004826565b925062002c138385620038ef565b8092508193505050806001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002c5a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002c80919062004a08565b6080830151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa15801562002ccb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002cf191906200488f565b1562002d1c57604051637d71120960e11b81526001600160601b038416600482015260240162000886565b9193909250565b600062002d2f6200409f565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c390602401600060405180830381865afa15801562002d7d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002da7919081019062004ebe565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa15801562002dfd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e23919062004b93565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db9462002e73948a948a94929390929062005078565b60405180910390a150505050565b600080516020620059008339815191528054600160401b810460ff1615906001600160401b031660008115801562002eb65750825b90506000826001600160401b0316600114801562002ed35750303b155b90508115801562002ee2575080155b1562002f015760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562002f2c57845460ff60401b1916600160401b1785555b6000808780602001905181019062002f459190620050c1565b909250905062002f588260008b62001819565b62002f6a602862003aae565b62003aae565b600280546001600160a01b0319166001600160a01b039290921691909117905562002f9762002f64604690565b600380546001600160a01b0319166001600160a01b039290921691909117905562002fc96354b2763760e01b620009db565b5050831562000fa757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162000f9e565b600080516020620058e083398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6200307b62002b34565b620012458162003bca565b6040516368aebf7b60e01b81526002600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af4158015620030db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200060b9190620049e8565b6040805160018082528183019092526060916020808301908036833701905050905081816000815181106200313a576200313a62004ca2565b6001600160e01b031990921660209283029190910190910152919050565b6040516368aebf7b60e01b81526108fc600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401620030bd565b600080600080600080620031ab8b8b8b62003bdf565b60025460405163d943342d60e01b815293965091945092506001600160a01b03169063d943342d90620032079085908e9086906004016001600160a01b03938416815260ff929092166020830152909116604082015260600190565b6000604051808303816000875af115801562003227573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620032519190810190620050f5565b600001519350816001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156200329357600080fd5b505af1158015620032a8573d6000803e3d6000fd5b50505050826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015620032eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003311919062004a08565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003352573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003378919062004a08565b94506000826001600160a01b03166390edbd356040518163ffffffff1660e01b8152600401600060405180830381865afa158015620033bb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620033e5919081019062004ebe565b90508060400151604051620033fa90620041c0565b6001600160a01b039091168152602001604051809103906000f08015801562003427573d6000803e3d6000fd5b5081606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003493573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620034b9919062004826565b836040518363ffffffff1660e01b8152600401620034d9929190620051db565b600060405180830381600087803b158015620034f457600080fd5b505af115801562003509573d6000803e3d6000fd5b50505050600360009054906101000a90046001600160a01b03166001600160a01b031663dd38b49e856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003570573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003596919062004826565b8e866001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015620035d6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620036009190810190620051ff565b8c8e6040518663ffffffff1660e01b8152600401620036249594939291906200527d565b600060405180830381600087803b1580156200363f57600080fd5b505af115801562003654573d6000803e3d6000fd5b5050505050505050955095509592505050565b6040516368aebf7b60e01b815260048082015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401620030bd565b6040516368aebf7b60e01b815261096a600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401620030bd565b6040516368aebf7b60e01b81526005600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401620030bd565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af415801562003774573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200379a91906200488f565b620007c05760405163f0ea17c360e01b81526001600160601b03831660048201526000906001600160a01b0386169063f0ea17c390602401600060405180830381865afa158015620037f0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200381a919081019062004ebe565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac90620021aa908690859060ff9060040162005021565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015620038c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038e8919062004826565b9392505050565b620038f962004061565b6000806200390f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506001600160a01b0382169063a48f42e090602401600060405180830381865afa15801562003960573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200398a9190810190620050f5565b925060ff8416606414620039ec57604083015160ff858116911614620039e657604080840151905163b83d92cb60e01b81526001600160601b038716600482015260ff8087166024830152909116604482015260640162000886565b62003a95565b62003a098360400151620039fe606e90565b60ff90811691161490565b8062003a22575062003a228360400151620039fe608c90565b8062003a3b575062003a3b8360400151620039fe607890565b8062003a54575062003a548360400151620039fe608290565b62003a9557604080840151905163b83d92cb60e01b81526001600160601b038716600482015260ff8087166024830152909116604482015260640162000886565b62003aa4836020015162003fc8565b9150509250929050565b600062003ac36001546001600160a01b031690565b6001600160a01b031663d39e60438362003adc62000583565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af415801562003b32573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003b58919062004c82565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801562003b9e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003bc4919062004a08565b92915050565b62003bd462002b34565b62001245816200300f565b600080600062003bf76001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038881166004830152919091169063d272ac1e90602401602060405180830381865afa15801562003c40573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003c66919062004826565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562003cc0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ce691906200488f565b1562003d11576040516322e6526160e11b81526001600160a01b038716600482015260240162000886565b6040516301ffc9a760e01b8152639a29895960e01b60048201528692506001600160a01b038316906301ffc9a790602401602060405180830381865afa15801562003d60573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003d8691906200488f565b62003db0576040516359bff0e360e11b81526001600160a01b038716600482015260240162000886565b6000826001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801562003df1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003e1b9190810190620050f5565b905062003e3381604001518760ff9081169116141590565b1562003e75576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff8089166024830152909116604482015260640162000886565b62003e84816020015162003fc8565b93508060a001519150836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003ecc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ef2919062004a08565b6040516368fc2b7760e11b81526001600160401b03871660048201526001600160a01b038481166024830152919091169063d1f856ee90604401602060405180830381865afa15801562003f4a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003f7091906200488f565b62003fbe576020810151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03861660248201526001600160a01b038316604482015260640162000886565b5093509350939050565b600062003fdd6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156200402d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620040579190810190620050f5565b6080015192915050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60405180610120016040528060006001600160601b0316815260200160006001600160601b03168152602001620040e9604051806040016040528060008152602001600081525090565b81526020016200410c604051806040016040528060008152602001600081525090565b81526020016200412f604051806040016040528060008152602001600081525090565b815260200162004152604051806040016040528060008152602001600081525090565b815260200162004175604051806040016040528060008152602001600081525090565b815260200162004198604051806040016040528060008152602001600081525090565b8152602001620041bb604051806040016040528060008152602001600081525090565b905290565b610566806200535a83390190565b600060208284031215620041e157600080fd5b81356001600160e01b031981168114620038e857600080fd5b60005b8381101562004217578181015183820152602001620041fd565b50506000910152565b600081518084526200423a816020860160208601620041fa565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151620042b860c08401826001600160a01b03169052565b5060c083015160e080840152620042d461010084018262004220565b949350505050565b6001600160a01b03811681146200124557600080fd5b6001600160601b03811681146200124557600080fd5b600080600080608085870312156200431f57600080fd5b84356200432c81620042dc565b935060208501356200433e81620042f2565b925060408501356200435081620042f2565b915060608501356200436281620042f2565b939692955090935050565b60ff811681146200124557600080fd5b80151581146200124557600080fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715620043c757620043c76200438c565b60405290565b60405161012081016001600160401b0381118282101715620043c757620043c76200438c565b60405161016081016001600160401b0381118282101715620043c757620043c76200438c565b60405160c081016001600160401b0381118282101715620043c757620043c76200438c565b60405160e081016001600160401b0381118282101715620043c757620043c76200438c565b604051601f8201601f191681016001600160401b03811182821017156200448e576200448e6200438c565b604052919050565b60006001600160401b03821115620044b257620044b26200438c565b50601f01601f191660200190565b600082601f830112620044d257600080fd5b8135620044e9620044e38262004496565b62004463565b818152846020838601011115620044ff57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c087890312156200453657600080fd5b86356200454381620042dc565b955060208701356200455581620042f2565b9450604087013562004567816200436d565b9350606087013562004579816200437d565b925060808701356200458b81620042dc565b915060a08701356001600160401b03811115620045a757600080fd5b620045b589828a01620044c0565b9150509295509295509295565b600060208284031215620045d557600080fd5b81356001600160401b03811115620045ec57600080fd5b620042d484828501620044c0565b6000604082840312156200460d57600080fd5b62004617620043a2565b9050813581526020820135602082015292915050565b600080608083850312156200464157600080fd5b6200464d8484620045fa565b915062002e238460408501620045fa565b600080604083850312156200467257600080fd5b82356200467f81620042dc565b915060208301356001600160401b038111156200469b57600080fd5b62003aa485828601620044c0565b600080600060608486031215620046bf57600080fd5b8335620046cc81620042dc565b92506020840135620046de81620042f2565b91506040840135620046f081620042f2565b809150509250925092565b6000602082840312156200470e57600080fd5b8135620038e881620042dc565b6000806000606084860312156200473157600080fd5b83356200473e81620042dc565b925060208401356200475081620042dc565b91506040840135620046f081620042dc565b600080600060c084860312156200477857600080fd5b620047848585620045fa565b9250620047958560408601620045fa565b9150620047a68560808601620045fa565b90509250925092565b60008060408385031215620047c357600080fd5b8235620047d081620042dc565b91506020830135620047e281620042dc565b809150509250929050565b6000602082840312156200480057600080fd5b815162ffffff81168114620038e857600080fd5b80516200482181620042f2565b919050565b6000602082840312156200483957600080fd5b8151620038e881620042f2565b600181811c908216806200485b57607f821691505b6020821081036200487c57634e487b7160e01b600052602260045260246000fd5b50919050565b805162004821816200437d565b600060208284031215620048a257600080fd5b8151620038e8816200437d565b601f8211156200112a57600081815260208120601f850160051c81016020861015620048d85750805b601f850160051c820191505b81811015620015de57828155600101620048e4565b81516001600160401b038111156200491557620049156200438c565b6200492d8162004926845462004846565b84620048af565b602080601f8311600181146200496557600084156200494c5750858301515b600019600386901b1c1916600185901b178555620015de565b600085815260208120601f198616915b82811015620049965788860151825594840194600190910190840162004975565b5085821015620049b55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b03811681146200124557600080fd5b80516200482181620049c5565b600060208284031215620049fb57600080fd5b8151620038e881620049c5565b60006020828403121562004a1b57600080fd5b8151620038e881620042dc565b825181526020808401518183015282516040830152820151606082015260808101620038e8565b6001600160601b038151168252602081015162004a7760208401826001600160601b03169052565b50604081015162004a95604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a081015161010062004ae38185018380518252602090810151910152565b60c0830151805161014086015260209081015161016086015260e084015180516101808701528101516101a086015292015180516101c0850152909101516101e09092019190915250565b6001600160601b0384168152610240810162004b4e602083018562004a4f565b60ff8316610220830152949350505050565b60006040828403121562004b7357600080fd5b62004b7d620043a2565b9050815181526020820151602082015292915050565b6000610200828403121562004ba757600080fd5b62004bb1620043cd565b62004bbc8362004814565b815262004bcc6020840162004814565b602082015262004be0846040850162004b60565b604082015262004bf4846080850162004b60565b606082015262004c088460c0850162004b60565b608082015261010062004c1e8582860162004b60565b60a083015262004c3385610140860162004b60565b60c083015262004c4885610180860162004b60565b60e083015262004c5d856101c0860162004b60565b908201529392505050565b80516200482181620042dc565b805162004821816200436d565b60006020828403121562004c9557600080fd5b8151620038e8816200436d565b634e487b7160e01b600052603260045260246000fd5b60006101c0828403121562004ccc57600080fd5b62004cd6620043f3565b62004ce18362004814565b815262004cf160208401620049db565b602082015262004d046040840162004814565b604082015262004d176060840162004882565b606082015262004d2a6080840162004882565b608082015262004d3d60a0840162004882565b60a082015260c083015160c082015260e083015160e082015261010062004d678582860162004b60565b9082015261014062004d7c8585830162004b60565b61012083015262004c5d85610180860162004b60565b6001600160601b03838116825282511660208201526101e0810160208301516001600160401b03811660408401525060408301516001600160601b0381166060840152506060830151801515608084015250608083015180151560a08401525060a083015180151560c08401525060c083015160e083015260e083015161010081818501528085015191505061012062004e388185018380518252602090810151910152565b8401518051610160850152602081015161018085015290505061014083015180516101a084015260208101516101c0840152509392505050565b600082601f83011262004e8457600080fd5b815162004e95620044e38262004496565b81815284602083860101111562004eab57600080fd5b620042d4826020830160208701620041fa565b60006020828403121562004ed157600080fd5b81516001600160401b038082111562004ee957600080fd5b9083019060c0828603121562004efe57600080fd5b62004f0862004419565b82518281111562004f1857600080fd5b62004f268782860162004e72565b82525062004f376020840162004814565b602082015262004f4a6040840162004c68565b604082015262004f5d6060840162004c68565b606082015262004f706080840162004c68565b608082015260a08301518281111562004f8857600080fd5b62004f968782860162004e72565b60a08301525095945050505050565b6000815160c0845262004fbc60c085018262004220565b90506001600160601b036020840151166020850152604083015160018060a01b038082166040870152806060860151166060870152806080860151166080870152505060a083015184820360a086015262005018828262004220565b95945050505050565b6001600160601b038416815260606020820152600062005045606083018562004fa5565b905060ff83166040830152949350505050565b6001600160601b03831681526102208101620038e8602083018462004a4f565b6001600160601b038716815260c0602082015260006200509c60c083018862004220565b90508560408301528460608301528360808301528260a0830152979650505050505050565b60008060408385031215620050d557600080fd5b8251620050e281620042dc565b6020840151909250620047e281620042dc565b6000602082840312156200510857600080fd5b81516001600160401b03808211156200512057600080fd5b9083019060e082860312156200513557600080fd5b6200513f6200443e565b6200514a8362004814565b81526200515a6020840162004814565b60208201526200516d6040840162004c75565b6040820152620051806060840162004882565b6060820152620051936080840162004c68565b6080820152620051a660a0840162004c68565b60a082015260c083015182811115620051be57600080fd5b620051cc8782860162004e72565b60c08301525095945050505050565b6001600160601b0383168152604060208201526000620042d4604083018462004fa5565b6000602082840312156200521257600080fd5b81516001600160401b038111156200522957600080fd5b620042d48482850162004e72565b600081518084526020808501945080840160005b83811015620052725781516001600160401b0316875295820195908201906001016200524b565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152620052b060a084018762004220565b8381036060850152855180825282820190600581901b830184018489016000805b848110156200533257868403601f19018652825180518086529089019089860190845b818110156200531c5783516001600160e01b0319168352928b0192918b0191600101620052f4565b50509689019694505091870191600101620052d1565b505050868103608088015262005349818962005237565b9c9b50505050505050505050505056fe608060405234801561001057600080fd5b5060405161056638038061056683398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b6104d3806100936000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806321df0da7146100465780638d7271c314610065578063c661667d1461007a575b600080fd5b600054604080516001600160a01b039092168252519081900360200190f35b61007861007336600461039c565b61008d565b005b6100786100883660046103f0565b61011f565b60405163046e44af60e11b81526001600160601b03821660048201526101199085908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af41580156100f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101149190610433565b610179565b50505050565b60005460405163046e44af60e11b81526001600160601b0383166004820152610174916001600160a01b0316908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024016100d3565b505050565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610119918691906000906101df90841683610232565b90508051600014158015610204575080806020019051810190610202919061044c565b155b1561017457604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061024083836000610247565b9392505050565b60608147101561026c5760405163cd78605960e01b8152306004820152602401610229565b600080856001600160a01b03168486604051610288919061046e565b60006040518083038185875af1925050503d80600081146102c5576040519150601f19603f3d011682016040523d82523d6000602084013e6102ca565b606091505b50915091506102da8683836102e4565b9695505050505050565b6060826102f9576102f482610340565b610240565b815115801561031057506001600160a01b0384163b155b1561033957604051639996b31560e01b81526001600160a01b0385166004820152602401610229565b5080610240565b8051156103505780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b038116811461038057600080fd5b919050565b80356001600160601b038116811461038057600080fd5b600080600080608085870312156103b257600080fd5b6103bb85610369565b93506103c960208601610369565b92506103d760408601610369565b91506103e560608601610385565b905092959194509250565b60008060006060848603121561040557600080fd5b61040e84610369565b925061041c60208501610369565b915061042a60408501610385565b90509250925092565b60006020828403121561044557600080fd5b5051919050565b60006020828403121561045e57600080fd5b8151801515811461024057600080fd5b6000825160005b8181101561048f5760208186018101518583015201610475565b50600092019182525091905056fea2646970667358221220cef169e5ebf6594361114297bdf3c5c071054018e8f028c23ba2f8f1536ea8ae64736f6c6343000814003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220a870964ad48ed3a2d12bb9c9889407d550703951576f7f616055aa6caa9acb2d64736f6c63430008140033",
1172
+ "deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620002615760003560e01c806374933c2f1162000149578063be495be511620000c7578063deaa59df1162000086578063deaa59df146200054b578063dfd92f8a1462000562578063e618053f14620002e3578063f7c34ee0146200056c578063f83d08ba14620002fa57600080fd5b8063be495be51462000500578063bf7e214f146200050a578063c142a303146200052a578063d56cd3d51462000354578063d7740ee1146200054157600080fd5b80638e32e97911620001145780638e32e979146200049e5780638fb3603714620004b5578063a69df4b514620002fa578063ada9652e14620004d9578063b68d180914620004f057600080fd5b806374933c2f14620003545780637a9e5e4b146200047d578063893d20e8146200049457806389fad8a214620002e357600080fd5b8063329d6e7411620001e3578063644c45e011620001a2578063644c45e014620003f757806367438c501462000421578063675393bf146200043857806367ba1c10146200044f5780636e172807146200046657600080fd5b8063329d6e74146200038257806336fc697e146200039957806337a897ee14620003a357806349bb9e4b14620003ba5780635ab1bd5314620003d157600080fd5b8063138461e01162000230578063138461e014620002fc5780631eff4b221462000306578063214cdb80146200033d57806325e451d3146200035457806327bb7a33146200036b57600080fd5b806301ffc9a714620002665780630d8e6e2c14620002ab5780630fec111c14620002ca57806311a1467714620002e3575b600080fd5b6200029662000277366004620041ce565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620002b562000583565b60405162ffffff9091168152602001620002a2565b620002d462000610565b604051620002a291906200424e565b620002fa620002f436600462004308565b620007b0565b005b620002fa620007c6565b6200032e7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001620002a2565b620002fa6200034e366004620041ce565b620009db565b620002fa6200036536600462004308565b62000a0a565b620002fa6200037c3660046200451c565b62000a1a565b620002fa62000393366004620045c2565b62000ac5565b620002fa62000c1c565b620002fa620003b43660046200462d565b62000c64565b620002fa620003cb3660046200465e565b62000fb0565b6001546001600160a01b03165b6040516001600160a01b039091168152602001620002a2565b600080516020620058c0833981519152546040516001600160601b039091168152602001620002a2565b620002fa62000432366004620046a9565b620010ab565b620002fa62000449366004620046fb565b6200112f565b620002fa620004603660046200462d565b62001248565b620002fa62000477366004620046a9565b620015e6565b620002fa6200048e366004620046fb565b62001638565b620003de620016da565b620002fa620004af3660046200471b565b62001819565b620004bf62001a68565b6040516001600160e01b03199091168152602001620002a2565b6200032e600080516020620058c083398151915281565b60405160648152602001620002a2565b620002fa62001aa5565b600080516020620058e0833981519152546001600160a01b0316620003de565b620002fa6200053b36600462004762565b62001bf1565b620002fa62001fc1565b620002fa6200055c366004620046fb565b620021e5565b620002fa620024a8565b620002fa6200057d366004620047af565b62002686565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015620005e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200060b9190620047ed565b905090565b6200061a62004061565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000694573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006ba919062004826565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00162000704620016da565b6001600160a01b03168152602001826001018054620007239062004846565b80601f0160208091040260200160405190810160405280929190818152602001828054620007519062004846565b8015620007a25780601f106200077657610100808354040283529160200191620007a2565b820191906000526020600020905b8154815290600101906020018083116200078457829003601f168201915b505050505081525091505090565b620007c060008585858562002705565b50505050565b6000600080516020620058c083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562000837573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200085d91906200488f565b156200088f5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b30620008a36001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015620008ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200091291906200488f565b6200093c5760405163b9304b0d60e01b81526001600160a01b038216600482015260240162000886565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801562000991573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009b7919062004826565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b620009e562002b34565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b620007c060018585858562002705565b62000a2462002b34565b62000a30828762002686565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30162000abb8382620048f9565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c62000ae962000583565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801562000b2a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b509190620049e8565b600080516020620059008339815191528054600160401b900460ff168062000b85575080546001600160401b03808416911610155b1562000ba45760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815562000bd08362002b6d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b62000c2662002b34565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b60008062000c73607862002b77565b925050915060008062000ceb836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000cbe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ce4919062004a08565b8562002d23565b91509150600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b815260040162000d3092919062004a28565b602060405180830381865af415801562000d4e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d7491906200488f565b62000dbd5762000db2836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a62002e2c565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162000dfb91908a9060040162004a28565b602060405180830381865af415801562000e19573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e3f91906200488f565b62000e965762000e8b836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a001518962002e2c565b5060a0810185905260015b801562000fa757836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000edc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f02919062004a08565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040162000f349392919062004b2e565b600060405180830381600087803b15801562000f4f57600080fd5b505af115801562000f64573d6000803e3d6000fd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b600080516020620059008339815191528054600160401b810460ff1615906001600160401b031660008115801562000fe55750825b90506000826001600160401b03166001148015620010025750303b155b90508115801562001011575080155b15620010305760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156200105b57845460ff60401b1916600160401b1785555b62001067878762002e81565b831562000fa757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162000f9e565b6200112a6001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015620010fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001123919062004826565b8562002705565b505050565b6200113962002b34565b806001600160a01b03163b600003620011715760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000886565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152633135064760e11b60048201526301ffc9a790602401602060405180830381865afa925050508015620011ee575060408051601f3d908101601f19168201909252620011eb918101906200488f565b60015b620012185760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000886565b80620012435760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000886565b505b50565b60008062001257606e62002b77565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200129d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012c3919062004a08565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa15801562001314573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200133a919062004b93565b9050600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b81526004016200137d92919062004a28565b602060405180830381865af41580156200139b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013c191906200488f565b6200140557620013fa846040518060400160405280600a81526020016950726f6475637446656560b01b81525084604001518962002e2c565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091620014439190899060040162004a28565b602060405180830381865af415801562001461573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200148791906200488f565b620014ce57620014c3846040518060400160405280600d81526020016c50726f63657373696e6746656560981b81525084606001518862002e2c565b506060810184905260015b8015620015de57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001514573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200153a919062004a08565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b81526004016200156c9392919062004b2e565b600060405180830381600087803b1580156200158757600080fd5b505af11580156200159c573d6000803e3d6000fd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b505050505050565b6200112a6000848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015620010fd573d6000803e3d6000fd5b336200165a600080516020620058e0833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614620016975760405162d1953b60e31b81526001600160a01b038216600482015260240162000886565b816001600160a01b03163b600003620016cf576040516361798f2f60e11b81526001600160a01b038316600482015260240162000886565b62001243826200300f565b600080600080516020620058c083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156200174c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200177291906200488f565b1562001803576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015620017d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620017fd919062004a08565b91505090565b54600160601b90046001600160a01b0316919050565b6200182362002b34565b620018a883846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001867573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200188d919062004826565b603c6000856040518060200160405280600081525062000a1a565b6001600160a01b03821615620018c957620018c38262003071565b62001a44565b6000620018de6001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156200193f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001965919062004c82565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015620019ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620019d1919062004a08565b905062001a42816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001a16573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001a3c919062004a08565b62003071565b505b62001a56634a531f3360e01b620009db565b6200112a63b68d180960e01b620009db565b600080516020620058e0833981519152805460009190600160a01b900460ff1662001a95576000620017fd565b638fb3603760e01b91505090565b565b604080516002808252606082018352339260009291906020830190803683375050604080516002808252606082019092529293506000929150602082015b606081526020019060019003908162001ae357905050905062001b0562003086565b8260008151811062001b1b5762001b1b62004ca2565b6001600160401b039092166020928302919091019091015262001b45635b5a095d60e11b62003101565b8160008151811062001b5b5762001b5b62004ca2565b602002602001018190525062001b7062003158565b8260018151811062001b865762001b8662004ca2565b6001600160401b039092166020928302919091019091015262001bb0637c07103960e11b62003101565b8160018151811062001bc65762001bc662004ca2565b6020026020010181905250620015de8362001bdf607890565b62001be962003086565b858562003195565b60008062001c00608c62002b77565b925050915060008062001c4b836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000cbe573d6000803e3d6000fd5b91509150600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b815260040162001c9092919062004a28565b602060405180830381865af415801562001cae573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001cd491906200488f565b62001d155762001d0a8360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b62002e2c565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162001d5391908b9060040162004a28565b602060405180830381865af415801562001d71573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d9791906200488f565b62001ddb5762001dd0836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a62002e2c565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162001e1a91908a9060040162004a28565b602060405180830381865af415801562001e38573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e5e91906200488f565b62001ea85762001e9c836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508461010001518962002e2c565b50610100810185905260015b801562000abb57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001eee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f14919062004a08565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040162001f469392919062004b2e565b600060405180830381600087803b15801562001f6157600080fd5b505af115801562001f76573d6000803e3d6000fd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b604080516002808252606082018352339260009291906020830190803683375050604080516002808252606082019092529293506000929150602082015b606081526020019060019003908162001fff5790505090506200202162003667565b8260008151811062002037576200203762004ca2565b6001600160401b039092166020928302919091019091015262002061634133c3b360e11b62003101565b8160008151811062002077576200207762004ca2565b60200260200101819052506200208c620036a2565b82600181518110620020a257620020a262004ca2565b6001600160401b0390921660209283029190910190910152620020cc639e2177a760e01b62003101565b81600181518110620020e257620020e262004ca2565b60200260200101819052506000806200211085620020fe608c90565b6200210862003667565b878762003195565b9250925050816001600160a01b0316637892982382876001600160a01b03166385ba83446040518163ffffffff1660e01b81526004016101c060405180830381865afa15801562002165573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200218b919062004cb8565b6040518363ffffffff1660e01b8152600401620021aa92919062004d92565b600060405180830381600087803b158015620021c557600080fd5b505af1158015620021da573d6000803e3d6000fd5b505050505050505050565b600080620021f4606462002b77565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200223a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002260919062004a08565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c390602401600060405180830381865afa158015620022b0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620022da919081019062004ebe565b60808101519091506001600160a01b0385166200230a5760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b038116620023325760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b031603620023655760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620023c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620023e8919062004a08565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b81526004016200241a9392919062005021565b600060405180830381600087803b1580156200243557600080fd5b505af11580156200244a573d6000803e3d6000fd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b6040805160018082528183019092523391600091906020808301908036833750506040805160018082528183019092529293506000929150602082015b6060815260200190600190039081620024e557905050905062002507620036df565b826000815181106200251d576200251d62004ca2565b6001600160401b039092166020928302919091019091015262002547635b5a095d60e11b62003101565b816000815181106200255d576200255d62004ca2565b602002602001018190525060008060006200258d866200257b606e90565b62002585620036df565b888862003195565b9250925092506000866001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa158015620025d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025fb919062004b93565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f906200262e908590859060040162005058565b600060405180830381600087803b1580156200264957600080fd5b505af11580156200265e573d6000803e3d6000fd5b505050506200267484848360000151856200371b565b62000fa784848360200151856200371b565b6200269062002b34565b6200269b816200112f565b620026a562000c1c565b6001600160a01b038216620026cd5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020620058c083398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60006200271383836200385e565b905085156200292c576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002775573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200279b91906200488f565b156200282157604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303816000875af1158015620027f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200281f919062004826565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156200287a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028a091906200488f565b15620029265760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303816000875af1158015620028fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002924919062004826565b505b620015de565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002985573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029ab91906200488f565b1562002a315760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303816000875af115801562002a09573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a2f919062004826565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002a8a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002ab091906200488f565b15620015de576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303816000875af115801562002b0e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fa7919062004826565b6000805160206200590083398151915254600160401b900460ff1662001aa357604051631afcd79f60e31b815260040160405180910390fd5b6200026162002b34565b600062002b8362004061565b600062002b986001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa15801562002bdf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002c05919062004826565b925062002c138385620038ef565b8092508193505050806001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002c5a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002c80919062004a08565b6080830151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa15801562002ccb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002cf191906200488f565b1562002d1c57604051637d71120960e11b81526001600160601b038416600482015260240162000886565b9193909250565b600062002d2f6200409f565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c390602401600060405180830381865afa15801562002d7d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002da7919081019062004ebe565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa15801562002dfd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e23919062004b93565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db9462002e73948a948a94929390929062005078565b60405180910390a150505050565b600080516020620059008339815191528054600160401b810460ff1615906001600160401b031660008115801562002eb65750825b90506000826001600160401b0316600114801562002ed35750303b155b90508115801562002ee2575080155b1562002f015760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562002f2c57845460ff60401b1916600160401b1785555b6000808780602001905181019062002f459190620050c1565b909250905062002f588260008b62001819565b62002f6a602862003aae565b62003aae565b600280546001600160a01b0319166001600160a01b039290921691909117905562002f9762002f64604690565b600380546001600160a01b0319166001600160a01b039290921691909117905562002fc96354b2763760e01b620009db565b5050831562000fa757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162000f9e565b600080516020620058e083398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6200307b62002b34565b620012458162003bca565b6040516368aebf7b60e01b81526002600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af4158015620030db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200060b9190620049e8565b6040805160018082528183019092526060916020808301908036833701905050905081816000815181106200313a576200313a62004ca2565b6001600160e01b031990921660209283029190910190910152919050565b6040516368aebf7b60e01b81526108fc600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401620030bd565b600080600080600080620031ab8b8b8b62003bdf565b60025460405163d943342d60e01b815293965091945092506001600160a01b03169063d943342d90620032079085908e9086906004016001600160a01b03938416815260ff929092166020830152909116604082015260600190565b6000604051808303816000875af115801562003227573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620032519190810190620050f5565b600001519350816001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156200329357600080fd5b505af1158015620032a8573d6000803e3d6000fd5b50505050826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015620032eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003311919062004a08565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003352573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003378919062004a08565b94506000826001600160a01b03166390edbd356040518163ffffffff1660e01b8152600401600060405180830381865afa158015620033bb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620033e5919081019062004ebe565b90508060400151604051620033fa90620041c0565b6001600160a01b039091168152602001604051809103906000f08015801562003427573d6000803e3d6000fd5b5081606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003493573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620034b9919062004826565b836040518363ffffffff1660e01b8152600401620034d9929190620051db565b600060405180830381600087803b158015620034f457600080fd5b505af115801562003509573d6000803e3d6000fd5b50505050600360009054906101000a90046001600160a01b03166001600160a01b031663dd38b49e856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003570573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003596919062004826565b8e866001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015620035d6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620036009190810190620051ff565b8c8e6040518663ffffffff1660e01b8152600401620036249594939291906200527d565b600060405180830381600087803b1580156200363f57600080fd5b505af115801562003654573d6000803e3d6000fd5b5050505050505050955095509592505050565b6040516368aebf7b60e01b815260048082015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401620030bd565b6040516368aebf7b60e01b815261096a600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401620030bd565b6040516368aebf7b60e01b81526005600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401620030bd565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af415801562003774573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200379a91906200488f565b620007c05760405163f0ea17c360e01b81526001600160601b03831660048201526000906001600160a01b0386169063f0ea17c390602401600060405180830381865afa158015620037f0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200381a919081019062004ebe565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac90620021aa908690859060ff9060040162005021565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015620038c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038e8919062004826565b9392505050565b620038f962004061565b6000806200390f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506001600160a01b0382169063a48f42e090602401600060405180830381865afa15801562003960573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200398a9190810190620050f5565b925060ff8416606414620039ec57604083015160ff858116911614620039e657604080840151905163b83d92cb60e01b81526001600160601b038716600482015260ff8087166024830152909116604482015260640162000886565b62003a95565b62003a098360400151620039fe606e90565b60ff90811691161490565b8062003a22575062003a228360400151620039fe608c90565b8062003a3b575062003a3b8360400151620039fe607890565b8062003a54575062003a548360400151620039fe608290565b62003a9557604080840151905163b83d92cb60e01b81526001600160601b038716600482015260ff8087166024830152909116604482015260640162000886565b62003aa4836020015162003fc8565b9150509250929050565b600062003ac36001546001600160a01b031690565b6001600160a01b031663d39e60438362003adc62000583565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af415801562003b32573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003b58919062004c82565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801562003b9e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003bc4919062004a08565b92915050565b62003bd462002b34565b62001245816200300f565b600080600062003bf76001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038881166004830152919091169063d272ac1e90602401602060405180830381865afa15801562003c40573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003c66919062004826565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562003cc0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ce691906200488f565b1562003d11576040516322e6526160e11b81526001600160a01b038716600482015260240162000886565b6040516301ffc9a760e01b8152639a29895960e01b60048201528692506001600160a01b038316906301ffc9a790602401602060405180830381865afa15801562003d60573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003d8691906200488f565b62003db0576040516359bff0e360e11b81526001600160a01b038716600482015260240162000886565b6000826001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801562003df1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003e1b9190810190620050f5565b905062003e3381604001518760ff9081169116141590565b1562003e75576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff8089166024830152909116604482015260640162000886565b62003e84816020015162003fc8565b93508060a001519150836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003ecc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ef2919062004a08565b6040516368fc2b7760e11b81526001600160401b03871660048201526001600160a01b038481166024830152919091169063d1f856ee90604401602060405180830381865afa15801562003f4a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003f7091906200488f565b62003fbe576020810151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03861660248201526001600160a01b038316604482015260640162000886565b5093509350939050565b600062003fdd6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156200402d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620040579190810190620050f5565b6080015192915050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b60405180610120016040528060006001600160601b0316815260200160006001600160601b03168152602001620040e9604051806040016040528060008152602001600081525090565b81526020016200410c604051806040016040528060008152602001600081525090565b81526020016200412f604051806040016040528060008152602001600081525090565b815260200162004152604051806040016040528060008152602001600081525090565b815260200162004175604051806040016040528060008152602001600081525090565b815260200162004198604051806040016040528060008152602001600081525090565b8152602001620041bb604051806040016040528060008152602001600081525090565b905290565b610566806200535a83390190565b600060208284031215620041e157600080fd5b81356001600160e01b031981168114620038e857600080fd5b60005b8381101562004217578181015183820152602001620041fd565b50506000910152565b600081518084526200423a816020860160208601620041fa565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151620042b860c08401826001600160a01b03169052565b5060c083015160e080840152620042d461010084018262004220565b949350505050565b6001600160a01b03811681146200124557600080fd5b6001600160601b03811681146200124557600080fd5b600080600080608085870312156200431f57600080fd5b84356200432c81620042dc565b935060208501356200433e81620042f2565b925060408501356200435081620042f2565b915060608501356200436281620042f2565b939692955090935050565b60ff811681146200124557600080fd5b80151581146200124557600080fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715620043c757620043c76200438c565b60405290565b60405161012081016001600160401b0381118282101715620043c757620043c76200438c565b60405161016081016001600160401b0381118282101715620043c757620043c76200438c565b60405160c081016001600160401b0381118282101715620043c757620043c76200438c565b60405160e081016001600160401b0381118282101715620043c757620043c76200438c565b604051601f8201601f191681016001600160401b03811182821017156200448e576200448e6200438c565b604052919050565b60006001600160401b03821115620044b257620044b26200438c565b50601f01601f191660200190565b600082601f830112620044d257600080fd5b8135620044e9620044e38262004496565b62004463565b818152846020838601011115620044ff57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c087890312156200453657600080fd5b86356200454381620042dc565b955060208701356200455581620042f2565b9450604087013562004567816200436d565b9350606087013562004579816200437d565b925060808701356200458b81620042dc565b915060a08701356001600160401b03811115620045a757600080fd5b620045b589828a01620044c0565b9150509295509295509295565b600060208284031215620045d557600080fd5b81356001600160401b03811115620045ec57600080fd5b620042d484828501620044c0565b6000604082840312156200460d57600080fd5b62004617620043a2565b9050813581526020820135602082015292915050565b600080608083850312156200464157600080fd5b6200464d8484620045fa565b915062002e238460408501620045fa565b600080604083850312156200467257600080fd5b82356200467f81620042dc565b915060208301356001600160401b038111156200469b57600080fd5b62003aa485828601620044c0565b600080600060608486031215620046bf57600080fd5b8335620046cc81620042dc565b92506020840135620046de81620042f2565b91506040840135620046f081620042f2565b809150509250925092565b6000602082840312156200470e57600080fd5b8135620038e881620042dc565b6000806000606084860312156200473157600080fd5b83356200473e81620042dc565b925060208401356200475081620042dc565b91506040840135620046f081620042dc565b600080600060c084860312156200477857600080fd5b620047848585620045fa565b9250620047958560408601620045fa565b9150620047a68560808601620045fa565b90509250925092565b60008060408385031215620047c357600080fd5b8235620047d081620042dc565b91506020830135620047e281620042dc565b809150509250929050565b6000602082840312156200480057600080fd5b815162ffffff81168114620038e857600080fd5b80516200482181620042f2565b919050565b6000602082840312156200483957600080fd5b8151620038e881620042f2565b600181811c908216806200485b57607f821691505b6020821081036200487c57634e487b7160e01b600052602260045260246000fd5b50919050565b805162004821816200437d565b600060208284031215620048a257600080fd5b8151620038e8816200437d565b601f8211156200112a57600081815260208120601f850160051c81016020861015620048d85750805b601f850160051c820191505b81811015620015de57828155600101620048e4565b81516001600160401b038111156200491557620049156200438c565b6200492d8162004926845462004846565b84620048af565b602080601f8311600181146200496557600084156200494c5750858301515b600019600386901b1c1916600185901b178555620015de565b600085815260208120601f198616915b82811015620049965788860151825594840194600190910190840162004975565b5085821015620049b55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b03811681146200124557600080fd5b80516200482181620049c5565b600060208284031215620049fb57600080fd5b8151620038e881620049c5565b60006020828403121562004a1b57600080fd5b8151620038e881620042dc565b825181526020808401518183015282516040830152820151606082015260808101620038e8565b6001600160601b038151168252602081015162004a7760208401826001600160601b03169052565b50604081015162004a95604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a081015161010062004ae38185018380518252602090810151910152565b60c0830151805161014086015260209081015161016086015260e084015180516101808701528101516101a086015292015180516101c0850152909101516101e09092019190915250565b6001600160601b0384168152610240810162004b4e602083018562004a4f565b60ff8316610220830152949350505050565b60006040828403121562004b7357600080fd5b62004b7d620043a2565b9050815181526020820151602082015292915050565b6000610200828403121562004ba757600080fd5b62004bb1620043cd565b62004bbc8362004814565b815262004bcc6020840162004814565b602082015262004be0846040850162004b60565b604082015262004bf4846080850162004b60565b606082015262004c088460c0850162004b60565b608082015261010062004c1e8582860162004b60565b60a083015262004c3385610140860162004b60565b60c083015262004c4885610180860162004b60565b60e083015262004c5d856101c0860162004b60565b908201529392505050565b80516200482181620042dc565b805162004821816200436d565b60006020828403121562004c9557600080fd5b8151620038e8816200436d565b634e487b7160e01b600052603260045260246000fd5b60006101c0828403121562004ccc57600080fd5b62004cd6620043f3565b62004ce18362004814565b815262004cf160208401620049db565b602082015262004d046040840162004814565b604082015262004d176060840162004882565b606082015262004d2a6080840162004882565b608082015262004d3d60a0840162004882565b60a082015260c083015160c082015260e083015160e082015261010062004d678582860162004b60565b9082015261014062004d7c8585830162004b60565b61012083015262004c5d85610180860162004b60565b6001600160601b03838116825282511660208201526101e0810160208301516001600160401b03811660408401525060408301516001600160601b0381166060840152506060830151801515608084015250608083015180151560a08401525060a083015180151560c08401525060c083015160e083015260e083015161010081818501528085015191505061012062004e388185018380518252602090810151910152565b8401518051610160850152602081015161018085015290505061014083015180516101a084015260208101516101c0840152509392505050565b600082601f83011262004e8457600080fd5b815162004e95620044e38262004496565b81815284602083860101111562004eab57600080fd5b620042d4826020830160208701620041fa565b60006020828403121562004ed157600080fd5b81516001600160401b038082111562004ee957600080fd5b9083019060c0828603121562004efe57600080fd5b62004f0862004419565b82518281111562004f1857600080fd5b62004f268782860162004e72565b82525062004f376020840162004814565b602082015262004f4a6040840162004c68565b604082015262004f5d6060840162004c68565b606082015262004f706080840162004c68565b608082015260a08301518281111562004f8857600080fd5b62004f968782860162004e72565b60a08301525095945050505050565b6000815160c0845262004fbc60c085018262004220565b90506001600160601b036020840151166020850152604083015160018060a01b038082166040870152806060860151166060870152806080860151166080870152505060a083015184820360a086015262005018828262004220565b95945050505050565b6001600160601b038416815260606020820152600062005045606083018562004fa5565b905060ff83166040830152949350505050565b6001600160601b03831681526102208101620038e8602083018462004a4f565b6001600160601b038716815260c0602082015260006200509c60c083018862004220565b90508560408301528460608301528360808301528260a0830152979650505050505050565b60008060408385031215620050d557600080fd5b8251620050e281620042dc565b6020840151909250620047e281620042dc565b6000602082840312156200510857600080fd5b81516001600160401b03808211156200512057600080fd5b9083019060e082860312156200513557600080fd5b6200513f6200443e565b6200514a8362004814565b81526200515a6020840162004814565b60208201526200516d6040840162004c75565b6040820152620051806060840162004882565b6060820152620051936080840162004c68565b6080820152620051a660a0840162004c68565b60a082015260c083015182811115620051be57600080fd5b620051cc8782860162004e72565b60c08301525095945050505050565b6001600160601b0383168152604060208201526000620042d4604083018462004fa5565b6000602082840312156200521257600080fd5b81516001600160401b038111156200522957600080fd5b620042d48482850162004e72565b600081518084526020808501945080840160005b83811015620052725781516001600160401b0316875295820195908201906001016200524b565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152620052b060a084018762004220565b8381036060850152855180825282820190600581901b830184018489016000805b848110156200533257868403601f19018652825180518086529089019089860190845b818110156200531c5783516001600160e01b0319168352928b0192918b0191600101620052f4565b50509689019694505091870191600101620052d1565b505050868103608088015262005349818962005237565b9c9b50505050505050505050505056fe608060405234801561001057600080fd5b5060405161056638038061056683398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b6104d3806100936000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806321df0da7146100465780638d7271c314610065578063c661667d1461007a575b600080fd5b600054604080516001600160a01b039092168252519081900360200190f35b61007861007336600461039c565b61008d565b005b6100786100883660046103f0565b61011f565b60405163046e44af60e11b81526001600160601b03821660048201526101199085908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af41580156100f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101149190610433565b610179565b50505050565b60005460405163046e44af60e11b81526001600160601b0383166004820152610174916001600160a01b0316908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024016100d3565b505050565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610119918691906000906101df90841683610232565b90508051600014158015610204575080806020019051810190610202919061044c565b155b1561017457604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061024083836000610247565b9392505050565b60608147101561026c5760405163cd78605960e01b8152306004820152602401610229565b600080856001600160a01b03168486604051610288919061046e565b60006040518083038185875af1925050503d80600081146102c5576040519150601f19603f3d011682016040523d82523d6000602084013e6102ca565b606091505b50915091506102da8683836102e4565b9695505050505050565b6060826102f9576102f482610340565b610240565b815115801561031057506001600160a01b0384163b155b1561033957604051639996b31560e01b81526001600160a01b0385166004820152602401610229565b5080610240565b8051156103505780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b038116811461038057600080fd5b919050565b80356001600160601b038116811461038057600080fd5b600080600080608085870312156103b257600080fd5b6103bb85610369565b93506103c960208601610369565b92506103d760408601610369565b91506103e560608601610385565b905092959194509250565b60008060006060848603121561040557600080fd5b61040e84610369565b925061041c60208501610369565b915061042a60408501610385565b90509250925092565b60006020828403121561044557600080fd5b5051919050565b60006020828403121561045e57600080fd5b8151801515811461024057600080fd5b6000825160005b8181101561048f5760208186018101518583015201610475565b50600092019182525091905056fea2646970667358221220cef169e5ebf6594361114297bdf3c5c071054018e8f028c23ba2f8f1536ea8ae64736f6c6343000814003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220a870964ad48ed3a2d12bb9c9889407d550703951576f7f616055aa6caa9acb2d64736f6c63430008140033",
1173
+ "linkReferences": {
1174
+ "contracts/type/Amount.sol": {
1175
+ "AmountLib": [
1176
+ {
1177
+ "length": 20,
1178
+ "start": 4507
1179
+ },
1180
+ {
1181
+ "length": 20,
1182
+ "start": 5846
1183
+ },
1184
+ {
1185
+ "length": 20,
1186
+ "start": 10272
1187
+ },
1188
+ {
1189
+ "length": 20,
1190
+ "start": 10533
1191
+ },
1192
+ {
1193
+ "length": 20,
1194
+ "start": 10800
1195
+ },
1196
+ {
1197
+ "length": 20,
1198
+ "start": 11061
1199
+ },
1200
+ {
1201
+ "length": 20,
1202
+ "start": 14701
1203
+ },
1204
+ {
1205
+ "length": 20,
1206
+ "start": 21896
1207
+ },
1208
+ {
1209
+ "length": 20,
1210
+ "start": 22053
1211
+ }
1212
+ ]
1213
+ },
1214
+ "contracts/type/Fee.sol": {
1215
+ "FeeLib": [
1216
+ {
1217
+ "length": 20,
1218
+ "start": 3545
1219
+ },
1220
+ {
1221
+ "length": 20,
1222
+ "start": 3766
1223
+ },
1224
+ {
1225
+ "length": 20,
1226
+ "start": 5158
1227
+ },
1228
+ {
1229
+ "length": 20,
1230
+ "start": 5374
1231
+ },
1232
+ {
1233
+ "length": 20,
1234
+ "start": 7481
1235
+ },
1236
+ {
1237
+ "length": 20,
1238
+ "start": 7694
1239
+ },
1240
+ {
1241
+ "length": 20,
1242
+ "start": 7893
1243
+ }
1244
+ ]
1245
+ },
1246
+ "contracts/type/NftId.sol": {
1247
+ "NftIdLib": [
1248
+ {
1249
+ "length": 20,
1250
+ "start": 1842
1251
+ },
1252
+ {
1253
+ "length": 20,
1254
+ "start": 2274
1255
+ },
1256
+ {
1257
+ "length": 20,
1258
+ "start": 6135
1259
+ },
1260
+ {
1261
+ "length": 20,
1262
+ "start": 14367
1263
+ },
1264
+ {
1265
+ "length": 20,
1266
+ "start": 15723
1267
+ }
1268
+ ]
1269
+ },
1270
+ "contracts/type/RoleId.sol": {
1271
+ "RoleIdLib": [
1272
+ {
1273
+ "length": 20,
1274
+ "start": 12677
1275
+ },
1276
+ {
1277
+ "length": 20,
1278
+ "start": 12888
1279
+ },
1280
+ {
1281
+ "length": 20,
1282
+ "start": 14181
1283
+ },
1284
+ {
1285
+ "length": 20,
1286
+ "start": 14242
1287
+ },
1288
+ {
1289
+ "length": 20,
1290
+ "start": 14302
1291
+ }
1292
+ ]
1293
+ },
1294
+ "contracts/type/Version.sol": {
1295
+ "VersionLib": [
1296
+ {
1297
+ "length": 20,
1298
+ "start": 1680
1299
+ },
1300
+ {
1301
+ "length": 20,
1302
+ "start": 2989
1303
+ },
1304
+ {
1305
+ "length": 20,
1306
+ "start": 15325
1307
+ }
1308
+ ],
1309
+ "VersionPartLib": [
1310
+ {
1311
+ "length": 20,
1312
+ "start": 6634
1313
+ }
1314
+ ]
1315
+ }
1316
+ },
1317
+ "deployedLinkReferences": {
1318
+ "contracts/type/Amount.sol": {
1319
+ "AmountLib": [
1320
+ {
1321
+ "length": 20,
1322
+ "start": 4277
1323
+ },
1324
+ {
1325
+ "length": 20,
1326
+ "start": 5616
1327
+ },
1328
+ {
1329
+ "length": 20,
1330
+ "start": 10042
1331
+ },
1332
+ {
1333
+ "length": 20,
1334
+ "start": 10303
1335
+ },
1336
+ {
1337
+ "length": 20,
1338
+ "start": 10570
1339
+ },
1340
+ {
1341
+ "length": 20,
1342
+ "start": 10831
1343
+ },
1344
+ {
1345
+ "length": 20,
1346
+ "start": 14471
1347
+ },
1348
+ {
1349
+ "length": 20,
1350
+ "start": 21666
1351
+ },
1352
+ {
1353
+ "length": 20,
1354
+ "start": 21823
1355
+ }
1356
+ ]
1357
+ },
1358
+ "contracts/type/Fee.sol": {
1359
+ "FeeLib": [
1360
+ {
1361
+ "length": 20,
1362
+ "start": 3315
1363
+ },
1364
+ {
1365
+ "length": 20,
1366
+ "start": 3536
1367
+ },
1368
+ {
1369
+ "length": 20,
1370
+ "start": 4928
1371
+ },
1372
+ {
1373
+ "length": 20,
1374
+ "start": 5144
1375
+ },
1376
+ {
1377
+ "length": 20,
1378
+ "start": 7251
1379
+ },
1380
+ {
1381
+ "length": 20,
1382
+ "start": 7464
1383
+ },
1384
+ {
1385
+ "length": 20,
1386
+ "start": 7663
1387
+ }
1388
+ ]
1389
+ },
1390
+ "contracts/type/NftId.sol": {
1391
+ "NftIdLib": [
1392
+ {
1393
+ "length": 20,
1394
+ "start": 1612
1395
+ },
1396
+ {
1397
+ "length": 20,
1398
+ "start": 2044
1399
+ },
1400
+ {
1401
+ "length": 20,
1402
+ "start": 5905
1403
+ },
1404
+ {
1405
+ "length": 20,
1406
+ "start": 14137
1407
+ },
1408
+ {
1409
+ "length": 20,
1410
+ "start": 15493
1411
+ }
1412
+ ]
1413
+ },
1414
+ "contracts/type/RoleId.sol": {
1415
+ "RoleIdLib": [
1416
+ {
1417
+ "length": 20,
1418
+ "start": 12447
1419
+ },
1420
+ {
1421
+ "length": 20,
1422
+ "start": 12658
1423
+ },
1424
+ {
1425
+ "length": 20,
1426
+ "start": 13951
1427
+ },
1428
+ {
1429
+ "length": 20,
1430
+ "start": 14012
1431
+ },
1432
+ {
1433
+ "length": 20,
1434
+ "start": 14072
1435
+ }
1436
+ ]
1437
+ },
1438
+ "contracts/type/Version.sol": {
1439
+ "VersionLib": [
1440
+ {
1441
+ "length": 20,
1442
+ "start": 1450
1443
+ },
1444
+ {
1445
+ "length": 20,
1446
+ "start": 2759
1447
+ },
1448
+ {
1449
+ "length": 20,
1450
+ "start": 15095
1451
+ }
1452
+ ],
1453
+ "VersionPartLib": [
1454
+ {
1455
+ "length": 20,
1456
+ "start": 6404
1457
+ }
1458
+ ]
1459
+ }
1460
+ }
1461
+ }