ethereum-execution 2.18.0rc6.dev2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (816) hide show
  1. ethereum/__init__.py +30 -0
  2. ethereum/assets/blocks/block_1.json +22 -0
  3. ethereum/assets/blocks/block_1234567.json +22 -0
  4. ethereum/assets/blocks/block_12964999.json +2720 -0
  5. ethereum/assets/cache_sizes_2048_epochs.json +329 -0
  6. ethereum/assets/dataset_sizes_2048_epochs.json +412 -0
  7. ethereum/assets/mainnet.json +26711 -0
  8. ethereum/crypto/__init__.py +3 -0
  9. ethereum/crypto/blake2.py +265 -0
  10. ethereum/crypto/elliptic_curve.py +170 -0
  11. ethereum/crypto/hash.py +56 -0
  12. ethereum/crypto/kzg.py +176 -0
  13. ethereum/ethash.py +426 -0
  14. ethereum/exceptions.py +75 -0
  15. ethereum/fork_criteria.py +205 -0
  16. ethereum/forks/arrow_glacier/__init__.py +33 -0
  17. ethereum/forks/arrow_glacier/blocks.py +326 -0
  18. ethereum/forks/arrow_glacier/bloom.py +87 -0
  19. ethereum/forks/arrow_glacier/exceptions.py +58 -0
  20. ethereum/forks/arrow_glacier/fork.py +954 -0
  21. ethereum/forks/arrow_glacier/fork_types.py +62 -0
  22. ethereum/forks/arrow_glacier/state.py +644 -0
  23. ethereum/forks/arrow_glacier/transactions.py +573 -0
  24. ethereum/forks/arrow_glacier/trie.py +498 -0
  25. ethereum/forks/arrow_glacier/utils/__init__.py +3 -0
  26. ethereum/forks/arrow_glacier/utils/address.py +94 -0
  27. ethereum/forks/arrow_glacier/utils/hexadecimal.py +55 -0
  28. ethereum/forks/arrow_glacier/utils/message.py +90 -0
  29. ethereum/forks/arrow_glacier/vm/__init__.py +195 -0
  30. ethereum/forks/arrow_glacier/vm/exceptions.py +131 -0
  31. ethereum/forks/arrow_glacier/vm/gas.py +245 -0
  32. ethereum/forks/arrow_glacier/vm/instructions/__init__.py +353 -0
  33. ethereum/forks/arrow_glacier/vm/instructions/arithmetic.py +373 -0
  34. ethereum/forks/arrow_glacier/vm/instructions/bitwise.py +245 -0
  35. ethereum/forks/arrow_glacier/vm/instructions/block.py +212 -0
  36. ethereum/forks/arrow_glacier/vm/instructions/comparison.py +177 -0
  37. ethereum/forks/arrow_glacier/vm/instructions/control_flow.py +171 -0
  38. ethereum/forks/arrow_glacier/vm/instructions/environment.py +544 -0
  39. ethereum/forks/arrow_glacier/vm/instructions/keccak.py +63 -0
  40. ethereum/forks/arrow_glacier/vm/instructions/log.py +88 -0
  41. ethereum/forks/arrow_glacier/vm/instructions/memory.py +141 -0
  42. ethereum/forks/arrow_glacier/vm/instructions/stack.py +204 -0
  43. ethereum/forks/arrow_glacier/vm/instructions/storage.py +126 -0
  44. ethereum/forks/arrow_glacier/vm/instructions/system.py +694 -0
  45. ethereum/forks/arrow_glacier/vm/interpreter.py +312 -0
  46. ethereum/forks/arrow_glacier/vm/memory.py +84 -0
  47. ethereum/forks/arrow_glacier/vm/precompiled_contracts/__init__.py +37 -0
  48. ethereum/forks/arrow_glacier/vm/precompiled_contracts/alt_bn128.py +230 -0
  49. ethereum/forks/arrow_glacier/vm/precompiled_contracts/blake2f.py +42 -0
  50. ethereum/forks/arrow_glacier/vm/precompiled_contracts/ecrecover.py +64 -0
  51. ethereum/forks/arrow_glacier/vm/precompiled_contracts/identity.py +39 -0
  52. ethereum/forks/arrow_glacier/vm/precompiled_contracts/mapping.py +46 -0
  53. ethereum/forks/arrow_glacier/vm/precompiled_contracts/modexp.py +166 -0
  54. ethereum/forks/arrow_glacier/vm/precompiled_contracts/ripemd160.py +44 -0
  55. ethereum/forks/arrow_glacier/vm/precompiled_contracts/sha256.py +41 -0
  56. ethereum/forks/arrow_glacier/vm/runtime.py +69 -0
  57. ethereum/forks/arrow_glacier/vm/stack.py +58 -0
  58. ethereum/forks/berlin/__init__.py +43 -0
  59. ethereum/forks/berlin/blocks.py +297 -0
  60. ethereum/forks/berlin/bloom.py +87 -0
  61. ethereum/forks/berlin/exceptions.py +24 -0
  62. ethereum/forks/berlin/fork.py +839 -0
  63. ethereum/forks/berlin/fork_types.py +62 -0
  64. ethereum/forks/berlin/state.py +644 -0
  65. ethereum/forks/berlin/transactions.py +456 -0
  66. ethereum/forks/berlin/trie.py +498 -0
  67. ethereum/forks/berlin/utils/__init__.py +3 -0
  68. ethereum/forks/berlin/utils/address.py +94 -0
  69. ethereum/forks/berlin/utils/hexadecimal.py +55 -0
  70. ethereum/forks/berlin/utils/message.py +90 -0
  71. ethereum/forks/berlin/vm/__init__.py +194 -0
  72. ethereum/forks/berlin/vm/exceptions.py +123 -0
  73. ethereum/forks/berlin/vm/gas.py +246 -0
  74. ethereum/forks/berlin/vm/instructions/__init__.py +351 -0
  75. ethereum/forks/berlin/vm/instructions/arithmetic.py +373 -0
  76. ethereum/forks/berlin/vm/instructions/bitwise.py +245 -0
  77. ethereum/forks/berlin/vm/instructions/block.py +212 -0
  78. ethereum/forks/berlin/vm/instructions/comparison.py +177 -0
  79. ethereum/forks/berlin/vm/instructions/control_flow.py +171 -0
  80. ethereum/forks/berlin/vm/instructions/environment.py +521 -0
  81. ethereum/forks/berlin/vm/instructions/keccak.py +63 -0
  82. ethereum/forks/berlin/vm/instructions/log.py +88 -0
  83. ethereum/forks/berlin/vm/instructions/memory.py +141 -0
  84. ethereum/forks/berlin/vm/instructions/stack.py +204 -0
  85. ethereum/forks/berlin/vm/instructions/storage.py +126 -0
  86. ethereum/forks/berlin/vm/instructions/system.py +706 -0
  87. ethereum/forks/berlin/vm/interpreter.py +308 -0
  88. ethereum/forks/berlin/vm/memory.py +84 -0
  89. ethereum/forks/berlin/vm/precompiled_contracts/__init__.py +37 -0
  90. ethereum/forks/berlin/vm/precompiled_contracts/alt_bn128.py +230 -0
  91. ethereum/forks/berlin/vm/precompiled_contracts/blake2f.py +42 -0
  92. ethereum/forks/berlin/vm/precompiled_contracts/ecrecover.py +64 -0
  93. ethereum/forks/berlin/vm/precompiled_contracts/identity.py +39 -0
  94. ethereum/forks/berlin/vm/precompiled_contracts/mapping.py +46 -0
  95. ethereum/forks/berlin/vm/precompiled_contracts/modexp.py +166 -0
  96. ethereum/forks/berlin/vm/precompiled_contracts/ripemd160.py +44 -0
  97. ethereum/forks/berlin/vm/precompiled_contracts/sha256.py +41 -0
  98. ethereum/forks/berlin/vm/runtime.py +69 -0
  99. ethereum/forks/berlin/vm/stack.py +58 -0
  100. ethereum/forks/byzantium/__init__.py +50 -0
  101. ethereum/forks/byzantium/blocks.py +265 -0
  102. ethereum/forks/byzantium/bloom.py +87 -0
  103. ethereum/forks/byzantium/fork.py +816 -0
  104. ethereum/forks/byzantium/fork_types.py +61 -0
  105. ethereum/forks/byzantium/state.py +583 -0
  106. ethereum/forks/byzantium/transactions.py +261 -0
  107. ethereum/forks/byzantium/trie.py +498 -0
  108. ethereum/forks/byzantium/utils/__init__.py +3 -0
  109. ethereum/forks/byzantium/utils/address.py +63 -0
  110. ethereum/forks/byzantium/utils/hexadecimal.py +55 -0
  111. ethereum/forks/byzantium/utils/message.py +80 -0
  112. ethereum/forks/byzantium/vm/__init__.py +186 -0
  113. ethereum/forks/byzantium/vm/exceptions.py +123 -0
  114. ethereum/forks/byzantium/vm/gas.py +245 -0
  115. ethereum/forks/byzantium/vm/instructions/__init__.py +337 -0
  116. ethereum/forks/byzantium/vm/instructions/arithmetic.py +373 -0
  117. ethereum/forks/byzantium/vm/instructions/bitwise.py +153 -0
  118. ethereum/forks/byzantium/vm/instructions/block.py +189 -0
  119. ethereum/forks/byzantium/vm/instructions/comparison.py +177 -0
  120. ethereum/forks/byzantium/vm/instructions/control_flow.py +171 -0
  121. ethereum/forks/byzantium/vm/instructions/environment.py +436 -0
  122. ethereum/forks/byzantium/vm/instructions/keccak.py +63 -0
  123. ethereum/forks/byzantium/vm/instructions/log.py +88 -0
  124. ethereum/forks/byzantium/vm/instructions/memory.py +141 -0
  125. ethereum/forks/byzantium/vm/instructions/stack.py +204 -0
  126. ethereum/forks/byzantium/vm/instructions/storage.py +88 -0
  127. ethereum/forks/byzantium/vm/instructions/system.py +601 -0
  128. ethereum/forks/byzantium/vm/interpreter.py +299 -0
  129. ethereum/forks/byzantium/vm/memory.py +84 -0
  130. ethereum/forks/byzantium/vm/precompiled_contracts/__init__.py +36 -0
  131. ethereum/forks/byzantium/vm/precompiled_contracts/alt_bn128.py +230 -0
  132. ethereum/forks/byzantium/vm/precompiled_contracts/ecrecover.py +64 -0
  133. ethereum/forks/byzantium/vm/precompiled_contracts/identity.py +39 -0
  134. ethereum/forks/byzantium/vm/precompiled_contracts/mapping.py +43 -0
  135. ethereum/forks/byzantium/vm/precompiled_contracts/modexp.py +168 -0
  136. ethereum/forks/byzantium/vm/precompiled_contracts/ripemd160.py +44 -0
  137. ethereum/forks/byzantium/vm/precompiled_contracts/sha256.py +41 -0
  138. ethereum/forks/byzantium/vm/runtime.py +69 -0
  139. ethereum/forks/byzantium/vm/stack.py +58 -0
  140. ethereum/forks/cancun/__init__.py +49 -0
  141. ethereum/forks/cancun/blocks.py +389 -0
  142. ethereum/forks/cancun/bloom.py +87 -0
  143. ethereum/forks/cancun/exceptions.py +109 -0
  144. ethereum/forks/cancun/fork.py +881 -0
  145. ethereum/forks/cancun/fork_types.py +63 -0
  146. ethereum/forks/cancun/state.py +667 -0
  147. ethereum/forks/cancun/transactions.py +721 -0
  148. ethereum/forks/cancun/trie.py +508 -0
  149. ethereum/forks/cancun/utils/__init__.py +3 -0
  150. ethereum/forks/cancun/utils/address.py +94 -0
  151. ethereum/forks/cancun/utils/hexadecimal.py +55 -0
  152. ethereum/forks/cancun/utils/message.py +90 -0
  153. ethereum/forks/cancun/vm/__init__.py +186 -0
  154. ethereum/forks/cancun/vm/exceptions.py +139 -0
  155. ethereum/forks/cancun/vm/gas.py +372 -0
  156. ethereum/forks/cancun/vm/instructions/__init__.py +365 -0
  157. ethereum/forks/cancun/vm/instructions/arithmetic.py +373 -0
  158. ethereum/forks/cancun/vm/instructions/bitwise.py +245 -0
  159. ethereum/forks/cancun/vm/instructions/block.py +261 -0
  160. ethereum/forks/cancun/vm/instructions/comparison.py +177 -0
  161. ethereum/forks/cancun/vm/instructions/control_flow.py +171 -0
  162. ethereum/forks/cancun/vm/instructions/environment.py +600 -0
  163. ethereum/forks/cancun/vm/instructions/keccak.py +63 -0
  164. ethereum/forks/cancun/vm/instructions/log.py +88 -0
  165. ethereum/forks/cancun/vm/instructions/memory.py +177 -0
  166. ethereum/forks/cancun/vm/instructions/stack.py +208 -0
  167. ethereum/forks/cancun/vm/instructions/storage.py +188 -0
  168. ethereum/forks/cancun/vm/instructions/system.py +708 -0
  169. ethereum/forks/cancun/vm/interpreter.py +302 -0
  170. ethereum/forks/cancun/vm/memory.py +84 -0
  171. ethereum/forks/cancun/vm/precompiled_contracts/__init__.py +39 -0
  172. ethereum/forks/cancun/vm/precompiled_contracts/alt_bn128.py +230 -0
  173. ethereum/forks/cancun/vm/precompiled_contracts/blake2f.py +42 -0
  174. ethereum/forks/cancun/vm/precompiled_contracts/ecrecover.py +64 -0
  175. ethereum/forks/cancun/vm/precompiled_contracts/identity.py +39 -0
  176. ethereum/forks/cancun/vm/precompiled_contracts/mapping.py +49 -0
  177. ethereum/forks/cancun/vm/precompiled_contracts/modexp.py +166 -0
  178. ethereum/forks/cancun/vm/precompiled_contracts/point_evaluation.py +72 -0
  179. ethereum/forks/cancun/vm/precompiled_contracts/ripemd160.py +44 -0
  180. ethereum/forks/cancun/vm/precompiled_contracts/sha256.py +41 -0
  181. ethereum/forks/cancun/vm/runtime.py +69 -0
  182. ethereum/forks/cancun/vm/stack.py +58 -0
  183. ethereum/forks/constantinople/__init__.py +51 -0
  184. ethereum/forks/constantinople/blocks.py +265 -0
  185. ethereum/forks/constantinople/bloom.py +87 -0
  186. ethereum/forks/constantinople/fork.py +816 -0
  187. ethereum/forks/constantinople/fork_types.py +62 -0
  188. ethereum/forks/constantinople/state.py +583 -0
  189. ethereum/forks/constantinople/transactions.py +261 -0
  190. ethereum/forks/constantinople/trie.py +498 -0
  191. ethereum/forks/constantinople/utils/__init__.py +3 -0
  192. ethereum/forks/constantinople/utils/address.py +93 -0
  193. ethereum/forks/constantinople/utils/hexadecimal.py +55 -0
  194. ethereum/forks/constantinople/utils/message.py +80 -0
  195. ethereum/forks/constantinople/vm/__init__.py +186 -0
  196. ethereum/forks/constantinople/vm/exceptions.py +123 -0
  197. ethereum/forks/constantinople/vm/gas.py +246 -0
  198. ethereum/forks/constantinople/vm/instructions/__init__.py +347 -0
  199. ethereum/forks/constantinople/vm/instructions/arithmetic.py +373 -0
  200. ethereum/forks/constantinople/vm/instructions/bitwise.py +245 -0
  201. ethereum/forks/constantinople/vm/instructions/block.py +189 -0
  202. ethereum/forks/constantinople/vm/instructions/comparison.py +177 -0
  203. ethereum/forks/constantinople/vm/instructions/control_flow.py +171 -0
  204. ethereum/forks/constantinople/vm/instructions/environment.py +470 -0
  205. ethereum/forks/constantinople/vm/instructions/keccak.py +63 -0
  206. ethereum/forks/constantinople/vm/instructions/log.py +88 -0
  207. ethereum/forks/constantinople/vm/instructions/memory.py +141 -0
  208. ethereum/forks/constantinople/vm/instructions/stack.py +204 -0
  209. ethereum/forks/constantinople/vm/instructions/storage.py +88 -0
  210. ethereum/forks/constantinople/vm/instructions/system.py +673 -0
  211. ethereum/forks/constantinople/vm/interpreter.py +300 -0
  212. ethereum/forks/constantinople/vm/memory.py +84 -0
  213. ethereum/forks/constantinople/vm/precompiled_contracts/__init__.py +36 -0
  214. ethereum/forks/constantinople/vm/precompiled_contracts/alt_bn128.py +230 -0
  215. ethereum/forks/constantinople/vm/precompiled_contracts/ecrecover.py +64 -0
  216. ethereum/forks/constantinople/vm/precompiled_contracts/identity.py +39 -0
  217. ethereum/forks/constantinople/vm/precompiled_contracts/mapping.py +43 -0
  218. ethereum/forks/constantinople/vm/precompiled_contracts/modexp.py +168 -0
  219. ethereum/forks/constantinople/vm/precompiled_contracts/ripemd160.py +44 -0
  220. ethereum/forks/constantinople/vm/precompiled_contracts/sha256.py +41 -0
  221. ethereum/forks/constantinople/vm/runtime.py +69 -0
  222. ethereum/forks/constantinople/vm/stack.py +58 -0
  223. ethereum/forks/dao_fork/__init__.py +29 -0
  224. ethereum/forks/dao_fork/blocks.py +265 -0
  225. ethereum/forks/dao_fork/bloom.py +87 -0
  226. ethereum/forks/dao_fork/dao.py +357 -0
  227. ethereum/forks/dao_fork/fork.py +816 -0
  228. ethereum/forks/dao_fork/fork_types.py +62 -0
  229. ethereum/forks/dao_fork/state.py +515 -0
  230. ethereum/forks/dao_fork/transactions.py +227 -0
  231. ethereum/forks/dao_fork/trie.py +498 -0
  232. ethereum/forks/dao_fork/utils/__init__.py +3 -0
  233. ethereum/forks/dao_fork/utils/address.py +62 -0
  234. ethereum/forks/dao_fork/utils/hexadecimal.py +55 -0
  235. ethereum/forks/dao_fork/utils/message.py +78 -0
  236. ethereum/forks/dao_fork/vm/__init__.py +163 -0
  237. ethereum/forks/dao_fork/vm/exceptions.py +86 -0
  238. ethereum/forks/dao_fork/vm/gas.py +212 -0
  239. ethereum/forks/dao_fork/vm/instructions/__init__.py +329 -0
  240. ethereum/forks/dao_fork/vm/instructions/arithmetic.py +373 -0
  241. ethereum/forks/dao_fork/vm/instructions/bitwise.py +153 -0
  242. ethereum/forks/dao_fork/vm/instructions/block.py +189 -0
  243. ethereum/forks/dao_fork/vm/instructions/comparison.py +177 -0
  244. ethereum/forks/dao_fork/vm/instructions/control_flow.py +171 -0
  245. ethereum/forks/dao_fork/vm/instructions/environment.py +376 -0
  246. ethereum/forks/dao_fork/vm/instructions/keccak.py +63 -0
  247. ethereum/forks/dao_fork/vm/instructions/log.py +85 -0
  248. ethereum/forks/dao_fork/vm/instructions/memory.py +141 -0
  249. ethereum/forks/dao_fork/vm/instructions/stack.py +204 -0
  250. ethereum/forks/dao_fork/vm/instructions/storage.py +87 -0
  251. ethereum/forks/dao_fork/vm/instructions/system.py +457 -0
  252. ethereum/forks/dao_fork/vm/interpreter.py +274 -0
  253. ethereum/forks/dao_fork/vm/memory.py +84 -0
  254. ethereum/forks/dao_fork/vm/precompiled_contracts/__init__.py +27 -0
  255. ethereum/forks/dao_fork/vm/precompiled_contracts/ecrecover.py +64 -0
  256. ethereum/forks/dao_fork/vm/precompiled_contracts/identity.py +39 -0
  257. ethereum/forks/dao_fork/vm/precompiled_contracts/mapping.py +33 -0
  258. ethereum/forks/dao_fork/vm/precompiled_contracts/ripemd160.py +44 -0
  259. ethereum/forks/dao_fork/vm/precompiled_contracts/sha256.py +41 -0
  260. ethereum/forks/dao_fork/vm/runtime.py +69 -0
  261. ethereum/forks/dao_fork/vm/stack.py +58 -0
  262. ethereum/forks/frontier/__init__.py +7 -0
  263. ethereum/forks/frontier/blocks.py +265 -0
  264. ethereum/forks/frontier/bloom.py +87 -0
  265. ethereum/forks/frontier/fork.py +789 -0
  266. ethereum/forks/frontier/fork_types.py +62 -0
  267. ethereum/forks/frontier/state.py +515 -0
  268. ethereum/forks/frontier/transactions.py +216 -0
  269. ethereum/forks/frontier/trie.py +499 -0
  270. ethereum/forks/frontier/utils/__init__.py +3 -0
  271. ethereum/forks/frontier/utils/address.py +62 -0
  272. ethereum/forks/frontier/utils/hexadecimal.py +55 -0
  273. ethereum/forks/frontier/utils/message.py +77 -0
  274. ethereum/forks/frontier/vm/__init__.py +162 -0
  275. ethereum/forks/frontier/vm/exceptions.py +86 -0
  276. ethereum/forks/frontier/vm/gas.py +212 -0
  277. ethereum/forks/frontier/vm/instructions/__init__.py +327 -0
  278. ethereum/forks/frontier/vm/instructions/arithmetic.py +373 -0
  279. ethereum/forks/frontier/vm/instructions/bitwise.py +153 -0
  280. ethereum/forks/frontier/vm/instructions/block.py +189 -0
  281. ethereum/forks/frontier/vm/instructions/comparison.py +177 -0
  282. ethereum/forks/frontier/vm/instructions/control_flow.py +171 -0
  283. ethereum/forks/frontier/vm/instructions/environment.py +376 -0
  284. ethereum/forks/frontier/vm/instructions/keccak.py +63 -0
  285. ethereum/forks/frontier/vm/instructions/log.py +85 -0
  286. ethereum/forks/frontier/vm/instructions/memory.py +141 -0
  287. ethereum/forks/frontier/vm/instructions/stack.py +204 -0
  288. ethereum/forks/frontier/vm/instructions/storage.py +87 -0
  289. ethereum/forks/frontier/vm/instructions/system.py +403 -0
  290. ethereum/forks/frontier/vm/interpreter.py +272 -0
  291. ethereum/forks/frontier/vm/memory.py +84 -0
  292. ethereum/forks/frontier/vm/precompiled_contracts/__init__.py +27 -0
  293. ethereum/forks/frontier/vm/precompiled_contracts/ecrecover.py +64 -0
  294. ethereum/forks/frontier/vm/precompiled_contracts/identity.py +39 -0
  295. ethereum/forks/frontier/vm/precompiled_contracts/mapping.py +33 -0
  296. ethereum/forks/frontier/vm/precompiled_contracts/ripemd160.py +44 -0
  297. ethereum/forks/frontier/vm/precompiled_contracts/sha256.py +41 -0
  298. ethereum/forks/frontier/vm/runtime.py +69 -0
  299. ethereum/forks/frontier/vm/stack.py +58 -0
  300. ethereum/forks/gray_glacier/__init__.py +34 -0
  301. ethereum/forks/gray_glacier/blocks.py +326 -0
  302. ethereum/forks/gray_glacier/bloom.py +87 -0
  303. ethereum/forks/gray_glacier/exceptions.py +58 -0
  304. ethereum/forks/gray_glacier/fork.py +954 -0
  305. ethereum/forks/gray_glacier/fork_types.py +62 -0
  306. ethereum/forks/gray_glacier/state.py +644 -0
  307. ethereum/forks/gray_glacier/transactions.py +573 -0
  308. ethereum/forks/gray_glacier/trie.py +498 -0
  309. ethereum/forks/gray_glacier/utils/__init__.py +3 -0
  310. ethereum/forks/gray_glacier/utils/address.py +94 -0
  311. ethereum/forks/gray_glacier/utils/hexadecimal.py +55 -0
  312. ethereum/forks/gray_glacier/utils/message.py +90 -0
  313. ethereum/forks/gray_glacier/vm/__init__.py +195 -0
  314. ethereum/forks/gray_glacier/vm/exceptions.py +131 -0
  315. ethereum/forks/gray_glacier/vm/gas.py +245 -0
  316. ethereum/forks/gray_glacier/vm/instructions/__init__.py +353 -0
  317. ethereum/forks/gray_glacier/vm/instructions/arithmetic.py +373 -0
  318. ethereum/forks/gray_glacier/vm/instructions/bitwise.py +245 -0
  319. ethereum/forks/gray_glacier/vm/instructions/block.py +212 -0
  320. ethereum/forks/gray_glacier/vm/instructions/comparison.py +177 -0
  321. ethereum/forks/gray_glacier/vm/instructions/control_flow.py +171 -0
  322. ethereum/forks/gray_glacier/vm/instructions/environment.py +544 -0
  323. ethereum/forks/gray_glacier/vm/instructions/keccak.py +63 -0
  324. ethereum/forks/gray_glacier/vm/instructions/log.py +88 -0
  325. ethereum/forks/gray_glacier/vm/instructions/memory.py +141 -0
  326. ethereum/forks/gray_glacier/vm/instructions/stack.py +204 -0
  327. ethereum/forks/gray_glacier/vm/instructions/storage.py +126 -0
  328. ethereum/forks/gray_glacier/vm/instructions/system.py +694 -0
  329. ethereum/forks/gray_glacier/vm/interpreter.py +312 -0
  330. ethereum/forks/gray_glacier/vm/memory.py +84 -0
  331. ethereum/forks/gray_glacier/vm/precompiled_contracts/__init__.py +37 -0
  332. ethereum/forks/gray_glacier/vm/precompiled_contracts/alt_bn128.py +230 -0
  333. ethereum/forks/gray_glacier/vm/precompiled_contracts/blake2f.py +42 -0
  334. ethereum/forks/gray_glacier/vm/precompiled_contracts/ecrecover.py +64 -0
  335. ethereum/forks/gray_glacier/vm/precompiled_contracts/identity.py +39 -0
  336. ethereum/forks/gray_glacier/vm/precompiled_contracts/mapping.py +46 -0
  337. ethereum/forks/gray_glacier/vm/precompiled_contracts/modexp.py +166 -0
  338. ethereum/forks/gray_glacier/vm/precompiled_contracts/ripemd160.py +44 -0
  339. ethereum/forks/gray_glacier/vm/precompiled_contracts/sha256.py +41 -0
  340. ethereum/forks/gray_glacier/vm/runtime.py +69 -0
  341. ethereum/forks/gray_glacier/vm/stack.py +58 -0
  342. ethereum/forks/homestead/__init__.py +34 -0
  343. ethereum/forks/homestead/blocks.py +265 -0
  344. ethereum/forks/homestead/bloom.py +87 -0
  345. ethereum/forks/homestead/fork.py +798 -0
  346. ethereum/forks/homestead/fork_types.py +62 -0
  347. ethereum/forks/homestead/state.py +515 -0
  348. ethereum/forks/homestead/transactions.py +227 -0
  349. ethereum/forks/homestead/trie.py +498 -0
  350. ethereum/forks/homestead/utils/__init__.py +3 -0
  351. ethereum/forks/homestead/utils/address.py +62 -0
  352. ethereum/forks/homestead/utils/hexadecimal.py +55 -0
  353. ethereum/forks/homestead/utils/message.py +78 -0
  354. ethereum/forks/homestead/vm/__init__.py +163 -0
  355. ethereum/forks/homestead/vm/exceptions.py +86 -0
  356. ethereum/forks/homestead/vm/gas.py +212 -0
  357. ethereum/forks/homestead/vm/instructions/__init__.py +329 -0
  358. ethereum/forks/homestead/vm/instructions/arithmetic.py +373 -0
  359. ethereum/forks/homestead/vm/instructions/bitwise.py +153 -0
  360. ethereum/forks/homestead/vm/instructions/block.py +189 -0
  361. ethereum/forks/homestead/vm/instructions/comparison.py +177 -0
  362. ethereum/forks/homestead/vm/instructions/control_flow.py +171 -0
  363. ethereum/forks/homestead/vm/instructions/environment.py +376 -0
  364. ethereum/forks/homestead/vm/instructions/keccak.py +63 -0
  365. ethereum/forks/homestead/vm/instructions/log.py +85 -0
  366. ethereum/forks/homestead/vm/instructions/memory.py +141 -0
  367. ethereum/forks/homestead/vm/instructions/stack.py +204 -0
  368. ethereum/forks/homestead/vm/instructions/storage.py +87 -0
  369. ethereum/forks/homestead/vm/instructions/system.py +457 -0
  370. ethereum/forks/homestead/vm/interpreter.py +274 -0
  371. ethereum/forks/homestead/vm/memory.py +84 -0
  372. ethereum/forks/homestead/vm/precompiled_contracts/__init__.py +27 -0
  373. ethereum/forks/homestead/vm/precompiled_contracts/ecrecover.py +64 -0
  374. ethereum/forks/homestead/vm/precompiled_contracts/identity.py +39 -0
  375. ethereum/forks/homestead/vm/precompiled_contracts/mapping.py +33 -0
  376. ethereum/forks/homestead/vm/precompiled_contracts/ripemd160.py +44 -0
  377. ethereum/forks/homestead/vm/precompiled_contracts/sha256.py +41 -0
  378. ethereum/forks/homestead/vm/runtime.py +69 -0
  379. ethereum/forks/homestead/vm/stack.py +58 -0
  380. ethereum/forks/istanbul/__init__.py +53 -0
  381. ethereum/forks/istanbul/blocks.py +265 -0
  382. ethereum/forks/istanbul/bloom.py +87 -0
  383. ethereum/forks/istanbul/fork.py +816 -0
  384. ethereum/forks/istanbul/fork_types.py +62 -0
  385. ethereum/forks/istanbul/state.py +644 -0
  386. ethereum/forks/istanbul/transactions.py +261 -0
  387. ethereum/forks/istanbul/trie.py +498 -0
  388. ethereum/forks/istanbul/utils/__init__.py +3 -0
  389. ethereum/forks/istanbul/utils/address.py +94 -0
  390. ethereum/forks/istanbul/utils/hexadecimal.py +55 -0
  391. ethereum/forks/istanbul/utils/message.py +80 -0
  392. ethereum/forks/istanbul/vm/__init__.py +186 -0
  393. ethereum/forks/istanbul/vm/exceptions.py +123 -0
  394. ethereum/forks/istanbul/vm/gas.py +248 -0
  395. ethereum/forks/istanbul/vm/instructions/__init__.py +351 -0
  396. ethereum/forks/istanbul/vm/instructions/arithmetic.py +373 -0
  397. ethereum/forks/istanbul/vm/instructions/bitwise.py +245 -0
  398. ethereum/forks/istanbul/vm/instructions/block.py +212 -0
  399. ethereum/forks/istanbul/vm/instructions/comparison.py +177 -0
  400. ethereum/forks/istanbul/vm/instructions/control_flow.py +171 -0
  401. ethereum/forks/istanbul/vm/instructions/environment.py +499 -0
  402. ethereum/forks/istanbul/vm/instructions/keccak.py +63 -0
  403. ethereum/forks/istanbul/vm/instructions/log.py +88 -0
  404. ethereum/forks/istanbul/vm/instructions/memory.py +141 -0
  405. ethereum/forks/istanbul/vm/instructions/stack.py +204 -0
  406. ethereum/forks/istanbul/vm/instructions/storage.py +113 -0
  407. ethereum/forks/istanbul/vm/instructions/system.py +673 -0
  408. ethereum/forks/istanbul/vm/interpreter.py +306 -0
  409. ethereum/forks/istanbul/vm/memory.py +84 -0
  410. ethereum/forks/istanbul/vm/precompiled_contracts/__init__.py +37 -0
  411. ethereum/forks/istanbul/vm/precompiled_contracts/alt_bn128.py +230 -0
  412. ethereum/forks/istanbul/vm/precompiled_contracts/blake2f.py +42 -0
  413. ethereum/forks/istanbul/vm/precompiled_contracts/ecrecover.py +64 -0
  414. ethereum/forks/istanbul/vm/precompiled_contracts/identity.py +39 -0
  415. ethereum/forks/istanbul/vm/precompiled_contracts/mapping.py +46 -0
  416. ethereum/forks/istanbul/vm/precompiled_contracts/modexp.py +168 -0
  417. ethereum/forks/istanbul/vm/precompiled_contracts/ripemd160.py +44 -0
  418. ethereum/forks/istanbul/vm/precompiled_contracts/sha256.py +41 -0
  419. ethereum/forks/istanbul/vm/runtime.py +69 -0
  420. ethereum/forks/istanbul/vm/stack.py +58 -0
  421. ethereum/forks/london/__init__.py +48 -0
  422. ethereum/forks/london/blocks.py +326 -0
  423. ethereum/forks/london/bloom.py +87 -0
  424. ethereum/forks/london/exceptions.py +58 -0
  425. ethereum/forks/london/fork.py +960 -0
  426. ethereum/forks/london/fork_types.py +62 -0
  427. ethereum/forks/london/state.py +644 -0
  428. ethereum/forks/london/transactions.py +573 -0
  429. ethereum/forks/london/trie.py +498 -0
  430. ethereum/forks/london/utils/__init__.py +3 -0
  431. ethereum/forks/london/utils/address.py +94 -0
  432. ethereum/forks/london/utils/hexadecimal.py +55 -0
  433. ethereum/forks/london/utils/message.py +90 -0
  434. ethereum/forks/london/vm/__init__.py +195 -0
  435. ethereum/forks/london/vm/exceptions.py +131 -0
  436. ethereum/forks/london/vm/gas.py +245 -0
  437. ethereum/forks/london/vm/instructions/__init__.py +353 -0
  438. ethereum/forks/london/vm/instructions/arithmetic.py +373 -0
  439. ethereum/forks/london/vm/instructions/bitwise.py +245 -0
  440. ethereum/forks/london/vm/instructions/block.py +212 -0
  441. ethereum/forks/london/vm/instructions/comparison.py +177 -0
  442. ethereum/forks/london/vm/instructions/control_flow.py +171 -0
  443. ethereum/forks/london/vm/instructions/environment.py +544 -0
  444. ethereum/forks/london/vm/instructions/keccak.py +63 -0
  445. ethereum/forks/london/vm/instructions/log.py +88 -0
  446. ethereum/forks/london/vm/instructions/memory.py +141 -0
  447. ethereum/forks/london/vm/instructions/stack.py +204 -0
  448. ethereum/forks/london/vm/instructions/storage.py +126 -0
  449. ethereum/forks/london/vm/instructions/system.py +694 -0
  450. ethereum/forks/london/vm/interpreter.py +312 -0
  451. ethereum/forks/london/vm/memory.py +84 -0
  452. ethereum/forks/london/vm/precompiled_contracts/__init__.py +37 -0
  453. ethereum/forks/london/vm/precompiled_contracts/alt_bn128.py +230 -0
  454. ethereum/forks/london/vm/precompiled_contracts/blake2f.py +42 -0
  455. ethereum/forks/london/vm/precompiled_contracts/ecrecover.py +64 -0
  456. ethereum/forks/london/vm/precompiled_contracts/identity.py +39 -0
  457. ethereum/forks/london/vm/precompiled_contracts/mapping.py +46 -0
  458. ethereum/forks/london/vm/precompiled_contracts/modexp.py +166 -0
  459. ethereum/forks/london/vm/precompiled_contracts/ripemd160.py +44 -0
  460. ethereum/forks/london/vm/precompiled_contracts/sha256.py +41 -0
  461. ethereum/forks/london/vm/runtime.py +69 -0
  462. ethereum/forks/london/vm/stack.py +58 -0
  463. ethereum/forks/muir_glacier/__init__.py +38 -0
  464. ethereum/forks/muir_glacier/blocks.py +265 -0
  465. ethereum/forks/muir_glacier/bloom.py +87 -0
  466. ethereum/forks/muir_glacier/fork.py +818 -0
  467. ethereum/forks/muir_glacier/fork_types.py +62 -0
  468. ethereum/forks/muir_glacier/state.py +644 -0
  469. ethereum/forks/muir_glacier/transactions.py +261 -0
  470. ethereum/forks/muir_glacier/trie.py +498 -0
  471. ethereum/forks/muir_glacier/utils/__init__.py +3 -0
  472. ethereum/forks/muir_glacier/utils/address.py +94 -0
  473. ethereum/forks/muir_glacier/utils/hexadecimal.py +55 -0
  474. ethereum/forks/muir_glacier/utils/message.py +80 -0
  475. ethereum/forks/muir_glacier/vm/__init__.py +186 -0
  476. ethereum/forks/muir_glacier/vm/exceptions.py +123 -0
  477. ethereum/forks/muir_glacier/vm/gas.py +248 -0
  478. ethereum/forks/muir_glacier/vm/instructions/__init__.py +351 -0
  479. ethereum/forks/muir_glacier/vm/instructions/arithmetic.py +373 -0
  480. ethereum/forks/muir_glacier/vm/instructions/bitwise.py +245 -0
  481. ethereum/forks/muir_glacier/vm/instructions/block.py +212 -0
  482. ethereum/forks/muir_glacier/vm/instructions/comparison.py +177 -0
  483. ethereum/forks/muir_glacier/vm/instructions/control_flow.py +171 -0
  484. ethereum/forks/muir_glacier/vm/instructions/environment.py +499 -0
  485. ethereum/forks/muir_glacier/vm/instructions/keccak.py +63 -0
  486. ethereum/forks/muir_glacier/vm/instructions/log.py +88 -0
  487. ethereum/forks/muir_glacier/vm/instructions/memory.py +141 -0
  488. ethereum/forks/muir_glacier/vm/instructions/stack.py +204 -0
  489. ethereum/forks/muir_glacier/vm/instructions/storage.py +113 -0
  490. ethereum/forks/muir_glacier/vm/instructions/system.py +673 -0
  491. ethereum/forks/muir_glacier/vm/interpreter.py +306 -0
  492. ethereum/forks/muir_glacier/vm/memory.py +84 -0
  493. ethereum/forks/muir_glacier/vm/precompiled_contracts/__init__.py +37 -0
  494. ethereum/forks/muir_glacier/vm/precompiled_contracts/alt_bn128.py +230 -0
  495. ethereum/forks/muir_glacier/vm/precompiled_contracts/blake2f.py +42 -0
  496. ethereum/forks/muir_glacier/vm/precompiled_contracts/ecrecover.py +64 -0
  497. ethereum/forks/muir_glacier/vm/precompiled_contracts/identity.py +39 -0
  498. ethereum/forks/muir_glacier/vm/precompiled_contracts/mapping.py +46 -0
  499. ethereum/forks/muir_glacier/vm/precompiled_contracts/modexp.py +168 -0
  500. ethereum/forks/muir_glacier/vm/precompiled_contracts/ripemd160.py +44 -0
  501. ethereum/forks/muir_glacier/vm/precompiled_contracts/sha256.py +41 -0
  502. ethereum/forks/muir_glacier/vm/runtime.py +69 -0
  503. ethereum/forks/muir_glacier/vm/stack.py +58 -0
  504. ethereum/forks/osaka/__init__.py +55 -0
  505. ethereum/forks/osaka/blocks.py +405 -0
  506. ethereum/forks/osaka/bloom.py +87 -0
  507. ethereum/forks/osaka/exceptions.py +131 -0
  508. ethereum/forks/osaka/fork.py +1059 -0
  509. ethereum/forks/osaka/fork_types.py +78 -0
  510. ethereum/forks/osaka/requests.py +191 -0
  511. ethereum/forks/osaka/state.py +667 -0
  512. ethereum/forks/osaka/transactions.py +887 -0
  513. ethereum/forks/osaka/trie.py +508 -0
  514. ethereum/forks/osaka/utils/__init__.py +3 -0
  515. ethereum/forks/osaka/utils/address.py +94 -0
  516. ethereum/forks/osaka/utils/hexadecimal.py +55 -0
  517. ethereum/forks/osaka/utils/message.py +90 -0
  518. ethereum/forks/osaka/vm/__init__.py +191 -0
  519. ethereum/forks/osaka/vm/eoa_delegation.py +211 -0
  520. ethereum/forks/osaka/vm/exceptions.py +139 -0
  521. ethereum/forks/osaka/vm/gas.py +396 -0
  522. ethereum/forks/osaka/vm/instructions/__init__.py +367 -0
  523. ethereum/forks/osaka/vm/instructions/arithmetic.py +373 -0
  524. ethereum/forks/osaka/vm/instructions/bitwise.py +274 -0
  525. ethereum/forks/osaka/vm/instructions/block.py +261 -0
  526. ethereum/forks/osaka/vm/instructions/comparison.py +177 -0
  527. ethereum/forks/osaka/vm/instructions/control_flow.py +171 -0
  528. ethereum/forks/osaka/vm/instructions/environment.py +600 -0
  529. ethereum/forks/osaka/vm/instructions/keccak.py +63 -0
  530. ethereum/forks/osaka/vm/instructions/log.py +88 -0
  531. ethereum/forks/osaka/vm/instructions/memory.py +177 -0
  532. ethereum/forks/osaka/vm/instructions/stack.py +208 -0
  533. ethereum/forks/osaka/vm/instructions/storage.py +188 -0
  534. ethereum/forks/osaka/vm/instructions/system.py +751 -0
  535. ethereum/forks/osaka/vm/interpreter.py +324 -0
  536. ethereum/forks/osaka/vm/memory.py +83 -0
  537. ethereum/forks/osaka/vm/precompiled_contracts/__init__.py +55 -0
  538. ethereum/forks/osaka/vm/precompiled_contracts/alt_bn128.py +230 -0
  539. ethereum/forks/osaka/vm/precompiled_contracts/blake2f.py +42 -0
  540. ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/__init__.py +622 -0
  541. ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_g1.py +151 -0
  542. ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_g2.py +153 -0
  543. ethereum/forks/osaka/vm/precompiled_contracts/bls12_381/bls12_381_pairing.py +69 -0
  544. ethereum/forks/osaka/vm/precompiled_contracts/ecrecover.py +64 -0
  545. ethereum/forks/osaka/vm/precompiled_contracts/identity.py +39 -0
  546. ethereum/forks/osaka/vm/precompiled_contracts/mapping.py +77 -0
  547. ethereum/forks/osaka/vm/precompiled_contracts/modexp.py +175 -0
  548. ethereum/forks/osaka/vm/precompiled_contracts/p256verify.py +89 -0
  549. ethereum/forks/osaka/vm/precompiled_contracts/point_evaluation.py +72 -0
  550. ethereum/forks/osaka/vm/precompiled_contracts/ripemd160.py +44 -0
  551. ethereum/forks/osaka/vm/precompiled_contracts/sha256.py +41 -0
  552. ethereum/forks/osaka/vm/runtime.py +69 -0
  553. ethereum/forks/osaka/vm/stack.py +58 -0
  554. ethereum/forks/paris/__init__.py +43 -0
  555. ethereum/forks/paris/blocks.py +312 -0
  556. ethereum/forks/paris/bloom.py +87 -0
  557. ethereum/forks/paris/exceptions.py +58 -0
  558. ethereum/forks/paris/fork.py +651 -0
  559. ethereum/forks/paris/fork_types.py +62 -0
  560. ethereum/forks/paris/state.py +571 -0
  561. ethereum/forks/paris/transactions.py +573 -0
  562. ethereum/forks/paris/trie.py +498 -0
  563. ethereum/forks/paris/utils/__init__.py +3 -0
  564. ethereum/forks/paris/utils/address.py +94 -0
  565. ethereum/forks/paris/utils/hexadecimal.py +55 -0
  566. ethereum/forks/paris/utils/message.py +90 -0
  567. ethereum/forks/paris/vm/__init__.py +174 -0
  568. ethereum/forks/paris/vm/exceptions.py +131 -0
  569. ethereum/forks/paris/vm/gas.py +245 -0
  570. ethereum/forks/paris/vm/instructions/__init__.py +353 -0
  571. ethereum/forks/paris/vm/instructions/arithmetic.py +373 -0
  572. ethereum/forks/paris/vm/instructions/bitwise.py +245 -0
  573. ethereum/forks/paris/vm/instructions/block.py +261 -0
  574. ethereum/forks/paris/vm/instructions/comparison.py +177 -0
  575. ethereum/forks/paris/vm/instructions/control_flow.py +171 -0
  576. ethereum/forks/paris/vm/instructions/environment.py +544 -0
  577. ethereum/forks/paris/vm/instructions/keccak.py +63 -0
  578. ethereum/forks/paris/vm/instructions/log.py +88 -0
  579. ethereum/forks/paris/vm/instructions/memory.py +141 -0
  580. ethereum/forks/paris/vm/instructions/stack.py +204 -0
  581. ethereum/forks/paris/vm/instructions/storage.py +126 -0
  582. ethereum/forks/paris/vm/instructions/system.py +689 -0
  583. ethereum/forks/paris/vm/interpreter.py +298 -0
  584. ethereum/forks/paris/vm/memory.py +84 -0
  585. ethereum/forks/paris/vm/precompiled_contracts/__init__.py +37 -0
  586. ethereum/forks/paris/vm/precompiled_contracts/alt_bn128.py +230 -0
  587. ethereum/forks/paris/vm/precompiled_contracts/blake2f.py +42 -0
  588. ethereum/forks/paris/vm/precompiled_contracts/ecrecover.py +64 -0
  589. ethereum/forks/paris/vm/precompiled_contracts/identity.py +39 -0
  590. ethereum/forks/paris/vm/precompiled_contracts/mapping.py +46 -0
  591. ethereum/forks/paris/vm/precompiled_contracts/modexp.py +166 -0
  592. ethereum/forks/paris/vm/precompiled_contracts/ripemd160.py +44 -0
  593. ethereum/forks/paris/vm/precompiled_contracts/sha256.py +41 -0
  594. ethereum/forks/paris/vm/runtime.py +69 -0
  595. ethereum/forks/paris/vm/stack.py +58 -0
  596. ethereum/forks/prague/__init__.py +54 -0
  597. ethereum/forks/prague/blocks.py +405 -0
  598. ethereum/forks/prague/bloom.py +87 -0
  599. ethereum/forks/prague/exceptions.py +115 -0
  600. ethereum/forks/prague/fork.py +1044 -0
  601. ethereum/forks/prague/fork_types.py +78 -0
  602. ethereum/forks/prague/requests.py +191 -0
  603. ethereum/forks/prague/state.py +667 -0
  604. ethereum/forks/prague/transactions.py +879 -0
  605. ethereum/forks/prague/trie.py +508 -0
  606. ethereum/forks/prague/utils/__init__.py +3 -0
  607. ethereum/forks/prague/utils/address.py +94 -0
  608. ethereum/forks/prague/utils/hexadecimal.py +55 -0
  609. ethereum/forks/prague/utils/message.py +90 -0
  610. ethereum/forks/prague/vm/__init__.py +191 -0
  611. ethereum/forks/prague/vm/eoa_delegation.py +211 -0
  612. ethereum/forks/prague/vm/exceptions.py +139 -0
  613. ethereum/forks/prague/vm/gas.py +379 -0
  614. ethereum/forks/prague/vm/instructions/__init__.py +365 -0
  615. ethereum/forks/prague/vm/instructions/arithmetic.py +373 -0
  616. ethereum/forks/prague/vm/instructions/bitwise.py +245 -0
  617. ethereum/forks/prague/vm/instructions/block.py +261 -0
  618. ethereum/forks/prague/vm/instructions/comparison.py +177 -0
  619. ethereum/forks/prague/vm/instructions/control_flow.py +171 -0
  620. ethereum/forks/prague/vm/instructions/environment.py +600 -0
  621. ethereum/forks/prague/vm/instructions/keccak.py +63 -0
  622. ethereum/forks/prague/vm/instructions/log.py +88 -0
  623. ethereum/forks/prague/vm/instructions/memory.py +177 -0
  624. ethereum/forks/prague/vm/instructions/stack.py +208 -0
  625. ethereum/forks/prague/vm/instructions/storage.py +188 -0
  626. ethereum/forks/prague/vm/instructions/system.py +751 -0
  627. ethereum/forks/prague/vm/interpreter.py +324 -0
  628. ethereum/forks/prague/vm/memory.py +83 -0
  629. ethereum/forks/prague/vm/precompiled_contracts/__init__.py +53 -0
  630. ethereum/forks/prague/vm/precompiled_contracts/alt_bn128.py +230 -0
  631. ethereum/forks/prague/vm/precompiled_contracts/blake2f.py +42 -0
  632. ethereum/forks/prague/vm/precompiled_contracts/bls12_381/__init__.py +622 -0
  633. ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_g1.py +151 -0
  634. ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_g2.py +153 -0
  635. ethereum/forks/prague/vm/precompiled_contracts/bls12_381/bls12_381_pairing.py +69 -0
  636. ethereum/forks/prague/vm/precompiled_contracts/ecrecover.py +64 -0
  637. ethereum/forks/prague/vm/precompiled_contracts/identity.py +39 -0
  638. ethereum/forks/prague/vm/precompiled_contracts/mapping.py +74 -0
  639. ethereum/forks/prague/vm/precompiled_contracts/modexp.py +166 -0
  640. ethereum/forks/prague/vm/precompiled_contracts/point_evaluation.py +72 -0
  641. ethereum/forks/prague/vm/precompiled_contracts/ripemd160.py +44 -0
  642. ethereum/forks/prague/vm/precompiled_contracts/sha256.py +41 -0
  643. ethereum/forks/prague/vm/runtime.py +69 -0
  644. ethereum/forks/prague/vm/stack.py +58 -0
  645. ethereum/forks/shanghai/__init__.py +47 -0
  646. ethereum/forks/shanghai/blocks.py +360 -0
  647. ethereum/forks/shanghai/bloom.py +87 -0
  648. ethereum/forks/shanghai/exceptions.py +64 -0
  649. ethereum/forks/shanghai/fork.py +686 -0
  650. ethereum/forks/shanghai/fork_types.py +62 -0
  651. ethereum/forks/shanghai/state.py +571 -0
  652. ethereum/forks/shanghai/transactions.py +585 -0
  653. ethereum/forks/shanghai/trie.py +508 -0
  654. ethereum/forks/shanghai/utils/__init__.py +3 -0
  655. ethereum/forks/shanghai/utils/address.py +94 -0
  656. ethereum/forks/shanghai/utils/hexadecimal.py +55 -0
  657. ethereum/forks/shanghai/utils/message.py +90 -0
  658. ethereum/forks/shanghai/vm/__init__.py +179 -0
  659. ethereum/forks/shanghai/vm/exceptions.py +131 -0
  660. ethereum/forks/shanghai/vm/gas.py +266 -0
  661. ethereum/forks/shanghai/vm/instructions/__init__.py +355 -0
  662. ethereum/forks/shanghai/vm/instructions/arithmetic.py +373 -0
  663. ethereum/forks/shanghai/vm/instructions/bitwise.py +245 -0
  664. ethereum/forks/shanghai/vm/instructions/block.py +261 -0
  665. ethereum/forks/shanghai/vm/instructions/comparison.py +177 -0
  666. ethereum/forks/shanghai/vm/instructions/control_flow.py +171 -0
  667. ethereum/forks/shanghai/vm/instructions/environment.py +544 -0
  668. ethereum/forks/shanghai/vm/instructions/keccak.py +63 -0
  669. ethereum/forks/shanghai/vm/instructions/log.py +88 -0
  670. ethereum/forks/shanghai/vm/instructions/memory.py +141 -0
  671. ethereum/forks/shanghai/vm/instructions/stack.py +208 -0
  672. ethereum/forks/shanghai/vm/instructions/storage.py +126 -0
  673. ethereum/forks/shanghai/vm/instructions/system.py +709 -0
  674. ethereum/forks/shanghai/vm/interpreter.py +299 -0
  675. ethereum/forks/shanghai/vm/memory.py +84 -0
  676. ethereum/forks/shanghai/vm/precompiled_contracts/__init__.py +37 -0
  677. ethereum/forks/shanghai/vm/precompiled_contracts/alt_bn128.py +230 -0
  678. ethereum/forks/shanghai/vm/precompiled_contracts/blake2f.py +42 -0
  679. ethereum/forks/shanghai/vm/precompiled_contracts/ecrecover.py +64 -0
  680. ethereum/forks/shanghai/vm/precompiled_contracts/identity.py +39 -0
  681. ethereum/forks/shanghai/vm/precompiled_contracts/mapping.py +46 -0
  682. ethereum/forks/shanghai/vm/precompiled_contracts/modexp.py +166 -0
  683. ethereum/forks/shanghai/vm/precompiled_contracts/ripemd160.py +44 -0
  684. ethereum/forks/shanghai/vm/precompiled_contracts/sha256.py +41 -0
  685. ethereum/forks/shanghai/vm/runtime.py +69 -0
  686. ethereum/forks/shanghai/vm/stack.py +58 -0
  687. ethereum/forks/spurious_dragon/__init__.py +38 -0
  688. ethereum/forks/spurious_dragon/blocks.py +265 -0
  689. ethereum/forks/spurious_dragon/bloom.py +87 -0
  690. ethereum/forks/spurious_dragon/fork.py +807 -0
  691. ethereum/forks/spurious_dragon/fork_types.py +62 -0
  692. ethereum/forks/spurious_dragon/state.py +583 -0
  693. ethereum/forks/spurious_dragon/transactions.py +261 -0
  694. ethereum/forks/spurious_dragon/trie.py +498 -0
  695. ethereum/forks/spurious_dragon/utils/__init__.py +3 -0
  696. ethereum/forks/spurious_dragon/utils/address.py +63 -0
  697. ethereum/forks/spurious_dragon/utils/hexadecimal.py +55 -0
  698. ethereum/forks/spurious_dragon/utils/message.py +79 -0
  699. ethereum/forks/spurious_dragon/vm/__init__.py +184 -0
  700. ethereum/forks/spurious_dragon/vm/exceptions.py +86 -0
  701. ethereum/forks/spurious_dragon/vm/gas.py +244 -0
  702. ethereum/forks/spurious_dragon/vm/instructions/__init__.py +329 -0
  703. ethereum/forks/spurious_dragon/vm/instructions/arithmetic.py +373 -0
  704. ethereum/forks/spurious_dragon/vm/instructions/bitwise.py +153 -0
  705. ethereum/forks/spurious_dragon/vm/instructions/block.py +189 -0
  706. ethereum/forks/spurious_dragon/vm/instructions/comparison.py +177 -0
  707. ethereum/forks/spurious_dragon/vm/instructions/control_flow.py +171 -0
  708. ethereum/forks/spurious_dragon/vm/instructions/environment.py +376 -0
  709. ethereum/forks/spurious_dragon/vm/instructions/keccak.py +63 -0
  710. ethereum/forks/spurious_dragon/vm/instructions/log.py +85 -0
  711. ethereum/forks/spurious_dragon/vm/instructions/memory.py +141 -0
  712. ethereum/forks/spurious_dragon/vm/instructions/stack.py +204 -0
  713. ethereum/forks/spurious_dragon/vm/instructions/storage.py +87 -0
  714. ethereum/forks/spurious_dragon/vm/instructions/system.py +491 -0
  715. ethereum/forks/spurious_dragon/vm/interpreter.py +292 -0
  716. ethereum/forks/spurious_dragon/vm/memory.py +84 -0
  717. ethereum/forks/spurious_dragon/vm/precompiled_contracts/__init__.py +27 -0
  718. ethereum/forks/spurious_dragon/vm/precompiled_contracts/ecrecover.py +64 -0
  719. ethereum/forks/spurious_dragon/vm/precompiled_contracts/identity.py +39 -0
  720. ethereum/forks/spurious_dragon/vm/precompiled_contracts/mapping.py +33 -0
  721. ethereum/forks/spurious_dragon/vm/precompiled_contracts/ripemd160.py +44 -0
  722. ethereum/forks/spurious_dragon/vm/precompiled_contracts/sha256.py +41 -0
  723. ethereum/forks/spurious_dragon/vm/runtime.py +69 -0
  724. ethereum/forks/spurious_dragon/vm/stack.py +58 -0
  725. ethereum/forks/tangerine_whistle/__init__.py +32 -0
  726. ethereum/forks/tangerine_whistle/blocks.py +265 -0
  727. ethereum/forks/tangerine_whistle/bloom.py +87 -0
  728. ethereum/forks/tangerine_whistle/fork.py +798 -0
  729. ethereum/forks/tangerine_whistle/fork_types.py +62 -0
  730. ethereum/forks/tangerine_whistle/state.py +515 -0
  731. ethereum/forks/tangerine_whistle/transactions.py +227 -0
  732. ethereum/forks/tangerine_whistle/trie.py +498 -0
  733. ethereum/forks/tangerine_whistle/utils/__init__.py +3 -0
  734. ethereum/forks/tangerine_whistle/utils/address.py +63 -0
  735. ethereum/forks/tangerine_whistle/utils/hexadecimal.py +55 -0
  736. ethereum/forks/tangerine_whistle/utils/message.py +79 -0
  737. ethereum/forks/tangerine_whistle/vm/__init__.py +163 -0
  738. ethereum/forks/tangerine_whistle/vm/exceptions.py +86 -0
  739. ethereum/forks/tangerine_whistle/vm/gas.py +244 -0
  740. ethereum/forks/tangerine_whistle/vm/instructions/__init__.py +329 -0
  741. ethereum/forks/tangerine_whistle/vm/instructions/arithmetic.py +373 -0
  742. ethereum/forks/tangerine_whistle/vm/instructions/bitwise.py +153 -0
  743. ethereum/forks/tangerine_whistle/vm/instructions/block.py +189 -0
  744. ethereum/forks/tangerine_whistle/vm/instructions/comparison.py +177 -0
  745. ethereum/forks/tangerine_whistle/vm/instructions/control_flow.py +171 -0
  746. ethereum/forks/tangerine_whistle/vm/instructions/environment.py +376 -0
  747. ethereum/forks/tangerine_whistle/vm/instructions/keccak.py +63 -0
  748. ethereum/forks/tangerine_whistle/vm/instructions/log.py +85 -0
  749. ethereum/forks/tangerine_whistle/vm/instructions/memory.py +141 -0
  750. ethereum/forks/tangerine_whistle/vm/instructions/stack.py +204 -0
  751. ethereum/forks/tangerine_whistle/vm/instructions/storage.py +87 -0
  752. ethereum/forks/tangerine_whistle/vm/instructions/system.py +480 -0
  753. ethereum/forks/tangerine_whistle/vm/interpreter.py +274 -0
  754. ethereum/forks/tangerine_whistle/vm/memory.py +84 -0
  755. ethereum/forks/tangerine_whistle/vm/precompiled_contracts/__init__.py +27 -0
  756. ethereum/forks/tangerine_whistle/vm/precompiled_contracts/ecrecover.py +64 -0
  757. ethereum/forks/tangerine_whistle/vm/precompiled_contracts/identity.py +39 -0
  758. ethereum/forks/tangerine_whistle/vm/precompiled_contracts/mapping.py +33 -0
  759. ethereum/forks/tangerine_whistle/vm/precompiled_contracts/ripemd160.py +44 -0
  760. ethereum/forks/tangerine_whistle/vm/precompiled_contracts/sha256.py +41 -0
  761. ethereum/forks/tangerine_whistle/vm/runtime.py +69 -0
  762. ethereum/forks/tangerine_whistle/vm/stack.py +58 -0
  763. ethereum/genesis.py +279 -0
  764. ethereum/py.typed +0 -0
  765. ethereum/trace.py +252 -0
  766. ethereum/utils/__init__.py +18 -0
  767. ethereum/utils/byte.py +59 -0
  768. ethereum/utils/hexadecimal.py +221 -0
  769. ethereum/utils/numeric.py +208 -0
  770. ethereum_execution-2.18.0rc6.dev2.dist-info/METADATA +113 -0
  771. ethereum_execution-2.18.0rc6.dev2.dist-info/RECORD +816 -0
  772. ethereum_execution-2.18.0rc6.dev2.dist-info/WHEEL +5 -0
  773. ethereum_execution-2.18.0rc6.dev2.dist-info/entry_points.txt +17 -0
  774. ethereum_execution-2.18.0rc6.dev2.dist-info/licenses/LICENSE.md +35 -0
  775. ethereum_execution-2.18.0rc6.dev2.dist-info/top_level.txt +3 -0
  776. ethereum_optimized/__init__.py +78 -0
  777. ethereum_optimized/fork.py +72 -0
  778. ethereum_optimized/state_db.py +444 -0
  779. ethereum_optimized/utils.py +26 -0
  780. ethereum_spec_tools/__init__.py +6 -0
  781. ethereum_spec_tools/docc.py +1135 -0
  782. ethereum_spec_tools/evm_tools/__init__.py +119 -0
  783. ethereum_spec_tools/evm_tools/__main__.py +7 -0
  784. ethereum_spec_tools/evm_tools/b11r/__init__.py +143 -0
  785. ethereum_spec_tools/evm_tools/b11r/b11r_types.py +173 -0
  786. ethereum_spec_tools/evm_tools/daemon.py +202 -0
  787. ethereum_spec_tools/evm_tools/loaders/__init__.py +3 -0
  788. ethereum_spec_tools/evm_tools/loaders/fixture_loader.py +190 -0
  789. ethereum_spec_tools/evm_tools/loaders/fork_loader.py +320 -0
  790. ethereum_spec_tools/evm_tools/loaders/transaction_loader.py +208 -0
  791. ethereum_spec_tools/evm_tools/statetest/__init__.py +291 -0
  792. ethereum_spec_tools/evm_tools/t8n/__init__.py +402 -0
  793. ethereum_spec_tools/evm_tools/t8n/env.py +320 -0
  794. ethereum_spec_tools/evm_tools/t8n/evm_trace/__init__.py +5 -0
  795. ethereum_spec_tools/evm_tools/t8n/evm_trace/count.py +47 -0
  796. ethereum_spec_tools/evm_tools/t8n/evm_trace/eip3155.py +333 -0
  797. ethereum_spec_tools/evm_tools/t8n/evm_trace/group.py +39 -0
  798. ethereum_spec_tools/evm_tools/t8n/evm_trace/protocols.py +54 -0
  799. ethereum_spec_tools/evm_tools/t8n/t8n_types.py +393 -0
  800. ethereum_spec_tools/evm_tools/utils.py +187 -0
  801. ethereum_spec_tools/forks.py +302 -0
  802. ethereum_spec_tools/lint/__init__.py +195 -0
  803. ethereum_spec_tools/lint/__main__.py +11 -0
  804. ethereum_spec_tools/lint/lints/glacier_forks_hygiene.py +273 -0
  805. ethereum_spec_tools/lint/lints/import_hygiene.py +145 -0
  806. ethereum_spec_tools/lint/lints/patch_hygiene.py +161 -0
  807. ethereum_spec_tools/new_fork/__init__.py +4 -0
  808. ethereum_spec_tools/new_fork/builder.py +430 -0
  809. ethereum_spec_tools/new_fork/cli.py +216 -0
  810. ethereum_spec_tools/new_fork/codemod/__init__.py +3 -0
  811. ethereum_spec_tools/new_fork/codemod/comment.py +79 -0
  812. ethereum_spec_tools/new_fork/codemod/constant.py +141 -0
  813. ethereum_spec_tools/new_fork/codemod/string.py +79 -0
  814. ethereum_spec_tools/patch_tool.py +78 -0
  815. ethereum_spec_tools/py.typed +0 -0
  816. ethereum_spec_tools/sync.py +1016 -0
@@ -0,0 +1,412 @@
1
+ [
2
+ 1073739904, 1082130304, 1090514816, 1098906752, 1107293056,
3
+ 1115684224, 1124070016, 1132461952, 1140849536, 1149232768,
4
+ 1157627776, 1166013824, 1174404736, 1182786944, 1191180416,
5
+ 1199568512, 1207958912, 1216345216, 1224732032, 1233124736,
6
+ 1241513344, 1249902464, 1258290304, 1266673792, 1275067264,
7
+ 1283453312, 1291844992, 1300234112, 1308619904, 1317010048,
8
+ 1325397376, 1333787776, 1342176128, 1350561664, 1358954368,
9
+ 1367339392, 1375731584, 1384118144, 1392507008, 1400897408,
10
+ 1409284736, 1417673344, 1426062464, 1434451072, 1442839168,
11
+ 1451229056, 1459615616, 1468006016, 1476394112, 1484782976,
12
+ 1493171584, 1501559168, 1509948032, 1518337664, 1526726528,
13
+ 1535114624, 1543503488, 1551892096, 1560278656, 1568669056,
14
+ 1577056384, 1585446272, 1593831296, 1602219392, 1610610304,
15
+ 1619000192, 1627386752, 1635773824, 1644164224, 1652555648,
16
+ 1660943488, 1669332608, 1677721216, 1686109312, 1694497664,
17
+ 1702886272, 1711274624, 1719661184, 1728047744, 1736434816,
18
+ 1744829056, 1753218944, 1761606272, 1769995904, 1778382464,
19
+ 1786772864, 1795157888, 1803550592, 1811937664, 1820327552,
20
+ 1828711552, 1837102976, 1845488768, 1853879936, 1862269312,
21
+ 1870656896, 1879048064, 1887431552, 1895825024, 1904212096,
22
+ 1912601216, 1920988544, 1929379456, 1937765504, 1946156672,
23
+ 1954543232, 1962932096, 1971321728, 1979707264, 1988093056,
24
+ 1996487552, 2004874624, 2013262208, 2021653888, 2030039936,
25
+ 2038430848, 2046819968, 2055208576, 2063596672, 2071981952,
26
+ 2080373632, 2088762752, 2097149056, 2105539712, 2113928576,
27
+ 2122315136, 2130700672, 2139092608, 2147483264, 2155872128,
28
+ 2164257664, 2172642176, 2181035392, 2189426048, 2197814912,
29
+ 2206203008, 2214587264, 2222979712, 2231367808, 2239758208,
30
+ 2248145024, 2256527744, 2264922752, 2273312128, 2281701248,
31
+ 2290086272, 2298476672, 2306867072, 2315251072, 2323639168,
32
+ 2332032128, 2340420224, 2348808064, 2357196416, 2365580416,
33
+ 2373966976, 2382363008, 2390748544, 2399139968, 2407530368,
34
+ 2415918976, 2424307328, 2432695424, 2441084288, 2449472384,
35
+ 2457861248, 2466247808, 2474637184, 2483026816, 2491414144,
36
+ 2499803776, 2508191872, 2516582272, 2524970368, 2533359232,
37
+ 2541743488, 2550134144, 2558525056, 2566913408, 2575301504,
38
+ 2583686528, 2592073856, 2600467328, 2608856192, 2617240448,
39
+ 2625631616, 2634022016, 2642407552, 2650796416, 2659188352,
40
+ 2667574912, 2675965312, 2684352896, 2692738688, 2701130624,
41
+ 2709518464, 2717907328, 2726293376, 2734685056, 2743073152,
42
+ 2751462016, 2759851648, 2768232832, 2776625536, 2785017728,
43
+ 2793401984, 2801794432, 2810182016, 2818571648, 2826959488,
44
+ 2835349376, 2843734144, 2852121472, 2860514432, 2868900992,
45
+ 2877286784, 2885676928, 2894069632, 2902451584, 2910843008,
46
+ 2919234688, 2927622784, 2936011648, 2944400768, 2952789376,
47
+ 2961177728, 2969565568, 2977951616, 2986338944, 2994731392,
48
+ 3003120256, 3011508352, 3019895936, 3028287104, 3036675968,
49
+ 3045063808, 3053452928, 3061837696, 3070228352, 3078615424,
50
+ 3087003776, 3095394944, 3103782272, 3112173184, 3120562048,
51
+ 3128944768, 3137339264, 3145725056, 3154109312, 3162505088,
52
+ 3170893184, 3179280256, 3187669376, 3196056704, 3204445568,
53
+ 3212836736, 3221224064, 3229612928, 3238002304, 3246391168,
54
+ 3254778496, 3263165824, 3271556224, 3279944576, 3288332416,
55
+ 3296719232, 3305110912, 3313500032, 3321887104, 3330273152,
56
+ 3338658944, 3347053184, 3355440512, 3363827072, 3372220288,
57
+ 3380608384, 3388997504, 3397384576, 3405774208, 3414163072,
58
+ 3422551936, 3430937984, 3439328384, 3447714176, 3456104576,
59
+ 3464493952, 3472883584, 3481268864, 3489655168, 3498048896,
60
+ 3506434432, 3514826368, 3523213952, 3531603584, 3539987072,
61
+ 3548380288, 3556763264, 3565157248, 3573545344, 3581934464,
62
+ 3590324096, 3598712704, 3607098752, 3615488384, 3623877248,
63
+ 3632265856, 3640646528, 3649043584, 3657430144, 3665821568,
64
+ 3674207872, 3682597504, 3690984832, 3699367808, 3707764352,
65
+ 3716152448, 3724541056, 3732925568, 3741318016, 3749706368,
66
+ 3758091136, 3766481536, 3774872704, 3783260032, 3791650432,
67
+ 3800036224, 3808427648, 3816815488, 3825204608, 3833592704,
68
+ 3841981568, 3850370432, 3858755968, 3867147904, 3875536256,
69
+ 3883920512, 3892313728, 3900702592, 3909087872, 3917478784,
70
+ 3925868416, 3934256512, 3942645376, 3951032192, 3959422336,
71
+ 3967809152, 3976200064, 3984588416, 3992974976, 4001363584,
72
+ 4009751168, 4018141312, 4026530432, 4034911616, 4043308928,
73
+ 4051695488, 4060084352, 4068472448, 4076862848, 4085249408,
74
+ 4093640576, 4102028416, 4110413696, 4118805632, 4127194496,
75
+ 4135583104, 4143971968, 4152360832, 4160746112, 4169135744,
76
+ 4177525888, 4185912704, 4194303616, 4202691968, 4211076736,
77
+ 4219463552, 4227855488, 4236246656, 4244633728, 4253022848,
78
+ 4261412224, 4269799808, 4278184832, 4286578048, 4294962304,
79
+ 4303349632, 4311743104, 4320130432, 4328521088, 4336909184,
80
+ 4345295488, 4353687424, 4362073472, 4370458496, 4378852736,
81
+ 4387238528, 4395630208, 4404019072, 4412407424, 4420790656,
82
+ 4429182848, 4437571456, 4445962112, 4454344064, 4462738048,
83
+ 4471119232, 4479516544, 4487904128, 4496289664, 4504682368,
84
+ 4513068416, 4521459584, 4529846144, 4538232704, 4546619776,
85
+ 4555010176, 4563402112, 4571790208, 4580174464, 4588567936,
86
+ 4596957056, 4605344896, 4613734016, 4622119808, 4630511488,
87
+ 4638898816, 4647287936, 4655675264, 4664065664, 4672451968,
88
+ 4680842624, 4689231488, 4697620352, 4706007424, 4714397056,
89
+ 4722786176, 4731173248, 4739562368, 4747951744, 4756340608,
90
+ 4764727936, 4773114496, 4781504384, 4789894784, 4798283648,
91
+ 4806667648, 4815059584, 4823449472, 4831835776, 4840226176,
92
+ 4848612224, 4857003392, 4865391488, 4873780096, 4882169728,
93
+ 4890557312, 4898946944, 4907333248, 4915722368, 4924110976,
94
+ 4932499328, 4940889728, 4949276032, 4957666432, 4966054784,
95
+ 4974438016, 4982831488, 4991221376, 4999607168, 5007998848,
96
+ 5016386432, 5024763776, 5033164672, 5041544576, 5049941888,
97
+ 5058329728, 5066717056, 5075107456, 5083494272, 5091883904,
98
+ 5100273536, 5108662144, 5117048192, 5125436032, 5133827456,
99
+ 5142215296, 5150605184, 5158993024, 5167382144, 5175769472,
100
+ 5184157568, 5192543872, 5200936064, 5209324928, 5217711232,
101
+ 5226102656, 5234490496, 5242877312, 5251263872, 5259654016,
102
+ 5268040832, 5276434304, 5284819328, 5293209728, 5301598592,
103
+ 5309986688, 5318374784, 5326764416, 5335151488, 5343542144,
104
+ 5351929472, 5360319872, 5368706944, 5377096576, 5385484928,
105
+ 5393871232, 5402263424, 5410650496, 5419040384, 5427426944,
106
+ 5435816576, 5444205952, 5452594816, 5460981376, 5469367936,
107
+ 5477760896, 5486148736, 5494536832, 5502925952, 5511315328,
108
+ 5519703424, 5528089984, 5536481152, 5544869504, 5553256064,
109
+ 5561645696, 5570032768, 5578423936, 5586811264, 5595193216,
110
+ 5603585408, 5611972736, 5620366208, 5628750464, 5637143936,
111
+ 5645528192, 5653921408, 5662310272, 5670694784, 5679082624,
112
+ 5687474048, 5695864448, 5704251008, 5712641408, 5721030272,
113
+ 5729416832, 5737806208, 5746194304, 5754583936, 5762969984,
114
+ 5771358592, 5779748224, 5788137856, 5796527488, 5804911232,
115
+ 5813300608, 5821692544, 5830082176, 5838468992, 5846855552,
116
+ 5855247488, 5863636096, 5872024448, 5880411008, 5888799872,
117
+ 5897186432, 5905576832, 5913966976, 5922352768, 5930744704,
118
+ 5939132288, 5947522432, 5955911296, 5964299392, 5972688256,
119
+ 5981074304, 5989465472, 5997851008, 6006241408, 6014627968,
120
+ 6023015552, 6031408256, 6039796096, 6048185216, 6056574848,
121
+ 6064963456, 6073351808, 6081736064, 6090128768, 6098517632,
122
+ 6106906496, 6115289216, 6123680896, 6132070016, 6140459648,
123
+ 6148849024, 6157237376, 6165624704, 6174009728, 6182403712,
124
+ 6190792064, 6199176064, 6207569792, 6215952256, 6224345216,
125
+ 6232732544, 6241124224, 6249510272, 6257899136, 6266287744,
126
+ 6274676864, 6283065728, 6291454336, 6299843456, 6308232064,
127
+ 6316620928, 6325006208, 6333395584, 6341784704, 6350174848,
128
+ 6358562176, 6366951296, 6375337856, 6383729536, 6392119168,
129
+ 6400504192, 6408895616, 6417283456, 6425673344, 6434059136,
130
+ 6442444672, 6450837376, 6459223424, 6467613056, 6476004224,
131
+ 6484393088, 6492781952, 6501170048, 6509555072, 6517947008,
132
+ 6526336384, 6534725504, 6543112832, 6551500672, 6559888768,
133
+ 6568278656, 6576662912, 6585055616, 6593443456, 6601834112,
134
+ 6610219648, 6618610304, 6626999168, 6635385472, 6643777408,
135
+ 6652164224, 6660552832, 6668941952, 6677330048, 6685719424,
136
+ 6694107776, 6702493568, 6710882176, 6719274112, 6727662976,
137
+ 6736052096, 6744437632, 6752825984, 6761213824, 6769604224,
138
+ 6777993856, 6786383488, 6794770816, 6803158144, 6811549312,
139
+ 6819937664, 6828326528, 6836706176, 6845101696, 6853491328,
140
+ 6861880448, 6870269312, 6878655104, 6887046272, 6895433344,
141
+ 6903822208, 6912212864, 6920596864, 6928988288, 6937377152,
142
+ 6945764992, 6954149248, 6962544256, 6970928768, 6979317376,
143
+ 6987709312, 6996093824, 7004487296, 7012875392, 7021258624,
144
+ 7029652352, 7038038912, 7046427776, 7054818944, 7063207808,
145
+ 7071595136, 7079980928, 7088372608, 7096759424, 7105149824,
146
+ 7113536896, 7121928064, 7130315392, 7138699648, 7147092352,
147
+ 7155479168, 7163865728, 7172249984, 7180648064, 7189036672,
148
+ 7197424768, 7205810816, 7214196608, 7222589824, 7230975104,
149
+ 7239367552, 7247755904, 7256145536, 7264533376, 7272921472,
150
+ 7281308032, 7289694848, 7298088832, 7306471808, 7314864512,
151
+ 7323253888, 7331643008, 7340029568, 7348419712, 7356808832,
152
+ 7365196672, 7373585792, 7381973888, 7390362752, 7398750592,
153
+ 7407138944, 7415528576, 7423915648, 7432302208, 7440690304,
154
+ 7449080192, 7457472128, 7465860992, 7474249088, 7482635648,
155
+ 7491023744, 7499412608, 7507803008, 7516192384, 7524579968,
156
+ 7532967296, 7541358464, 7549745792, 7558134656, 7566524032,
157
+ 7574912896, 7583300992, 7591690112, 7600075136, 7608466816,
158
+ 7616854912, 7625244544, 7633629824, 7642020992, 7650410368,
159
+ 7658794112, 7667187328, 7675574912, 7683961984, 7692349568,
160
+ 7700739712, 7709130368, 7717519232, 7725905536, 7734295424,
161
+ 7742683264, 7751069056, 7759457408, 7767849088, 7776238208,
162
+ 7784626816, 7793014912, 7801405312, 7809792128, 7818179968,
163
+ 7826571136, 7834957184, 7843347328, 7851732352, 7860124544,
164
+ 7868512384, 7876902016, 7885287808, 7893679744, 7902067072,
165
+ 7910455936, 7918844288, 7927230848, 7935622784, 7944009344,
166
+ 7952400256, 7960786048, 7969176704, 7977565312, 7985953408,
167
+ 7994339968, 8002730368, 8011119488, 8019508096, 8027896192,
168
+ 8036285056, 8044674688, 8053062272, 8061448832, 8069838464,
169
+ 8078227328, 8086616704, 8095006592, 8103393664, 8111783552,
170
+ 8120171392, 8128560256, 8136949376, 8145336704, 8153726848,
171
+ 8162114944, 8170503296, 8178891904, 8187280768, 8195669632,
172
+ 8204058496, 8212444544, 8220834176, 8229222272, 8237612672,
173
+ 8246000768, 8254389376, 8262775168, 8271167104, 8279553664,
174
+ 8287944064, 8296333184, 8304715136, 8313108352, 8321497984,
175
+ 8329885568, 8338274432, 8346663296, 8355052928, 8363441536,
176
+ 8371828352, 8380217984, 8388606592, 8396996224, 8405384576,
177
+ 8413772672, 8422161536, 8430549376, 8438939008, 8447326592,
178
+ 8455715456, 8464104832, 8472492928, 8480882048, 8489270656,
179
+ 8497659776, 8506045312, 8514434944, 8522823808, 8531208832,
180
+ 8539602304, 8547990656, 8556378752, 8564768384, 8573154176,
181
+ 8581542784, 8589933952, 8598322816, 8606705024, 8615099264,
182
+ 8623487872, 8631876992, 8640264064, 8648653952, 8657040256,
183
+ 8665430656, 8673820544, 8682209152, 8690592128, 8698977152,
184
+ 8707374464, 8715763328, 8724151424, 8732540032, 8740928384,
185
+ 8749315712, 8757704576, 8766089344, 8774480768, 8782871936,
186
+ 8791260032, 8799645824, 8808034432, 8816426368, 8824812928,
187
+ 8833199488, 8841591424, 8849976448, 8858366336, 8866757248,
188
+ 8875147136, 8883532928, 8891923328, 8900306816, 8908700288,
189
+ 8917088384, 8925478784, 8933867392, 8942250368, 8950644608,
190
+ 8959032704, 8967420544, 8975809664, 8984197504, 8992584064,
191
+ 9000976256, 9009362048, 9017752448, 9026141312, 9034530688,
192
+ 9042917504, 9051307904, 9059694208, 9068084864, 9076471424,
193
+ 9084861824, 9093250688, 9101638528, 9110027648, 9118416512,
194
+ 9126803584, 9135188096, 9143581312, 9151969664, 9160356224,
195
+ 9168747136, 9177134464, 9185525632, 9193910144, 9202302848,
196
+ 9210690688, 9219079552, 9227465344, 9235854464, 9244244864,
197
+ 9252633472, 9261021824, 9269411456, 9277799296, 9286188928,
198
+ 9294574208, 9302965888, 9311351936, 9319740032, 9328131968,
199
+ 9336516736, 9344907392, 9353296768, 9361685888, 9370074752,
200
+ 9378463616, 9386849408, 9395239808, 9403629184, 9412016512,
201
+ 9420405376, 9428795008, 9437181568, 9445570688, 9453960832,
202
+ 9462346624, 9470738048, 9479121536, 9487515008, 9495903616,
203
+ 9504289664, 9512678528, 9521067904, 9529456256, 9537843584,
204
+ 9546233728, 9554621312, 9563011456, 9571398784, 9579788672,
205
+ 9588178304, 9596567168, 9604954496, 9613343104, 9621732992,
206
+ 9630121856, 9638508416, 9646898816, 9655283584, 9663675776,
207
+ 9672061312, 9680449664, 9688840064, 9697230464, 9705617536,
208
+ 9714003584, 9722393984, 9730772608, 9739172224, 9747561088,
209
+ 9755945344, 9764338816, 9772726144, 9781116544, 9789503872,
210
+ 9797892992, 9806282624, 9814670464, 9823056512, 9831439232,
211
+ 9839833984, 9848224384, 9856613504, 9865000576, 9873391232,
212
+ 9881772416, 9890162816, 9898556288, 9906940544, 9915333248,
213
+ 9923721088, 9932108672, 9940496512, 9948888448, 9957276544,
214
+ 9965666176, 9974048384, 9982441088, 9990830464, 9999219584,
215
+ 10007602816, 10015996544, 10024385152, 10032774016, 10041163648,
216
+ 10049548928, 10057940096, 10066329472, 10074717824, 10083105152,
217
+ 10091495296, 10099878784, 10108272256, 10116660608, 10125049216,
218
+ 10133437312, 10141825664, 10150213504, 10158601088, 10166991232,
219
+ 10175378816, 10183766144, 10192157312, 10200545408, 10208935552,
220
+ 10217322112, 10225712768, 10234099328, 10242489472, 10250876032,
221
+ 10259264896, 10267656064, 10276042624, 10284429184, 10292820352,
222
+ 10301209472, 10309598848, 10317987712, 10326375296, 10334763392,
223
+ 10343153536, 10351541632, 10359930752, 10368318592, 10376707456,
224
+ 10385096576, 10393484672, 10401867136, 10410262144, 10418647424,
225
+ 10427039104, 10435425664, 10443810176, 10452203648, 10460589952,
226
+ 10468982144, 10477369472, 10485759104, 10494147712, 10502533504,
227
+ 10510923392, 10519313536, 10527702656, 10536091264, 10544478592,
228
+ 10552867712, 10561255808, 10569642368, 10578032768, 10586423168,
229
+ 10594805632, 10603200128, 10611588992, 10619976064, 10628361344,
230
+ 10636754048, 10645143424, 10653531776, 10661920384, 10670307968,
231
+ 10678696832, 10687086464, 10695475072, 10703863168, 10712246144,
232
+ 10720639616, 10729026688, 10737414784, 10745806208, 10754190976,
233
+ 10762581376, 10770971264, 10779356288, 10787747456, 10796135552,
234
+ 10804525184, 10812915584, 10821301888, 10829692288, 10838078336,
235
+ 10846469248, 10854858368, 10863247232, 10871631488, 10880023424,
236
+ 10888412032, 10896799616, 10905188992, 10913574016, 10921964672,
237
+ 10930352768, 10938742912, 10947132544, 10955518592, 10963909504,
238
+ 10972298368, 10980687488, 10989074816, 10997462912, 11005851776,
239
+ 11014241152, 11022627712, 11031017344, 11039403904, 11047793024,
240
+ 11056184704, 11064570752, 11072960896, 11081343872, 11089737856,
241
+ 11098128256, 11106514816, 11114904448, 11123293568, 11131680128,
242
+ 11140065152, 11148458368, 11156845696, 11165236864, 11173624192,
243
+ 11182013824, 11190402688, 11198790784, 11207179136, 11215568768,
244
+ 11223957376, 11232345728, 11240734592, 11249122688, 11257511296,
245
+ 11265899648, 11274285952, 11282675584, 11291065472, 11299452544,
246
+ 11307842432, 11316231296, 11324616832, 11333009024, 11341395584,
247
+ 11349782656, 11358172288, 11366560384, 11374950016, 11383339648,
248
+ 11391721856, 11400117376, 11408504192, 11416893568, 11425283456,
249
+ 11433671552, 11442061184, 11450444672, 11458837888, 11467226752,
250
+ 11475611776, 11484003968, 11492392064, 11500780672, 11509169024,
251
+ 11517550976, 11525944448, 11534335616, 11542724224, 11551111808,
252
+ 11559500672, 11567890304, 11576277376, 11584667008, 11593056128,
253
+ 11601443456, 11609830016, 11618221952, 11626607488, 11634995072,
254
+ 11643387776, 11651775104, 11660161664, 11668552576, 11676940928,
255
+ 11685330304, 11693718656, 11702106496, 11710496128, 11718882688,
256
+ 11727273088, 11735660416, 11744050048, 11752437376, 11760824704,
257
+ 11769216128, 11777604736, 11785991296, 11794381952, 11802770048,
258
+ 11811157888, 11819548544, 11827932544, 11836324736, 11844713344,
259
+ 11853100928, 11861486464, 11869879936, 11878268032, 11886656896,
260
+ 11895044992, 11903433088, 11911822976, 11920210816, 11928600448,
261
+ 11936987264, 11945375872, 11953761152, 11962151296, 11970543488,
262
+ 11978928512, 11987320448, 11995708288, 12004095104, 12012486272,
263
+ 12020875136, 12029255552, 12037652096, 12046039168, 12054429568,
264
+ 12062813824, 12071206528, 12079594624, 12087983744, 12096371072,
265
+ 12104759936, 12113147264, 12121534592, 12129924992, 12138314624,
266
+ 12146703232, 12155091584, 12163481216, 12171864704, 12180255872,
267
+ 12188643968, 12197034112, 12205424512, 12213811328, 12222199424,
268
+ 12230590336, 12238977664, 12247365248, 12255755392, 12264143488,
269
+ 12272531584, 12280920448, 12289309568, 12297694592, 12306086528,
270
+ 12314475392, 12322865024, 12331253632, 12339640448, 12348029312,
271
+ 12356418944, 12364805248, 12373196672, 12381580928, 12389969024,
272
+ 12398357632, 12406750592, 12415138432, 12423527552, 12431916416,
273
+ 12440304512, 12448692352, 12457081216, 12465467776, 12473859968,
274
+ 12482245504, 12490636672, 12499025536, 12507411584, 12515801728,
275
+ 12524190592, 12532577152, 12540966272, 12549354368, 12557743232,
276
+ 12566129536, 12574523264, 12582911872, 12591299456, 12599688064,
277
+ 12608074624, 12616463488, 12624845696, 12633239936, 12641631616,
278
+ 12650019968, 12658407296, 12666795136, 12675183232, 12683574656,
279
+ 12691960192, 12700350592, 12708740224, 12717128576, 12725515904,
280
+ 12733906816, 12742295168, 12750680192, 12759071872, 12767460736,
281
+ 12775848832, 12784236928, 12792626816, 12801014656, 12809404288,
282
+ 12817789312, 12826181504, 12834568832, 12842954624, 12851345792,
283
+ 12859732352, 12868122496, 12876512128, 12884901248, 12893289088,
284
+ 12901672832, 12910067584, 12918455168, 12926842496, 12935232896,
285
+ 12943620736, 12952009856, 12960396928, 12968786816, 12977176192,
286
+ 12985563776, 12993951104, 13002341504, 13010730368, 13019115392,
287
+ 13027506304, 13035895168, 13044272512, 13052673152, 13061062528,
288
+ 13069446272, 13077838976, 13086227072, 13094613632, 13103000192,
289
+ 13111393664, 13119782528, 13128157568, 13136559232, 13144945024,
290
+ 13153329536, 13161724288, 13170111872, 13178502784, 13186884736,
291
+ 13195279744, 13203667072, 13212057472, 13220445824, 13228832128,
292
+ 13237221248, 13245610624, 13254000512, 13262388352, 13270777472,
293
+ 13279166336, 13287553408, 13295943296, 13304331904, 13312719488,
294
+ 13321108096, 13329494656, 13337885824, 13346274944, 13354663808,
295
+ 13363051136, 13371439232, 13379825024, 13388210816, 13396605056,
296
+ 13404995456, 13413380224, 13421771392, 13430159744, 13438546048,
297
+ 13446937216, 13455326848, 13463708288, 13472103808, 13480492672,
298
+ 13488875648, 13497269888, 13505657728, 13514045312, 13522435712,
299
+ 13530824576, 13539210112, 13547599232, 13555989376, 13564379008,
300
+ 13572766336, 13581154432, 13589544832, 13597932928, 13606320512,
301
+ 13614710656, 13623097472, 13631477632, 13639874944, 13648264064,
302
+ 13656652928, 13665041792, 13673430656, 13681818496, 13690207616,
303
+ 13698595712, 13706982272, 13715373184, 13723762048, 13732150144,
304
+ 13740536704, 13748926592, 13757316224, 13765700992, 13774090112,
305
+ 13782477952, 13790869376, 13799259008, 13807647872, 13816036736,
306
+ 13824425344, 13832814208, 13841202304, 13849591424, 13857978752,
307
+ 13866368896, 13874754688, 13883145344, 13891533184, 13899919232,
308
+ 13908311168, 13916692096, 13925085056, 13933473152, 13941866368,
309
+ 13950253696, 13958643584, 13967032192, 13975417216, 13983807616,
310
+ 13992197504, 14000582272, 14008973696, 14017363072, 14025752192,
311
+ 14034137984, 14042528384, 14050918016, 14059301504, 14067691648,
312
+ 14076083584, 14084470144, 14092852352, 14101249664, 14109635968,
313
+ 14118024832, 14126407552, 14134804352, 14143188608, 14151577984,
314
+ 14159968384, 14168357248, 14176741504, 14185127296, 14193521024,
315
+ 14201911424, 14210301824, 14218685056, 14227067264, 14235467392,
316
+ 14243855488, 14252243072, 14260630144, 14269021568, 14277409408,
317
+ 14285799296, 14294187904, 14302571392, 14310961792, 14319353728,
318
+ 14327738752, 14336130944, 14344518784, 14352906368, 14361296512,
319
+ 14369685376, 14378071424, 14386462592, 14394848128, 14403230848,
320
+ 14411627392, 14420013952, 14428402304, 14436793472, 14445181568,
321
+ 14453569664, 14461959808, 14470347904, 14478737024, 14487122816,
322
+ 14495511424, 14503901824, 14512291712, 14520677504, 14529064832,
323
+ 14537456768, 14545845632, 14554234496, 14562618496, 14571011456,
324
+ 14579398784, 14587789184, 14596172672, 14604564608, 14612953984,
325
+ 14621341312, 14629724288, 14638120832, 14646503296, 14654897536,
326
+ 14663284864, 14671675264, 14680061056, 14688447616, 14696835968,
327
+ 14705228416, 14713616768, 14722003328, 14730392192, 14738784128,
328
+ 14747172736, 14755561088, 14763947648, 14772336512, 14780725376,
329
+ 14789110144, 14797499776, 14805892736, 14814276992, 14822670208,
330
+ 14831056256, 14839444352, 14847836032, 14856222848, 14864612992,
331
+ 14872997504, 14881388672, 14889775744, 14898165376, 14906553472,
332
+ 14914944896, 14923329664, 14931721856, 14940109696, 14948497024,
333
+ 14956887424, 14965276544, 14973663616, 14982053248, 14990439808,
334
+ 14998830976, 15007216768, 15015605888, 15023995264, 15032385152,
335
+ 15040768384, 15049154944, 15057549184, 15065939072, 15074328448,
336
+ 15082715008, 15091104128, 15099493504, 15107879296, 15116269184,
337
+ 15124659584, 15133042304, 15141431936, 15149824384, 15158214272,
338
+ 15166602368, 15174991232, 15183378304, 15191760512, 15200154496,
339
+ 15208542592, 15216931712, 15225323392, 15233708416, 15242098048,
340
+ 15250489216, 15258875264, 15267265408, 15275654528, 15284043136,
341
+ 15292431488, 15300819584, 15309208192, 15317596544, 15325986176,
342
+ 15334374784, 15342763648, 15351151744, 15359540608, 15367929728,
343
+ 15376318336, 15384706432, 15393092992, 15401481856, 15409869952,
344
+ 15418258816, 15426649984, 15435037568, 15443425664, 15451815296,
345
+ 15460203392, 15468589184, 15476979328, 15485369216, 15493755776,
346
+ 15502146944, 15510534272, 15518924416, 15527311232, 15535699072,
347
+ 15544089472, 15552478336, 15560866688, 15569254528, 15577642624,
348
+ 15586031488, 15594419072, 15602809472, 15611199104, 15619586432,
349
+ 15627975296, 15636364928, 15644753792, 15653141888, 15661529216,
350
+ 15669918848, 15678305152, 15686696576, 15695083136, 15703474048,
351
+ 15711861632, 15720251264, 15728636288, 15737027456, 15745417088,
352
+ 15753804928, 15762194048, 15770582656, 15778971008, 15787358336,
353
+ 15795747712, 15804132224, 15812523392, 15820909696, 15829300096,
354
+ 15837691264, 15846071936, 15854466944, 15862855808, 15871244672,
355
+ 15879634816, 15888020608, 15896409728, 15904799104, 15913185152,
356
+ 15921577088, 15929966464, 15938354816, 15946743424, 15955129472,
357
+ 15963519872, 15971907968, 15980296064, 15988684928, 15997073024,
358
+ 16005460864, 16013851264, 16022241152, 16030629248, 16039012736,
359
+ 16047406976, 16055794816, 16064181376, 16072571264, 16080957824,
360
+ 16089346688, 16097737856, 16106125184, 16114514816, 16122904192,
361
+ 16131292544, 16139678848, 16148066944, 16156453504, 16164839552,
362
+ 16173236096, 16181623424, 16190012032, 16198401152, 16206790528,
363
+ 16215177344, 16223567744, 16231956352, 16240344704, 16248731008,
364
+ 16257117824, 16265504384, 16273898624, 16282281856, 16290668672,
365
+ 16299064192, 16307449216, 16315842176, 16324230016, 16332613504,
366
+ 16341006464, 16349394304, 16357783168, 16366172288, 16374561664,
367
+ 16382951296, 16391337856, 16399726208, 16408116352, 16416505472,
368
+ 16424892032, 16433282176, 16441668224, 16450058624, 16458448768,
369
+ 16466836864, 16475224448, 16483613056, 16492001408, 16500391808,
370
+ 16508779648, 16517166976, 16525555328, 16533944192, 16542330752,
371
+ 16550719616, 16559110528, 16567497088, 16575888512, 16584274816,
372
+ 16592665472, 16601051008, 16609442944, 16617832064, 16626218624,
373
+ 16634607488, 16642996096, 16651385728, 16659773824, 16668163712,
374
+ 16676552576, 16684938112, 16693328768, 16701718144, 16710095488,
375
+ 16718492288, 16726883968, 16735272832, 16743661184, 16752049792,
376
+ 16760436608, 16768827008, 16777214336, 16785599104, 16793992832,
377
+ 16802381696, 16810768768, 16819151744, 16827542656, 16835934848,
378
+ 16844323712, 16852711552, 16861101952, 16869489536, 16877876864,
379
+ 16886265728, 16894653056, 16903044736, 16911431296, 16919821696,
380
+ 16928207488, 16936592768, 16944987776, 16953375616, 16961763968,
381
+ 16970152832, 16978540928, 16986929536, 16995319168, 17003704448,
382
+ 17012096896, 17020481152, 17028870784, 17037262208, 17045649536,
383
+ 17054039936, 17062426496, 17070814336, 17079205504, 17087592064,
384
+ 17095978112, 17104369024, 17112759424, 17121147776, 17129536384,
385
+ 17137926016, 17146314368, 17154700928, 17163089792, 17171480192,
386
+ 17179864192, 17188256896, 17196644992, 17205033856, 17213423488,
387
+ 17221811072, 17230198912, 17238588032, 17246976896, 17255360384,
388
+ 17263754624, 17272143232, 17280530048, 17288918912, 17297309312,
389
+ 17305696384, 17314085504, 17322475136, 17330863744, 17339252096,
390
+ 17347640192, 17356026496, 17364413824, 17372796544, 17381190016,
391
+ 17389583488, 17397972608, 17406360704, 17414748544, 17423135872,
392
+ 17431527296, 17439915904, 17448303232, 17456691584, 17465081728,
393
+ 17473468288, 17481857408, 17490247552, 17498635904, 17507022464,
394
+ 17515409024, 17523801728, 17532189824, 17540577664, 17548966016,
395
+ 17557353344, 17565741184, 17574131584, 17582519168, 17590907008,
396
+ 17599296128, 17607687808, 17616076672, 17624455808, 17632852352,
397
+ 17641238656, 17649630848, 17658018944, 17666403968, 17674794112,
398
+ 17683178368, 17691573376, 17699962496, 17708350592, 17716739968,
399
+ 17725126528, 17733517184, 17741898112, 17750293888, 17758673024,
400
+ 17767070336, 17775458432, 17783848832, 17792236928, 17800625536,
401
+ 17809012352, 17817402752, 17825785984, 17834178944, 17842563968,
402
+ 17850955648, 17859344512, 17867732864, 17876119424, 17884511872,
403
+ 17892900224, 17901287296, 17909677696, 17918058112, 17926451072,
404
+ 17934843776, 17943230848, 17951609216, 17960008576, 17968397696,
405
+ 17976784256, 17985175424, 17993564032, 18001952128, 18010339712,
406
+ 18018728576, 18027116672, 18035503232, 18043894144, 18052283264,
407
+ 18060672128, 18069056384, 18077449856, 18085837184, 18094225792,
408
+ 18102613376, 18111004544, 18119388544, 18127781248, 18136170368,
409
+ 18144558976, 18152947328, 18161336192, 18169724288, 18178108544,
410
+ 18186498944, 18194886784, 18203275648, 18211666048, 18220048768,
411
+ 18228444544, 18236833408, 18245220736
412
+ ]