@etherisc/gif-next 0.0.2-f13c010-035 → 0.0.2-f13d67f-541

Sign up to get free protection for your applications and to get access to all the features.
Files changed (560) hide show
  1. package/README.md +90 -317
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +810 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +729 -287
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2008 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +438 -35
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
  17. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +560 -220
  19. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +191 -21
  21. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +256 -16
  23. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +426 -27
  25. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +132 -300
  27. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +427 -53
  29. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +64 -173
  31. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +585 -231
  33. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +190 -78
  35. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +44 -135
  37. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +401 -78
  39. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
  40. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
  41. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +160 -224
  42. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
  43. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +426 -52
  44. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
  45. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +308 -337
  46. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
  47. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +426 -52
  48. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
  49. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.dbg.json +4 -0
  50. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.json +408 -0
  51. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.dbg.json +4 -0
  52. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.json +1198 -0
  53. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.dbg.json +4 -0
  54. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.json +849 -0
  55. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.dbg.json +4 -0
  56. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.json +1466 -0
  57. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.dbg.json +4 -0
  58. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.json +844 -0
  59. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.dbg.json +4 -0
  60. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.json +2185 -0
  61. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.dbg.json +4 -0
  62. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.json +844 -0
  63. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.dbg.json +4 -0
  64. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.json +376 -0
  65. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.dbg.json +4 -0
  66. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.json +901 -0
  67. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
  68. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +215 -257
  69. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  70. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +844 -0
  71. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
  72. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +95 -165
  73. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
  74. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +278 -233
  75. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  76. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +844 -0
  77. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
  78. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +946 -466
  79. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  80. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +844 -0
  81. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
  82. package/artifacts/contracts/{shared/IKeyValueStore.sol/IKeyValueStore.json → instance/BaseStore.sol/BaseStore.json} +51 -229
  83. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
  84. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +193 -45
  85. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
  86. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +304 -0
  87. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  88. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +551 -50
  89. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  90. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +417 -17
  91. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  92. package/artifacts/contracts/instance/Instance.sol/Instance.json +615 -105
  93. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
  94. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1121 -374
  95. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
  96. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +379 -68
  97. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  98. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1127 -557
  99. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  100. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +434 -81
  101. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  102. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +119 -49
  103. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  104. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +1286 -1925
  105. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
  106. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3427 -0
  107. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  108. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  109. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
  110. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
  111. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
  112. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
  113. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
  114. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
  115. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
  116. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
  117. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
  118. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  119. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  120. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  121. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  122. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  123. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  124. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  125. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
  126. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
  127. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +83 -175
  128. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
  129. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +425 -54
  130. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
  131. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
  132. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +48 -74
  133. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
  134. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +56 -3
  135. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
  136. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +67 -111
  137. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
  138. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +157 -81
  139. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
  140. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +154 -46
  141. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
  142. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +106 -173
  143. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
  144. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +426 -52
  145. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
  146. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +317 -344
  147. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  148. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +144 -92
  149. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
  150. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +219 -146
  151. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  152. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +63 -128
  153. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
  154. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +380 -214
  155. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
  156. package/artifacts/contracts/pool/Pool.sol/Pool.json +76 -159
  157. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  158. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  159. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
  160. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +621 -413
  161. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  162. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +186 -66
  163. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  164. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +327 -62
  165. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  166. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +143 -43
  167. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
  168. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +199 -223
  169. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
  170. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +426 -52
  171. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
  172. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +294 -189
  173. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  174. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +151 -83
  175. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  176. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +268 -10
  177. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
  178. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +181 -19
  179. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  180. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +167 -56
  181. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
  182. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +77 -3
  183. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  184. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +175 -181
  185. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
  186. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +258 -22
  187. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
  188. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +296 -194
  189. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  190. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  191. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  192. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +169 -77
  193. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
  194. package/artifacts/contracts/product/PricingService.sol/PricingService.json +139 -114
  195. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
  196. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +131 -59
  197. package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
  198. package/artifacts/contracts/product/Product.sol/Product.json +193 -217
  199. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
  200. package/artifacts/contracts/product/RiskService.sol/RiskService.json +338 -87
  201. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
  202. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +141 -41
  203. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  204. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
  205. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  206. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +78 -19
  207. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  208. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +56 -3
  209. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  210. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  211. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  212. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  213. package/artifacts/contracts/registry/Registry.sol/Registry.json +116 -57
  214. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
  215. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +848 -479
  216. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  217. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1137 -0
  218. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  219. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +89 -37
  220. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  221. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +119 -39
  222. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  223. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2271 -0
  224. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
  225. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
  226. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
  227. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +398 -64
  228. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
  229. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +459 -26
  230. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  231. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +120 -60
  232. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
  233. package/artifacts/contracts/shared/Component.sol/Component.json +66 -96
  234. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
  235. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +308 -542
  236. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
  237. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +155 -83
  238. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
  239. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +544 -4
  240. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  241. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  242. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  243. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  244. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  245. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  246. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
  247. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +48 -60
  248. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +171 -356
  250. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
  251. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +48 -74
  252. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  253. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  254. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -0
  255. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  256. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  257. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +139 -1
  258. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  259. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  260. package/artifacts/contracts/shared/IService.sol/IService.json +56 -3
  261. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
  262. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -2
  263. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
  264. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +66 -110
  265. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  266. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
  267. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
  268. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  269. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
  270. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  271. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
  272. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  273. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +137 -62
  274. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  275. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
  276. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  277. package/artifacts/contracts/shared/Service.sol/Service.json +51 -11
  278. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  279. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +289 -112
  280. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  281. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  282. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
  283. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +70 -30
  284. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
  285. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1446 -164
  286. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
  287. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +214 -110
  288. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
  289. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
  290. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
  291. package/artifacts/contracts/staking/Staking.sol/Staking.json +1583 -296
  292. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
  294. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
  295. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +160 -69
  296. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
  297. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +294 -177
  298. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
  299. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +257 -162
  300. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
  301. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +122 -46
  302. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
  303. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +1632 -818
  304. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
  305. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +309 -0
  306. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
  307. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +160 -88
  308. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  309. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
  310. package/artifacts/contracts/type/Amount.sol/AmountLib.json +11 -11
  311. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  312. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +64 -19
  313. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  314. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  315. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  316. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
  317. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  318. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
  319. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
  320. package/artifacts/contracts/type/Fee.sol/FeeLib.json +94 -38
  321. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
  322. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
  323. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  324. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  325. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
  326. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +23 -4
  327. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  328. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
  329. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  330. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +49 -50
  331. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  332. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
  333. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
  334. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +23 -4
  335. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
  336. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
  337. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.dbg.json +4 -0
  338. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.json +33 -0
  339. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
  340. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +69 -7
  341. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
  342. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +42 -157
  343. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
  344. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +64 -2
  345. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
  346. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
  347. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
  348. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
  349. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
  350. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
  351. package/artifacts/contracts/type/String.sol/StrLib.json +69 -2
  352. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
  353. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +37 -5
  354. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
  355. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +61 -37
  356. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
  357. package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
  358. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
  359. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +101 -2
  360. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
  361. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
  362. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  363. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +95 -25
  364. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  365. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
  366. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
  367. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
  368. package/contracts/accounting/AccountingService.sol +274 -0
  369. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  370. package/contracts/accounting/IAccountingService.sol +47 -0
  371. package/contracts/authorization/AccessAdmin.sol +389 -306
  372. package/contracts/authorization/AccessAdminLib.sol +678 -0
  373. package/contracts/authorization/AccessManagerCloneable.sol +128 -4
  374. package/contracts/authorization/Authorization.sol +161 -260
  375. package/contracts/authorization/IAccess.sol +29 -12
  376. package/contracts/authorization/IAccessAdmin.sol +89 -84
  377. package/contracts/authorization/IAuthorization.sol +9 -43
  378. package/contracts/authorization/IServiceAuthorization.sol +55 -17
  379. package/contracts/authorization/ServiceAuthorization.sol +228 -34
  380. package/contracts/distribution/BasicDistribution.sol +19 -18
  381. package/contracts/distribution/BasicDistributionAuthorization.sol +30 -10
  382. package/contracts/distribution/Distribution.sol +45 -85
  383. package/contracts/distribution/DistributionService.sol +192 -99
  384. package/contracts/distribution/DistributionServiceManager.sol +1 -1
  385. package/contracts/distribution/IDistributionComponent.sol +3 -10
  386. package/contracts/distribution/IDistributionService.sol +38 -24
  387. package/contracts/examples/fire/FirePool.sol +21 -8
  388. package/contracts/examples/fire/FirePoolAuthorization.sol +2 -1
  389. package/contracts/examples/fire/FireProduct.sol +38 -20
  390. package/contracts/examples/fire/FireProductAuthorization.sol +2 -1
  391. package/contracts/examples/flight/FlightLib.sol +279 -0
  392. package/contracts/examples/flight/FlightOracle.sol +168 -0
  393. package/contracts/examples/flight/FlightOracleAuthorization.sol +34 -0
  394. package/contracts/examples/flight/FlightPool.sol +89 -0
  395. package/contracts/examples/flight/FlightPoolAuthorization.sol +37 -0
  396. package/contracts/examples/flight/FlightProduct.sol +470 -0
  397. package/contracts/examples/flight/FlightProductAuthorization.sol +44 -0
  398. package/contracts/examples/flight/FlightUSD.sol +26 -0
  399. package/contracts/examples/flight/originalV1.sol +396 -0
  400. package/contracts/examples/unpermissioned/SimpleDistribution.sol +39 -8
  401. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  402. package/contracts/examples/unpermissioned/SimpleOracle.sol +4 -8
  403. package/contracts/examples/unpermissioned/SimplePool.sol +32 -6
  404. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  405. package/contracts/examples/unpermissioned/SimpleProduct.sol +132 -46
  406. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  407. package/contracts/instance/BaseStore.sol +93 -0
  408. package/contracts/instance/BundleSet.sol +42 -38
  409. package/contracts/instance/IBaseStore.sol +37 -0
  410. package/contracts/instance/IInstance.sol +109 -19
  411. package/contracts/instance/IInstanceService.sol +61 -14
  412. package/contracts/instance/Instance.sol +184 -65
  413. package/contracts/instance/InstanceAdmin.sol +221 -193
  414. package/contracts/instance/InstanceAuthorizationV3.sol +153 -72
  415. package/contracts/instance/InstanceReader.sol +447 -314
  416. package/contracts/instance/InstanceService.sol +315 -214
  417. package/contracts/instance/InstanceServiceManager.sol +1 -1
  418. package/contracts/instance/InstanceStore.sol +152 -116
  419. package/contracts/instance/ProductStore.sol +290 -0
  420. package/contracts/instance/RiskSet.sol +126 -0
  421. package/contracts/instance/TargetNames.sol +10 -0
  422. package/contracts/instance/base/BalanceStore.sol +4 -6
  423. package/contracts/instance/base/ObjectCounter.sol +1 -2
  424. package/contracts/instance/base/ObjectLifecycle.sol +6 -8
  425. package/contracts/instance/base/ObjectSet.sol +31 -33
  426. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  427. package/contracts/instance/module/IBundle.sol +6 -5
  428. package/contracts/instance/module/IComponents.sol +19 -10
  429. package/contracts/instance/module/IDistribution.sol +21 -8
  430. package/contracts/instance/module/IPolicy.sol +28 -7
  431. package/contracts/instance/module/IRisk.sol +5 -0
  432. package/contracts/oracle/BasicOracle.sol +3 -6
  433. package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
  434. package/contracts/oracle/IOracle.sol +9 -4
  435. package/contracts/oracle/IOracleService.sol +12 -12
  436. package/contracts/oracle/Oracle.sol +5 -9
  437. package/contracts/oracle/OracleService.sol +98 -79
  438. package/contracts/oracle/OracleServiceManager.sol +1 -1
  439. package/contracts/pool/BasicPool.sol +26 -19
  440. package/contracts/pool/BasicPoolAuthorization.sol +34 -10
  441. package/contracts/pool/BundleService.sol +75 -182
  442. package/contracts/pool/BundleServiceManager.sol +1 -1
  443. package/contracts/pool/IBundleService.sol +28 -55
  444. package/contracts/pool/IPoolComponent.sol +1 -7
  445. package/contracts/pool/IPoolService.sol +65 -62
  446. package/contracts/pool/Pool.sol +111 -115
  447. package/contracts/pool/PoolLib.sol +341 -0
  448. package/contracts/pool/PoolService.sol +299 -229
  449. package/contracts/pool/PoolServiceManager.sol +1 -1
  450. package/contracts/product/ApplicationService.sol +93 -25
  451. package/contracts/product/ApplicationServiceManager.sol +1 -1
  452. package/contracts/product/BasicProduct.sol +10 -15
  453. package/contracts/product/BasicProductAuthorization.sol +33 -11
  454. package/contracts/product/ClaimService.sol +221 -207
  455. package/contracts/product/ClaimServiceManager.sol +1 -1
  456. package/contracts/product/IApplicationService.sol +28 -3
  457. package/contracts/product/IClaimService.sol +18 -5
  458. package/contracts/product/IPolicyService.sol +34 -12
  459. package/contracts/product/IPricingService.sol +1 -0
  460. package/contracts/product/IProductComponent.sol +4 -1
  461. package/contracts/product/IRiskService.sol +25 -10
  462. package/contracts/product/PolicyService.sol +260 -306
  463. package/contracts/product/PolicyServiceLib.sol +139 -0
  464. package/contracts/product/PolicyServiceManager.sol +1 -1
  465. package/contracts/product/PricingService.sol +52 -46
  466. package/contracts/product/PricingServiceManager.sol +3 -3
  467. package/contracts/product/Product.sol +106 -70
  468. package/contracts/product/RiskService.sol +130 -37
  469. package/contracts/product/RiskServiceManager.sol +1 -1
  470. package/contracts/registry/ChainNft.sol +4 -2
  471. package/contracts/registry/IRegistry.sol +25 -24
  472. package/contracts/registry/IRelease.sol +29 -0
  473. package/contracts/registry/Registry.sol +31 -12
  474. package/contracts/registry/RegistryAdmin.sol +94 -369
  475. package/contracts/registry/RegistryAuthorization.sol +337 -0
  476. package/contracts/registry/RegistryService.sol +4 -4
  477. package/contracts/registry/RegistryServiceManager.sol +1 -1
  478. package/contracts/registry/ReleaseAdmin.sol +199 -0
  479. package/contracts/registry/ReleaseLifecycle.sol +2 -0
  480. package/contracts/registry/ReleaseRegistry.sol +158 -134
  481. package/contracts/registry/ServiceAuthorizationV3.sol +200 -52
  482. package/contracts/registry/TokenRegistry.sol +61 -59
  483. package/contracts/shared/Component.sol +58 -119
  484. package/contracts/shared/ComponentService.sol +400 -395
  485. package/contracts/shared/ComponentServiceManager.sol +1 -1
  486. package/contracts/shared/ContractLib.sol +277 -3
  487. package/contracts/shared/IComponent.sol +2 -18
  488. package/contracts/shared/IComponentService.sol +28 -38
  489. package/contracts/shared/IInstanceLinkedComponent.sol +0 -11
  490. package/contracts/shared/INftOwnable.sol +2 -0
  491. package/contracts/shared/IRegisterable.sol +15 -5
  492. package/contracts/shared/IService.sol +3 -5
  493. package/contracts/shared/InitializableERC165.sol +9 -1
  494. package/contracts/shared/InstanceLinkedComponent.sol +63 -44
  495. package/contracts/shared/NftOwnable.sol +8 -6
  496. package/contracts/shared/PolicyHolder.sol +4 -3
  497. package/contracts/shared/Registerable.sol +41 -20
  498. package/contracts/shared/RegistryLinked.sol +7 -13
  499. package/contracts/shared/Service.sol +13 -30
  500. package/contracts/shared/TokenHandler.sol +264 -105
  501. package/contracts/shared/TokenHandlerDeployerLib.sol +10 -2
  502. package/contracts/staking/IStaking.sol +270 -72
  503. package/contracts/staking/IStakingService.sol +45 -75
  504. package/contracts/staking/ITargetLimitHandler.sol +17 -0
  505. package/contracts/staking/Staking.sol +522 -222
  506. package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +55 -84
  507. package/contracts/staking/StakingManager.sol +4 -3
  508. package/contracts/staking/StakingReader.sol +58 -77
  509. package/contracts/staking/StakingService.sol +62 -148
  510. package/contracts/staking/StakingServiceManager.sol +6 -4
  511. package/contracts/staking/StakingStore.sol +1093 -330
  512. package/contracts/staking/TargetHandler.sol +132 -0
  513. package/contracts/staking/TargetManagerLib.sol +69 -46
  514. package/contracts/type/Amount.sol +4 -0
  515. package/contracts/type/Blocknumber.sol +17 -22
  516. package/contracts/type/ChainId.sol +101 -0
  517. package/contracts/type/Fee.sol +8 -8
  518. package/contracts/type/Key32.sol +2 -2
  519. package/contracts/type/Key32Set.sol +62 -0
  520. package/contracts/type/NftId.sol +6 -0
  521. package/contracts/type/ObjectType.sol +70 -68
  522. package/contracts/type/Referral.sol +6 -0
  523. package/contracts/type/RequestIdSet.sol +62 -0
  524. package/contracts/type/RiskId.sol +26 -8
  525. package/contracts/type/RoleId.sol +63 -45
  526. package/contracts/type/Seconds.sol +23 -0
  527. package/contracts/type/Selector.sol +5 -0
  528. package/contracts/type/String.sol +42 -0
  529. package/contracts/type/Timestamp.sol +14 -8
  530. package/contracts/type/UFixed.sol +35 -127
  531. package/contracts/type/Version.sol +54 -5
  532. package/contracts/upgradeability/IVersionable.sol +3 -0
  533. package/contracts/upgradeability/ProxyManager.sol +27 -13
  534. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
  535. package/contracts/upgradeability/Versionable.sol +6 -3
  536. package/package.json +4 -4
  537. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +0 -4
  538. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +0 -1196
  539. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  540. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
  541. package/artifacts/contracts/shared/ComponentServiceHelperLib.sol/ComponentServiceHelperLib.dbg.json +0 -4
  542. package/artifacts/contracts/shared/ComponentServiceHelperLib.sol/ComponentServiceHelperLib.json +0 -206
  543. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
  544. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +0 -474
  545. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  546. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  547. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +0 -538
  548. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
  549. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -440
  550. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +0 -4
  551. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +0 -205
  552. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
  553. package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
  554. package/contracts/authorization/ReleaseAccessManager.sol +0 -38
  555. package/contracts/instance/module/IAccess.sol +0 -46
  556. package/contracts/shared/ComponentServiceHelperLib.sol +0 -118
  557. package/contracts/shared/ComponentVerifyingService.sol +0 -126
  558. package/contracts/shared/IKeyValueStore.sol +0 -54
  559. package/contracts/shared/KeyValueStore.sol +0 -131
  560. package/contracts/staking/StakingLifecycle.sol +0 -23
@@ -0,0 +1,2008 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "AccessAdminLib",
4
+ "sourceName": "contracts/authorization/AccessAdminLib.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "ErrorAccessAdminAccessManagerEmptyName",
9
+ "type": "error"
10
+ },
11
+ {
12
+ "inputs": [
13
+ {
14
+ "internalType": "address",
15
+ "name": "authorization",
16
+ "type": "address"
17
+ }
18
+ ],
19
+ "name": "ErrorAccessAdminAlreadyInitialized",
20
+ "type": "error"
21
+ },
22
+ {
23
+ "inputs": [
24
+ {
25
+ "internalType": "address",
26
+ "name": "authority",
27
+ "type": "address"
28
+ }
29
+ ],
30
+ "name": "ErrorAccessAdminAuthorityNotContract",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "authorization",
38
+ "type": "address"
39
+ },
40
+ {
41
+ "internalType": "ObjectType",
42
+ "name": "expectedDomain",
43
+ "type": "uint8"
44
+ },
45
+ {
46
+ "internalType": "ObjectType",
47
+ "name": "actualDomain",
48
+ "type": "uint8"
49
+ }
50
+ ],
51
+ "name": "ErrorAccessAdminDomainMismatch",
52
+ "type": "error"
53
+ },
54
+ {
55
+ "inputs": [],
56
+ "name": "ErrorAccessAdminFunctionNameEmpty",
57
+ "type": "error"
58
+ },
59
+ {
60
+ "inputs": [
61
+ {
62
+ "internalType": "address",
63
+ "name": "target",
64
+ "type": "address"
65
+ },
66
+ {
67
+ "internalType": "enum IAccess.TargetType",
68
+ "name": "serviceTargetType",
69
+ "type": "uint8"
70
+ }
71
+ ],
72
+ "name": "ErrorAccessAdminInvalidServiceType",
73
+ "type": "error"
74
+ },
75
+ {
76
+ "inputs": [
77
+ {
78
+ "internalType": "address",
79
+ "name": "target",
80
+ "type": "address"
81
+ },
82
+ {
83
+ "internalType": "enum IAccess.TargetType",
84
+ "name": "targetType",
85
+ "type": "uint8"
86
+ }
87
+ ],
88
+ "name": "ErrorAccessAdminInvalidTargetType",
89
+ "type": "error"
90
+ },
91
+ {
92
+ "inputs": [],
93
+ "name": "ErrorAccessAdminInvalidUseOfAdminRole",
94
+ "type": "error"
95
+ },
96
+ {
97
+ "inputs": [],
98
+ "name": "ErrorAccessAdminInvalidUseOfPublicRole",
99
+ "type": "error"
100
+ },
101
+ {
102
+ "inputs": [
103
+ {
104
+ "internalType": "address",
105
+ "name": "authorization",
106
+ "type": "address"
107
+ }
108
+ ],
109
+ "name": "ErrorAccessAdminNotAuthorization",
110
+ "type": "error"
111
+ },
112
+ {
113
+ "inputs": [
114
+ {
115
+ "internalType": "address",
116
+ "name": "target",
117
+ "type": "address"
118
+ }
119
+ ],
120
+ "name": "ErrorAccessAdminNotComponentOrCustomTarget",
121
+ "type": "error"
122
+ },
123
+ {
124
+ "inputs": [
125
+ {
126
+ "internalType": "address",
127
+ "name": "registerable",
128
+ "type": "address"
129
+ }
130
+ ],
131
+ "name": "ErrorAccessAdminNotRegistered",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "address",
138
+ "name": "registry",
139
+ "type": "address"
140
+ }
141
+ ],
142
+ "name": "ErrorAccessAdminNotRegistry",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "serviceAuthorization",
150
+ "type": "address"
151
+ }
152
+ ],
153
+ "name": "ErrorAccessAdminNotServiceAuthorization",
154
+ "type": "error"
155
+ },
156
+ {
157
+ "inputs": [
158
+ {
159
+ "internalType": "address",
160
+ "name": "authorization",
161
+ "type": "address"
162
+ },
163
+ {
164
+ "internalType": "VersionPart",
165
+ "name": "expectedRelease",
166
+ "type": "uint8"
167
+ },
168
+ {
169
+ "internalType": "VersionPart",
170
+ "name": "actualRelease",
171
+ "type": "uint8"
172
+ }
173
+ ],
174
+ "name": "ErrorAccessAdminReleaseMismatch",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [
179
+ {
180
+ "internalType": "RoleId",
181
+ "name": "adminRoleId",
182
+ "type": "uint64"
183
+ }
184
+ ],
185
+ "name": "ErrorAccessAdminRoleAdminNotExisting",
186
+ "type": "error"
187
+ },
188
+ {
189
+ "inputs": [
190
+ {
191
+ "internalType": "RoleId",
192
+ "name": "roleId",
193
+ "type": "uint64"
194
+ },
195
+ {
196
+ "internalType": "string",
197
+ "name": "name",
198
+ "type": "string"
199
+ }
200
+ ],
201
+ "name": "ErrorAccessAdminRoleAlreadyCreated",
202
+ "type": "error"
203
+ },
204
+ {
205
+ "inputs": [
206
+ {
207
+ "internalType": "RoleId",
208
+ "name": "roleId",
209
+ "type": "uint64"
210
+ }
211
+ ],
212
+ "name": "ErrorAccessAdminRoleIsPaused",
213
+ "type": "error"
214
+ },
215
+ {
216
+ "inputs": [
217
+ {
218
+ "internalType": "RoleId",
219
+ "name": "roleId",
220
+ "type": "uint64"
221
+ },
222
+ {
223
+ "internalType": "string",
224
+ "name": "name",
225
+ "type": "string"
226
+ },
227
+ {
228
+ "internalType": "RoleId",
229
+ "name": "existingRoleId",
230
+ "type": "uint64"
231
+ }
232
+ ],
233
+ "name": "ErrorAccessAdminRoleNameAlreadyExists",
234
+ "type": "error"
235
+ },
236
+ {
237
+ "inputs": [
238
+ {
239
+ "internalType": "RoleId",
240
+ "name": "roleId",
241
+ "type": "uint64"
242
+ }
243
+ ],
244
+ "name": "ErrorAccessAdminRoleNameEmpty",
245
+ "type": "error"
246
+ },
247
+ {
248
+ "inputs": [
249
+ {
250
+ "internalType": "RoleId",
251
+ "name": "roleId",
252
+ "type": "uint64"
253
+ }
254
+ ],
255
+ "name": "ErrorAccessAdminRoleUnknown",
256
+ "type": "error"
257
+ },
258
+ {
259
+ "inputs": [],
260
+ "name": "ErrorAccessAdminSelectorZero",
261
+ "type": "error"
262
+ },
263
+ {
264
+ "inputs": [
265
+ {
266
+ "internalType": "address",
267
+ "name": "target",
268
+ "type": "address"
269
+ },
270
+ {
271
+ "internalType": "string",
272
+ "name": "name",
273
+ "type": "string"
274
+ }
275
+ ],
276
+ "name": "ErrorAccessAdminTargetAlreadyCreated",
277
+ "type": "error"
278
+ },
279
+ {
280
+ "inputs": [
281
+ {
282
+ "internalType": "address",
283
+ "name": "expectedAuthority",
284
+ "type": "address"
285
+ },
286
+ {
287
+ "internalType": "address",
288
+ "name": "actualAuthority",
289
+ "type": "address"
290
+ }
291
+ ],
292
+ "name": "ErrorAccessAdminTargetAuthorityMismatch",
293
+ "type": "error"
294
+ },
295
+ {
296
+ "inputs": [
297
+ {
298
+ "internalType": "address",
299
+ "name": "target",
300
+ "type": "address"
301
+ },
302
+ {
303
+ "internalType": "string",
304
+ "name": "name",
305
+ "type": "string"
306
+ },
307
+ {
308
+ "internalType": "address",
309
+ "name": "existingTarget",
310
+ "type": "address"
311
+ }
312
+ ],
313
+ "name": "ErrorAccessAdminTargetNameAlreadyExists",
314
+ "type": "error"
315
+ },
316
+ {
317
+ "inputs": [
318
+ {
319
+ "internalType": "address",
320
+ "name": "target",
321
+ "type": "address"
322
+ }
323
+ ],
324
+ "name": "ErrorAccessAdminTargetNameEmpty",
325
+ "type": "error"
326
+ },
327
+ {
328
+ "inputs": [
329
+ {
330
+ "internalType": "address",
331
+ "name": "target",
332
+ "type": "address"
333
+ }
334
+ ],
335
+ "name": "ErrorAccessAdminTargetNotAccessManaged",
336
+ "type": "error"
337
+ },
338
+ {
339
+ "inputs": [
340
+ {
341
+ "internalType": "address",
342
+ "name": "target",
343
+ "type": "address"
344
+ }
345
+ ],
346
+ "name": "ErrorAccessAdminTargetNotCreated",
347
+ "type": "error"
348
+ },
349
+ {
350
+ "inputs": [
351
+ {
352
+ "internalType": "address",
353
+ "name": "target",
354
+ "type": "address"
355
+ },
356
+ {
357
+ "internalType": "ObjectType",
358
+ "name": "expectedType",
359
+ "type": "uint8"
360
+ },
361
+ {
362
+ "internalType": "ObjectType",
363
+ "name": "actualType",
364
+ "type": "uint8"
365
+ }
366
+ ],
367
+ "name": "ErrorAccessAdminTargetTypeMismatch",
368
+ "type": "error"
369
+ },
370
+ {
371
+ "inputs": [],
372
+ "name": "ADMIN_ROLE_NAME",
373
+ "outputs": [
374
+ {
375
+ "internalType": "string",
376
+ "name": "",
377
+ "type": "string"
378
+ }
379
+ ],
380
+ "stateMutability": "pure",
381
+ "type": "function"
382
+ },
383
+ {
384
+ "inputs": [],
385
+ "name": "COMPONENT_ROLE_FACTOR",
386
+ "outputs": [
387
+ {
388
+ "internalType": "uint64",
389
+ "name": "",
390
+ "type": "uint64"
391
+ }
392
+ ],
393
+ "stateMutability": "view",
394
+ "type": "function"
395
+ },
396
+ {
397
+ "inputs": [],
398
+ "name": "COMPONENT_ROLE_MAX",
399
+ "outputs": [
400
+ {
401
+ "internalType": "uint64",
402
+ "name": "",
403
+ "type": "uint64"
404
+ }
405
+ ],
406
+ "stateMutability": "view",
407
+ "type": "function"
408
+ },
409
+ {
410
+ "inputs": [],
411
+ "name": "COMPONENT_ROLE_MIN",
412
+ "outputs": [
413
+ {
414
+ "internalType": "uint64",
415
+ "name": "",
416
+ "type": "uint64"
417
+ }
418
+ ],
419
+ "stateMutability": "view",
420
+ "type": "function"
421
+ },
422
+ {
423
+ "inputs": [],
424
+ "name": "CORE_ROLE_MIN",
425
+ "outputs": [
426
+ {
427
+ "internalType": "uint64",
428
+ "name": "",
429
+ "type": "uint64"
430
+ }
431
+ ],
432
+ "stateMutability": "view",
433
+ "type": "function"
434
+ },
435
+ {
436
+ "inputs": [],
437
+ "name": "CUSTOM_ROLE_MIN",
438
+ "outputs": [
439
+ {
440
+ "internalType": "uint64",
441
+ "name": "",
442
+ "type": "uint64"
443
+ }
444
+ ],
445
+ "stateMutability": "view",
446
+ "type": "function"
447
+ },
448
+ {
449
+ "inputs": [],
450
+ "name": "INSTANCE_ROLE_MIN",
451
+ "outputs": [
452
+ {
453
+ "internalType": "uint64",
454
+ "name": "",
455
+ "type": "uint64"
456
+ }
457
+ ],
458
+ "stateMutability": "view",
459
+ "type": "function"
460
+ },
461
+ {
462
+ "inputs": [],
463
+ "name": "PUBLIC_ROLE_NAME",
464
+ "outputs": [
465
+ {
466
+ "internalType": "string",
467
+ "name": "",
468
+ "type": "string"
469
+ }
470
+ ],
471
+ "stateMutability": "pure",
472
+ "type": "function"
473
+ },
474
+ {
475
+ "inputs": [],
476
+ "name": "ROLE_SUFFIX",
477
+ "outputs": [
478
+ {
479
+ "internalType": "string",
480
+ "name": "",
481
+ "type": "string"
482
+ }
483
+ ],
484
+ "stateMutability": "view",
485
+ "type": "function"
486
+ },
487
+ {
488
+ "inputs": [],
489
+ "name": "SERVICE_DOMAIN_ROLE_FACTOR",
490
+ "outputs": [
491
+ {
492
+ "internalType": "uint64",
493
+ "name": "",
494
+ "type": "uint64"
495
+ }
496
+ ],
497
+ "stateMutability": "view",
498
+ "type": "function"
499
+ },
500
+ {
501
+ "inputs": [],
502
+ "name": "SERVICE_ROLE_FACTOR",
503
+ "outputs": [
504
+ {
505
+ "internalType": "uint64",
506
+ "name": "",
507
+ "type": "uint64"
508
+ }
509
+ ],
510
+ "stateMutability": "view",
511
+ "type": "function"
512
+ },
513
+ {
514
+ "inputs": [],
515
+ "name": "SERVICE_ROLE_MIN",
516
+ "outputs": [
517
+ {
518
+ "internalType": "uint64",
519
+ "name": "",
520
+ "type": "uint64"
521
+ }
522
+ ],
523
+ "stateMutability": "view",
524
+ "type": "function"
525
+ },
526
+ {
527
+ "inputs": [],
528
+ "name": "TOKEN_HANDLER_SUFFIX",
529
+ "outputs": [
530
+ {
531
+ "internalType": "string",
532
+ "name": "",
533
+ "type": "string"
534
+ }
535
+ ],
536
+ "stateMutability": "view",
537
+ "type": "function"
538
+ },
539
+ {
540
+ "inputs": [],
541
+ "name": "adminRoleInfo",
542
+ "outputs": [
543
+ {
544
+ "components": [
545
+ {
546
+ "internalType": "RoleId",
547
+ "name": "adminRoleId",
548
+ "type": "uint64"
549
+ },
550
+ {
551
+ "internalType": "enum IAccess.TargetType",
552
+ "name": "targetType",
553
+ "type": "IAccess.TargetType"
554
+ },
555
+ {
556
+ "internalType": "uint32",
557
+ "name": "maxMemberCount",
558
+ "type": "uint32"
559
+ },
560
+ {
561
+ "internalType": "Timestamp",
562
+ "name": "createdAt",
563
+ "type": "uint40"
564
+ },
565
+ {
566
+ "internalType": "Timestamp",
567
+ "name": "pausedAt",
568
+ "type": "uint40"
569
+ },
570
+ {
571
+ "internalType": "Blocknumber",
572
+ "name": "lastUpdateIn",
573
+ "type": "uint40"
574
+ },
575
+ {
576
+ "internalType": "Str",
577
+ "name": "name",
578
+ "type": "bytes32"
579
+ }
580
+ ],
581
+ "internalType": "struct IAccess.RoleInfo",
582
+ "name": "",
583
+ "type": "tuple"
584
+ }
585
+ ],
586
+ "stateMutability": "view",
587
+ "type": "function"
588
+ },
589
+ {
590
+ "inputs": [
591
+ {
592
+ "internalType": "address",
593
+ "name": "authorizationOld",
594
+ "type": "address"
595
+ },
596
+ {
597
+ "internalType": "address",
598
+ "name": "authorization",
599
+ "type": "address"
600
+ },
601
+ {
602
+ "internalType": "ObjectType",
603
+ "name": "expectedDomain",
604
+ "type": "uint8"
605
+ },
606
+ {
607
+ "internalType": "VersionPart",
608
+ "name": "expectedRelease",
609
+ "type": "uint8"
610
+ },
611
+ {
612
+ "internalType": "bool",
613
+ "name": "expectServiceAuthorization",
614
+ "type": "bool"
615
+ },
616
+ {
617
+ "internalType": "bool",
618
+ "name": "checkAlreadyInitialized",
619
+ "type": "bool"
620
+ }
621
+ ],
622
+ "name": "checkAuthorization",
623
+ "outputs": [],
624
+ "stateMutability": "view",
625
+ "type": "function"
626
+ },
627
+ {
628
+ "inputs": [
629
+ {
630
+ "internalType": "contract IAccessAdmin",
631
+ "name": "accessAdmin",
632
+ "type": "IAccessAdmin"
633
+ },
634
+ {
635
+ "internalType": "contract IAuthorization",
636
+ "name": "instanceAuthorization",
637
+ "type": "IAuthorization"
638
+ },
639
+ {
640
+ "internalType": "address",
641
+ "name": "componentAddress",
642
+ "type": "address"
643
+ },
644
+ {
645
+ "internalType": "ObjectType",
646
+ "name": "expectedType",
647
+ "type": "uint8"
648
+ }
649
+ ],
650
+ "name": "checkComponentInitialization",
651
+ "outputs": [
652
+ {
653
+ "internalType": "contract IAuthorization",
654
+ "name": "componentAuthorization",
655
+ "type": "IAuthorization"
656
+ }
657
+ ],
658
+ "stateMutability": "view",
659
+ "type": "function"
660
+ },
661
+ {
662
+ "inputs": [
663
+ {
664
+ "internalType": "address",
665
+ "name": "authority",
666
+ "type": "address"
667
+ },
668
+ {
669
+ "internalType": "string",
670
+ "name": "adminName",
671
+ "type": "string"
672
+ }
673
+ ],
674
+ "name": "checkInitParameters",
675
+ "outputs": [],
676
+ "stateMutability": "view",
677
+ "type": "function"
678
+ },
679
+ {
680
+ "inputs": [
681
+ {
682
+ "internalType": "address",
683
+ "name": "registry",
684
+ "type": "address"
685
+ },
686
+ {
687
+ "internalType": "address",
688
+ "name": "target",
689
+ "type": "address"
690
+ },
691
+ {
692
+ "internalType": "ObjectType",
693
+ "name": "expectedType",
694
+ "type": "uint8"
695
+ }
696
+ ],
697
+ "name": "checkIsRegistered",
698
+ "outputs": [],
699
+ "stateMutability": "view",
700
+ "type": "function"
701
+ },
702
+ {
703
+ "inputs": [
704
+ {
705
+ "internalType": "RoleId",
706
+ "name": "roleId",
707
+ "type": "uint64"
708
+ }
709
+ ],
710
+ "name": "checkNotAdminOrPublicRole",
711
+ "outputs": [],
712
+ "stateMutability": "pure",
713
+ "type": "function"
714
+ },
715
+ {
716
+ "inputs": [
717
+ {
718
+ "internalType": "address",
719
+ "name": "registry",
720
+ "type": "address"
721
+ }
722
+ ],
723
+ "name": "checkRegistry",
724
+ "outputs": [],
725
+ "stateMutability": "view",
726
+ "type": "function"
727
+ },
728
+ {
729
+ "inputs": [
730
+ {
731
+ "internalType": "contract IAccessAdmin",
732
+ "name": "accessAdmin",
733
+ "type": "IAccessAdmin"
734
+ },
735
+ {
736
+ "internalType": "RoleId",
737
+ "name": "roleId",
738
+ "type": "uint64"
739
+ },
740
+ {
741
+ "components": [
742
+ {
743
+ "internalType": "RoleId",
744
+ "name": "adminRoleId",
745
+ "type": "uint64"
746
+ },
747
+ {
748
+ "internalType": "enum IAccess.TargetType",
749
+ "name": "targetType",
750
+ "type": "IAccess.TargetType"
751
+ },
752
+ {
753
+ "internalType": "uint32",
754
+ "name": "maxMemberCount",
755
+ "type": "uint32"
756
+ },
757
+ {
758
+ "internalType": "Timestamp",
759
+ "name": "createdAt",
760
+ "type": "uint40"
761
+ },
762
+ {
763
+ "internalType": "Timestamp",
764
+ "name": "pausedAt",
765
+ "type": "uint40"
766
+ },
767
+ {
768
+ "internalType": "Blocknumber",
769
+ "name": "lastUpdateIn",
770
+ "type": "uint40"
771
+ },
772
+ {
773
+ "internalType": "Str",
774
+ "name": "name",
775
+ "type": "bytes32"
776
+ }
777
+ ],
778
+ "internalType": "struct IAccess.RoleInfo",
779
+ "name": "info",
780
+ "type": "tuple"
781
+ },
782
+ {
783
+ "internalType": "bool",
784
+ "name": "revertOnExistingRole",
785
+ "type": "bool"
786
+ }
787
+ ],
788
+ "name": "checkRoleCreation",
789
+ "outputs": [
790
+ {
791
+ "internalType": "bool",
792
+ "name": "isAdminOrPublicRole",
793
+ "type": "bool"
794
+ }
795
+ ],
796
+ "stateMutability": "view",
797
+ "type": "function"
798
+ },
799
+ {
800
+ "inputs": [
801
+ {
802
+ "internalType": "contract IAccessAdmin",
803
+ "name": "accessAdmin",
804
+ "type": "IAccessAdmin"
805
+ },
806
+ {
807
+ "internalType": "address",
808
+ "name": "target",
809
+ "type": "address"
810
+ },
811
+ {
812
+ "internalType": "RoleId",
813
+ "name": "roleId",
814
+ "type": "uint64"
815
+ },
816
+ {
817
+ "internalType": "bool",
818
+ "name": "onlyComponentOrContractTargets",
819
+ "type": "bool"
820
+ }
821
+ ],
822
+ "name": "checkTargetAndRoleForFunctions",
823
+ "outputs": [],
824
+ "stateMutability": "view",
825
+ "type": "function"
826
+ },
827
+ {
828
+ "inputs": [
829
+ {
830
+ "internalType": "contract IAccessAdmin",
831
+ "name": "accessAdmin",
832
+ "type": "IAccessAdmin"
833
+ },
834
+ {
835
+ "internalType": "address",
836
+ "name": "target",
837
+ "type": "address"
838
+ },
839
+ {
840
+ "internalType": "string",
841
+ "name": "targetName",
842
+ "type": "string"
843
+ },
844
+ {
845
+ "internalType": "bool",
846
+ "name": "checkAuthority",
847
+ "type": "bool"
848
+ }
849
+ ],
850
+ "name": "checkTargetCreation",
851
+ "outputs": [],
852
+ "stateMutability": "view",
853
+ "type": "function"
854
+ },
855
+ {
856
+ "inputs": [
857
+ {
858
+ "internalType": "contract IAccessAdmin",
859
+ "name": "accessAdmin",
860
+ "type": "IAccessAdmin"
861
+ },
862
+ {
863
+ "internalType": "address",
864
+ "name": "target",
865
+ "type": "address"
866
+ }
867
+ ],
868
+ "name": "checkTargetExists",
869
+ "outputs": [],
870
+ "stateMutability": "view",
871
+ "type": "function"
872
+ },
873
+ {
874
+ "inputs": [
875
+ {
876
+ "internalType": "string",
877
+ "name": "name",
878
+ "type": "string"
879
+ }
880
+ ],
881
+ "name": "coreRoleInfo",
882
+ "outputs": [
883
+ {
884
+ "components": [
885
+ {
886
+ "internalType": "RoleId",
887
+ "name": "adminRoleId",
888
+ "type": "uint64"
889
+ },
890
+ {
891
+ "internalType": "enum IAccess.TargetType",
892
+ "name": "targetType",
893
+ "type": "IAccess.TargetType"
894
+ },
895
+ {
896
+ "internalType": "uint32",
897
+ "name": "maxMemberCount",
898
+ "type": "uint32"
899
+ },
900
+ {
901
+ "internalType": "Timestamp",
902
+ "name": "createdAt",
903
+ "type": "uint40"
904
+ },
905
+ {
906
+ "internalType": "Timestamp",
907
+ "name": "pausedAt",
908
+ "type": "uint40"
909
+ },
910
+ {
911
+ "internalType": "Blocknumber",
912
+ "name": "lastUpdateIn",
913
+ "type": "uint40"
914
+ },
915
+ {
916
+ "internalType": "Str",
917
+ "name": "name",
918
+ "type": "bytes32"
919
+ }
920
+ ],
921
+ "internalType": "struct IAccess.RoleInfo",
922
+ "name": "",
923
+ "type": "tuple"
924
+ }
925
+ ],
926
+ "stateMutability": "view",
927
+ "type": "function"
928
+ },
929
+ {
930
+ "inputs": [],
931
+ "name": "getAdminRole",
932
+ "outputs": [
933
+ {
934
+ "internalType": "RoleId",
935
+ "name": "adminRoleId",
936
+ "type": "uint64"
937
+ }
938
+ ],
939
+ "stateMutability": "pure",
940
+ "type": "function"
941
+ },
942
+ {
943
+ "inputs": [
944
+ {
945
+ "internalType": "contract IAccessAdmin",
946
+ "name": "accessAdmin",
947
+ "type": "IAccessAdmin"
948
+ },
949
+ {
950
+ "internalType": "contract IAuthorization",
951
+ "name": "authorization",
952
+ "type": "IAuthorization"
953
+ },
954
+ {
955
+ "internalType": "RoleId",
956
+ "name": "roleId",
957
+ "type": "uint64"
958
+ }
959
+ ],
960
+ "name": "getAuthorizedRole",
961
+ "outputs": [
962
+ {
963
+ "internalType": "RoleId",
964
+ "name": "authorizedRoleId",
965
+ "type": "uint64"
966
+ }
967
+ ],
968
+ "stateMutability": "view",
969
+ "type": "function"
970
+ },
971
+ {
972
+ "inputs": [
973
+ {
974
+ "internalType": "uint64",
975
+ "name": "index",
976
+ "type": "uint64"
977
+ }
978
+ ],
979
+ "name": "getCustomRoleId",
980
+ "outputs": [
981
+ {
982
+ "internalType": "RoleId",
983
+ "name": "customRoleId",
984
+ "type": "uint64"
985
+ }
986
+ ],
987
+ "stateMutability": "pure",
988
+ "type": "function"
989
+ },
990
+ {
991
+ "inputs": [
992
+ {
993
+ "internalType": "ObjectType",
994
+ "name": "serviceDomain",
995
+ "type": "uint8"
996
+ }
997
+ ],
998
+ "name": "getGenericServiceRoleId",
999
+ "outputs": [
1000
+ {
1001
+ "internalType": "RoleId",
1002
+ "name": "serviceRoleId",
1003
+ "type": "uint64"
1004
+ }
1005
+ ],
1006
+ "stateMutability": "pure",
1007
+ "type": "function"
1008
+ },
1009
+ {
1010
+ "inputs": [],
1011
+ "name": "getPublicRole",
1012
+ "outputs": [
1013
+ {
1014
+ "internalType": "RoleId",
1015
+ "name": "publicRoleId",
1016
+ "type": "uint64"
1017
+ }
1018
+ ],
1019
+ "stateMutability": "pure",
1020
+ "type": "function"
1021
+ },
1022
+ {
1023
+ "inputs": [
1024
+ {
1025
+ "internalType": "contract IAccessAdmin",
1026
+ "name": "accessAdmin",
1027
+ "type": "IAccessAdmin"
1028
+ },
1029
+ {
1030
+ "internalType": "RoleId",
1031
+ "name": "roleId",
1032
+ "type": "uint64"
1033
+ }
1034
+ ],
1035
+ "name": "getRoleName",
1036
+ "outputs": [
1037
+ {
1038
+ "internalType": "string",
1039
+ "name": "",
1040
+ "type": "string"
1041
+ }
1042
+ ],
1043
+ "stateMutability": "view",
1044
+ "type": "function"
1045
+ },
1046
+ {
1047
+ "inputs": [
1048
+ {
1049
+ "components": [
1050
+ {
1051
+ "internalType": "Str",
1052
+ "name": "name",
1053
+ "type": "bytes32"
1054
+ },
1055
+ {
1056
+ "internalType": "Selector",
1057
+ "name": "selector",
1058
+ "type": "bytes4"
1059
+ },
1060
+ {
1061
+ "internalType": "Timestamp",
1062
+ "name": "createdAt",
1063
+ "type": "uint40"
1064
+ },
1065
+ {
1066
+ "internalType": "Blocknumber",
1067
+ "name": "lastUpdateIn",
1068
+ "type": "uint40"
1069
+ }
1070
+ ],
1071
+ "internalType": "struct IAccess.FunctionInfo[]",
1072
+ "name": "functions",
1073
+ "type": "tuple[]"
1074
+ }
1075
+ ],
1076
+ "name": "getSelectors",
1077
+ "outputs": [
1078
+ {
1079
+ "internalType": "bytes4[]",
1080
+ "name": "selectors",
1081
+ "type": "bytes4[]"
1082
+ }
1083
+ ],
1084
+ "stateMutability": "pure",
1085
+ "type": "function"
1086
+ },
1087
+ {
1088
+ "inputs": [
1089
+ {
1090
+ "internalType": "address",
1091
+ "name": "serviceAddress",
1092
+ "type": "address"
1093
+ },
1094
+ {
1095
+ "internalType": "enum IAccess.TargetType",
1096
+ "name": "serviceTargetType",
1097
+ "type": "IAccess.TargetType"
1098
+ }
1099
+ ],
1100
+ "name": "getServiceRoleId",
1101
+ "outputs": [
1102
+ {
1103
+ "internalType": "RoleId",
1104
+ "name": "serviceRoleId",
1105
+ "type": "uint64"
1106
+ }
1107
+ ],
1108
+ "stateMutability": "view",
1109
+ "type": "function"
1110
+ },
1111
+ {
1112
+ "inputs": [
1113
+ {
1114
+ "internalType": "address",
1115
+ "name": "target",
1116
+ "type": "address"
1117
+ },
1118
+ {
1119
+ "internalType": "enum IAccess.TargetType",
1120
+ "name": "targetType",
1121
+ "type": "IAccess.TargetType"
1122
+ },
1123
+ {
1124
+ "internalType": "uint64",
1125
+ "name": "index",
1126
+ "type": "uint64"
1127
+ }
1128
+ ],
1129
+ "name": "getTargetRoleId",
1130
+ "outputs": [
1131
+ {
1132
+ "internalType": "RoleId",
1133
+ "name": "targetRoleId",
1134
+ "type": "uint64"
1135
+ }
1136
+ ],
1137
+ "stateMutability": "view",
1138
+ "type": "function"
1139
+ },
1140
+ {
1141
+ "inputs": [
1142
+ {
1143
+ "internalType": "address",
1144
+ "name": "target",
1145
+ "type": "address"
1146
+ },
1147
+ {
1148
+ "internalType": "string",
1149
+ "name": "targetName",
1150
+ "type": "string"
1151
+ },
1152
+ {
1153
+ "internalType": "enum IAccess.TargetType",
1154
+ "name": "targetType",
1155
+ "type": "IAccess.TargetType"
1156
+ }
1157
+ ],
1158
+ "name": "getTokenHandler",
1159
+ "outputs": [
1160
+ {
1161
+ "internalType": "address",
1162
+ "name": "tokenHandler",
1163
+ "type": "address"
1164
+ },
1165
+ {
1166
+ "internalType": "string",
1167
+ "name": "tokenHandlerName",
1168
+ "type": "string"
1169
+ }
1170
+ ],
1171
+ "stateMutability": "view",
1172
+ "type": "function"
1173
+ },
1174
+ {
1175
+ "inputs": [
1176
+ {
1177
+ "internalType": "ObjectType",
1178
+ "name": "serviceDomain",
1179
+ "type": "uint8"
1180
+ },
1181
+ {
1182
+ "internalType": "VersionPart",
1183
+ "name": "release",
1184
+ "type": "uint8"
1185
+ }
1186
+ ],
1187
+ "name": "getVersionedServiceRoleId",
1188
+ "outputs": [
1189
+ {
1190
+ "internalType": "RoleId",
1191
+ "name": "serviceRoleId",
1192
+ "type": "uint64"
1193
+ }
1194
+ ],
1195
+ "stateMutability": "pure",
1196
+ "type": "function"
1197
+ },
1198
+ {
1199
+ "inputs": [
1200
+ {
1201
+ "internalType": "string",
1202
+ "name": "name",
1203
+ "type": "string"
1204
+ }
1205
+ ],
1206
+ "name": "isAdminOrPublicRole",
1207
+ "outputs": [
1208
+ {
1209
+ "internalType": "bool",
1210
+ "name": "",
1211
+ "type": "bool"
1212
+ }
1213
+ ],
1214
+ "stateMutability": "view",
1215
+ "type": "function"
1216
+ },
1217
+ {
1218
+ "inputs": [
1219
+ {
1220
+ "internalType": "string",
1221
+ "name": "name",
1222
+ "type": "string"
1223
+ }
1224
+ ],
1225
+ "name": "isAdminRoleName",
1226
+ "outputs": [
1227
+ {
1228
+ "internalType": "bool",
1229
+ "name": "",
1230
+ "type": "bool"
1231
+ }
1232
+ ],
1233
+ "stateMutability": "pure",
1234
+ "type": "function"
1235
+ },
1236
+ {
1237
+ "inputs": [
1238
+ {
1239
+ "internalType": "RoleId",
1240
+ "name": "roleId",
1241
+ "type": "uint64"
1242
+ }
1243
+ ],
1244
+ "name": "isCustomRole",
1245
+ "outputs": [
1246
+ {
1247
+ "internalType": "bool",
1248
+ "name": "",
1249
+ "type": "bool"
1250
+ }
1251
+ ],
1252
+ "stateMutability": "pure",
1253
+ "type": "function"
1254
+ },
1255
+ {
1256
+ "inputs": [
1257
+ {
1258
+ "internalType": "RoleId",
1259
+ "name": "roleId",
1260
+ "type": "uint64"
1261
+ }
1262
+ ],
1263
+ "name": "isDynamicRoleId",
1264
+ "outputs": [
1265
+ {
1266
+ "internalType": "bool",
1267
+ "name": "",
1268
+ "type": "bool"
1269
+ }
1270
+ ],
1271
+ "stateMutability": "pure",
1272
+ "type": "function"
1273
+ },
1274
+ {
1275
+ "inputs": [],
1276
+ "name": "publicRoleInfo",
1277
+ "outputs": [
1278
+ {
1279
+ "components": [
1280
+ {
1281
+ "internalType": "RoleId",
1282
+ "name": "adminRoleId",
1283
+ "type": "uint64"
1284
+ },
1285
+ {
1286
+ "internalType": "enum IAccess.TargetType",
1287
+ "name": "targetType",
1288
+ "type": "IAccess.TargetType"
1289
+ },
1290
+ {
1291
+ "internalType": "uint32",
1292
+ "name": "maxMemberCount",
1293
+ "type": "uint32"
1294
+ },
1295
+ {
1296
+ "internalType": "Timestamp",
1297
+ "name": "createdAt",
1298
+ "type": "uint40"
1299
+ },
1300
+ {
1301
+ "internalType": "Timestamp",
1302
+ "name": "pausedAt",
1303
+ "type": "uint40"
1304
+ },
1305
+ {
1306
+ "internalType": "Blocknumber",
1307
+ "name": "lastUpdateIn",
1308
+ "type": "uint40"
1309
+ },
1310
+ {
1311
+ "internalType": "Str",
1312
+ "name": "name",
1313
+ "type": "bytes32"
1314
+ }
1315
+ ],
1316
+ "internalType": "struct IAccess.RoleInfo",
1317
+ "name": "",
1318
+ "type": "tuple"
1319
+ }
1320
+ ],
1321
+ "stateMutability": "view",
1322
+ "type": "function"
1323
+ },
1324
+ {
1325
+ "inputs": [
1326
+ {
1327
+ "internalType": "RoleId",
1328
+ "name": "adminRoleId",
1329
+ "type": "uint64"
1330
+ },
1331
+ {
1332
+ "internalType": "enum IAccess.TargetType",
1333
+ "name": "targetType",
1334
+ "type": "IAccess.TargetType"
1335
+ },
1336
+ {
1337
+ "internalType": "uint32",
1338
+ "name": "maxMemberCount",
1339
+ "type": "uint32"
1340
+ },
1341
+ {
1342
+ "internalType": "string",
1343
+ "name": "roleName",
1344
+ "type": "string"
1345
+ }
1346
+ ],
1347
+ "name": "roleInfo",
1348
+ "outputs": [
1349
+ {
1350
+ "components": [
1351
+ {
1352
+ "internalType": "RoleId",
1353
+ "name": "adminRoleId",
1354
+ "type": "uint64"
1355
+ },
1356
+ {
1357
+ "internalType": "enum IAccess.TargetType",
1358
+ "name": "targetType",
1359
+ "type": "IAccess.TargetType"
1360
+ },
1361
+ {
1362
+ "internalType": "uint32",
1363
+ "name": "maxMemberCount",
1364
+ "type": "uint32"
1365
+ },
1366
+ {
1367
+ "internalType": "Timestamp",
1368
+ "name": "createdAt",
1369
+ "type": "uint40"
1370
+ },
1371
+ {
1372
+ "internalType": "Timestamp",
1373
+ "name": "pausedAt",
1374
+ "type": "uint40"
1375
+ },
1376
+ {
1377
+ "internalType": "Blocknumber",
1378
+ "name": "lastUpdateIn",
1379
+ "type": "uint40"
1380
+ },
1381
+ {
1382
+ "internalType": "Str",
1383
+ "name": "name",
1384
+ "type": "bytes32"
1385
+ }
1386
+ ],
1387
+ "internalType": "struct IAccess.RoleInfo",
1388
+ "name": "info",
1389
+ "type": "tuple"
1390
+ }
1391
+ ],
1392
+ "stateMutability": "view",
1393
+ "type": "function"
1394
+ },
1395
+ {
1396
+ "inputs": [
1397
+ {
1398
+ "internalType": "string",
1399
+ "name": "serviceName",
1400
+ "type": "string"
1401
+ }
1402
+ ],
1403
+ "name": "serviceRoleInfo",
1404
+ "outputs": [
1405
+ {
1406
+ "components": [
1407
+ {
1408
+ "internalType": "RoleId",
1409
+ "name": "adminRoleId",
1410
+ "type": "uint64"
1411
+ },
1412
+ {
1413
+ "internalType": "enum IAccess.TargetType",
1414
+ "name": "targetType",
1415
+ "type": "IAccess.TargetType"
1416
+ },
1417
+ {
1418
+ "internalType": "uint32",
1419
+ "name": "maxMemberCount",
1420
+ "type": "uint32"
1421
+ },
1422
+ {
1423
+ "internalType": "Timestamp",
1424
+ "name": "createdAt",
1425
+ "type": "uint40"
1426
+ },
1427
+ {
1428
+ "internalType": "Timestamp",
1429
+ "name": "pausedAt",
1430
+ "type": "uint40"
1431
+ },
1432
+ {
1433
+ "internalType": "Blocknumber",
1434
+ "name": "lastUpdateIn",
1435
+ "type": "uint40"
1436
+ },
1437
+ {
1438
+ "internalType": "Str",
1439
+ "name": "name",
1440
+ "type": "bytes32"
1441
+ }
1442
+ ],
1443
+ "internalType": "struct IAccess.RoleInfo",
1444
+ "name": "",
1445
+ "type": "tuple"
1446
+ }
1447
+ ],
1448
+ "stateMutability": "view",
1449
+ "type": "function"
1450
+ },
1451
+ {
1452
+ "inputs": [
1453
+ {
1454
+ "internalType": "bytes4",
1455
+ "name": "selector",
1456
+ "type": "bytes4"
1457
+ },
1458
+ {
1459
+ "internalType": "string",
1460
+ "name": "name",
1461
+ "type": "string"
1462
+ }
1463
+ ],
1464
+ "name": "toFunction",
1465
+ "outputs": [
1466
+ {
1467
+ "components": [
1468
+ {
1469
+ "internalType": "Str",
1470
+ "name": "name",
1471
+ "type": "bytes32"
1472
+ },
1473
+ {
1474
+ "internalType": "Selector",
1475
+ "name": "selector",
1476
+ "type": "bytes4"
1477
+ },
1478
+ {
1479
+ "internalType": "Timestamp",
1480
+ "name": "createdAt",
1481
+ "type": "uint40"
1482
+ },
1483
+ {
1484
+ "internalType": "Blocknumber",
1485
+ "name": "lastUpdateIn",
1486
+ "type": "uint40"
1487
+ }
1488
+ ],
1489
+ "internalType": "struct IAccess.FunctionInfo",
1490
+ "name": "",
1491
+ "type": "tuple"
1492
+ }
1493
+ ],
1494
+ "stateMutability": "view",
1495
+ "type": "function"
1496
+ },
1497
+ {
1498
+ "inputs": [
1499
+ {
1500
+ "internalType": "contract IAccessAdmin",
1501
+ "name": "accessAdmin",
1502
+ "type": "IAccessAdmin"
1503
+ },
1504
+ {
1505
+ "internalType": "Str",
1506
+ "name": "functionName",
1507
+ "type": "bytes32"
1508
+ },
1509
+ {
1510
+ "internalType": "RoleId",
1511
+ "name": "roleId",
1512
+ "type": "uint64"
1513
+ }
1514
+ ],
1515
+ "name": "toFunctionGrantingString",
1516
+ "outputs": [
1517
+ {
1518
+ "internalType": "string",
1519
+ "name": "",
1520
+ "type": "string"
1521
+ }
1522
+ ],
1523
+ "stateMutability": "view",
1524
+ "type": "function"
1525
+ },
1526
+ {
1527
+ "inputs": [
1528
+ {
1529
+ "internalType": "string",
1530
+ "name": "name",
1531
+ "type": "string"
1532
+ }
1533
+ ],
1534
+ "name": "toRoleName",
1535
+ "outputs": [
1536
+ {
1537
+ "internalType": "string",
1538
+ "name": "",
1539
+ "type": "string"
1540
+ }
1541
+ ],
1542
+ "stateMutability": "pure",
1543
+ "type": "function"
1544
+ }
1545
+ ],
1546
+ "bytecode": "0x61421e610034600b8282823980515f1a607314602857634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040526004361061028c575f3560e01c80638308ceb111610161578063bc62a0a5116100d5578063ceaaf86b1161008f578063ceaaf86b146105c5578063cf291648146105cf578063d09ce86c146105e2578063d27e68a9146105ea578063d4c3026c1461060b578063e03aefc21461061e575f80fd5b8063bc62a0a514610564578063bcfb11b01461056c578063c354279a14610574578063c68eb45514610587578063c87a86c41461059a578063caf3ba4a146103e3575f80fd5b8063a43e328111610126578063a43e328114610515578063aec48fc71461051f578063b05601aa146103e3578063b1d4d5c314610527578063b3d2fe461461054b578063b3ecf2361461055e575f80fd5b80638308ceb1146104cf5780638f83fd63146104dc578063915f1dbb1461047b5780639b7ec44c146104ef578063a400335c14610502575f80fd5b806346729cd2116102035780635b55eef2116101bd5780635b55eef2146104685780636126bf441461047b57806361890d9b14610483578063650cbf891461049657806366048929146104a95780637d09289c146104bc575f80fd5b806346729cd2146103e35780634924730a146103ec5780634eaf40a2146103ff57806351f2b1e1146104125780635917626e146104255780635aa3d72714610445575f80fd5b80630ccbae51116102545780630ccbae511461032957806315fb0abb14610333578063195746e91461039457806337c339e5146103a75780634068538c146103ba578063448111d7146103c3575f80fd5b806303d6f9be1461029057806304c713a7146102c057806305b81b9f146102ee57806305bc847d146103015780630781a7f014610316575b5f80fd5b6102a361029e366004613270565b610631565b6040516001600160401b0390911681526020015b60405180910390f35b6102e1604051806040016040528060028152602001610a8d60f31b81525081565b6040516102b791906132d5565b6102a36102fc3660046132e7565b6107c8565b61031461030f366004613316565b6109bf565b005b6102a3610324366004613345565b610a27565b6102a3620186a081565b6103466103413660046134a8565b610b8a565b6040516102b791905f6080820190508251825263ffffffff60e01b602084015116602083015264ffffffffff604084015116604083015264ffffffffff606084015116606083015292915050565b6102a36103a2366004613500565b610df8565b6102e16103b536600461352d565b610fee565b6102a3614a3881565b6103d66103d1366004613580565b611036565b6040516102b7919061367f565b6102a36103e881565b6103146103fa3660046136e3565b61115f565b61031461040d366004613753565b611692565b6103146104203660046137d1565b61197c565b61043861043336600461380e565b611a10565b6040516102b791906138b2565b61045861045336600461352d565b611c3d565b60405190151581526020016102b7565b6102a3610476366004613316565b611d42565b6102a3606481565b610458610491366004613316565b611d96565b6104386104a436600461352d565b611e29565b6104586104b7366004613316565b611e3f565b6103146104ca366004613930565b611e86565b6001600160401b036102a3565b6102e16104ea36600461394c565b611f49565b6103146104fd366004613980565b611ff3565b6104586105103660046139bd565b612156565b6102a36201adb081565b6104386125e8565b6102e1604051806040016040528060058152602001645f526f6c6560d81b81525081565b6102e1610559366004613a99565b612608565b5f6102a3565b6102e161279a565b6102e16127bd565b610314610582366004613ac5565b6127e1565b61045861059536600461352d565b612905565b6105ad6105a8366004613b13565b612929565b6040516001600160a01b0390911681526020016102b7565b6102a3620f424081565b6104386105dd36600461352d565b612a75565b610438612a8a565b6105fd6105f8366004613b61565b612aa1565b6040516102b7929190613bb5565b6102a3610619366004613bd8565b612ccc565b61031461062c366004613c04565b612f07565b604051632b10f60d60e21b815260ff821660048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af415801561069f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c39190613c1f565b604051632b10f60d60e21b815260ff8716600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063ac43d83490602401602060405180830381865af4158015610713573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107379190613c55565b610743906103e8613c84565b61074f906103e8613cad565b6001600160601b03166107629190613ccc565b6040518263ffffffff1660e01b815260040161078091815260200190565b602060405180830381865af415801561079b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bf9190613cdf565b90505b92915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b73__$b659da7d8a6d2d32aa6c1e17da23dc2174$__63fbcaa8ed6040518163ffffffff1660e01b8152600401602060405180830381865af415801561082a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061084e9190613d05565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af415801561089f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c39190613c1f565b604051632b10f60d60e21b815260ff8616600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063ac43d83490602401602060405180830381865af4158015610913573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109379190613c55565b610943906103e8613c84565b61094f906103e8613cad565b6001600160601b03166109629190613ccc565b6040518263ffffffff1660e01b815260040161098091815260200190565b602060405180830381865af415801561099b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c29190613cdf565b6109dc816109cb612fa9565b6001600160401b0390811691161490565b156109fa57604051639034e22f60e01b815260040160405180910390fd5b610a06816109cb61301e565b15610a245760405163366fac4360e11b815260040160405180910390fd5b50565b604051635bfa502760e01b81526001600160401b03821660048201525f9081906001600160a01b03851690635bfa50279060240160e060405180830381865afa158015610a76573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a9a9190613d2b565b60c00151604051631623433d60e31b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015610aec573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610b139190810190613df6565b604051634e56802960e11b81529091506001600160a01b03861690639cad005290610b429084906004016132d5565b6040805180830381865afa158015610b5c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b809190613e45565b5095945050505050565b604080516080810182525f8082526020820181905291810182905260608101919091526001600160e01b03198316610bd557604051633f6ec33560e21b815260040160405180910390fd5b81515f03610bf65760405163c075994d60e01b815260040160405180910390fd5b60408051608081019182905263cdc23e6960e01b9091528073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69610c3586608485016132d5565b602060405180830381865af4158015610c50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c749190613c1f565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af4158015610cd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf79190613e72565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610d4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d719190613e8d565b64ffffffffff16815260200173__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610dc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de89190613e8d565b64ffffffffff1690529392505050565b5f6001836007811115610e0d57610e0d61387e565b03610ea45773__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b610e37846064613ea8565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610e79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e9d9190613cdf565b9050610fe7565b6003836007811115610eb857610eb861387e565b1480610ed557506002836007811115610ed357610ed361387e565b145b15610ee457610e9d8484612ccc565b6004836007811115610ef857610ef861387e565b03610f245773__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b610e3784620186a0613ea8565b6005836007811115610f3857610f3861387e565b03610f645773__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b610e37846201adb0613ea8565b6007836007811115610f7857610f7861387e565b1480610f9557506006836007811115610f9357610f9361387e565b145b15610fc15773__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b610e3784620f4240613ea8565b838360405163058666f560e21b8152600401610fde929190613ec7565b60405180910390fd5b9392505050565b606081604051806040016040528060058152602001645f526f6c6560d81b815250604051602001611020929190613efb565b6040516020818303038152906040529050919050565b8051606090806001600160401b03811115611053576110536133a2565b60405190808252806020026020018201604052801561107c578160200160208202803683370190505b5091505f5b818110156111585783818151811061109b5761109b613f0f565b6020908102919091018101510151604051636ea1af2560e11b81526001600160e01b0319909116600482015273__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af4158015611101573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111259190613e72565b83828151811061113757611137613f0f565b6001600160e01b031990921660209283029190910190910152600101611081565b5050919050565b60405163302d508560e11b81526001600160a01b03848116600483015285169063605aa10a90602401602060405180830381865afa1580156111a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c79190613f23565b156112c8576040516312e1ebc560e01b81526001600160a01b0380851660048301528491908616906312e1ebc59060240160a060405180830381865afa158015611213573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112379190613f3e565b51604051631623433d60e31b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015611286573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112ad9190810190613df6565b604051630bf898a560e31b8152600401610fde929190613bb5565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e69906113019086906004016132d5565b602060405180830381865af415801561131c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113409190613c1f565b60405163a9dbaf2560e01b81526004810182905290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063a9dbaf2590602401602060405180830381865af4158015611391573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113b59190613c1f565b5f036113df57604051638a0b84e560e01b81526001600160a01b0385166004820152602401610fde565b604051631a0358a960e11b8152600481018290525f906001600160a01b03871690633406b15290602401602060405180830381865afa158015611424573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114489190613fd7565b90506001600160a01b038116156114785784848260405163375fd50360e11b8152600401610fde93929190613ff2565b6040516303d2026b60e21b81526001600160a01b038616600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90630f4809ac90602401602060405180830381865af41580156114ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f29190613f23565b61151a57604051637693f8d560e01b81526001600160a01b0386166004820152602401610fde565b821561168a575f856001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561155d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115819190613fd7565b9050866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115e39190613fd7565b6001600160a01b0316816001600160a01b03161461168857866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611637573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165b9190613fd7565b604051630deaa28d60e31b81526001600160a01b0391821660048201529082166024820152604401610fde565b505b505050505050565b8080156116a757506001600160a01b03861615155b156116d057604051631032fd6b60e01b81526001600160a01b0387166004820152602401610fde565b81156117815760405163d905700760e01b815273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d90570079061171590889062d1d15b60e11b9060040161402d565b602060405180830381865af4158015611730573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117549190613f23565b61177c5760405163bea2481f60e01b81526001600160a01b0386166004820152602401610fde565b611828565b60405163d905700760e01b815273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d9057007906117c1908890635a183bdb60e11b9060040161402d565b602060405180830381865af41580156117dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118009190613f23565b61182857604051637737699b60e01b81526001600160a01b0386166004820152602401610fde565b5f856001600160a01b031663b68d18096040518163ffffffff1660e01b8152600401602060405180830381865afa158015611865573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118899190613d05565b905060ff808216908616146118cd5760405163a1eb7bc960e01b81526001600160a01b038716600482015260ff808716602483015282166044820152606401610fde565b5f866001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561190a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061192e9190613d05565b905060ff8082169086161461197257604051630fc1a0bf60e41b81526001600160a01b038816600482015260ff808716602483015282166044820152606401610fde565b5050505050505050565b60405163302d508560e11b81526001600160a01b03828116600483015283169063605aa10a90602401602060405180830381865afa1580156119c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e49190613f23565b611a0c57604051630a504d9560e11b81526001600160a01b0382166004820152602401610fde565b5050565b611a18613226565b6040518060e00160405280866001600160401b03168152602001856007811115611a4457611a4461387e565b81526020018463ffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac09190613e8d565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b379190613e8d565b64ffffffffff16815260200173__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b8a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bae9190613e8d565b64ffffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401611bf191906132d5565b602060405180830381865af4158015611c0c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c309190613c1f565b905290505b949350505050565b5f73__$9a094f9b231ed0f5f85a69be8408d93180$__6321a4964283611c6161279a565b6040518363ffffffff1660e01b8152600401611c7e929190614050565b602060405180830381865af4158015611c99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cbd9190613f23565b806107c2575073__$9a094f9b231ed0f5f85a69be8408d93180$__6321a4964283611ce66127bd565b6040518363ffffffff1660e01b8152600401611d03929190614050565b602060405180830381865af4158015611d1e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c29190613f23565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b611d6a84620f4240613ea8565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401610980565b604051631517388760e21b81526001600160401b03821660048201525f90620f42409073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c906024015b602060405180830381865af4158015611df4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e189190613cdf565b6001600160401b0316101592915050565b611e31613226565b6107c25f6003600185611a10565b604051631517388760e21b81526001600160401b03821660048201525f906201adb09073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401611dd9565b604051631627905560e01b81526001600160a01b038316600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015611edc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f009190613f23565b611f285760405163a91c340960e01b81526001600160a01b0383166004820152602401610fde565b80515f03611a0c5760405163ea69a8ad60e01b815260040160405180910390fd5b604051631623433d60e31b81526004810183905260609073__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015611f99573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611fc09190810190613df6565b611fca8584612608565b604051602001611fdb92919061407d565b60405160208183030381529060405290509392505050565b611ffc83612f07565b6040516308b09a5f60e41b81526001600160a01b0383811660048301525f9190851690638b09a5f0906024015f60405180830381865afa158015612042573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261206991908101906140bd565b604090810151905163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156120c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120e59190613f23565b1561210e57604051633b69638960e11b81526001600160a01b0384166004820152602401610fde565b60ff808216908316146121505760405163b1feebfb60e01b81526001600160a01b038416600482015260ff808416602483015282166044820152606401610fde565b50505050565b5f612163846109cb612fa9565b806121755750612175846109cb61301e565b1561218257506001611c35565b8180156121f9575060405163c6a0017960e01b81526001600160401b03851660048201526001600160a01b0386169063c6a0017990602401602060405180830381865afa1580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190613f23565b1561230357604051635bfa502760e01b81526001600160401b038516600482015284906001600160a01b03871690635bfa50279060240160e060405180830381865afa15801561224b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226f9190613d2b565b60c00151604051631623433d60e31b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af41580156122c1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526122e89190810190613df6565b60405163c2f92fd360e01b8152600401610fde92919061418d565b825160405163c6a0017960e01b81526001600160401b0390911660048201526001600160a01b0386169063c6a0017990602401602060405180830381865afa158015612351573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123759190613f23565b6123a0578251604051634731add760e11b81526001600160401b039091166004820152602401610fde565b60c083015160405163a9dbaf2560e01b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063a9dbaf2590602401602060405180830381865af41580156123f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124189190613c1f565b5f036124425760405163ce242fe760e01b81526001600160401b0385166004820152602401610fde565b5f80866001600160a01b0316639cad005273__$9a094f9b231ed0f5f85a69be8408d93180$__63b11a19e88860c001516040518263ffffffff1660e01b815260040161249091815260200190565b5f60405180830381865af41580156124aa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526124d19190810190613df6565b6040518263ffffffff1660e01b81526004016124ed91906132d5565b6040805180830381865afa158015612507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252b9190613e45565b915091508380156125395750805b156125dc5760c0850151604051631623433d60e31b8152879173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e89161257e9160040190815260200190565b5f60405180830381865af4158015612598573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125bf9190810190613df6565b8360405163ab0b63a360e01b8152600401610fde939291906141ae565b505f9695505050505050565b6125f0613226565b6126035f600763ffffffff6104336127bd565b905090565b60405163c6a0017960e01b81526001600160401b03821660048201526060906001600160a01b0384169063c6a0017990602401602060405180830381865afa158015612656573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061267a9190613f23565b1561276e57604051635bfa502760e01b81526001600160401b03831660048201526001600160a01b03841690635bfa50279060240160e060405180830381865afa1580156126ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126ee9190613d2b565b60c00151604051631623433d60e31b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015612740573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526127679190810190613df6565b90506107c2565b5060408051808201909152600e81526d1e3ab735b737bbb716b937b6329f60911b602082015292915050565b60408051808201909152600981526841646d696e526f6c6560b81b602082015290565b60408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b6040516312e1ebc560e01b81526001600160a01b0384811660048301525f91908616906312e1ebc59060240160a060405180830381865afa158015612828573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061284c9190613f3e565b6020015190505f8160078111156128655761286561387e565b0361288e57604051630a504d9560e11b81526001600160a01b0385166004820152602401610fde565b81156128f15760058160078111156128a8576128a861387e565b141580156128c8575060068160078111156128c5576128c561387e565b14155b156128f15760405163f25d9d3960e01b81526001600160a01b0385166004820152602401610fde565b6128fe858460018061305e565b5050505050565b5f73__$9a094f9b231ed0f5f85a69be8408d93180$__6321a4964283611ce661279a565b5f612994856001600160a01b0316635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612969573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061298d9190613fd7565b8484611ff3565b5f856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129f59190613d05565b90505f849050806001600160a01b0316636bd1c0eb6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a5b9190613fd7565b9250612a6b868486855f80611692565b5050949350505050565b612a7d613226565b6107c25f60018085611a10565b612a92613226565b6126035f60018061043361279a565b5f60606005836007811115612ab857612ab861387e565b14158015612ad857506001836007811115612ad557612ad561387e565b14155b15612af457505060408051602081019091525f80825290612cc4565b604051631627905560e01b81526001600160a01b038616600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015612b4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6e9190613f23565b612b8957505060408051602081019091525f80825290612cc4565b60405163d905700760e01b815273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790612bc99088906306e9e5ff60e31b9060040161402d565b602060405180830381865af4158015612be4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c089190613f23565b612c2357505060408051602081019091525f80825290612cc4565b846001600160a01b03166343d752d36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c839190613fd7565b915083604051806040016040528060028152602001610a8d60f31b815250604051602001612cb2929190613efb565b60405160208183030381529060405290505b935093915050565b5f826003836007811115612ce257612ce261387e565b03612e315773__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe826001600160a01b031663b68d18096040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d619190613d05565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dc19190613d05565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015612e05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e299190613cdf565b9150506107c2565b6002836007811115612e4557612e4561387e565b03612eea5773__$1d92393fa9ccd763988368ce8a1cb90d26$__63383ff861826001600160a01b031663b68d18096040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ea0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ec49190613d05565b6040516001600160e01b031960e084901b16815260ff9091166004820152602401612dea565b838360405163f46de64d60e01b8152600401610fde929190613ec7565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015612f5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f819190613f23565b610a245760405163375acd0b60e11b81526001600160a01b0382166004820152602401610fde565b6040516368aebf7b60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af4158015612ffa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126039190613cdf565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612fdf565b60405163c6a0017960e01b81526001600160401b03841660048201526001600160a01b0385169063c6a0017990602401602060405180830381865afa1580156130a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130cd9190613f23565b6130f557604051632ed3a17160e11b81526001600160401b0384166004820152602401610fde565b8180156131ef5750604051635bfa502760e01b81526001600160401b03841660048201526131ef906001600160a01b03861690635bfa50279060240160e060405180830381865afa15801561314c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131709190613d2b565b6080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156131bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131df9190613e8d565b64ffffffffff9081169116111590565b15613218576040516332d0641160e21b81526001600160401b0384166004820152602401610fde565b8061215057612150836109bf565b6040805160e081019091525f808252602082019081525f6020820181905260408201819052606082018190526080820181905260a09091015290565b60ff81168114610a24575f80fd5b5f8060408385031215613281575f80fd5b823561328c81613262565b9150602083013561329c81613262565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6107bf60208301846132a7565b5f602082840312156132f7575f80fd5b8135610fe781613262565b6001600160401b0381168114610a24575f80fd5b5f60208284031215613326575f80fd5b8135610fe781613302565b6001600160a01b0381168114610a24575f80fd5b5f805f60608486031215613357575f80fd5b833561336281613331565b9250602084013561337281613331565b9150604084013561338281613302565b809150509250925092565b6001600160e01b031981168114610a24575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b03811182821017156133d8576133d86133a2565b60405290565b60405160e081016001600160401b03811182821017156133d8576133d86133a2565b604051601f8201601f191681016001600160401b0381118282101715613428576134286133a2565b604052919050565b5f6001600160401b03821115613448576134486133a2565b50601f01601f191660200190565b5f82601f830112613465575f80fd5b813561347861347382613430565b613400565b81815284602083860101111561348c575f80fd5b816020850160208301375f918101602001919091529392505050565b5f80604083850312156134b9575f80fd5b82356134c48161338d565b915060208301356001600160401b038111156134de575f80fd5b6134ea85828601613456565b9150509250929050565b60088110610a24575f80fd5b5f805f60608486031215613512575f80fd5b833561351d81613331565b92506020840135613372816134f4565b5f6020828403121561353d575f80fd5b81356001600160401b03811115613552575f80fd5b611c3584828501613456565b64ffffffffff81168114610a24575f80fd5b803561357b8161355e565b919050565b5f60208284031215613590575f80fd5b81356001600160401b038111156135a5575f80fd5b8201601f810184136135b5575f80fd5b80356001600160401b038111156135ce576135ce6133a2565b6135dd60208260051b01613400565b8082825260208201915060208360071b8501019250868311156135fe575f80fd5b6020840193505b82841015613675576080848803121561361c575f80fd5b6136246133b6565b8435815260208501356136368161338d565b602082015260408501356136498161355e565b6040820152606085013561365c8161355e565b6060820152825260809390930192602090910190613605565b9695505050505050565b602080825282518282018190525f918401906040840190835b818110156136c05783516001600160e01b031916835260209384019390920191600101613698565b509095945050505050565b8015158114610a24575f80fd5b803561357b816136cb565b5f805f80608085870312156136f6575f80fd5b843561370181613331565b9350602085013561371181613331565b925060408501356001600160401b0381111561372b575f80fd5b61373787828801613456565b9250506060850135613748816136cb565b939692955090935050565b5f805f805f8060c08789031215613768575f80fd5b863561377381613331565b9550602087013561378381613331565b9450604087013561379381613262565b935060608701356137a381613262565b925060808701356137b3816136cb565b915060a08701356137c3816136cb565b809150509295509295509295565b5f80604083850312156137e2575f80fd5b82356137ed81613331565b9150602083013561329c81613331565b63ffffffff81168114610a24575f80fd5b5f805f8060808587031215613821575f80fd5b843561382c81613302565b9350602085013561383c816134f4565b9250604085013561384c816137fd565b915060608501356001600160401b03811115613866575f80fd5b61387287828801613456565b91505092959194509250565b634e487b7160e01b5f52602160045260245ffd5b600881106138ae57634e487b7160e01b5f52602160045260245ffd5b9052565b81516001600160401b0316815260208083015160e08301916138d690840182613892565b5063ffffffff604084015116604083015264ffffffffff606084015116606083015264ffffffffff608084015116608083015260a083015161392160a084018264ffffffffff169052565b5060c092830151919092015290565b5f8060408385031215613941575f80fd5b82356134c481613331565b5f805f6060848603121561395e575f80fd5b833561396981613331565b925060208401359150604084013561338281613302565b5f805f60608486031215613992575f80fd5b833561399d81613331565b925060208401356139ad81613331565b9150604084013561338281613262565b5f805f808486036101408112156139d2575f80fd5b85356139dd81613331565b945060208601356139ed81613302565b935060e0603f1982011215613a00575f80fd5b50613a096133de565b6040860135613a1781613302565b81526060860135613a27816134f4565b60208201526080860135613a3a816137fd565b604082015260a0860135613a4d8161355e565b6060820152613a5e60c08701613570565b6080820152613a6f60e08701613570565b60a082015261010086013560c08201529150613a8e61012086016136d8565b905092959194509250565b5f8060408385031215613aaa575f80fd5b8235613ab581613331565b9150602083013561329c81613302565b5f805f8060808587031215613ad8575f80fd5b8435613ae381613331565b93506020850135613af381613331565b92506040850135613b0381613302565b91506060850135613748816136cb565b5f805f8060808587031215613b26575f80fd5b8435613b3181613331565b93506020850135613b4181613331565b92506040850135613b5181613331565b9150606085013561374881613262565b5f805f60608486031215613b73575f80fd5b8335613b7e81613331565b925060208401356001600160401b03811115613b98575f80fd5b613ba486828701613456565b9250506040840135613382816134f4565b6001600160a01b03831681526040602082018190525f90611c35908301846132a7565b5f8060408385031215613be9575f80fd5b8235613bf481613331565b9150602083013561329c816134f4565b5f60208284031215613c14575f80fd5b8135610fe781613331565b5f60208284031215613c2f575f80fd5b5051919050565b6001600160601b0381168114610a24575f80fd5b805161357b81613c36565b5f60208284031215613c65575f80fd5b8151610fe781613c36565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b038181168382160290811690818114613ca657613ca6613c70565b5092915050565b6001600160601b0381811683821601908111156107c2576107c2613c70565b808201808211156107c2576107c2613c70565b5f60208284031215613cef575f80fd5b8151610fe781613302565b805161357b81613262565b5f60208284031215613d15575f80fd5b8151610fe781613262565b805161357b8161355e565b5f60e0828403128015613d3c575f80fd5b50613d456133de565b8251613d5081613302565b81526020830151613d60816134f4565b60208201526040830151613d73816137fd565b60408201526060830151613d868161355e565b6060820152613d9760808401613d20565b6080820152613da860a08401613d20565b60a082015260c0928301519281019290925250919050565b5f613dcd61347384613430565b9050828152838383011115613de0575f80fd5b8282602083015e5f602084830101529392505050565b5f60208284031215613e06575f80fd5b81516001600160401b03811115613e1b575f80fd5b8201601f81018413613e2b575f80fd5b611c3584825160208401613dc0565b805161357b816136cb565b5f8060408385031215613e56575f80fd5b8251613e6181613302565b602084015190925061329c816136cb565b5f60208284031215613e82575f80fd5b8151610fe78161338d565b5f60208284031215613e9d575f80fd5b8151610fe78161355e565b6001600160401b0381811683821601908111156107c2576107c2613c70565b6001600160a01b038316815260408101610fe76020830184613892565b5f81518060208401855e5f93019283525090919050565b5f611c35613f098386613ee4565b84613ee4565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215613f33575f80fd5b8151610fe7816136cb565b5f60a0828403128015613f4f575f80fd5b5060405160a081016001600160401b0381118282101715613f7257613f726133a2565b604052825181526020830151613f87816134f4565b60208201526040830151613f9a81613302565b60408201526060830151613fad8161355e565b60608201526080830151613fc08161355e565b60808201529392505050565b805161357b81613331565b5f60208284031215613fe7575f80fd5b8151610fe781613331565b6001600160a01b03841681526060602082018190525f90614015908301856132a7565b905060018060a01b0383166040830152949350505050565b6001600160a01b039290921682526001600160e01b031916602082015260400190565b604081525f61406260408301856132a7565b828103602084015261407481856132a7565b95945050505050565b5f6140888285613ee4565b63014149d160e51b81526140746004820185613ee4565b5f82601f8301126140ae575f80fd5b6107bf83835160208501613dc0565b5f602082840312156140cd575f80fd5b81516001600160401b038111156140e2575f80fd5b820160e081850312156140f3575f80fd5b6140fb6133de565b61410482613c4a565b815261411260208301613c4a565b602082015261412360408301613cfa565b604082015261413460608301613e3a565b606082015261414560808301613fcc565b608082015261415660a08301613fcc565b60a082015260c08201516001600160401b03811115614173575f80fd5b61417f8682850161409f565b60c083015250949350505050565b6001600160401b0383168152604060208201525f611c3560408301846132a7565b6001600160401b0384168152606060208201525f6141cf60608301856132a7565b90506001600160401b038316604083015294935050505056fea2646970667358221220ae6534685419aba72ba448d8b57e84745a230554bed032576982ec03c7b13fdc64736f6c634300081a0033",
1547
+ "deployedBytecode": "0x730000000000000000000000000000000000000000301460806040526004361061028c575f3560e01c80638308ceb111610161578063bc62a0a5116100d5578063ceaaf86b1161008f578063ceaaf86b146105c5578063cf291648146105cf578063d09ce86c146105e2578063d27e68a9146105ea578063d4c3026c1461060b578063e03aefc21461061e575f80fd5b8063bc62a0a514610564578063bcfb11b01461056c578063c354279a14610574578063c68eb45514610587578063c87a86c41461059a578063caf3ba4a146103e3575f80fd5b8063a43e328111610126578063a43e328114610515578063aec48fc71461051f578063b05601aa146103e3578063b1d4d5c314610527578063b3d2fe461461054b578063b3ecf2361461055e575f80fd5b80638308ceb1146104cf5780638f83fd63146104dc578063915f1dbb1461047b5780639b7ec44c146104ef578063a400335c14610502575f80fd5b806346729cd2116102035780635b55eef2116101bd5780635b55eef2146104685780636126bf441461047b57806361890d9b14610483578063650cbf891461049657806366048929146104a95780637d09289c146104bc575f80fd5b806346729cd2146103e35780634924730a146103ec5780634eaf40a2146103ff57806351f2b1e1146104125780635917626e146104255780635aa3d72714610445575f80fd5b80630ccbae51116102545780630ccbae511461032957806315fb0abb14610333578063195746e91461039457806337c339e5146103a75780634068538c146103ba578063448111d7146103c3575f80fd5b806303d6f9be1461029057806304c713a7146102c057806305b81b9f146102ee57806305bc847d146103015780630781a7f014610316575b5f80fd5b6102a361029e366004613270565b610631565b6040516001600160401b0390911681526020015b60405180910390f35b6102e1604051806040016040528060028152602001610a8d60f31b81525081565b6040516102b791906132d5565b6102a36102fc3660046132e7565b6107c8565b61031461030f366004613316565b6109bf565b005b6102a3610324366004613345565b610a27565b6102a3620186a081565b6103466103413660046134a8565b610b8a565b6040516102b791905f6080820190508251825263ffffffff60e01b602084015116602083015264ffffffffff604084015116604083015264ffffffffff606084015116606083015292915050565b6102a36103a2366004613500565b610df8565b6102e16103b536600461352d565b610fee565b6102a3614a3881565b6103d66103d1366004613580565b611036565b6040516102b7919061367f565b6102a36103e881565b6103146103fa3660046136e3565b61115f565b61031461040d366004613753565b611692565b6103146104203660046137d1565b61197c565b61043861043336600461380e565b611a10565b6040516102b791906138b2565b61045861045336600461352d565b611c3d565b60405190151581526020016102b7565b6102a3610476366004613316565b611d42565b6102a3606481565b610458610491366004613316565b611d96565b6104386104a436600461352d565b611e29565b6104586104b7366004613316565b611e3f565b6103146104ca366004613930565b611e86565b6001600160401b036102a3565b6102e16104ea36600461394c565b611f49565b6103146104fd366004613980565b611ff3565b6104586105103660046139bd565b612156565b6102a36201adb081565b6104386125e8565b6102e1604051806040016040528060058152602001645f526f6c6560d81b81525081565b6102e1610559366004613a99565b612608565b5f6102a3565b6102e161279a565b6102e16127bd565b610314610582366004613ac5565b6127e1565b61045861059536600461352d565b612905565b6105ad6105a8366004613b13565b612929565b6040516001600160a01b0390911681526020016102b7565b6102a3620f424081565b6104386105dd36600461352d565b612a75565b610438612a8a565b6105fd6105f8366004613b61565b612aa1565b6040516102b7929190613bb5565b6102a3610619366004613bd8565b612ccc565b61031461062c366004613c04565b612f07565b604051632b10f60d60e21b815260ff821660048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af415801561069f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c39190613c1f565b604051632b10f60d60e21b815260ff8716600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063ac43d83490602401602060405180830381865af4158015610713573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107379190613c55565b610743906103e8613c84565b61074f906103e8613cad565b6001600160601b03166107629190613ccc565b6040518263ffffffff1660e01b815260040161078091815260200190565b602060405180830381865af415801561079b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bf9190613cdf565b90505b92915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b73__$b659da7d8a6d2d32aa6c1e17da23dc2174$__63fbcaa8ed6040518163ffffffff1660e01b8152600401602060405180830381865af415801561082a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061084e9190613d05565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af415801561089f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108c39190613c1f565b604051632b10f60d60e21b815260ff8616600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063ac43d83490602401602060405180830381865af4158015610913573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109379190613c55565b610943906103e8613c84565b61094f906103e8613cad565b6001600160601b03166109629190613ccc565b6040518263ffffffff1660e01b815260040161098091815260200190565b602060405180830381865af415801561099b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c29190613cdf565b6109dc816109cb612fa9565b6001600160401b0390811691161490565b156109fa57604051639034e22f60e01b815260040160405180910390fd5b610a06816109cb61301e565b15610a245760405163366fac4360e11b815260040160405180910390fd5b50565b604051635bfa502760e01b81526001600160401b03821660048201525f9081906001600160a01b03851690635bfa50279060240160e060405180830381865afa158015610a76573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a9a9190613d2b565b60c00151604051631623433d60e31b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015610aec573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610b139190810190613df6565b604051634e56802960e11b81529091506001600160a01b03861690639cad005290610b429084906004016132d5565b6040805180830381865afa158015610b5c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b809190613e45565b5095945050505050565b604080516080810182525f8082526020820181905291810182905260608101919091526001600160e01b03198316610bd557604051633f6ec33560e21b815260040160405180910390fd5b81515f03610bf65760405163c075994d60e01b815260040160405180910390fd5b60408051608081019182905263cdc23e6960e01b9091528073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69610c3586608485016132d5565b602060405180830381865af4158015610c50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c749190613c1f565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af4158015610cd3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cf79190613e72565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610d4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d719190613e8d565b64ffffffffff16815260200173__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610dc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de89190613e8d565b64ffffffffff1690529392505050565b5f6001836007811115610e0d57610e0d61387e565b03610ea45773__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b610e37846064613ea8565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610e79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e9d9190613cdf565b9050610fe7565b6003836007811115610eb857610eb861387e565b1480610ed557506002836007811115610ed357610ed361387e565b145b15610ee457610e9d8484612ccc565b6004836007811115610ef857610ef861387e565b03610f245773__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b610e3784620186a0613ea8565b6005836007811115610f3857610f3861387e565b03610f645773__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b610e37846201adb0613ea8565b6007836007811115610f7857610f7861387e565b1480610f9557506006836007811115610f9357610f9361387e565b145b15610fc15773__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b610e3784620f4240613ea8565b838360405163058666f560e21b8152600401610fde929190613ec7565b60405180910390fd5b9392505050565b606081604051806040016040528060058152602001645f526f6c6560d81b815250604051602001611020929190613efb565b6040516020818303038152906040529050919050565b8051606090806001600160401b03811115611053576110536133a2565b60405190808252806020026020018201604052801561107c578160200160208202803683370190505b5091505f5b818110156111585783818151811061109b5761109b613f0f565b6020908102919091018101510151604051636ea1af2560e11b81526001600160e01b0319909116600482015273__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a90602401602060405180830381865af4158015611101573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111259190613e72565b83828151811061113757611137613f0f565b6001600160e01b031990921660209283029190910190910152600101611081565b5050919050565b60405163302d508560e11b81526001600160a01b03848116600483015285169063605aa10a90602401602060405180830381865afa1580156111a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c79190613f23565b156112c8576040516312e1ebc560e01b81526001600160a01b0380851660048301528491908616906312e1ebc59060240160a060405180830381865afa158015611213573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112379190613f3e565b51604051631623433d60e31b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015611286573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526112ad9190810190613df6565b604051630bf898a560e31b8152600401610fde929190613bb5565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e69906113019086906004016132d5565b602060405180830381865af415801561131c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113409190613c1f565b60405163a9dbaf2560e01b81526004810182905290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063a9dbaf2590602401602060405180830381865af4158015611391573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113b59190613c1f565b5f036113df57604051638a0b84e560e01b81526001600160a01b0385166004820152602401610fde565b604051631a0358a960e11b8152600481018290525f906001600160a01b03871690633406b15290602401602060405180830381865afa158015611424573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114489190613fd7565b90506001600160a01b038116156114785784848260405163375fd50360e11b8152600401610fde93929190613ff2565b6040516303d2026b60e21b81526001600160a01b038616600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90630f4809ac90602401602060405180830381865af41580156114ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f29190613f23565b61151a57604051637693f8d560e01b81526001600160a01b0386166004820152602401610fde565b821561168a575f856001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561155d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115819190613fd7565b9050866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115e39190613fd7565b6001600160a01b0316816001600160a01b03161461168857866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611637573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165b9190613fd7565b604051630deaa28d60e31b81526001600160a01b0391821660048201529082166024820152604401610fde565b505b505050505050565b8080156116a757506001600160a01b03861615155b156116d057604051631032fd6b60e01b81526001600160a01b0387166004820152602401610fde565b81156117815760405163d905700760e01b815273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d90570079061171590889062d1d15b60e11b9060040161402d565b602060405180830381865af4158015611730573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117549190613f23565b61177c5760405163bea2481f60e01b81526001600160a01b0386166004820152602401610fde565b611828565b60405163d905700760e01b815273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d9057007906117c1908890635a183bdb60e11b9060040161402d565b602060405180830381865af41580156117dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118009190613f23565b61182857604051637737699b60e01b81526001600160a01b0386166004820152602401610fde565b5f856001600160a01b031663b68d18096040518163ffffffff1660e01b8152600401602060405180830381865afa158015611865573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118899190613d05565b905060ff808216908616146118cd5760405163a1eb7bc960e01b81526001600160a01b038716600482015260ff808716602483015282166044820152606401610fde565b5f866001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561190a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061192e9190613d05565b905060ff8082169086161461197257604051630fc1a0bf60e41b81526001600160a01b038816600482015260ff808716602483015282166044820152606401610fde565b5050505050505050565b60405163302d508560e11b81526001600160a01b03828116600483015283169063605aa10a90602401602060405180830381865afa1580156119c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e49190613f23565b611a0c57604051630a504d9560e11b81526001600160a01b0382166004820152602401610fde565b5050565b611a18613226565b6040518060e00160405280866001600160401b03168152602001856007811115611a4457611a4461387e565b81526020018463ffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac09190613e8d565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b379190613e8d565b64ffffffffff16815260200173__$f55ca14f1ddce1b88fe30d23ae45f595f4$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b8a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bae9190613e8d565b64ffffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401611bf191906132d5565b602060405180830381865af4158015611c0c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c309190613c1f565b905290505b949350505050565b5f73__$9a094f9b231ed0f5f85a69be8408d93180$__6321a4964283611c6161279a565b6040518363ffffffff1660e01b8152600401611c7e929190614050565b602060405180830381865af4158015611c99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cbd9190613f23565b806107c2575073__$9a094f9b231ed0f5f85a69be8408d93180$__6321a4964283611ce66127bd565b6040518363ffffffff1660e01b8152600401611d03929190614050565b602060405180830381865af4158015611d1e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c29190613f23565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__6368aebf7b611d6a84620f4240613ea8565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401610980565b604051631517388760e21b81526001600160401b03821660048201525f90620f42409073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c906024015b602060405180830381865af4158015611df4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e189190613cdf565b6001600160401b0316101592915050565b611e31613226565b6107c25f6003600185611a10565b604051631517388760e21b81526001600160401b03821660048201525f906201adb09073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401611dd9565b604051631627905560e01b81526001600160a01b038316600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015611edc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f009190613f23565b611f285760405163a91c340960e01b81526001600160a01b0383166004820152602401610fde565b80515f03611a0c5760405163ea69a8ad60e01b815260040160405180910390fd5b604051631623433d60e31b81526004810183905260609073__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015611f99573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611fc09190810190613df6565b611fca8584612608565b604051602001611fdb92919061407d565b60405160208183030381529060405290509392505050565b611ffc83612f07565b6040516308b09a5f60e41b81526001600160a01b0383811660048301525f9190851690638b09a5f0906024015f60405180830381865afa158015612042573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261206991908101906140bd565b604090810151905163037c8cb160e51b815260ff8216600482015290915073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af41580156120c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120e59190613f23565b1561210e57604051633b69638960e11b81526001600160a01b0384166004820152602401610fde565b60ff808216908316146121505760405163b1feebfb60e01b81526001600160a01b038416600482015260ff808416602483015282166044820152606401610fde565b50505050565b5f612163846109cb612fa9565b806121755750612175846109cb61301e565b1561218257506001611c35565b8180156121f9575060405163c6a0017960e01b81526001600160401b03851660048201526001600160a01b0386169063c6a0017990602401602060405180830381865afa1580156121d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f99190613f23565b1561230357604051635bfa502760e01b81526001600160401b038516600482015284906001600160a01b03871690635bfa50279060240160e060405180830381865afa15801561224b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061226f9190613d2b565b60c00151604051631623433d60e31b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af41580156122c1573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526122e89190810190613df6565b60405163c2f92fd360e01b8152600401610fde92919061418d565b825160405163c6a0017960e01b81526001600160401b0390911660048201526001600160a01b0386169063c6a0017990602401602060405180830381865afa158015612351573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123759190613f23565b6123a0578251604051634731add760e11b81526001600160401b039091166004820152602401610fde565b60c083015160405163a9dbaf2560e01b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063a9dbaf2590602401602060405180830381865af41580156123f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124189190613c1f565b5f036124425760405163ce242fe760e01b81526001600160401b0385166004820152602401610fde565b5f80866001600160a01b0316639cad005273__$9a094f9b231ed0f5f85a69be8408d93180$__63b11a19e88860c001516040518263ffffffff1660e01b815260040161249091815260200190565b5f60405180830381865af41580156124aa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526124d19190810190613df6565b6040518263ffffffff1660e01b81526004016124ed91906132d5565b6040805180830381865afa158015612507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252b9190613e45565b915091508380156125395750805b156125dc5760c0850151604051631623433d60e31b8152879173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e89161257e9160040190815260200190565b5f60405180830381865af4158015612598573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125bf9190810190613df6565b8360405163ab0b63a360e01b8152600401610fde939291906141ae565b505f9695505050505050565b6125f0613226565b6126035f600763ffffffff6104336127bd565b905090565b60405163c6a0017960e01b81526001600160401b03821660048201526060906001600160a01b0384169063c6a0017990602401602060405180830381865afa158015612656573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061267a9190613f23565b1561276e57604051635bfa502760e01b81526001600160401b03831660048201526001600160a01b03841690635bfa50279060240160e060405180830381865afa1580156126ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126ee9190613d2b565b60c00151604051631623433d60e31b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063b11a19e8906024015f60405180830381865af4158015612740573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526127679190810190613df6565b90506107c2565b5060408051808201909152600e81526d1e3ab735b737bbb716b937b6329f60911b602082015292915050565b60408051808201909152600981526841646d696e526f6c6560b81b602082015290565b60408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b6040516312e1ebc560e01b81526001600160a01b0384811660048301525f91908616906312e1ebc59060240160a060405180830381865afa158015612828573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061284c9190613f3e565b6020015190505f8160078111156128655761286561387e565b0361288e57604051630a504d9560e11b81526001600160a01b0385166004820152602401610fde565b81156128f15760058160078111156128a8576128a861387e565b141580156128c8575060068160078111156128c5576128c561387e565b14155b156128f15760405163f25d9d3960e01b81526001600160a01b0385166004820152602401610fde565b6128fe858460018061305e565b5050505050565b5f73__$9a094f9b231ed0f5f85a69be8408d93180$__6321a4964283611ce661279a565b5f612994856001600160a01b0316635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612969573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061298d9190613fd7565b8484611ff3565b5f856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129f59190613d05565b90505f849050806001600160a01b0316636bd1c0eb6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a5b9190613fd7565b9250612a6b868486855f80611692565b5050949350505050565b612a7d613226565b6107c25f60018085611a10565b612a92613226565b6126035f60018061043361279a565b5f60606005836007811115612ab857612ab861387e565b14158015612ad857506001836007811115612ad557612ad561387e565b14155b15612af457505060408051602081019091525f80825290612cc4565b604051631627905560e01b81526001600160a01b038616600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015612b4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b6e9190613f23565b612b8957505060408051602081019091525f80825290612cc4565b60405163d905700760e01b815273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790612bc99088906306e9e5ff60e31b9060040161402d565b602060405180830381865af4158015612be4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c089190613f23565b612c2357505060408051602081019091525f80825290612cc4565b846001600160a01b03166343d752d36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c839190613fd7565b915083604051806040016040528060028152602001610a8d60f31b815250604051602001612cb2929190613efb565b60405160208183030381529060405290505b935093915050565b5f826003836007811115612ce257612ce261387e565b03612e315773__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe826001600160a01b031663b68d18096040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d3d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d619190613d05565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dc19190613d05565b6040516001600160e01b031960e085901b16815260ff9283166004820152911660248201526044015b602060405180830381865af4158015612e05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e299190613cdf565b9150506107c2565b6002836007811115612e4557612e4561387e565b03612eea5773__$1d92393fa9ccd763988368ce8a1cb90d26$__63383ff861826001600160a01b031663b68d18096040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ea0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ec49190613d05565b6040516001600160e01b031960e084901b16815260ff9091166004820152602401612dea565b838360405163f46de64d60e01b8152600401610fde929190613ec7565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015612f5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f819190613f23565b610a245760405163375acd0b60e11b81526001600160a01b0382166004820152602401610fde565b6040516368aebf7b60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af4158015612ffa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126039190613cdf565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401612fdf565b60405163c6a0017960e01b81526001600160401b03841660048201526001600160a01b0385169063c6a0017990602401602060405180830381865afa1580156130a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130cd9190613f23565b6130f557604051632ed3a17160e11b81526001600160401b0384166004820152602401610fde565b8180156131ef5750604051635bfa502760e01b81526001600160401b03841660048201526131ef906001600160a01b03861690635bfa50279060240160e060405180830381865afa15801561314c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131709190613d2b565b6080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af41580156131bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131df9190613e8d565b64ffffffffff9081169116111590565b15613218576040516332d0641160e21b81526001600160401b0384166004820152602401610fde565b8061215057612150836109bf565b6040805160e081019091525f808252602082019081525f6020820181905260408201819052606082018190526080820181905260a09091015290565b60ff81168114610a24575f80fd5b5f8060408385031215613281575f80fd5b823561328c81613262565b9150602083013561329c81613262565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6107bf60208301846132a7565b5f602082840312156132f7575f80fd5b8135610fe781613262565b6001600160401b0381168114610a24575f80fd5b5f60208284031215613326575f80fd5b8135610fe781613302565b6001600160a01b0381168114610a24575f80fd5b5f805f60608486031215613357575f80fd5b833561336281613331565b9250602084013561337281613331565b9150604084013561338281613302565b809150509250925092565b6001600160e01b031981168114610a24575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b03811182821017156133d8576133d86133a2565b60405290565b60405160e081016001600160401b03811182821017156133d8576133d86133a2565b604051601f8201601f191681016001600160401b0381118282101715613428576134286133a2565b604052919050565b5f6001600160401b03821115613448576134486133a2565b50601f01601f191660200190565b5f82601f830112613465575f80fd5b813561347861347382613430565b613400565b81815284602083860101111561348c575f80fd5b816020850160208301375f918101602001919091529392505050565b5f80604083850312156134b9575f80fd5b82356134c48161338d565b915060208301356001600160401b038111156134de575f80fd5b6134ea85828601613456565b9150509250929050565b60088110610a24575f80fd5b5f805f60608486031215613512575f80fd5b833561351d81613331565b92506020840135613372816134f4565b5f6020828403121561353d575f80fd5b81356001600160401b03811115613552575f80fd5b611c3584828501613456565b64ffffffffff81168114610a24575f80fd5b803561357b8161355e565b919050565b5f60208284031215613590575f80fd5b81356001600160401b038111156135a5575f80fd5b8201601f810184136135b5575f80fd5b80356001600160401b038111156135ce576135ce6133a2565b6135dd60208260051b01613400565b8082825260208201915060208360071b8501019250868311156135fe575f80fd5b6020840193505b82841015613675576080848803121561361c575f80fd5b6136246133b6565b8435815260208501356136368161338d565b602082015260408501356136498161355e565b6040820152606085013561365c8161355e565b6060820152825260809390930192602090910190613605565b9695505050505050565b602080825282518282018190525f918401906040840190835b818110156136c05783516001600160e01b031916835260209384019390920191600101613698565b509095945050505050565b8015158114610a24575f80fd5b803561357b816136cb565b5f805f80608085870312156136f6575f80fd5b843561370181613331565b9350602085013561371181613331565b925060408501356001600160401b0381111561372b575f80fd5b61373787828801613456565b9250506060850135613748816136cb565b939692955090935050565b5f805f805f8060c08789031215613768575f80fd5b863561377381613331565b9550602087013561378381613331565b9450604087013561379381613262565b935060608701356137a381613262565b925060808701356137b3816136cb565b915060a08701356137c3816136cb565b809150509295509295509295565b5f80604083850312156137e2575f80fd5b82356137ed81613331565b9150602083013561329c81613331565b63ffffffff81168114610a24575f80fd5b5f805f8060808587031215613821575f80fd5b843561382c81613302565b9350602085013561383c816134f4565b9250604085013561384c816137fd565b915060608501356001600160401b03811115613866575f80fd5b61387287828801613456565b91505092959194509250565b634e487b7160e01b5f52602160045260245ffd5b600881106138ae57634e487b7160e01b5f52602160045260245ffd5b9052565b81516001600160401b0316815260208083015160e08301916138d690840182613892565b5063ffffffff604084015116604083015264ffffffffff606084015116606083015264ffffffffff608084015116608083015260a083015161392160a084018264ffffffffff169052565b5060c092830151919092015290565b5f8060408385031215613941575f80fd5b82356134c481613331565b5f805f6060848603121561395e575f80fd5b833561396981613331565b925060208401359150604084013561338281613302565b5f805f60608486031215613992575f80fd5b833561399d81613331565b925060208401356139ad81613331565b9150604084013561338281613262565b5f805f808486036101408112156139d2575f80fd5b85356139dd81613331565b945060208601356139ed81613302565b935060e0603f1982011215613a00575f80fd5b50613a096133de565b6040860135613a1781613302565b81526060860135613a27816134f4565b60208201526080860135613a3a816137fd565b604082015260a0860135613a4d8161355e565b6060820152613a5e60c08701613570565b6080820152613a6f60e08701613570565b60a082015261010086013560c08201529150613a8e61012086016136d8565b905092959194509250565b5f8060408385031215613aaa575f80fd5b8235613ab581613331565b9150602083013561329c81613302565b5f805f8060808587031215613ad8575f80fd5b8435613ae381613331565b93506020850135613af381613331565b92506040850135613b0381613302565b91506060850135613748816136cb565b5f805f8060808587031215613b26575f80fd5b8435613b3181613331565b93506020850135613b4181613331565b92506040850135613b5181613331565b9150606085013561374881613262565b5f805f60608486031215613b73575f80fd5b8335613b7e81613331565b925060208401356001600160401b03811115613b98575f80fd5b613ba486828701613456565b9250506040840135613382816134f4565b6001600160a01b03831681526040602082018190525f90611c35908301846132a7565b5f8060408385031215613be9575f80fd5b8235613bf481613331565b9150602083013561329c816134f4565b5f60208284031215613c14575f80fd5b8135610fe781613331565b5f60208284031215613c2f575f80fd5b5051919050565b6001600160601b0381168114610a24575f80fd5b805161357b81613c36565b5f60208284031215613c65575f80fd5b8151610fe781613c36565b634e487b7160e01b5f52601160045260245ffd5b6001600160601b038181168382160290811690818114613ca657613ca6613c70565b5092915050565b6001600160601b0381811683821601908111156107c2576107c2613c70565b808201808211156107c2576107c2613c70565b5f60208284031215613cef575f80fd5b8151610fe781613302565b805161357b81613262565b5f60208284031215613d15575f80fd5b8151610fe781613262565b805161357b8161355e565b5f60e0828403128015613d3c575f80fd5b50613d456133de565b8251613d5081613302565b81526020830151613d60816134f4565b60208201526040830151613d73816137fd565b60408201526060830151613d868161355e565b6060820152613d9760808401613d20565b6080820152613da860a08401613d20565b60a082015260c0928301519281019290925250919050565b5f613dcd61347384613430565b9050828152838383011115613de0575f80fd5b8282602083015e5f602084830101529392505050565b5f60208284031215613e06575f80fd5b81516001600160401b03811115613e1b575f80fd5b8201601f81018413613e2b575f80fd5b611c3584825160208401613dc0565b805161357b816136cb565b5f8060408385031215613e56575f80fd5b8251613e6181613302565b602084015190925061329c816136cb565b5f60208284031215613e82575f80fd5b8151610fe78161338d565b5f60208284031215613e9d575f80fd5b8151610fe78161355e565b6001600160401b0381811683821601908111156107c2576107c2613c70565b6001600160a01b038316815260408101610fe76020830184613892565b5f81518060208401855e5f93019283525090919050565b5f611c35613f098386613ee4565b84613ee4565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215613f33575f80fd5b8151610fe7816136cb565b5f60a0828403128015613f4f575f80fd5b5060405160a081016001600160401b0381118282101715613f7257613f726133a2565b604052825181526020830151613f87816134f4565b60208201526040830151613f9a81613302565b60408201526060830151613fad8161355e565b60608201526080830151613fc08161355e565b60808201529392505050565b805161357b81613331565b5f60208284031215613fe7575f80fd5b8151610fe781613331565b6001600160a01b03841681526060602082018190525f90614015908301856132a7565b905060018060a01b0383166040830152949350505050565b6001600160a01b039290921682526001600160e01b031916602082015260400190565b604081525f61406260408301856132a7565b828103602084015261407481856132a7565b95945050505050565b5f6140888285613ee4565b63014149d160e51b81526140746004820185613ee4565b5f82601f8301126140ae575f80fd5b6107bf83835160208501613dc0565b5f602082840312156140cd575f80fd5b81516001600160401b038111156140e2575f80fd5b820160e081850312156140f3575f80fd5b6140fb6133de565b61410482613c4a565b815261411260208301613c4a565b602082015261412360408301613cfa565b604082015261413460608301613e3a565b606082015261414560808301613fcc565b608082015261415660a08301613fcc565b60a082015260c08201516001600160401b03811115614173575f80fd5b61417f8682850161409f565b60c083015250949350505050565b6001600160401b0383168152604060208201525f611c3560408301846132a7565b6001600160401b0384168152606060208201525f6141cf60608301856132a7565b90506001600160401b038316604083015294935050505056fea2646970667358221220ae6534685419aba72ba448d8b57e84745a230554bed032576982ec03c7b13fdc64736f6c634300081a0033",
1548
+ "linkReferences": {
1549
+ "contracts/shared/ContractLib.sol": {
1550
+ "ContractLib": [
1551
+ {
1552
+ "length": 20,
1553
+ "start": 5322
1554
+ },
1555
+ {
1556
+ "length": 20,
1557
+ "start": 5913
1558
+ },
1559
+ {
1560
+ "length": 20,
1561
+ "start": 6084
1562
+ },
1563
+ {
1564
+ "length": 20,
1565
+ "start": 7896
1566
+ },
1567
+ {
1568
+ "length": 20,
1569
+ "start": 11078
1570
+ },
1571
+ {
1572
+ "length": 20,
1573
+ "start": 11212
1574
+ },
1575
+ {
1576
+ "length": 20,
1577
+ "start": 12121
1578
+ }
1579
+ ]
1580
+ },
1581
+ "contracts/type/Blocknumber.sol": {
1582
+ "BlocknumberLib": [
1583
+ {
1584
+ "length": 20,
1585
+ "start": 3507
1586
+ },
1587
+ {
1588
+ "length": 20,
1589
+ "start": 7033
1590
+ }
1591
+ ]
1592
+ },
1593
+ "contracts/type/ObjectType.sol": {
1594
+ "ObjectTypeLib": [
1595
+ {
1596
+ "length": 20,
1597
+ "start": 1807
1598
+ },
1599
+ {
1600
+ "length": 20,
1601
+ "start": 2319
1602
+ },
1603
+ {
1604
+ "length": 20,
1605
+ "start": 8381
1606
+ }
1607
+ ]
1608
+ },
1609
+ "contracts/type/RoleId.sol": {
1610
+ "RoleIdLib": [
1611
+ {
1612
+ "length": 20,
1613
+ "start": 1663
1614
+ },
1615
+ {
1616
+ "length": 20,
1617
+ "start": 2047
1618
+ },
1619
+ {
1620
+ "length": 20,
1621
+ "start": 3656
1622
+ },
1623
+ {
1624
+ "length": 20,
1625
+ "start": 3891
1626
+ },
1627
+ {
1628
+ "length": 20,
1629
+ "start": 3955
1630
+ },
1631
+ {
1632
+ "length": 20,
1633
+ "start": 4048
1634
+ },
1635
+ {
1636
+ "length": 20,
1637
+ "start": 7545
1638
+ },
1639
+ {
1640
+ "length": 20,
1641
+ "start": 7663
1642
+ },
1643
+ {
1644
+ "length": 20,
1645
+ "start": 7832
1646
+ },
1647
+ {
1648
+ "length": 20,
1649
+ "start": 11549
1650
+ },
1651
+ {
1652
+ "length": 20,
1653
+ "start": 11904
1654
+ },
1655
+ {
1656
+ "length": 20,
1657
+ "start": 12277
1658
+ },
1659
+ {
1660
+ "length": 20,
1661
+ "start": 12400
1662
+ }
1663
+ ]
1664
+ },
1665
+ "contracts/type/Selector.sol": {
1666
+ "SelectorLib": [
1667
+ {
1668
+ "length": 20,
1669
+ "start": 3279
1670
+ },
1671
+ {
1672
+ "length": 20,
1673
+ "start": 4349
1674
+ }
1675
+ ]
1676
+ },
1677
+ "contracts/type/String.sol": {
1678
+ "StrLib": [
1679
+ {
1680
+ "length": 20,
1681
+ "start": 2793
1682
+ },
1683
+ {
1684
+ "length": 20,
1685
+ "start": 3140
1686
+ },
1687
+ {
1688
+ "length": 20,
1689
+ "start": 4739
1690
+ },
1691
+ {
1692
+ "length": 20,
1693
+ "start": 4877
1694
+ },
1695
+ {
1696
+ "length": 20,
1697
+ "start": 5005
1698
+ },
1699
+ {
1700
+ "length": 20,
1701
+ "start": 7152
1702
+ },
1703
+ {
1704
+ "length": 20,
1705
+ "start": 7284
1706
+ },
1707
+ {
1708
+ "length": 20,
1709
+ "start": 7417
1710
+ },
1711
+ {
1712
+ "length": 20,
1713
+ "start": 8086
1714
+ },
1715
+ {
1716
+ "length": 20,
1717
+ "start": 8894
1718
+ },
1719
+ {
1720
+ "length": 20,
1721
+ "start": 9200
1722
+ },
1723
+ {
1724
+ "length": 20,
1725
+ "start": 9353
1726
+ },
1727
+ {
1728
+ "length": 20,
1729
+ "start": 9608
1730
+ },
1731
+ {
1732
+ "length": 20,
1733
+ "start": 10045
1734
+ },
1735
+ {
1736
+ "length": 20,
1737
+ "start": 10556
1738
+ }
1739
+ ]
1740
+ },
1741
+ "contracts/type/Timestamp.sol": {
1742
+ "TimestampLib": [
1743
+ {
1744
+ "length": 20,
1745
+ "start": 3388
1746
+ },
1747
+ {
1748
+ "length": 20,
1749
+ "start": 6795
1750
+ },
1751
+ {
1752
+ "length": 20,
1753
+ "start": 6914
1754
+ },
1755
+ {
1756
+ "length": 20,
1757
+ "start": 12714
1758
+ }
1759
+ ]
1760
+ },
1761
+ "contracts/type/Version.sol": {
1762
+ "VersionPartLib": [
1763
+ {
1764
+ "length": 20,
1765
+ "start": 1691
1766
+ },
1767
+ {
1768
+ "length": 20,
1769
+ "start": 2073
1770
+ },
1771
+ {
1772
+ "length": 20,
1773
+ "start": 2203
1774
+ }
1775
+ ]
1776
+ }
1777
+ },
1778
+ "deployedLinkReferences": {
1779
+ "contracts/shared/ContractLib.sol": {
1780
+ "ContractLib": [
1781
+ {
1782
+ "length": 20,
1783
+ "start": 5270
1784
+ },
1785
+ {
1786
+ "length": 20,
1787
+ "start": 5861
1788
+ },
1789
+ {
1790
+ "length": 20,
1791
+ "start": 6032
1792
+ },
1793
+ {
1794
+ "length": 20,
1795
+ "start": 7844
1796
+ },
1797
+ {
1798
+ "length": 20,
1799
+ "start": 11026
1800
+ },
1801
+ {
1802
+ "length": 20,
1803
+ "start": 11160
1804
+ },
1805
+ {
1806
+ "length": 20,
1807
+ "start": 12069
1808
+ }
1809
+ ]
1810
+ },
1811
+ "contracts/type/Blocknumber.sol": {
1812
+ "BlocknumberLib": [
1813
+ {
1814
+ "length": 20,
1815
+ "start": 3455
1816
+ },
1817
+ {
1818
+ "length": 20,
1819
+ "start": 6981
1820
+ }
1821
+ ]
1822
+ },
1823
+ "contracts/type/ObjectType.sol": {
1824
+ "ObjectTypeLib": [
1825
+ {
1826
+ "length": 20,
1827
+ "start": 1755
1828
+ },
1829
+ {
1830
+ "length": 20,
1831
+ "start": 2267
1832
+ },
1833
+ {
1834
+ "length": 20,
1835
+ "start": 8329
1836
+ }
1837
+ ]
1838
+ },
1839
+ "contracts/type/RoleId.sol": {
1840
+ "RoleIdLib": [
1841
+ {
1842
+ "length": 20,
1843
+ "start": 1611
1844
+ },
1845
+ {
1846
+ "length": 20,
1847
+ "start": 1995
1848
+ },
1849
+ {
1850
+ "length": 20,
1851
+ "start": 3604
1852
+ },
1853
+ {
1854
+ "length": 20,
1855
+ "start": 3839
1856
+ },
1857
+ {
1858
+ "length": 20,
1859
+ "start": 3903
1860
+ },
1861
+ {
1862
+ "length": 20,
1863
+ "start": 3996
1864
+ },
1865
+ {
1866
+ "length": 20,
1867
+ "start": 7493
1868
+ },
1869
+ {
1870
+ "length": 20,
1871
+ "start": 7611
1872
+ },
1873
+ {
1874
+ "length": 20,
1875
+ "start": 7780
1876
+ },
1877
+ {
1878
+ "length": 20,
1879
+ "start": 11497
1880
+ },
1881
+ {
1882
+ "length": 20,
1883
+ "start": 11852
1884
+ },
1885
+ {
1886
+ "length": 20,
1887
+ "start": 12225
1888
+ },
1889
+ {
1890
+ "length": 20,
1891
+ "start": 12348
1892
+ }
1893
+ ]
1894
+ },
1895
+ "contracts/type/Selector.sol": {
1896
+ "SelectorLib": [
1897
+ {
1898
+ "length": 20,
1899
+ "start": 3227
1900
+ },
1901
+ {
1902
+ "length": 20,
1903
+ "start": 4297
1904
+ }
1905
+ ]
1906
+ },
1907
+ "contracts/type/String.sol": {
1908
+ "StrLib": [
1909
+ {
1910
+ "length": 20,
1911
+ "start": 2741
1912
+ },
1913
+ {
1914
+ "length": 20,
1915
+ "start": 3088
1916
+ },
1917
+ {
1918
+ "length": 20,
1919
+ "start": 4687
1920
+ },
1921
+ {
1922
+ "length": 20,
1923
+ "start": 4825
1924
+ },
1925
+ {
1926
+ "length": 20,
1927
+ "start": 4953
1928
+ },
1929
+ {
1930
+ "length": 20,
1931
+ "start": 7100
1932
+ },
1933
+ {
1934
+ "length": 20,
1935
+ "start": 7232
1936
+ },
1937
+ {
1938
+ "length": 20,
1939
+ "start": 7365
1940
+ },
1941
+ {
1942
+ "length": 20,
1943
+ "start": 8034
1944
+ },
1945
+ {
1946
+ "length": 20,
1947
+ "start": 8842
1948
+ },
1949
+ {
1950
+ "length": 20,
1951
+ "start": 9148
1952
+ },
1953
+ {
1954
+ "length": 20,
1955
+ "start": 9301
1956
+ },
1957
+ {
1958
+ "length": 20,
1959
+ "start": 9556
1960
+ },
1961
+ {
1962
+ "length": 20,
1963
+ "start": 9993
1964
+ },
1965
+ {
1966
+ "length": 20,
1967
+ "start": 10504
1968
+ }
1969
+ ]
1970
+ },
1971
+ "contracts/type/Timestamp.sol": {
1972
+ "TimestampLib": [
1973
+ {
1974
+ "length": 20,
1975
+ "start": 3336
1976
+ },
1977
+ {
1978
+ "length": 20,
1979
+ "start": 6743
1980
+ },
1981
+ {
1982
+ "length": 20,
1983
+ "start": 6862
1984
+ },
1985
+ {
1986
+ "length": 20,
1987
+ "start": 12662
1988
+ }
1989
+ ]
1990
+ },
1991
+ "contracts/type/Version.sol": {
1992
+ "VersionPartLib": [
1993
+ {
1994
+ "length": 20,
1995
+ "start": 1639
1996
+ },
1997
+ {
1998
+ "length": 20,
1999
+ "start": 2021
2000
+ },
2001
+ {
2002
+ "length": 20,
2003
+ "start": 2151
2004
+ }
2005
+ ]
2006
+ }
2007
+ }
2008
+ }